/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1E293B;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Utility ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #0F172A; color: #F8F6F0; padding: .75rem 1.25rem;
  z-index: 200; font-weight: 600; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ─── Typography ─── */
:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --gold: #C8960C;
  --gold-light: #D4A017;
  --cream: #FAFAF8;
  --cream-dark: #F2F0EA;
  --sand: #E8E4DA;
  --text: #1E293B;
  --text-muted: #475569;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(15,23,42,.08), 0 4px 16px rgba(15,23,42,.06);
  --shadow-lg: 0 4px 24px rgba(15,23,42,.10), 0 12px 48px rgba(15,23,42,.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8125rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9375rem;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: var(--navy-light); box-shadow: var(--shadow); }
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-light); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn--outline-light {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--sand);
}
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-family: var(--font-serif);
}
.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .5rem .875rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--navy); background: var(--cream-dark); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--cream-dark); }
.hamburger {
  display: block;
  width: 20px; height: 14px;
  position: relative;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  padding-top: 72px;
  background: var(--navy);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-content { color: var(--white); padding: 2rem 0; }
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.8);
}
.hero-trust .icon { color: var(--gold-light); flex-shrink: 0; }
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.badge-label { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.badge-year { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.badge-sub { font-size: .8125rem; color: var(--text-muted); }

/* ─── About ─── */
.about { padding: 6rem 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.about-features { margin-top: 1.5rem; display: grid; gap: .75rem; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.5;
}
.about-features .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ─── Menu ─── */
.menu { padding: 6rem 0; background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.menu-card-img { overflow: hidden; }
.menu-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.menu-card-body { padding: 1.5rem; }
.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.menu-list { display: flex; flex-direction: column; gap: .625rem; }
.menu-list li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.menu-note {
  text-align: center;
  font-size: .875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Story ─── */
.story { padding: 6rem 0; background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.story-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.story-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.stat { text-align: center; flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .375rem;
}
.stat-label { font-size: .8125rem; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--sand);
  flex-shrink: 0;
}
.story-images { position: relative; min-height: 520px; }
.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img-main img { width: 100%; height: 520px; object-fit: cover; display: block; }
.story-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.story-img-secondary img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* ─── Visit ─── */
.visit { padding: 6rem 0; background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.visit-info address { margin-bottom: 1.5rem; }
.visit-info p { color: var(--text-muted); line-height: 1.7; }
.visit-hours {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.visit-hours li {
  display: flex;
  justify-content: space-between;
  padding: .625rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: .9375rem;
}
.visit-hours li span:first-child { color: var(--text); font-weight: 500; }
.visit-hours li span:last-child { color: var(--text-muted); }
.visit-contact { display: flex; flex-direction: column; gap: .75rem; }
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}
.contact-item:hover { color: var(--gold); }
.contact-item .icon { color: var(--gold); }
.visit-map { }
.map-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  border: 1px solid var(--sand);
}
.map-icon { color: var(--navy); opacity: .35; margin-bottom: .25rem; }
.map-placeholder p { font-size: 1rem; color: var(--text); font-weight: 500; }
.map-placeholder .btn { margin-top: .5rem; }

/* ─── CTA ─── */
.cta {
  padding: 6rem 0;
  background: var(--navy);
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta .section-eyebrow { color: var(--gold-light); }
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.68);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact { padding: 6rem 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: .875rem; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--text);
}
.contact-details .icon { color: var(--gold); flex-shrink: 0; }
.contact-details a { transition: color .2s; }
.contact-details a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .6875rem .875rem;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94A3B8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1rem;
  background: #ECFDF3;
  border: 1px solid #A7F3D0;
  border-radius: 8px;
  color: #065F46;
  font-size: .9375rem;
  margin-top: 1rem;
}
.form-success .icon { color: #059669; }

/* ─── Footer ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .9375rem; line-height: 1.7; max-width: 280px; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  padding: .25rem 0;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-hours p { font-size: .875rem; line-height: 1.8; }
.footer-hours p:first-child { font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: .25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── Scroll Top ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold); }
.scroll-top .icon { color: var(--white); }

/* ─── Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 2rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,248,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .main-nav a { font-size: 1.0625rem; padding: .875rem 1rem; }
  .main-nav .btn--gold { text-align: center; margin-top: .5rem; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; padding: 2rem 0 1rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { align-items: center; }
  .hero-image { order: 1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -1.5rem; }

  .about-grid,
  .story-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .story-images { min-height: 360px; }
  .story-img-main img { height: 360px; }
  .story-img-secondary { width: 60%; right: -.5rem; bottom: -1.5rem; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:last-child { grid-column: span 1; max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
  .story-stats { flex-direction: column; gap: 1.25rem; }
  .stat-divider { width: 48px; height: 1px; }
}
