:root {
  --ink: #1e1712;
  --ink-soft: #3a2f26;
  --muted: #7a6d62;
  --muted-2: #a2968a;
  --paper: #fbf6ec;
  --paper-2: #f4ecdc;
  --panel: #fffdf7;
  --line: #e6d9c6;
  --line-soft: #efe4d1;
  --green: #2a4632;
  --green-deep: #1e3324;
  --gold: #b58540;
  --gold-soft: #d9b877;
  --clay: #9a533a;
  --cream: #f5e9d3;
  --shadow: 0 30px 80px -20px rgba(49, 35, 24, .28);
  --shadow-sm: 0 8px 30px -10px rgba(49, 35, 24, .18);
  --radius: 4px;
  --radius-lg: 10px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(185, 133, 66, .10), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(47, 74, 54, .06), transparent 55%),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
::selection {
  background: var(--green);
  color: var(--paper);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 246, 236, .78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: padding .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.topbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-color: rgba(229, 217, 202, .8);
  background: rgba(251, 246, 236, .94);
  box-shadow: 0 8px 24px -18px rgba(49, 35, 24, .35);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(47, 74, 54, .25);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 253, 248, .6);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .005em;
}
.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.nav-links a {
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--green);
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transition: right .3s ease;
}
.nav-links a:not(.nav-cta):hover::after {
  right: 0;
}
.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--green);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11.5px;
  transition: background .2s ease;
}
.nav-cta:hover {
  background: var(--green-deep);
}
main {
  overflow: hidden;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(38px, 7vw, 92px) clamp(16px, 5vw, 72px) 52px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(185, 133, 66, .12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(154, 83, 58, .12);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8.2vw, 108px);
  line-height: 1.02;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
}
h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.005em;
}
.lead {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 12px;
}
.button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 54px;
  padding: 10px 26px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px -14px rgba(42, 70, 50, .8);
}
.button.primary:hover {
  background: var(--green-deep);
}
.button.secondary {
  color: var(--green);
  border-color: rgba(42, 70, 50, .28);
  background: rgba(255, 253, 248, .5);
}
.button.secondary:hover {
  background: rgba(255, 253, 248, .9);
  border-color: var(--green);
}
.button-label {
  font-weight: 700;
}
.button-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .85;
  text-transform: uppercase;
}
.hero-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
}
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 36px 0 0;
  padding: 0;
}
.quick-facts div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .7);
  transition: border-color .2s ease, background .2s ease;
}
.quick-facts div:hover {
  border-color: var(--gold-soft);
  background: rgba(255, 253, 248, .95);
}
.quick-facts dt {
  color: var(--clay);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.quick-facts dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
}
.hero-media {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 580px;
}
.hero-media-frame {
  position: relative;
  height: 100%;
  min-height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 22, 17, .55));
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-media:hover img {
  transform: scale(1.03);
}
figcaption {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.hero-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 10px 14px;
  color: rgba(255, 253, 248, .92);
  background: rgba(30, 22, 17, .38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 11.5px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.notice-band {
  margin: 0 clamp(16px, 5vw, 72px);
  padding: 26px clamp(20px, 4vw, 44px);
  color: #fff;
  background: linear-gradient(100deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.notice-band p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 253, 248, .9);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
}
.notice-band strong {
  display: inline;
  margin-right: 6px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1em;
}
.section-grid,
.menu-section,
.hours-card,
.visit-section {
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) clamp(16px, 5vw, 72px);
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
}
.text-stack {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}
.text-stack p:last-child {
  margin-bottom: 0;
}
.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 17px);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 133, 66, .5);
  box-shadow: 0 24px 40px -24px rgba(49, 35, 24, .25);
}
.menu-num {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
}
.menu-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1 1 auto;
}
.menu-tag {
  flex: 0 0 auto;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--clay);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gallery p,
.hours-card p,
.visit-copy p,
footer p {
  color: var(--muted);
  line-height: 1.6;
}
.gallery {
  align-items: center;
  background:
    linear-gradient(180deg, transparent, rgba(255, 253, 248, .35)),
    var(--cream);
}
.gallery-card {
  margin: 0;
}
.gallery-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.gallery-frame img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.gallery-card:hover .gallery-frame img {
  transform: scale(1.04);
}
.gallery-card figcaption {
  margin-top: 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding-bottom: 2px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 70, 50, .35);
  transition: color .2s ease, border-color .2s ease;
}
.text-link:hover {
  color: var(--green-deep);
  border-bottom-color: var(--green);
}
.hours-card {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}
.hours-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.hours-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease, background .25s ease;
}
.hours-card li:hover {
  padding-left: 12px;
  background: rgba(255, 253, 248, .5);
}
.hours-card span {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .04em;
}
.hours-card strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
}
.hours-card strong.closed {
  color: var(--muted-2);
  font-style: italic;
  font-weight: 500;
}
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: stretch;
  padding-top: 20px;
}
.visit-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 56px);
  color: #fff;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.visit-copy::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 133, 66, .28), transparent 70%);
  pointer-events: none;
}
.visit-copy > * {
  position: relative;
}
.visit-copy .eyebrow {
  color: var(--gold-soft);
}
.visit-copy .eyebrow-dot {
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(217, 184, 119, .18);
}
.visit-copy h2 {
  color: #fff;
}
.visit-copy p {
  color: rgba(255, 253, 248, .82);
}
.visit-address {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.45;
  color: rgba(255, 253, 248, .95) !important;
}
.visit-copy .button.primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .5);
}
.visit-copy .button.primary:hover {
  background: var(--cream);
}
.visit-copy .button.secondary {
  color: #fff;
  border-color: rgba(255, 253, 248, .38);
  background: transparent;
}
.visit-copy .button.secondary:hover {
  background: rgba(255, 253, 248, .1);
  border-color: rgba(255, 253, 248, .7);
}
.visit-note {
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13.5px;
  color: rgba(255, 253, 248, .72) !important;
}
.map-panel {
  display: grid;
  min-height: 380px;
  place-items: center;
  padding: 40px;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 30%, rgba(185, 133, 66, .16), transparent 55%),
    linear-gradient(45deg, transparent 47%, rgba(47, 74, 54, .12) 48%, rgba(47, 74, 54, .12) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(47, 74, 54, .08) 48%, rgba(47, 74, 54, .08) 52%, transparent 53%),
    var(--panel);
  text-align: center;
}
.map-panel .map-tag {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.map-panel strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.01em;
}
.map-panel .map-sub {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
footer {
  padding: 32px clamp(16px, 5vw, 72px) 96px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, .5);
}
footer p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.6;
}
.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(229, 217, 202, .95);
  border-radius: 14px;
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px -12px rgba(49, 35, 24, .28);
}
.mobile-actions a {
  display: grid;
  gap: 2px;
  align-content: center;
  min-height: 54px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.mobile-call {
  background: var(--green);
}
.mobile-map {
  background: var(--ink);
}
.mobile-label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.mobile-sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .78;
}
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .hero,
  .section-grid,
  .hours-card,
  .visit-section {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero::before {
    display: none;
  }
  .hero-media,
  .hero-media-frame {
    min-height: 460px;
  }
  .hero-media img {
    min-height: 460px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-cta {
    display: none;
  }
}
@media (max-width: 680px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .topbar {
    padding: 12px 14px;
  }
  .hero {
    padding: 32px 16px 32px;
  }
  h1 {
    font-size: clamp(46px, 13vw, 66px);
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .lead {
    font-size: 16.5px;
    line-height: 1.55;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button,
  .hero-actions a {
    width: 100%;
  }
  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }
  .quick-facts div {
    padding: 12px 10px;
    text-align: center;
  }
  .quick-facts dt {
    font-size: 9.5px;
    letter-spacing: .1em;
  }
  .quick-facts dd {
    font-size: 15px;
    margin-top: 6px;
  }
  .hero-media,
  .hero-media-frame {
    min-height: 380px;
  }
  .hero-media img {
    min-height: 380px;
  }
  .hero-media figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    font-size: 11px;
  }
  .notice-band {
    margin: 0 14px;
    padding: 22px 20px;
    border-radius: 10px;
  }
  .section-grid,
  .menu-section,
  .hours-card,
  .visit-section {
    padding: 62px 16px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card {
    min-height: 0;
    padding: 22px 20px;
  }
  .hours-card li {
    align-items: baseline;
    padding: 14px 4px;
  }
  .hours-card strong {
    font-size: 16px;
  }
  .visit-copy {
    padding: 30px 22px;
    border-radius: 10px;
  }
  .map-panel {
    min-height: 280px;
    padding: 30px;
    border-radius: 10px;
  }
  footer {
    padding: 26px 16px 110px;
  }
  .mobile-actions {
    display: grid;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-media img,
  .gallery-frame img {
    transition: none;
  }
}
