/* ===== Design tokens ===== */
:root {
  --green-deep: #12211a;
  --green: #1c3428;
  --green-soft: #2a4a38;
  --gold: #c9a24b;
  --gold-soft: #dcbf7d;
  --gold-line: rgba(201, 162, 75, 0.45);
  --cream: #f6f1e4;
  --cream-deep: #efe7d3;
  --paper: #fdfbf4;
  --ink: #23201a;
  --ink-soft: #6b645a;
  --line: #e2d9c4;
  --shadow: 0 18px 44px rgba(18, 33, 26, 0.10);
  --shadow-soft: 0 8px 22px rgba(18, 33, 26, 0.07);
  --radius: 6px;
  --maxw: 1160px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--gold); }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--gold); color: var(--green-deep); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--green-deep); }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(246, 241, 228, .55); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-green { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-green:hover { background: var(--green-soft); border-color: var(--green-soft); color: var(--cream); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 33, 26, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-badge { width: 46px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: .02em;
}
.brand-name {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .34em;
  color: var(--gold);
}
.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-menu a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 18px !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold); color: var(--green-deep) !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding: 110px 0 130px;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(201, 162, 75, .16), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 115%, rgba(201, 162, 75, .10), transparent 65%),
    linear-gradient(180deg, var(--green-deep), var(--green) 55%, var(--green-deep));
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(246,241,228,.025) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  width: clamp(120px, 16vw, 170px);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .45));
}
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .42em;
  font-size: .74rem; font-weight: 600;
  margin: 0 0 20px; color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--cream);
  text-wrap: balance;
}
.hero-rule {
  display: flex; align-items: center; gap: 16px;
  margin: 0 0 26px;
  color: var(--gold);
  font-size: .8rem;
}
.hero-rule::before, .hero-rule::after {
  content: "";
  width: 72px; height: 1px;
  background: var(--gold-line);
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  max-width: 620px;
  margin: 0 auto 40px;
  color: rgba(246, 241, 228, .88);
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.hero-hours {
  text-transform: uppercase; letter-spacing: .24em;
  font-size: .74rem; font-weight: 600;
  margin: 0; color: rgba(246, 241, 228, .65);
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
  pointer-events: none;
}

/* ===== Heritage band ===== */
.heritage { background: var(--cream); border-bottom: 1px solid var(--line); }
.heritage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 44px 28px;
}
.heritage-item {
  text-align: center;
  padding: 8px 12px;
  border-left: 1px solid var(--line);
}
.heritage-item:first-child { border-left: none; }
.heritage-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  color: var(--green);
  line-height: 1.15;
}
.heritage-label {
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .66rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ===== Sections ===== */
.section { padding: 104px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: .38em;
  font-size: .72rem; font-weight: 600;
  color: var(--gold); margin: 0 0 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.12;
  margin: 0 0 16px; color: var(--green);
  text-wrap: balance;
}
.section-sub { color: var(--ink-soft); margin: 0; font-size: 1.02rem; }

/* ===== Menu ===== */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  align-items: start;
}
.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}
.menu-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--green);
  text-align: center;
}
.menu-card-title::after {
  content: "";
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}
.menu-card-note {
  text-align: center; margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: .88rem; font-style: italic; color: var(--ink-soft);
}
.menu-card-title + .menu-list { margin-top: 22px; }
.menu-card-note + .menu-list { margin-top: 12px; }
.menu-list li { padding: 11px 0; }
.menu-list li + li { border-top: 1px solid rgba(226, 217, 196, .55); }
.menu-list .item { display: flex; align-items: baseline; }
.menu-list .no {
  order: 0;
  flex: none;
  min-width: 3.1em;
  margin-right: 6px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: .92rem;
  color: var(--gold);
}
.menu-list .name { order: 1; font-weight: 500; font-size: .93rem; line-height: 1.5; }
.menu-list .name em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.menu-list .item::after {
  content: "";
  order: 2;
  flex: 1;
  min-width: 20px;
  margin: 0 8px;
  border-bottom: 1px dotted var(--gold-line);
  transform: translateY(-4px);
}
.menu-list .price {
  order: 3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--green);
  white-space: nowrap;
}
.menu-note {
  text-align: center; margin: 52px auto 0; max-width: 620px;
  font-family: var(--font-display); font-style: italic;
  color: var(--ink-soft); font-size: 1rem;
}
.menu-note a { font-style: normal; font-weight: 600; }

/* ===== Gallery ===== */
.gallery {
  background:
    radial-gradient(ellipse 80% 70% at 50% -20%, rgba(201, 162, 75, .10), transparent 60%),
    var(--green-deep);
  overflow: hidden;
}
.gallery .section-title { color: var(--cream); }
.gallery .section-head { margin-bottom: 48px; }
.gallery-shell { position: relative; }
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px max(28px, calc((100vw - var(--maxw)) / 2 + 28px)) 22px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.gallery-track li { flex: none; scroll-snap-align: center; }
.gallery-item {
  display: block;
  padding: 0;
  border: 1px solid rgba(201, 162, 75, .25);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  cursor: zoom-in;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.gallery-item img {
  height: clamp(240px, 34vw, 380px);
  width: auto;
  display: block;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(18, 33, 26, .85);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.gallery-btn:hover { background: var(--gold); color: var(--green-deep); }
.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }
.gallery-hint {
  text-align: center;
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  color: rgba(246, 241, 228, .55);
}

/* ===== Lightbox ===== */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
}
.lightbox::backdrop { background: rgba(10, 18, 14, .92); }
.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  width: auto; height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--green-deep);
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--gold); color: var(--green-deep); }

/* ===== About ===== */
.about { background: var(--paper); }
.about-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
.about-text .section-title, .about-text .section-eyebrow { text-align: left; }
.about-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green);
  margin: 0 0 20px;
}
.about-text p { color: var(--ink-soft); margin: 0 0 20px; }
.about-text .btn { margin-top: 10px; }
.about-side { display: grid; gap: 28px; }
.about-photo { margin: 0; }
.about-photo img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo figcaption {
  margin-top: 14px; text-align: center;
  font-family: var(--font-display); font-style: italic;
  font-size: .92rem; color: var(--ink-soft);
}
.about-card {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 34px 36px;
  color: var(--cream);
}
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 22px;
  color: var(--gold-soft);
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-features li {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; font-weight: 600;
  color: var(--cream);
  padding-left: 18px;
  position: relative;
}
.about-features li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
  font-size: .6rem;
  top: 3px;
}

/* ===== Hours ===== */
.hours {
  background:
    radial-gradient(ellipse 80% 70% at 50% -20%, rgba(201, 162, 75, .12), transparent 60%),
    var(--green-deep);
}
.hours .section-title { color: var(--cream); }
.hours .section-eyebrow { color: var(--gold); }
.hours-card {
  max-width: 560px; margin: 0 auto;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 14px 0;
}
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 38px;
}
.hours-list li + li { border-top: 1px solid rgba(201, 162, 75, .18); }
.hours-list .day {
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .78rem; font-weight: 600; color: var(--cream);
}
.hours-list .time { font-family: var(--font-display); font-weight: 600; color: var(--gold-soft); }
.hours-list .closed { color: rgba(246, 241, 228, .45); font-weight: 400; font-style: italic; }

/* ===== Visit ===== */
.visit { background: var(--paper); }
.visit-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
.visit-info .section-title, .visit-info .section-eyebrow { text-align: left; }
.visit-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.visit-item:last-of-type { border-bottom: 1px solid var(--line); }
.visit-item h3 {
  text-transform: uppercase; letter-spacing: .24em;
  margin: 0 0 8px; font-size: .74rem; font-weight: 700;
  color: var(--gold);
}
.visit-item p { margin: 0; color: var(--ink); font-size: 1.02rem; }
.visit-item p a { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.visit-fine { font-size: .85rem !important; color: var(--ink-soft) !important; margin-top: 4px !important; }
.visit-link {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .74rem; font-weight: 700;
  display: inline-block; margin-top: 10px;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 400px;
  background: var(--cream-deep);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 64px 0 48px;
  text-align: center;
  border-top: 1px solid var(--gold-line);
}
.footer-badge { width: 84px; height: auto; margin: 0 auto 20px; filter: drop-shadow(0 6px 16px rgba(0,0,0,.4)); }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 18px; }
.site-footer .brand-mark { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--cream); }
.site-footer .brand-name { font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .38em; color: var(--gold); }
.footer-tag {
  font-family: var(--font-display); font-style: italic;
  margin: 0 0 14px; color: rgba(246, 241, 228, .75);
}
.footer-addr { margin: 0 0 22px; font-size: .92rem; color: rgba(246, 241, 228, .75); }
.site-footer a { color: var(--gold-soft); }
.site-footer a:hover { color: var(--gold); }
.footer-copy { margin: 0; font-size: .8rem; color: rgba(246, 241, 228, .45); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .visit-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--green-deep);
    border-bottom: 1px solid var(--gold-line);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav-menu.open { max-height: 420px; padding: 10px 0 16px; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a { display: block; padding: 14px; border-bottom: none; }
  .nav-menu .nav-cta { display: inline-block; margin: 12px auto 4px; padding: 11px 28px !important; }

  .hero-eyebrow { letter-spacing: .26em; font-size: .68rem; }

  .heritage-grid { grid-template-columns: 1fr 1fr; gap: 22px 0; padding: 36px 20px; }
  .heritage-item:nth-child(3) { border-left: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 84px 0 96px; }
  .hours-list li { padding: 14px 24px; }

  .gallery-btn { display: none; }
  .gallery-item img { height: clamp(220px, 52vw, 300px); }
}
