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

:root {
  --emerald-950: #042f23;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50:  #faf9f6;
  --cream-100: #f5f3ed;
  --cream-200: #e8e4d8;
  --cream-300: #d4cfbe;
  --stone-50:  #f8f7f4;
  --stone-100: #f0eeea;
  --stone-200: #e2dfd6;
  --stone-400: #a8a293;
  --stone-500: #787165;
  --stone-600: #5c564d;
  --stone-700: #44403a;
  --stone-800: #2e2b26;
  --stone-900: #1a1814;
  --radius:    12px;
  --radius-sm: 8px;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--stone-800);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--emerald-800);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--emerald {
  background: var(--emerald-800);
  color: #fff;
  border-color: var(--emerald-800);
}
.btn--emerald:hover { background: var(--emerald-700); border-color: var(--emerald-700); }

.btn--outline {
  background: transparent;
  color: var(--emerald-800);
  border-color: var(--emerald-800);
}
.btn--outline:hover { background: var(--emerald-800); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--cream {
  background: var(--cream-100);
  color: var(--emerald-900);
  border-color: var(--cream-100);
}
.btn--cream:hover { background: var(--cream-200); }

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--stone-900);
  letter-spacing: -0.01em;
}
.logo-mark { color: var(--emerald-700); flex-shrink: 0; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--stone-600);
  position: relative;
  transition: color var(--transition);
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald-700);
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--emerald-800); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--stone-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #042f23 0%, #065f46 40%, #047857 70%, #059669 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.gradient-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  top: -10%; right: -5%;
}
.gradient-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #34d399 0%, transparent 70%);
  bottom: 5%; left: 5%;
}
.gradient-orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #6ee7b7 0%, transparent 70%);
  top: 30%; left: 25%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 400;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Features ─────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--cream-50);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--emerald-700);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--stone-500);
  line-height: 1.65;
}

/* ─── Section helpers ──────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--stone-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-title--dark { color: var(--stone-900); }
.section-lead {
  font-size: 1.0625rem;
  color: var(--stone-500);
  line-height: 1.7;
  max-width: 520px;
}
.section-lead--light { color: rgba(255,255,255,0.72); }

/* ─── Menu ─────────────────────────────────────────── */
.menu {
  padding: 100px 0;
  background: var(--cream-100);
}
.menu .container > .section-label,
.menu .container > .section-title,
.menu .container > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.menu-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.menu-card-body { padding: 24px; }
.menu-card-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 8px;
}
.menu-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.menu-card-body p {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.65;
}
.menu-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--stone-400);
  margin-top: 40px;
  font-style: italic;
}

/* ─── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--cream-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/8;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-200);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--emerald-800);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--stone-500);
  margin-top: 2px;
}

/* ─── Visit ────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
  top: -15%; right: -8%;
  border-radius: 50%;
  pointer-events: none;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.visit-info { position: relative; }
.visit-details {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-icon {
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-detail strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.visit-detail p, .visit-detail a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--emerald-400); text-decoration: underline; }

.visit-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/6;
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.visit-map-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.visit-map-overlay svg { color: var(--emerald-400); }
.visit-map-overlay span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ─── CTA ──────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-bg .gradient-orb { opacity: 0.35; }
.cta-bg .gradient-orb--1 { width: 400px; height: 400px; top: -10%; left: -5%; }
.cta-bg .gradient-orb--2 { width: 300px; height: 300px; bottom: -10%; right: 5%; }

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--cream-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form { margin-top: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--stone-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--stone-800);
  background: #fff;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--emerald-800);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 16px;
}
.contact-card address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--stone-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-card p { font-size: 0.9375rem; color: var(--stone-600); }
.contact-card a { color: var(--emerald-700); transition: color var(--transition); }
.contact-card a:hover { color: var(--emerald-600); }

.contact-card--accent {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  color: #fff;
}
.contact-card--accent .contact-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 8px;
}
.contact-card--accent .contact-card-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ─── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--stone-900);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}
.logo--footer { color: #fff; }
.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.8125rem;
}

/* ─── Mobile Nav Overlay ───────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid,
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .nav-list {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream-50);
    flex-direction: column;
    align-items: stretch;
    padding: 96px 32px 40px;
    gap: 8px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 95;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a {
    font-size: 1.0625rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-200);
  }
  .nav-list a::after { display: none; }
  .nav-toggle { display: flex; z-index: 101; }

  .features-grid,
  .menu-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero-inner { padding: 100px 20px 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
}
