/* Global styling and theme */
:root {
  --bg: #f6efe7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #3d2f2b;
  --muted: #8a6e63;
  --accent: #d9b6a7;
  --accent-strong: #c89f8f;
  --shadow: 0 24px 80px rgba(72, 55, 46, 0.1);
  --radius: 28px;
  --radius-sm: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(255, 248, 240, 0.95), transparent 35%),
              linear-gradient(180deg, #fff8f2 0%, #f8efe5 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section-title span {
  display: block;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 0 0;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(209, 190, 180, 0.8);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -40%;
  left: 20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 233, 221, 0.95), transparent 52%);
  filter: blur(95px);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
}

.hero-image-wrapper {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(92, 64, 54, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 520px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.hero-text {
  margin: 26px 0 0;
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.8;
  color: #5a4b46;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 16px 30px;
  min-height: 54px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d8b4a5, #f0e5dc);
  color: #4d3b36;
  box-shadow: 0 18px 40px rgba(216, 180, 165, 0.28);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid rgba(186, 159, 146, 0.5);
}

.menu-tab {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(209, 190, 180, 0.7);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: rgba(250, 239, 232, 0.92);
  transform: translateY(-2px);
}

.about-grid,
.location-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about-copy,
.location-copy {
  max-width: 620px;
}

.about-copy p {
  margin: 0 0 20px;
  line-height: 1.9;
  color: #5f4d47;
}

.about-images {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 240px;
  height: 100%;
}

.about-images .about-img:nth-child(1),
.about-images .about-img:nth-child(6) {
  grid-column: span 2;
  min-height: 360px;
}

.about-img.secondary {
  margin-top: 20px;
}

.signature {
  padding-top: 40px;
}

.menu-slider-section {
  display: none;
}

.menu-slider-section.active {
  display: block;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 24px;
  gap: 16px;
}

.slider-header h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  font-size: 1.35rem;
  cursor: pointer;
}

.slider-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-behavior: smooth;
}

.slider-container::-webkit-scrollbar {
  height: 10px;
}

.slider-container::-webkit-scrollbar-thumb {
  background: rgba(171, 131, 113, 0.45);
  border-radius: 999px;
}

.menu-card {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-width: 260px;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(80, 57, 49, 0.16);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-copy {
  padding: 22px;
}

.card-copy h4 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.card-copy p {
  margin: 0 0 16px;
  color: #6b5a53;
  line-height: 1.7;
}

.menu-pdf-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-pdf-card {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  flex-wrap: wrap;
}

.menu-pdf-card h2 {
  margin: 10px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
}

.gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.highlights-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-card {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 34px;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.highlight-card h3 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.highlight-card p {
  margin: 0;
  color: #6a5750;
  line-height: 1.8;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.reviews-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 26px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.reviewer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.review-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8d3c5, #f8ece6);
  color: #6f554d;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.review-card h4 {
  margin: 0 0 6px;
}

.review-card p {
  margin: 0;
  color: #6a5750;
  line-height: 1.8;
}

.stars {
  margin-top: 18px;
  color: #c98f7b;
  letter-spacing: 0.08em;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 32px;
}

.location-card {
  padding: 32px;
}

.location-card h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.location-card p {
  margin: 12px 0 24px;
  color: #6b564f;
  line-height: 1.8;
}

.location-info div {
  margin-bottom: 16px;
}

.location-info strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.location-info span a {
  color: var(--accent-strong);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder {
  min-height: 380px;
  background: linear-gradient(180deg, rgba(232, 214, 203, 0.55), rgba(255, 255, 255, 0.9));
  display: grid;
  place-items: center;
  color: #7d645b;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  }

  .map-iframe {
    width: 100%;
    height: 380px;
    border: 0;
    min-height: 380px;
    display: block;
  }
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 12px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  color: var(--muted);
}

.footer-copy {
  margin: 30px auto 0;
  max-width: 1200px;
  color: #8d7b72;
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(135, 102, 89, 0.85);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.progress-ring {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 200px;
  background: rgba(232, 209, 200, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.progress-ring::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #c89f8f 0%, #f0e5dc 100%);
  transform-origin: top;
  transform: scaleY(var(--progress-scale, 0));
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(246, 239, 232, 0.96);
}

.loader-inner {
  display: flex;
  gap: 12px;
}

.loader-inner span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c89f8f;
  animation: pulse 0.9s infinite ease-in-out;
}

.loader-inner span:nth-child(2) {
  animation-delay: 0.15s;
}

.loader-inner span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 5vw;
  }

  .location-grid,
  .about-grid,
  .footer-inner,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .menu-pdf-card {
    flex-direction: column;
    text-align: center;
  }

  .menu-slider-section,
  .gallery-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header {
    padding: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 100vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.4rem);
  }

  .about-img,
  .gallery-item {
    height: 280px;
  }

  .menu-card img {
    height: 220px;
  }

  .slider-container {
    grid-auto-columns: minmax(240px, 260px);
  }

  .progress-ring {
    display: none;
  }

  .footer-inner {
    padding-top: 24px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 60px 5vw;
  }

  .menu-tab {
    flex: 1;
    width: 100%;
  }

  .hero-image {
    border-radius: 32px;
  }

  .about-img,
  .gallery-item,
  .menu-card img,
  .map-placeholder {
    height: 240px;
  }

  .menu-pdf-card {
    padding: 28px;
  }
}
