*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #064e3b;
  --green: #065f46;
  --green-light: #047857;
  --cream: #faf8f4;
  --cream-warm: #f5f0e8;
  --sand: #d4a574;
  --sand-light: #e8cdb5;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --white: #ffffff;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--ease) 0.4s, padding var(--ease) 0.4s, backdrop-filter var(--ease) 0.4s;
}

#site-header.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(6, 95, 70, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color var(--ease) 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

#site-header.scrolled .logo {
  color: var(--green-deep);
}

.logo-icon {
  opacity: 0.85;
}

/* ── Mobile menu toggle ── */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform var(--ease) 0.3s, opacity var(--ease) 0.3s;
  transform-origin: center;
}

#site-header.scrolled #menu-toggle span {
  background: var(--green-deep);
}

#menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
#menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Menu overlay ── */
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease) 0.4s;
}

#menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#menu-inner {
  position: relative;
  text-align: center;
}

#menu-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity var(--ease) 0.3s;
  padding: 8px;
}

#menu-close:hover { opacity: 1; }

#menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  transition: color var(--ease) 0.3s, transform var(--ease) 0.3s;
  display: inline-block;
}

#menu-nav a:hover {
  color: var(--sand);
  transform: translateX(6px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(6, 78, 59, 0.55) 0%,
    rgba(6, 78, 59, 0.4) 40%,
    rgba(6, 78, 59, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--ease) 0.3s;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section shared ── */
section {
  padding: 120px 0;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.section-title--center {
  text-align: center;
}

/* ── About ── */
.about {
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--ease) 0.6s;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin: 32px 0;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.value {
  border-left: 1px solid var(--sand-light);
  padding-left: 20px;
}

.value-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Menu ── */
.menu {
  background: var(--cream-warm);
}

.menu-intro {
  max-width: 520px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.category-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand-light);
}

.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: padding-left var(--ease) 0.3s;
}

.menu-item:hover {
  padding-left: 8px;
}

.item-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.item-detail {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 48px;
  font-style: italic;
}

/* ── Visit ── */
.visit {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.visit-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.visit-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.visit-block a {
  color: var(--green);
  border-bottom: 1px solid var(--sand-light);
  transition: border-color var(--ease) 0.3s;
}

.visit-block a:hover {
  border-color: var(--green);
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hour-row span:first-child {
  color: var(--text);
  font-weight: 400;
}

.visit-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--cream-warm);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
}

.visit-actions {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  justify-content: center;
  flex-wrap: wrap;
}

.visit-actions .btn-ghost {
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.visit-actions .btn-ghost:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* ── Footer ── */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.6);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-brand .logo {
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.7);
  transition: color var(--ease) 0.3s;
}

.footer-links a:hover {
  color: var(--sand-light);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.4);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image img {
    height: 360px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit-map {
    height: 300px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 80px 0;
  }

  #menu-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .about-values {
    gap: 24px;
  }
}
