/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #3A2A1F;
  background: #FDF8F4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --terracotta: #C4713B;
  --terracotta-deep: #A85A2A;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --cream: #FDF8F4;
  --brown: #3A2A1F;
  --brown-light: #5C4033;
  --white: #FFFFFF;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.label-center { text-align: center; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--terracotta); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-large { padding: 16px 36px; font-size: 0.95rem; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(196,113,59,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--brown); }
.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav.scrolled .nav-menu a { color: var(--brown-light); }
.nav-menu a:hover { color: var(--terracotta); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: 100px !important;
  transition: var(--transition);
}
.nav.scrolled .nav-cta { border-color: var(--terracotta) !important; color: var(--terracotta) !important; }
.nav-cta:hover { background: var(--terracotta) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
  z-index: 1001;
}
.nav-toggle-line {
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav.scrolled .nav-toggle-line { background: var(--brown); }
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,42,31,0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(164,90,42,0.82) 0%,
    rgba(196,113,59,0.72) 30%,
    rgba(232,213,192,0.55) 60%,
    rgba(253,248,244,0.45) 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58,42,31,0.15) 0%, transparent 40%, rgba(58,42,31,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  animation: heroFade 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-text .label { text-align: left; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 1rem;
  color: var(--brown-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p em { color: var(--terracotta); font-family: 'Playfair Display', serif; font-style: italic; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.stat { text-align: left; }
.stat-divider { padding-left: 32px; border-left: 1px solid var(--sand); }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
}

/* ── Divider ── */
.divider {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* ── Menu ── */
.menu {
  padding: 100px 0 120px;
  background: var(--sand-light);
}
.menu .container { max-width: 900px; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown-light);
  border: 1px solid transparent;
  transition: var(--transition);
}
.menu-tab:hover { color: var(--terracotta); border-color: var(--terracotta); }
.menu-tab.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.menu-panel { display: none; animation: fadeIn 0.4s ease; }
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.menu-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(196,113,59,0.12);
}
.menu-item:nth-child(odd) { padding-right: 40px; }
.menu-item:nth-child(even) { padding-left: 40px; border-left: 1px solid rgba(196,113,59,0.12); }
.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0 8px;
  margin-bottom: 6px;
}
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
}
.menu-item-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--sand) 0, var(--sand) 4px, transparent 4px, transparent 8px);
}
.menu-item-note {
  font-size: 0.78rem;
  color: var(--terracotta);
  white-space: nowrap;
  font-weight: 400;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ── Gallery ── */
.gallery {
  padding: 100px 0 120px;
}
.gallery .container { max-width: 1200px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 1 / 3; }

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0 120px;
  background: var(--sand-light);
}
.testimonials .container { max-width: 1100px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(196,113,59,0.1);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(196,113,59,0.1); }
.testimonial-quote { margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--brown-light);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── Visit ── */
.visit {
  padding: 100px 0 120px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.visit-info .section-title { margin-bottom: 32px; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail svg { flex-shrink: 0; margin-top: 2px; }
.visit-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.6;
}
.visit-detail-value a { color: var(--brown); text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 3px; transition: var(--transition); }
.visit-detail-value a:hover { color: var(--terracotta); text-decoration-color: var(--terracotta); }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 32px rgba(196,113,59,0.12);
}

/* ── Footer ── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--terracotta); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--terracotta); }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-menu a {
    font-size: 1rem;
    color: var(--brown) !important;
  }
  .nav-cta {
    border-color: var(--terracotta) !important;
    color: var(--terracotta) !important;
  }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 360px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) { padding-left: 0; padding-right: 0; border-left: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3 / 4; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { padding-left: 0; border-left: none; padding-top: 20px; border-top: 1px solid var(--sand); }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
