:root {
  color-scheme: light;
  --ink: #171914;
  --muted: #5f6259;
  --paper: #f5f5ef;
  --paper-deep: #ecece4;
  --surface: #fafaf6;
  --accent: #5a6b42;
  --accent-dark: #3d4b2e;
  --line: #cfd1c7;
  --header-height: 72px;
  --radius: 8px;
  --shell: min(100% - 40px, 1240px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }

a { color: inherit; }

button, input, textarea, select { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid #80985d;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: #97ae70;
  box-shadow: 0 0 14px rgba(151, 174, 112, .72);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section { padding-block: clamp(78px, 10vw, 132px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  padding-inline: clamp(18px, 4vw, 52px);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}

.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  background: rgba(248, 248, 243, .96);
  border-bottom-color: rgba(23, 25, 20, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  gap: 1px;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

.wordmark-main {
  font-family: Optima, "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.wordmark-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  white-space: nowrap;
}

.desktop-nav a,
.site-footer nav a {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-header:not(.is-scrolled) .desktop-nav a::after {
  background: currentColor;
}

.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu a.is-active { color: var(--accent-dark); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.menu-toggle:active,
.social-link:active,
.lightbox-close:active,
.lightbox-nav:active { transform: scale(.97); }

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 29;
  background: var(--paper);
  padding: 42px 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .22s ease, transform .32s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(32px, 11vw, 52px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: color .18s ease, opacity .28s ease, transform .38s var(--ease-out);
}

.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 35ms; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 70ms; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 105ms; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: #f7f7f2;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 52%;
  animation: hero-breathe 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 58%, rgba(255, 190, 93, .26), transparent 27%),
    radial-gradient(circle at 78% 22%, rgba(238, 247, 212, .18), transparent 24%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-light-drift 13s var(--ease-in-out) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .10) 42%, rgba(0, 0, 0, .28) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: clamp(46px, 8vh, 84px);
}

.hero-content > * {
  animation: hero-enter .9s var(--ease-out) both;
}

.hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-content > :nth-child(4) { animation-delay: .24s; }

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, .36);
  border-top-color: transparent;
  border-left-color: rgba(255, 255, 255, .08);
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(255, 238, 200, .18));
}

.hero-ring-large {
  top: 15%;
  right: 8%;
  width: clamp(220px, 31vw, 470px);
  aspect-ratio: 1;
  animation: orbit-spin 24s linear infinite;
}

.hero-ring-small {
  top: 26%;
  right: 17%;
  width: clamp(72px, 11vw, 160px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-spin-reverse 14s linear infinite;
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 40px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  position: relative;
  width: 1px;
  height: 68px;
  overflow: hidden;
  background: rgba(255, 255, 255, .3);
}

.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(-100%);
  animation: scroll-cue 2.2s var(--ease-out) infinite;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reviews-source {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: Optima, "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(54px, 8.8vw, 126px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .82;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}

.hero-copy {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 520;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-facts {
  position: relative;
  overflow: hidden;
  background: #20241c;
  color: #eef0e8;
}

.quick-facts::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -24%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(205, 221, 172, .14), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: facts-sweep 7s linear infinite;
}

.quick-facts-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 24px;
}

.quick-facts-list div {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding-inline: clamp(18px, 3vw, 40px);
  border-left: 1px solid rgba(238, 240, 232, .18);
}

.quick-facts-list div:first-child { padding-left: 0; border-left: 0; }
.quick-facts-list div:last-child { padding-right: 0; }
.quick-facts-list strong { font-size: 14px; line-height: 1.35; }
.quick-facts-list span { color: #b9c0b1; font-size: 12px; line-height: 1.45; }

.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active { transform: translateY(0) scale(.97); }

.button-light::before,
.button-dark::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .68) 48%, transparent 76%);
  transform: translateX(-145%);
  animation: button-shine 6.5s var(--ease-in-out) infinite;
  pointer-events: none;
}

.button-light {
  background: #f7f7f2;
  color: #181a16;
}

.button-outline-light {
  border-color: rgba(247, 247, 242, .8);
  background: rgba(16, 17, 15, .2);
  color: #f7f7f2;
  backdrop-filter: blur(6px);
}

.button-dark {
  background: var(--accent-dark);
  color: #f7f7f2;
}

.button-outline-dark {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(44px, 9vw, 128px);
}

.intro-media {
  width: 100%;
  animation: intro-float 7s var(--ease-in-out) infinite;
}

.intro h2,
.section-heading h2,
.reviews-heading h2,
.visit-copy h2 {
  margin: 0;
  max-width: 760px;
  font-family: Optima, "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(40px, 5.6vw, 78px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}

.intro-copy > p {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.intro-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.intro-facts span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.ratio-3x4 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.media-button,
.gallery-card {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-deep);
  cursor: zoom-in;
  transform-origin: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.media-button img,
.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .4s ease;
}

.media-button::before,
.gallery-card::before,
.story-card::before {
  content: "";
  position: absolute;
  inset: -20% -55%;
  z-index: 2;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .34) 50%, transparent 60%);
  opacity: 0;
  transform: translateX(-35%) rotate(8deg);
  pointer-events: none;
  animation: image-glint 8s var(--ease-in-out) infinite;
}

.media-button:nth-of-type(2)::before,
.gallery-card:nth-child(2n)::before { animation-delay: -2.7s; }

.gallery-card:nth-child(3n)::before { animation-delay: -5.1s; }

.media-action {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 247, 242, .92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  z-index: 3;
  transition: transform 180ms var(--ease-out), background-color 180ms ease;
}

.intro-media img { object-position: 62% 52%; }

.intro-sign img { object-position: 50% 48%; }

.story-section {
  position: relative;
  overflow: hidden;
  background: #dfe4d6;
  isolation: isolate;
}

.story-wordmark {
  position: absolute;
  top: clamp(12px, 2vw, 28px);
  inset-inline: 0;
  z-index: -1;
  overflow: hidden;
  color: #2e3928;
  opacity: .075;
  pointer-events: none;
}

.story-wordmark-track,
.motion-marquee-track {
  width: max-content;
  display: flex;
  white-space: nowrap;
  animation: marquee-flow 24s linear infinite;
  will-change: transform;
}

.story-wordmark span {
  font-family: Optima, "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(74px, 14vw, 190px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}

.story-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(32px, 8vw, 110px);
  margin-bottom: clamp(42px, 6vw, 72px);
}

.story-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: Optima, "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: .96;
}

.story-heading p {
  max-width: 520px;
  margin: 0;
  color: #4e5547;
  font-size: 17px;
  line-height: 1.75;
}

.story-grid {
  display: grid;
  grid-template-columns: .82fr .82fr 1.36fr;
  align-items: end;
  gap: clamp(14px, 2vw, 26px);
}

.story-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #bfc6b6;
  color: #fff;
  cursor: zoom-in;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.story-card-tall { aspect-ratio: 3 / 4; }
.story-card-wide { aspect-ratio: 8 / 5; }

.story-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(14, 16, 12, .64));
  pointer-events: none;
  z-index: 1;
}

.story-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: image-breathe 9s var(--ease-in-out) infinite alternate;
}

.story-card:nth-child(2) img { animation-delay: -3s; }
.story-card:nth-child(3) img { animation-delay: -6s; }

.story-card span,
.gallery-label {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
}

.menu-section { background: var(--paper-deep); }

.motion-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(90, 107, 66, .28);
  color: var(--accent-dark);
}

.menu-marquee {
  margin: calc(clamp(38px, 6vw, 70px) * -.42) 0 clamp(38px, 5vw, 62px);
}

.motion-marquee-track { animation-duration: 48s; }

.motion-marquee-group {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
}

.motion-marquee span {
  padding-block: 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-panel {
  min-width: 0;
  display: block;
  transition: transform 220ms var(--ease-out);
}

.menu-panel:nth-child(1) img { object-position: 58% 52%; }
.menu-panel:nth-child(2) img { object-position: 50% 50%; }
.menu-panel:nth-child(3) img { object-position: 50% 55%; }

.menu-panel-copy { padding: 24px 2px 0; }

.menu-panel h3 {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 650;
  letter-spacing: -.035em;
}

.menu-panel-copy > p {
  min-height: 52px;
  margin: 9px 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.menu-items {
  margin: 0;
  border-top: 1px solid var(--line);
}

.menu-items div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(95, 98, 89, .22);
  font-size: 14px;
  line-height: 1.4;
}

.menu-items dt { min-width: 0; }
.menu-items dd { margin: 0; font-weight: 750; white-space: nowrap; }

.menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card:nth-child(1) img { object-position: 67% 40%; }
.gallery-card:nth-child(2) img { object-position: 50% 66%; }
.gallery-card:nth-child(3) img { object-position: 50% 58%; }
.gallery-card:nth-child(4) img { object-position: 50% 52%; }
.gallery-card:nth-child(5) img { object-position: 50% 50%; }
.gallery-card:nth-child(6) img { object-position: 50% 50%; }

.gallery-card img {
  animation: gallery-breathe 11s var(--ease-in-out) infinite alternate;
}

.gallery-card:nth-child(2n) img { animation-delay: -4s; }
.gallery-card:nth-child(3n) img { animation-delay: -7s; }

.gallery-label { bottom: 15px; }

.reviews-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #2d3726;
  color: #f1f3eb;
}

.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.reviews-section::before {
  top: -35%;
  right: -8%;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(205, 221, 172, .24);
  border-top-color: transparent;
  box-shadow: inset 0 0 90px rgba(205, 221, 172, .05);
  animation: orbit-spin 26s linear infinite;
}

.reviews-section::after {
  right: 18%;
  bottom: -38%;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(151, 174, 112, .2), transparent 66%);
  animation: review-glow 8s var(--ease-in-out) infinite alternate;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.rating-summary {
  display: grid;
  justify-items: end;
  gap: 1px;
  line-height: 1.1;
}

.rating-summary strong {
  font-family: Optima, "Segoe UI", sans-serif;
  font-size: 56px;
  letter-spacing: -.05em;
}

.rating-summary span,
.review-author span { color: #cdddac; letter-spacing: .08em; }
.rating-summary > span { animation: star-pulse 2.8s var(--ease-in-out) infinite; }
.rating-summary small { margin-top: 7px; color: #bbc3b3; }

.reviews-section .reviews-source { color: #bbc3b3; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(241, 243, 235, .22);
}

.review {
  min-width: 0;
  padding: 28px clamp(22px, 3vw, 40px) 8px;
  border-right: 1px solid rgba(241, 243, 235, .18);
  transition: transform 220ms var(--ease-out), background-color 220ms ease;
}

.review:first-child { padding-left: 0; }
.review:last-child { padding-right: 0; border-right: 0; }

.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-author img {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.review-author div { display: grid; gap: 1px; }
.review-author strong { font-size: 14px; }
.review-author span { font-size: 11px; }

.review blockquote {
  margin: 24px 0;
  color: #f1f3eb;
  font-family: Optima, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.46;
}

.review > a {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: #dce8c8;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  gap: clamp(40px, 7vw, 96px);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  margin-top: 42px;
}

.visit-details div:first-child { grid-column: 1 / -1; }

.visit-details h3 {
  margin: 0 0 7px;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visit-details p { margin: 0 0 10px; color: var(--muted); }
.visit-details a { color: var(--ink); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.visit-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.visit-amenities span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f5449;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.map-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.map-motion-label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(23, 25, 20, .1);
  border-radius: 999px;
  background: rgba(248, 248, 243, .92);
  box-shadow: 0 5px 18px rgba(23, 25, 20, .12);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .02em;
  pointer-events: none;
  animation: map-label-float 4.8s var(--ease-in-out) infinite;
}

.map-motion-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7e944f;
  box-shadow: 0 0 0 0 rgba(126, 148, 79, .48);
  animation: map-pin-pulse 1.8s ease-out infinite;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  border: 0;
}

.map-preloader {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  border: 0;
  opacity: .001;
  pointer-events: none;
}

.site-footer {
  padding: 70px 0 28px;
  background: #20241c;
  color: #eceee6;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 1fr auto;
  gap: 52px;
  align-items: start;
}

.wordmark-footer { margin-bottom: 25px; }
.site-footer p { color: #bdc2b4; font-size: 14px; }
.site-footer > .shell a:not(.wordmark):not(.social-link) { text-decoration-color: #7f886f; text-underline-offset: 4px; }
.site-footer nav { display: grid; gap: 14px; }
.footer-socials { display: flex; gap: 4px; }
.footer-socials .social-link { border: 1px solid #5c6254; }
.footer-bottom { margin-top: 54px; padding-top: 20px; border-top: 1px solid #43493d; color: #9da395; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 9, .92);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .2s ease;
}

.lightbox.is-open .lightbox-backdrop { opacity: 1; }

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 70px 22px 24px;
  pointer-events: none;
}

.lightbox figure {
  min-width: 0;
  max-width: min(1180px, calc(100vw - 190px));
  max-height: calc(100vh - 100px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  pointer-events: auto;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(18px) scale(.965);
  transition: opacity .24s ease, filter .3s ease, transform .36s var(--ease-out);
}

.lightbox.is-open figure { opacity: 1; filter: none; transform: none; }

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 135px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}

.lightbox figcaption {
  color: #e7e8e1;
  font-size: 13px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 240, 232, .45);
  border-radius: 50%;
  background: rgba(20, 22, 18, .65);
  color: #f2f3ed;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: scale(.88);
  transition: color .18s ease, background-color .18s ease, opacity .2s ease, transform .32s var(--ease-out);
}

.lightbox.is-open .lightbox-close,
.lightbox.is-open .lightbox-nav { opacity: 1; transform: none; }

.lightbox-close { position: absolute; top: 18px; right: 22px; z-index: 2; }
.lightbox-prev { justify-self: center; }
.lightbox-next { justify-self: center; }

.has-js .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(34px) scale(.985);
  transition: opacity .72s ease, filter .72s ease, transform .82s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal.is-visible { opacity: 1; filter: none; transform: none; }

.story-grid > :nth-child(2),
.menu-grid > :nth-child(2),
.gallery-grid > :nth-child(2),
.reviews-grid > :nth-child(2) { --reveal-delay: 70ms; }

.story-grid > :nth-child(3),
.menu-grid > :nth-child(3),
.gallery-grid > :nth-child(3) { --reveal-delay: 140ms; }

.gallery-grid > :nth-child(4) { --reveal-delay: 210ms; }
.gallery-grid > :nth-child(5) { --reveal-delay: 280ms; }
.gallery-grid > :nth-child(6) { --reveal-delay: 350ms; }

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 245, 170, .2), rgba(255, 192, 98, .08) 42%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-300px, -300px, 0);
  transition: opacity .22s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .button:hover { transform: translateY(-3px); }
  .button-outline-dark:hover { background: var(--ink); color: var(--surface); }
  .social-link:hover { color: var(--surface); background: var(--accent-dark); transform: translateY(-2px); }
  .media-button:hover,
  .gallery-card:hover,
  .story-card:hover { transform: translateY(-7px) rotate(.25deg); box-shadow: 0 22px 48px rgba(26, 29, 21, .18); }
  .menu-panel:hover { transform: translateY(-8px); }
  .review:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .045); }
  .media-button:hover .media-action,
  .gallery-card:hover .media-action { transform: translateY(-2px) scale(1.04); }
  .lightbox-close:hover,
  .lightbox-nav:hover { color: var(--ink); background: var(--surface); transform: scale(1.06); }
}

@keyframes hero-breathe {
  0% { transform: scale(1.01) translate3d(0, 0, 0); }
  100% { transform: scale(1.075) translate3d(-1.2%, -.7%, 0); }
}

@keyframes hero-light-drift {
  0%, 100% { transform: translate3d(-3%, 2%, 0) rotate(-3deg) scale(.96); opacity: .58; }
  50% { transform: translate3d(5%, -3%, 0) rotate(4deg) scale(1.06); opacity: .92; }
}

@keyframes hero-enter {
  from { opacity: 0; filter: blur(8px); transform: translateY(28px); }
  to { opacity: 1; filter: none; transform: none; }
}

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }

@keyframes scroll-cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes facts-sweep {
  from { transform: translateX(-115%) skewX(-18deg); }
  to { transform: translateX(215%) skewX(-18deg); }
}

@keyframes button-shine {
  0%, 70% { transform: translateX(-175%) skewX(-24deg); }
  100% { transform: translateX(230%) skewX(-24deg); }
}

@keyframes intro-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.25deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(.25deg); }
}

@keyframes image-glint {
  0%, 74% { transform: translateX(-160%) rotate(14deg); opacity: 0; }
  78% { opacity: .5; }
  100% { transform: translateX(260%) rotate(14deg); opacity: 0; }
}

@keyframes marquee-flow { to { transform: translateX(-50%); } }

@keyframes image-breathe {
  0%, 100% { transform: scale(1.015) translate3d(0, 0, 0); }
  50% { transform: scale(1.075) translate3d(-.8%, -.5%, 0); }
}

@keyframes gallery-breathe {
  0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.09) translate3d(.7%, -.8%, 0); }
}

@keyframes review-glow {
  0%, 100% { transform: translate3d(-7%, 6%, 0) scale(.92); opacity: .28; }
  50% { transform: translate3d(8%, -5%, 0) scale(1.08); opacity: .56; }
}

@keyframes star-pulse {
  0%, 100% { opacity: .72; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.055); }
}

@keyframes map-label-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes map-pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 148, 79, .52); }
  75%, 100% { box-shadow: 0 0 0 8px rgba(126, 148, 79, 0); }
}

@media (max-width: 920px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .quick-facts-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-facts-list div { padding: 16px 18px; border-top: 1px solid rgba(238, 240, 232, .18); }
  .quick-facts-list div:nth-child(-n + 2) { border-top: 0; }
  .quick-facts-list div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .quick-facts-list div:nth-child(even) { padding-right: 0; }
  .intro { grid-template-columns: 1fr 1fr; gap: 38px; }
  .intro h2 { font-size: clamp(38px, 6vw, 58px); }
  .story-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-card-wide { grid-column: 1 / -1; }
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .menu-panel h3 { font-size: 24px; }
  .menu-panel-copy > p { min-height: 72px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(241, 243, 235, .18); }
  .review:last-child { border-bottom: 0; }
  .visit-section { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 520px; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 540px); --header-height: 66px; }
  .section { padding-block: 76px; }
  .site-header { padding-inline: 14px; }
  .site-header .social-link { display: none; }
  .wordmark-main { font-size: 19px; }
  .hero-content { padding-bottom: max(38px, env(safe-area-inset-bottom)); }
  .hero h1 { font-size: clamp(52px, 18vw, 76px); line-height: .86; }
  .hero-copy { max-width: 330px; margin-top: 20px; font-size: 17px; }
  .hero-actions { margin-top: 22px; }
  .hero .button { min-width: 128px; }
  .hero-scroll-cue { display: none; }
  .hero-ring-large { right: -42%; width: 76vw; height: 76vw; }
  .hero-ring-small { right: 5%; }
  .quick-facts-list { padding-block: 12px; }
  .quick-facts-list div { padding-block: 13px; }
  .intro { grid-template-columns: 1fr; gap: 38px; }
  .intro-copy > p { margin-top: 22px; font-size: 16px; }
  .story-heading h2 { font-size: clamp(40px, 13vw, 58px); }
  .story-heading p { font-size: 16px; }
  .story-grid { gap: 10px; }
  .story-card span { right: 12px; bottom: 12px; left: 12px; font-size: 11px; }
  .menu-grid { grid-template-columns: 1fr; gap: 54px; }
  .menu-panel-copy > p { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-card { width: 100%; }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .rating-summary { justify-items: start; }
  .rating-summary strong { font-size: 48px; }
  .visit-details { grid-template-columns: 1fr; }
  .visit-details div:first-child { grid-column: auto; }
  .visit-actions { display: grid; grid-template-columns: 1fr; }
  .visit-actions .button { width: 100%; }
  .map-wrap, .map-wrap iframe { min-height: 440px; }
  .map-motion-label { top: 10px; right: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-socials { justify-self: start; }
  .lightbox-stage { grid-template-columns: 44px minmax(0, 1fr) 44px; padding-inline: 4px; }
  .lightbox figure { max-width: calc(100vw - 96px); }
  .lightbox-close, .lightbox-nav { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .has-js .reveal { opacity: 1; filter: none; transform: none; }
  .hero-image,
  .intro-media,
  .story-card img,
  .gallery-card img { transform: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: #f8f8f3; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .button-outline-light { background: rgba(20, 22, 18, .72); backdrop-filter: none; }
}
