:root {
  color-scheme: light;
  --paper: #f2f5ed;
  --mist: #dfe8dd;
  --leaf: #164331;
  --leaf-deep: #08281d;
  --accent: #ff6a48;
  --white: #fffef8;
  --line: rgba(22, 67, 49, 0.24);
  --line-light: rgba(255, 254, 248, 0.28);
  --shadow: 0 20px 56px rgba(8, 40, 29, 0.16);
  --radius: 5px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --display: "Bahnschrift SemiCondensed", "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --editorial: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: Aptos, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--leaf);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
.button,
.site-menu a,
.text-link,
.review a,
.mobile-dock a {
  min-height: 44px;
}

button:focus-visible,
a:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  color: var(--leaf-deep);
  background: var(--paper);
  border: 1px solid var(--leaf-deep);
  transition: transform 160ms var(--ease-out);
}

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

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 40, 29, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.brand-type {
  display: grid;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-type small {
  margin-top: 0.3rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.header-socials {
  display: none;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.8rem);
}

.site-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0.52rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 180ms var(--ease-out);
}

.site-menu a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 0 1.15rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: transform 140ms var(--ease-out), background-color 160ms ease;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.is-open .icon-menu {
  display: none;
}

.nav-toggle.is-open .icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf-deep);
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  object-position: 55% 50%;
  filter: brightness(1.12) saturate(0.92);
  animation: hero-settle 1100ms var(--ease-out) both, hero-drift 18s 1100ms var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 30, 21, 0.42) 0%, rgba(5, 30, 21, 0.18) 48%, rgba(5, 30, 21, 0.03) 100%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -22%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 234, 188, 0.2), transparent);
  opacity: 0.7;
  transform: skewX(-12deg) translate3d(-20%, 0, 0);
  animation: hero-light 11s 1.4s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.hero-ambient {
  position: absolute;
  z-index: 1;
  top: 16%;
  right: clamp(1rem, 7vw, 7rem);
  width: clamp(9rem, 20vw, 17rem);
  aspect-ratio: 1;
  color: var(--white);
  opacity: 0.74;
  pointer-events: none;
  will-change: transform;
}

.hero-orbit,
.orbit-line,
.orbit-dot {
  position: absolute;
  border-radius: 50%;
}

.hero-orbit {
  inset: 0;
  animation: orbit-turn 16s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-orbit > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23%;
  height: 23%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: logo-pulse 3.8s var(--ease-in-out) infinite;
}

.orbit-line {
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.orbit-line-two {
  inset: 24%;
  border-style: dashed;
  opacity: 0.68;
  animation: orbit-counter 9s linear infinite;
}

.orbit-dot {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(255, 106, 72, 0.72);
}

.orbit-dot-one {
  top: 4%;
  left: 48%;
}

.orbit-dot-two {
  right: 14%;
  bottom: 16%;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 92rem);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8rem, 18vh, 12rem) clamp(1.2rem, 5vw, 5rem) clamp(9.5rem, 18vh, 12rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  opacity: 0;
  animation: rise-in 620ms 140ms var(--ease-out) forwards;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.038em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise-in 720ms 210ms var(--ease-out) forwards;
}

.hero-main {
  display: block;
}

.hero-sub {
  display: inline-block;
  margin-top: 0.18em;
  margin-left: 0.1em;
  font-size: 0.48em;
  font-weight: 620;
  letter-spacing: 0.16em;
}

.hero-intro {
  max-width: 33rem;
  margin: 2rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.4;
  opacity: 0;
  animation: rise-in 620ms 340ms var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: rise-in 620ms 420ms var(--ease-out) forwards;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease;
}

.button::after {
  display: none;
}

.button-icon,
.dock-icon,
.visit-icon {
  display: block;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.button-light {
  color: var(--leaf-deep);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.button-dark {
  color: var(--white);
  background: var(--leaf-deep);
}

.button:active,
.nav-toggle:active,
.gallery-item:active,
.social-links a:active,
.mobile-dock a:active {
  transform: scale(0.97);
  transition-duration: 120ms;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(5, 30, 21, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.hero-rail p {
  display: grid;
  gap: 0.16rem;
  margin: 0;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  font-size: 0.9rem;
}

.hero-rail p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-rail span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-shell {
  width: min(100% - 2rem, 82rem);
  margin: 0 auto;
}

.about h2,
.day-story h2,
.section-heading h2,
.scene-copy h2,
.reviews-section h2,
.visit-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.038em;
}

.place-line,
.day-intro > p,
.scene-copy > p,
.review-source,
.visit-label {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.67fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-copy {
  padding-left: clamp(0rem, 4vw, 3.5rem);
}

.about h2 {
  max-width: 11ch;
}

.about .lead {
  max-width: 31rem;
  margin: 2rem 0 1rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.43;
}

.about-copy > p:not(.place-line):not(.lead) {
  max-width: 34rem;
}

.about-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 36rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-notes p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 1rem 1rem 1rem 0;
}

.about-notes p + p {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.about-notes strong {
  font-size: 0.92rem;
}

.about-notes span {
  font-size: 0.8rem;
  color: rgba(22, 67, 49, 0.72);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border-radius: var(--radius);
}

.portrait-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.about-image {
  box-shadow: var(--shadow);
}

.about-image figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(5, 30, 21, 0.72);
}

.day-story {
  position: relative;
  overflow: hidden;
  color: var(--leaf-deep);
  background: var(--mist);
}

.day-story .section-shell {
  position: relative;
  z-index: 1;
}

.day-ambient {
  position: absolute;
  inset: 10% -20% auto;
  display: grid;
  gap: 0.45rem;
  color: var(--leaf-deep);
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.03em;
  opacity: 0.045;
  pointer-events: none;
  transform: rotate(-4deg);
}

.day-ambient span {
  display: block;
  width: max-content;
  white-space: nowrap;
  animation: day-drift 32s linear infinite alternate;
  will-change: transform;
}

.day-ambient span + span {
  justify-self: end;
  animation-direction: alternate-reverse;
  animation-duration: 38s;
}

.day-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.day-intro > p {
  grid-column: 1 / -1;
  margin-bottom: -0.5rem;
}

.day-intro h2 {
  max-width: 12ch;
}

.day-intro > span {
  max-width: 30rem;
  padding-bottom: 0.45rem;
  font-size: 1.06rem;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.day-card:nth-child(2) {
  margin-top: 4rem;
}

.day-card:nth-child(3) {
  margin-top: 1.5rem;
}

.day-card .portrait-frame {
  animation: card-float 6.8s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.day-card:nth-child(2) .portrait-frame {
  animation-delay: -2.2s;
  animation-duration: 7.6s;
}

.day-card:nth-child(3) .portrait-frame {
  animation-delay: -4.4s;
  animation-duration: 8.2s;
}

.day-card > div {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.day-card > div > p {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.day-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.day-card > div > span {
  display: block;
  max-width: 24rem;
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.service-strip {
  overflow: hidden;
  color: var(--leaf-deep);
  background: var(--accent);
}

.service-marquee {
  display: flex;
  width: max-content;
  animation: marquee-flow 26s linear infinite;
  will-change: transform;
}

.service-group {
  display: flex;
  min-width: max-content;
  padding: 1.15rem 0;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-group span:first-child {
  margin-left: clamp(0.75rem, 2vw, 2rem);
}

.service-group i {
  width: 0.35rem;
  height: 0.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.menu-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf);
}

.menu-section::before,
.menu-section::after {
  content: "";
  position: absolute;
  width: clamp(14rem, 28vw, 28rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.menu-section::before {
  top: -8rem;
  right: -5rem;
  box-shadow: inset 0 0 0 3rem rgba(255, 106, 72, 0.045), inset 0 0 0 6rem rgba(255, 255, 255, 0.02);
  animation: ambient-ring 17s linear infinite;
}

.menu-section::after {
  bottom: 7%;
  left: -12rem;
  border-style: dashed;
  opacity: 0.65;
  animation: ambient-ring 23s linear infinite reverse;
}

.menu-section .section-shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading > p {
  max-width: 29rem;
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.menu-item:nth-child(2) {
  margin-top: 4.5rem;
}

.menu-item:nth-child(3) {
  margin-top: 1.8rem;
}

.menu-item .portrait-frame img {
  animation: photo-breathe 9s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.menu-item:nth-child(2) .portrait-frame img {
  animation-delay: -3s;
  animation-duration: 10.5s;
}

.menu-item:nth-child(3) .portrait-frame img {
  animation-delay: -6s;
  animation-duration: 11.5s;
}

.menu-label {
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.menu-label h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.menu-label p {
  margin: 0;
  color: rgba(255, 254, 248, 0.74);
  font-size: 0.88rem;
}

.menu-facts {
  display: flex;
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.menu-facts li {
  display: grid;
  min-height: 4.25rem;
  padding: 0.75rem 1.25rem;
  flex: 1 1 0;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.menu-facts li + li {
  border-left: 1px solid var(--line-light);
}

.scene-section {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf-deep);
}

.scene-section > img,
.scene-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-section > img {
  object-fit: cover;
  object-position: 50% 48%;
  animation: scene-pan 15s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.scene-shade {
  background: linear-gradient(90deg, rgba(5, 29, 20, 0.78) 0%, rgba(5, 29, 20, 0.38) 48%, rgba(5, 29, 20, 0.06) 76%);
}

.scene-shade::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -25%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 183, 0.32), transparent);
  opacity: 0.5;
  transform: skewX(-16deg) translate3d(-25%, 0, 0);
  animation: scene-light 10s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.scene-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 2rem, 82rem);
  min-height: 46rem;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.scene-copy h2 {
  max-width: 9ch;
}

.scene-copy > span {
  max-width: 32rem;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.scene-copy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.scene-copy li {
  padding: 0.75rem 1.1rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.scene-copy li + li {
  border-left: 1px solid var(--line-light);
}

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

.gallery-heading {
  color: var(--leaf-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery-item {
  width: 100%;
  padding: 0;
  appearance: none;
  border: 0;
  cursor: zoom-in;
  transition: transform 220ms var(--ease-out);
  transform-style: preserve-3d;
}

.gallery-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -35%;
  bottom: -35%;
  left: -45%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  transform: skewX(-15deg) translate3d(-180%, 0, 0);
  animation: gallery-glint 10s var(--ease-in-out) infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.gallery-item:nth-child(2)::before { animation-delay: -8.3s; }
.gallery-item:nth-child(3)::before { animation-delay: -6.6s; }
.gallery-item:nth-child(4)::before { animation-delay: -5s; }
.gallery-item:nth-child(5)::before { animation-delay: -3.3s; }
.gallery-item:nth-child(6)::before { animation-delay: -1.6s; }

.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.1rem;
  color: var(--white);
  text-align: left;
  text-shadow: 0 1px 3px rgba(5, 30, 21, 0.72);
}

.gallery-caption strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.gallery-caption small {
  font-size: 0.74rem;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf-deep);
}

.reviews-section::before {
  content: "KIND WORDS · GOOD COFFEE · AT SALT ·";
  position: absolute;
  top: 43%;
  left: -12%;
  width: max-content;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  opacity: 0.09;
  -webkit-text-stroke: 1px var(--accent);
  transform: translate3d(0, -50%, 0);
  animation: review-drift 28s linear infinite alternate;
  pointer-events: none;
  will-change: transform;
}

.reviews-section .section-shell {
  position: relative;
  z-index: 1;
}

.reviews-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line-light);
}

.review-source {
  color: var(--accent);
}

.reviews-intro h2 {
  max-width: 11ch;
}

.rating {
  display: grid;
  margin: 0;
  text-align: right;
}

.rating strong {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.78;
  letter-spacing: -0.035em;
  transform-origin: right bottom;
  animation: rating-breathe 4.6s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.rating span {
  margin-top: 0.75rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
}

.review {
  display: flex;
  min-height: 18rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  flex-direction: column;
}

.review-featured {
  min-height: 34rem;
  padding-left: 0;
  border-right: 1px solid var(--line-light);
}

.review-stack .review {
  padding-right: 0;
}

.review-stack .review + .review {
  border-top: 1px solid var(--line-light);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-person img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
}

.review-person p {
  display: grid;
  margin: 0;
}

.review-person strong {
  font-size: 0.92rem;
}

.review-person span {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 2rem 0;
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.review-featured blockquote {
  max-width: 24ch;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.18;
}

.review a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  align-items: flex-end;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-underline-offset: 0.35rem;
  transition: opacity 160ms ease;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(28rem, 0.95fr);
  min-height: 46rem;
  background: var(--paper);
}

.map-wrap {
  min-height: 40rem;
  background: var(--mist);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40rem;
  border: 0;
  filter: saturate(0.82) contrast(0.98);
}

.visit-panel {
  align-self: center;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1.5rem, 6vw, 6rem);
}

.visit-panel address {
  font-size: 1.15rem;
  font-style: normal;
}

.visit-address {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 2rem 0 1.5rem;
}

.visit-address .visit-icon,
.hours-heading .visit-icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  color: var(--accent);
}

.hours-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours {
  border-top: 1px solid var(--line);
}

.hours p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin: 0;
  padding: 0.95rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.hours p span {
  font-weight: 700;
}

.hours p strong {
  font-weight: 500;
}

.hours-note {
  max-width: 28rem;
  margin: 0.8rem 0 1.5rem;
  color: rgba(22, 67, 49, 0.72);
  font-size: 0.82rem;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.visit-facts > div {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--line);
}

.visit-facts > div:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.visit-facts dt {
  font-size: 0.74rem;
  font-weight: 800;
}

.visit-facts dd {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--leaf);
  border-radius: var(--radius);
  transition: transform 140ms var(--ease-out), color 160ms ease, background-color 160ms ease;
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 2rem;
  padding: 2.2rem clamp(1rem, 4vw, 4.5rem);
  color: var(--white);
  background: var(--leaf-deep);
}

.footer-brand {
  display: grid;
  width: fit-content;
  font-family: var(--display);
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-brand strong {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.035em;
}

.footer-brand span {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
}

.mobile-dock {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  color: var(--white);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 4rem clamp(0.75rem, 3vw, 3rem) 1rem;
  grid-template-columns: 3.5rem minmax(0, 1fr) 3.5rem;
  place-items: center;
}

.lightbox figure {
  display: grid;
  max-width: min(75vw, 46rem);
  max-height: calc(100vh - 6rem);
  margin: 0;
  place-items: center;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.lightbox figcaption {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  text-align: center;
}

.lightbox button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
}

.lightbox-nav {
  z-index: 2;
}

.reveal {
  transform: none;
}

.js .reveal[data-reveal="text"] {
  transform: translateY(1rem);
  transition: transform 560ms var(--ease-out);
}

.js .reveal[data-reveal="image"] {
  transform: translateY(1.35rem) scale(0.99);
  transition: transform 680ms var(--ease-out);
}

.js .reveal.is-visible {
  transform: none;
}

.js .gallery-item.reveal.is-visible:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .site-menu a:not(.nav-cta):hover::after {
    right: 0;
  }

  .button:hover {
    transform: translateY(-3px);
  }

  .button-light:hover {
    background: var(--accent);
  }

  .button-ghost:hover {
    color: var(--leaf-deep);
    background: var(--white);
  }

  .button-dark:hover {
    color: var(--leaf-deep);
    background: var(--accent);
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .day-card:hover img {
    transform: scale(1.035);
  }

  .js .menu-item.reveal.is-visible:hover {
    transform: translateY(-8px) rotate(-0.35deg);
  }

  .js .menu-item:nth-child(2).reveal.is-visible:hover {
    transform: translateY(-8px) rotate(0.35deg);
  }

  .js .gallery-item.reveal.is-visible:hover {
    transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
  }

  .js .gallery-item:nth-child(even).reveal.is-visible:hover {
    transform: translateY(-8px) rotateX(1deg) rotateY(1deg);
  }

  .gallery-item:hover img {
    transform: scale(1.045);
  }

  .text-link:hover span {
    transform: translateX(0.35rem);
  }

  .review a:hover {
    opacity: 0.68;
  }

  .social-links a:hover {
    color: var(--white);
    background: var(--leaf);
    transform: translateY(-3px);
  }

  .lightbox button:hover {
    background: rgba(255, 255, 255, 0.18);
  }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-settle {
  from { opacity: 0.72; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-drift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-1.2%, -0.7%, 0); }
}

@keyframes hero-light {
  0% { opacity: 0.2; transform: skewX(-12deg) translate3d(-40%, 0, 0); }
  45% { opacity: 0.72; }
  100% { opacity: 0.26; transform: skewX(-12deg) translate3d(340%, 0, 0); }
}

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

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

@keyframes logo-pulse {
  from { opacity: 0.72; transform: translate(-50%, -50%) scale(0.94); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes day-drift {
  from { transform: translate3d(-8vw, 0, 0); }
  to { transform: translate3d(8vw, 0, 0); }
}

@keyframes card-float {
  from { transform: translate3d(0, -0.4rem, 0) rotate(-0.35deg); }
  to { transform: translate3d(0, 0.65rem, 0) rotate(0.35deg); }
}

@keyframes marquee-flow {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes ambient-ring {
  to { transform: rotate(360deg); }
}

@keyframes photo-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.8%, -0.6%, 0); }
}

@keyframes scene-pan {
  from { transform: scale(1.035) translate3d(-0.7%, 0, 0); }
  to { transform: scale(1.08) translate3d(1.1%, -0.6%, 0); }
}

@keyframes scene-light {
  0% { opacity: 0.16; transform: skewX(-16deg) translate3d(-45%, 0, 0); }
  55% { opacity: 0.62; }
  100% { opacity: 0.2; transform: skewX(-16deg) translate3d(360%, 0, 0); }
}

@keyframes gallery-glint {
  0%, 58% { opacity: 0; transform: skewX(-15deg) translate3d(-180%, 0, 0); }
  69% { opacity: 0.7; }
  82%, 100% { opacity: 0; transform: skewX(-15deg) translate3d(720%, 0, 0); }
}

@keyframes review-drift {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(-13%, -50%, 0); }
}

@keyframes rating-breathe {
  from { opacity: 0.86; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.045); }
}

@media (max-width: 1040px) {
  .site-menu {
    gap: 0.85rem;
  }

  .site-menu a {
    font-size: 0.7rem;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-featured {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .review-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-stack .review {
    padding-right: clamp(1rem, 4vw, 3.5rem);
    padding-left: clamp(1rem, 4vw, 3.5rem);
  }

  .review-stack .review + .review {
    border-top: 0;
    border-left: 1px solid var(--line-light);
  }
}

@media (min-width: 1024px) {
  .site-header {
    justify-content: flex-start;
    padding: 1.15rem clamp(2rem, 4vw, 4.5rem);
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .site-menu {
    order: 1;
    gap: clamp(1.2rem, 2.3vw, 2.6rem);
  }

  .brand {
    order: 2;
    margin-left: auto;
  }

  .brand img {
    display: none;
  }

  .brand-type {
    font-size: 0.88rem;
    letter-spacing: 0.13em;
    text-align: right;
  }

  .hero-image {
    object-position: center;
    filter: brightness(0.9) saturate(0.88) contrast(1.04);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 30, 21, 0.18) 0%, rgba(5, 30, 21, 0.02) 38%, rgba(5, 30, 21, 0.56) 100%),
      linear-gradient(90deg, rgba(5, 30, 21, 0.14) 0%, transparent 54%, rgba(5, 30, 21, 0.1) 100%);
  }

  .hero-ambient {
    top: 7.2rem;
    right: clamp(2.5rem, 5vw, 6rem);
    width: clamp(10.5rem, 14vw, 15rem);
    opacity: 0.82;
  }

  .hero-content {
    display: grid;
    width: 100%;
    max-width: none;
    padding: 8rem clamp(2.5rem, 6vw, 7rem) clamp(2.1rem, 5vh, 4rem);
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.42fr);
    grid-template-rows: 1fr auto auto;
    column-gap: clamp(2.5rem, 6vw, 7rem);
    row-gap: 0.9rem;
    align-items: end;
  }

  .hero-eyebrow {
    grid-column: 1;
    grid-row: 2;
    margin: 0 0 0.2rem;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 3;
    max-width: none;
    font-family: var(--editorial);
    font-size: clamp(5.5rem, 9vw, 10rem);
    font-weight: 400;
    line-height: 0.67;
    letter-spacing: -0.052em;
    white-space: nowrap;
  }

  .hero-sub {
    display: block;
    margin-top: 0.62em;
    margin-left: 0.08em;
    font-family: var(--display);
    font-size: 0.2em;
    font-weight: 680;
    line-height: 1;
    letter-spacing: 0.28em;
  }

  .hero-intro {
    grid-column: 2;
    grid-row: 2;
    max-width: 27rem;
    margin: 0 0 0.15rem;
    font-family: var(--editorial);
    font-size: clamp(1.18rem, 1.55vw, 1.5rem);
    line-height: 1.35;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(5, 30, 21, 0.55);
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 3;
    display: grid;
    margin: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    flex-wrap: nowrap;
    align-self: end;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 4.1rem;
    justify-content: space-between;
    padding: 0.9rem clamp(1rem, 1.5vw, 1.5rem);
  }

  .hero-rail {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: grid;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--leaf-deep);
    background: var(--paper);
    border: 1px solid var(--leaf-deep);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    justify-content: space-between;
    padding: 0.72rem;
    border-bottom: 1px solid var(--line);
  }

  .site-menu a:not(.nav-cta)::after {
    display: none;
  }

  .site-menu .nav-cta {
    margin-top: 0.65rem;
    justify-content: center;
    color: var(--white);
    background: var(--leaf-deep);
    border: 0;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(17rem, 0.7fr);
    gap: 3rem;
  }

  .day-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-card:nth-child(3),
  .menu-item:nth-child(3) {
    margin-top: 0;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    order: 2;
  }

  .visit-panel {
    order: 1;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(4.8rem + env(safe-area-inset-bottom));
  }

  .site-header {
    align-items: center;
    gap: 0.2rem;
    padding-top: max(0.65rem, env(safe-area-inset-top));
    padding-right: max(0.75rem, env(safe-area-inset-right));
    padding-bottom: 0.65rem;
    padding-left: max(0.75rem, env(safe-area-inset-left));
  }

  .brand {
    gap: 0.55rem;
    flex: 0 1 auto;
  }

  .brand img {
    width: 3.15rem;
    height: 3.15rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(5, 30, 21, 0.22);
  }

  .brand-type {
    font-family: var(--editorial);
    font-size: clamp(0.96rem, 4.5vw, 1.18rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: 0.02em;
  }

  .brand-type small {
    margin-top: 0.4rem;
    font-family: var(--body);
    font-size: 0.5rem;
    font-weight: 750;
    letter-spacing: 0.28em;
  }

  .header-socials {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .header-socials a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    text-decoration: none;
  }

  .header-socials svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
  }

  .nav-toggle {
    flex: 0 0 44px;
    border-color: transparent;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 8rem 1rem max(2.25rem, calc(env(safe-area-inset-bottom) + 1.25rem));
  }

  .hero-image {
    object-position: 52% 50%;
    filter: brightness(0.86) saturate(0.88) contrast(1.02);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 30, 21, 0.18) 0%, rgba(5, 30, 21, 0.02) 36%, rgba(5, 30, 21, 0.12) 58%, rgba(5, 30, 21, 0.62) 100%),
      linear-gradient(90deg, rgba(5, 30, 21, 0.09) 0%, transparent 62%, rgba(5, 30, 21, 0.08) 100%);
  }

  .hero-ambient {
    top: 7.4rem;
    right: -0.8rem;
    width: clamp(9.5rem, 43vw, 11.5rem);
    opacity: 0.68;
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    font-family: var(--editorial);
    font-size: clamp(2.7rem, 14vw, 4.1rem);
    font-weight: 400;
    line-height: 0.74;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .hero-sub {
    display: block;
    margin-top: 0.72em;
    margin-left: 0.06em;
    font-family: var(--display);
    font-size: 0.31em;
    font-weight: 680;
    line-height: 1;
    letter-spacing: 0.26em;
  }

  .hero-intro {
    max-width: 23rem;
    margin-top: 1.65rem;
    font-size: clamp(1rem, 4.5vw, 1.14rem);
    line-height: 1.42;
    text-wrap: pretty;
    text-shadow: 0 2px 18px rgba(5, 30, 21, 0.62);
  }

  .hero-actions {
    display: grid;
    width: 100%;
    margin-top: 1.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 4.15rem;
    justify-content: space-between;
    padding: 0.9rem 0.75rem;
    white-space: nowrap;
  }

  .hero-rail {
    display: none;
  }

  .section-shell,
  .scene-copy {
    width: min(100% - 2rem, 82rem);
  }

  .about-grid,
  .day-intro,
  .section-heading,
  .day-grid,
  .menu-grid,
  .gallery-grid,
  .reviews-intro,
  .review-stack {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-image {
    width: 90%;
    margin-left: auto;
  }

  .about-notes {
    grid-template-columns: 1fr;
  }

  .about-notes p + p {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .day-intro > p {
    grid-column: auto;
    margin-bottom: 0;
  }

  .day-ambient {
    top: 19%;
    opacity: 0.035;
  }

  .day-card:nth-child(2),
  .day-card:nth-child(3),
  .menu-item:nth-child(2),
  .menu-item:nth-child(3) {
    width: 91%;
    margin-top: 2rem;
  }

  .day-card:nth-child(2),
  .menu-item:nth-child(2) {
    margin-left: auto;
  }

  .menu-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-facts li + li {
    border-left: 0;
  }

  .menu-facts li:nth-child(even) {
    border-left: 1px solid var(--line-light);
  }

  .menu-facts li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .scene-section,
  .scene-copy {
    min-height: 43rem;
  }

  .scene-section > img {
    object-position: 58% 50%;
  }

  .scene-shade {
    background: linear-gradient(0deg, rgba(5, 29, 20, 0.88) 0%, rgba(5, 29, 20, 0.34) 60%, rgba(5, 29, 20, 0.08) 100%);
  }

  .scene-copy ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-copy li + li {
    border-left: 0;
  }

  .scene-copy li:nth-child(even) {
    border-left: 1px solid var(--line-light);
  }

  .scene-copy li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .gallery-heading {
    margin-bottom: 2rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .reviews-intro {
    align-items: start;
  }

  .rating {
    text-align: left;
  }

  .review-featured,
  .review-stack .review {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .review-stack .review + .review {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .review-featured blockquote {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .visit-panel {
    padding: 4.5rem 1rem;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .visit-facts > div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 30rem;
  }

  .hours p {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .mobile-dock {
    position: fixed;
    z-index: 45;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--leaf-deep);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(8, 40, 29, 0.22);
    transition: transform 260ms var(--ease-drawer), visibility 260ms linear;
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-dock .dock-icon {
    width: 0.95rem;
    height: 0.95rem;
  }

  .mobile-dock a + a {
    color: var(--white);
    background: var(--leaf-deep);
  }

  .js .mobile-dock {
    visibility: hidden;
    transform: translateY(calc(100% + 1rem));
  }

  .js .mobile-dock.is-visible {
    visibility: visible;
    transform: translateY(0);
  }

  .lightbox-dialog {
    padding: 4rem 0.75rem 4.75rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 0.75rem;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 100%;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .lightbox-prev {
    justify-self: end;
  }

  .lightbox-next {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-progress,
  .day-ambient,
  .gallery-item::before,
  .scene-shade::after,
  .hero-shade::after {
    display: none;
  }

  .hero-image,
  .hero-orbit,
  .orbit-line-two,
  .day-card .portrait-frame,
  .menu-section::before,
  .menu-section::after,
  .menu-item .portrait-frame img,
  .scene-section > img,
  .reviews-section::before,
  .rating strong {
    animation: none !important;
  }

  .hero-image,
  .day-card .portrait-frame,
  .menu-item .portrait-frame img,
  .scene-section > img,
  .rating strong {
    opacity: 1;
    transform: none !important;
  }

  .hero-orbit > img {
    animation: none !important;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .hero-eyebrow,
  .hero h1,
  .hero-intro,
  .hero-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .service-marquee {
    width: 100%;
    animation: none !important;
    transform: none;
  }

  .service-group:first-child {
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-group[aria-hidden="true"] {
    display: none;
  }

  .js .reveal,
  .js .mobile-dock {
    transform: none !important;
    transition: opacity 160ms linear;
  }

  .js .mobile-dock {
    visibility: visible;
  }

  .button:hover,
  .button:active,
  .nav-toggle:hover,
  .nav-toggle:active,
  .gallery-item:hover,
  .gallery-item:active,
  .menu-item:hover,
  .social-links a:hover,
  .social-links a:active,
  .mobile-dock a:active {
    transform: none !important;
  }
}
