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

:root {
  --emerald: #064e3b;
  --emerald-light: #065f46;
  --emerald-muted: #a7f3d0;
  --cream: #fefdf8;
  --cream-warm: #faf8f0;
  --cream-dark: #f5f0e6;
  --ink: #1a1a1a;
  --ink-light: #3d3d3d;
  --ink-muted: #6b6b6b;
  --gold: #d4a853;
  --gold-light: #fef3c7;
  --font-serif: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1120px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-style: italic;
  color: var(--emerald);
}

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

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--ink-muted);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 3.5rem;
  font-style: italic;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(254, 253, 248, 0.5);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(254, 253, 248, 0.1);
}

.btn-submit {
  background: var(--emerald);
  color: var(--cream);
  border: none;
  padding: 0.9rem 2.25rem;
}

.btn-submit:hover {
  background: var(--emerald-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--emerald);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--emerald);
  border-radius: 2px;
}

.logo-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--emerald); }
.nav-links a:hover::after { width: 100%; }

.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(--ink);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── 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-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 30, 22, 0.55) 0%,
    rgba(6, 30, 22, 0.70) 50%,
    rgba(6, 30, 22, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--emerald-muted);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.hero-headline .accent {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-style: italic;
  color: var(--emerald-muted);
}

.hero-sub {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  color: rgba(254, 253, 248, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(254, 253, 248, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ── Thin Divider ─────────────────────────────────── */
.thin-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--emerald);
  opacity: 0.2;
}

.divider-diamond {
  font-size: 0.5rem;
  color: var(--emerald);
  opacity: 0.5;
}

/* ── Story ────────────────────────────────────────── */
.story {
  padding: 7rem 0;
  background: var(--cream);
}

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

.story-image-wrap {
  position: relative;
}

.story-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--emerald);
  opacity: 0.15;
  border-radius: 2px;
  z-index: 0;
}

.story-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.story-text p {
  color: var(--ink-light);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(6, 78, 59, 0.12);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.stat-value {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  color: var(--emerald);
  font-style: italic;
}

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

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

.menu-card {
  background: var(--cream);
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: 3px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6, 78, 59, 0.08);
  border-color: rgba(6, 78, 59, 0.18);
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 78, 59, 0.15);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  color: var(--emerald);
}

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

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ── Image Banner ─────────────────────────────────── */
.image-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.image-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 30, 22, 0.45);
}

.image-banner-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.banner-quote {
  font-family: var(--font-elegant);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.banner-attr {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-muted);
}

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

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

.visit-address {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-light);
  margin-bottom: 2rem;
}

.visit-address strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}

.visit-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.visit-detail a {
  color: var(--emerald);
  transition: color var(--transition);
}

.visit-detail a:hover { color: var(--emerald-light); }

.visit-detail svg {
  flex-shrink: 0;
  color: var(--emerald);
  opacity: 0.7;
}

.hours-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.hours-note {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-light);
}

.visit-map-wrap {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(6, 78, 59, 0.08);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--emerald);
}

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

.contact .section-eyebrow { color: var(--emerald-muted); }
.contact .section-title { color: var(--cream); }
.contact .section-title em { color: var(--emerald-muted); }
.contact .section-subtitle { display: none; }

.contact-text p:last-child {
  font-size: 1rem;
  color: rgba(254, 253, 248, 0.65);
  line-height: 1.8;
  max-width: 380px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(254, 253, 248, 0.07);
  border: 1px solid rgba(254, 253, 248, 0.15);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(254, 253, 248, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(254, 253, 248, 0.4);
  background: rgba(254, 253, 248, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(167, 243, 208, 0.12);
  border: 1px solid rgba(167, 243, 208, 0.25);
  border-radius: 2px;
  color: var(--emerald-muted);
  font-size: 0.9rem;
}

.form-success.visible { display: block; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: #042e24;
  padding: 3rem 0;
  border-top: 1px solid rgba(254, 253, 248, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--cream);
}

.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 1rem;
  border-color: rgba(254, 253, 248, 0.25);
  color: var(--cream);
}

.footer-copy,
.footer-address {
  font-size: 0.78rem;
  color: rgba(254, 253, 248, 0.4);
}

/* ── Mobile Nav Overlay ───────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(254, 253, 248, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ink);
  transition: color var(--transition);
}

.nav-overlay a:hover { color: var(--emerald); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .story-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-image-wrap { order: -1; max-width: 500px; margin: 0 auto; }

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

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }

  .hero-content { padding: 7rem 1.25rem 5rem; }

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

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

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

  .story-stats { flex-direction: column; gap: 1.5rem; }

  .image-banner { height: 300px; }

  .visit-grid { gap: 2.5rem; }
}
