:root {
  --ink: #1f2026;
  --muted: #6f675e;
  --cream: #fbf2e7;
  --soft: #fffaf3;
  --white: #ffffff;
  --line: #eadcc9;
  --gold: #b88919;
  --gold-deep: #8d680f;
  --charcoal: #242326;
  --shadow: 0 28px 80px rgba(72, 52, 28, .14);
}

* { box-sizing: border-box; }
html { scroll-padding-top: calc(var(--header-height, 92px) + 18px); }
body {
  margin: 0;
  padding-top: var(--header-height, 92px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(184, 137, 25, .08), transparent 34%),
    var(--cream);
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 5vw;
  background: rgba(255, 250, 243, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(72, 52, 28, .08);
  backdrop-filter: blur(14px);
}
.brand img { width: clamp(150px, 16vw, 230px); max-height: 82px; object-fit: contain; }
.site-nav { display: flex; gap: 18px; font-size: 14px; font-weight: 750; color: #363239; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--gold-deep); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.social-icons { display: flex; align-items: center; gap: 8px; }
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}
.social-icon-link img { width: 23px; height: 23px; object-fit: contain; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-weight: 850;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.btn.primary, .primary {
  background: linear-gradient(135deg, #c89b27, #8b650e);
  color: #fffaf0;
  border-color: #9a7112;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 50vw);
  gap: 5vw;
  align-items: center;
  min-height: 82vh;
  padding: 7vw 5vw 6vw;
}
.hero-copy { max-width: 700px; }
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.8vw, 94px);
  line-height: .98;
  font-weight: 500;
}
.hero p { max-width: 650px; font-size: 18px; color: #49443e; }
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(184, 137, 25, .38);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.section, .split-section { padding: 82px 5vw; }
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 42vw) minmax(0, 1fr);
  gap: 5vw;
  align-items: center;
}
.split-section > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(184, 137, 25, .34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-section, .reviews-section, .menu-section:nth-of-type(even) { background: var(--soft); }
.services-section, .access-section { background: #f7ead9; }

h1, h2, h3 { line-height: 1.15; }
h2 {
  margin: 0 0 18px;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 500;
}
h3 { margin: 0 0 10px; font-size: 22px; }
p { color: #4d4741; }

.menu-source {
  max-width: 760px;
  color: var(--muted);
  font-weight: 650;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.service-grid article {
  padding: 24px;
  border: 1px solid rgba(184, 137, 25, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 46px rgba(72, 52, 28, .08);
}

.gallery-section { background: var(--charcoal); color: #fffaf0; }
.gallery-section p, .gallery-section .eyebrow { color: #e4c472; }
.gallery-scroll {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-inline: -5vw;
  padding: 0 5vw 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(255, 255, 255, .18);
}
.gallery-scroll figure {
  flex: 0 0 clamp(240px, 30vw, 420px);
  margin: 0;
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}
.gallery-scroll figure:nth-child(2) { flex-basis: clamp(280px, 36vw, 500px); aspect-ratio: 5 / 6; transform: translateY(24px); }
.gallery-scroll figure:nth-child(3) { flex-basis: clamp(230px, 28vw, 380px); aspect-ratio: 3 / 4; }
.gallery-scroll figure:nth-child(4) { flex-basis: clamp(300px, 38vw, 540px); aspect-ratio: 5 / 4; transform: translateY(18px); }
.gallery-scroll figure:nth-child(5) { flex-basis: clamp(250px, 31vw, 430px); aspect-ratio: 4 / 5; }
.gallery-scroll figure:nth-child(6) { flex-basis: clamp(285px, 34vw, 480px); aspect-ratio: 1 / 1; transform: translateY(28px); }
.gallery-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(228, 196, 114, .4);
  border-radius: 8px;
  cursor: zoom-in;
}

.info-list { display: grid; grid-template-columns: 90px 1fr; gap: 12px 18px; }
.info-list dt { font-weight: 900; color: var(--gold-deep); }
.info-list dd { margin: 0; }
.hours-list { display: grid; gap: 10px; max-width: 620px; }
.hours-list div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.4fr);
  gap: 20px;
  align-items: baseline;
}
.hours-list span, .hours-list strong { font-weight: 700; }

.menu-page { min-height: 80vh; background: var(--soft); }
.menu-hero {
  padding-bottom: 52px;
  background:
    linear-gradient(135deg, rgba(184, 137, 25, .16), transparent 46%),
    var(--cream);
}
.menu-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1;
  font-weight: 500;
}
.menu-section { padding-top: 48px; padding-bottom: 56px; }
.menu-section h2 { font-size: clamp(28px, 3.4vw, 44px); }
.menu-list {
  display: grid;
  gap: 0;
  max-width: 980px;
  border-top: 1px solid var(--line);
}
.menu-list article {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.menu-list span {
  display: grid;
  gap: 2px;
  font-weight: 750;
}
.menu-list small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.menu-list strong {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-size: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 5vw;
  border-top: 1px solid var(--line);
  background: #fffaf3;
  color: var(--muted);
}
.site-footer img { width: 160px; max-height: 72px; object-fit: contain; }
.site-footer p { margin: 0; max-width: 660px; color: var(--muted); }

.visit-social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.visit-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
  font-weight: 850;
}
.visit-social-link img { width: 22px; height: 22px; object-fit: contain; }

.reveal-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.gallery-scroll .reveal-on-scroll:nth-child(2) { transform: translateY(52px); }
.gallery-scroll .reveal-on-scroll:nth-child(4) { transform: translateY(46px); }
.gallery-scroll .reveal-on-scroll:nth-child(6) { transform: translateY(56px); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.lightbox-backdrop { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(15,15,15,.78); opacity: 0; pointer-events: none; transition: opacity .24s ease; }
.lightbox-backdrop.is-open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop img { max-width: min(1120px, 92vw); max-height: 86vh; object-fit: contain; border-radius: 8px; box-shadow: 0 26px 90px rgba(0,0,0,.45); transform: scale(.96); transition: transform .24s ease; }
.lightbox-backdrop.is-open img { transform: scale(1); }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; color: var(--ink); font-size: 28px; line-height: 1; cursor: pointer; }
@media (prefers-reduced-motion: reduce) { .reveal-on-scroll, .lightbox-backdrop, .lightbox-backdrop img { transition: none; } }

.menu-toggle { display: none; position: relative; width: 46px; height: 42px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); cursor: pointer; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 999px; background: var(--ink); transition: transform .22s ease, opacity .22s ease, top .22s ease; }
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-header { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .menu-toggle { display: inline-flex; grid-column: 2; grid-row: 1; }
  .site-nav { display: none; width: 100%; grid-column: 1 / -1; flex-direction: column; gap: 0; padding: 10px 0 4px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-top: 1px solid var(--line); }
  .header-actions { grid-column: 1 / -1; }
  .brand img { width: 150px; }
}

@media (max-width: 760px) {
  .split-section { grid-template-columns: 1fr; }
  .section, .split-section { padding: 58px 5vw; }
  .hours-list div { grid-template-columns: 1fr; gap: 2px; }
  .info-list { grid-template-columns: 1fr; gap: 4px; }
  .info-list dd { margin-bottom: 12px; }
  .menu-list article { gap: 16px; }
}

@media (max-width: 520px) {
  .header-actions { align-items: flex-start; flex-direction: column; }
  .menu-list article { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .btn { width: 100%; }
  .button-row { width: 100%; }
}
