/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50: #faf9f6;
  --cream-100: #f5f3ed;
  --cream-200: #ebe7db;
  --warm-400: #d4a574;
  --warm-500: #c49a6c;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--cream-50);
  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 2rem;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header.scrolled {
  border-bottom-color: var(--cream-200);
  box-shadow: 0 1px 20px rgba(6, 78, 59, 0.04);
}

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

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--emerald-900);
  letter-spacing: 0.02em;
}

.logo-wordmark {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-700);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--emerald-800);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--emerald-800);
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--emerald-900);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--emerald-900);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(4px, -5px);
  opacity: 0;
}

/* ── Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

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

.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--emerald-900);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-overlay-link:hover {
  color: var(--warm-500);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-50);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, var(--emerald-900) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  padding: 4rem 2rem 4rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--emerald-900);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 1px solid;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: var(--emerald-900);
  border-color: var(--emerald-900);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
  background: transparent;
  border-color: var(--cream-200);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  border-color: var(--emerald-800);
  color: var(--emerald-800);
}

.hero-image {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Section Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--emerald-900);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Menu ── */
.menu {
  padding: 6rem 0;
  background: var(--cream-50);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 16px;
  padding: 2.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}

.menu-card:hover {
  border-color: var(--emerald-600);
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.08);
  transform: translateY(-2px);
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-800);
  margin-bottom: 1.25rem;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--emerald-900);
  margin-bottom: 0.75rem;
}

.menu-card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.menu-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-card-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-100);
}

.menu-card-items li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-name {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-primary);
}

.item-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── About ── */
.about {
  padding: 6rem 0;
  background: var(--cream-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-image-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 56/70;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-col {
  padding-top: 1rem;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--emerald-700);
  margin: 1.5rem 0;
}

.about-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--emerald-900);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-200);
}

/* ── Visit ── */
.visit {
  padding: 6rem 0;
  background: var(--cream-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.visit-info {
  padding: 3rem;
  background: var(--emerald-900);
  border-radius: 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.visit-info .section-eyebrow {
  color: var(--warm-400);
}

.visit-info .section-title {
  color: var(--white);
}

.visit-divider {
  width: 48px;
  height: 1px;
  background: rgba(212, 165, 116, 0.5);
  margin: 1.5rem 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
  flex: 1;
}

.visit-detail {
  display: flex;
  gap: 1rem;
}

.visit-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--warm-400);
}

.visit-detail-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.3rem;
}

.visit-detail-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.visit-link {
  transition: color 0.3s ease;
}

.visit-link:hover {
  color: var(--warm-400);
}

.btn-map {
  margin-top: 2.5rem;
  align-self: flex-start;
  background: var(--white);
  border-color: var(--white);
  color: var(--emerald-900);
}

.btn-map:hover {
  background: var(--cream-100);
  border-color: var(--cream-100);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 40px rgba(6, 78, 59, 0.1);
}

/* ── Footer ── */
.footer {
  background: var(--emerald-900);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.footer-brand .logo-mark {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-brand .logo-wordmark {
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.footer-address {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content {
    padding: 4rem 2rem;
    order: 2;
  }

  .hero-image {
    height: 55vh;
    order: 1;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 3rem 1.25rem;
  }

  .hero-headline br {
    display: block;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

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

  .menu-card {
    padding: 1.75rem;
  }

  .about-image-col {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .about-image-main {
    aspect-ratio: 1;
  }

  .about-image-small {
    aspect-ratio: 1;
  }

  .visit-info {
    padding: 2rem;
  }

  .visit-map {
    min-height: 280px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
