:root {
  --ink: #161812;
  --ink-soft: #4f5348;
  --paper: #f2f3e9;
  --paper-deep: #e7e9dc;
  --line: #c7cab8;
  --accent: #c7d83c;
  --accent-dark: #728000;
  --olive: #343b10;
  --white: #fafbf4;
  --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);
  --header-height: 72px;
  --shell: min(1240px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 80;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}

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

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

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

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-image {
  object-fit: contain;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 4vw, 64px);
  color: var(--ink);
  transition: background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), color 220ms ease;
}

.site-header.is-scrolled {
  background: rgb(242 243 233 / 0.94);
  box-shadow: 0 1px 0 rgb(22 24 18 / 0.12);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.94rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.wordmark strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.mobile-brand-disc,
.mobile-header-facebook {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 0.84rem;
  font-weight: 700;
}

.desktop-nav > a:not(.social-link),
.footer-nav a {
  position: relative;
}

.desktop-nav > a:not(.social-link)::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -5px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  transition: transform 160ms var(--ease-out), color 160ms ease, background-color 160ms ease;
}

.social-link.mobile-header-facebook {
  display: none;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 40px;
  padding: 28px;
  color: var(--ink);
  background: var(--accent);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out), visibility 0s linear 160ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms var(--ease-drawer), transform 240ms var(--ease-drawer), visibility 0s linear 0s;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

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

.mobile-menu nav a {
  font-size: clamp(2.7rem, 12vw, 4.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.07em;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 140ms var(--ease-out), transform 140ms var(--ease-out);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateX(0);
  transition-duration: 240ms;
}

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

.mobile-menu.is-instant,
.mobile-menu.is-instant nav a,
.lightbox.is-instant,
.lightbox.is-instant .lightbox-figure {
  transition-duration: 0ms !important;
}

.mobile-facebook {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
}

.mobile-facebook svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: #d9d7c9;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 55% 64%;
  transform: scale(1.025);
  animation: hero-breathe 16s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.04) 0%, rgb(0 0 0 / 0.08) 55%, rgb(0 0 0 / 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 48px;
}

.hero-eyebrow {
  display: none;
}

.hero-side {
  display: contents;
}

.hero h1 .hero-title-mobile {
  display: none;
}

.hero-seal {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 82px);
  bottom: clamp(64px, 7vw, 104px);
  width: clamp(104px, 10vw, 148px);
  aspect-ratio: 1;
  color: var(--ink);
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 0.18));
  animation: seal-float 5.5s var(--ease-in-out) infinite alternate;
}

.hero-seal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: var(--accent);
  stroke: var(--ink);
  stroke-width: 1.25;
  animation: seal-spin 16s linear infinite;
}

.hero-seal text {
  fill: var(--ink);
  stroke: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.55px;
}

.hero-seal-cup {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  transform-box: view-box;
  animation: seal-counter-spin 16s linear infinite reverse;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4rem, 7.2vw, 6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-wrap: balance;
  animation: copy-enter 720ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 32ch;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  animation: copy-enter 720ms 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  padding: 10px 13px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  list-style: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-meta li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta .meta-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.hero-meta li + li::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: currentColor;
  transform: translateY(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  animation: copy-enter 720ms 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translateZ(0);
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease;
}

.button-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-left: 9px;
}

.button:active {
  transform: translateY(1px) scale(0.97);
}

.button-primary {
  color: var(--ink);
  background: var(--accent);
}

.button-ghost {
  color: var(--ink);
  background: rgb(250 251 244 / 0.78);
  backdrop-filter: blur(8px);
}

.button-outline {
  background: transparent;
}

.visit-strip {
  background: var(--accent);
}

.visit-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.visit-strip p {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 22px clamp(18px, 3vw, 42px);
  border-left: 1px solid rgb(22 24 18 / 0.24);
}

.visit-strip p:last-child {
  border-right: 1px solid rgb(22 24 18 / 0.24);
}

.visit-strip .strip-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--ink);
}

.visit-strip .strip-icon .icon-image {
  width: 25px;
  height: 25px;
}

.visit-strip .strip-label {
  margin-bottom: 8px;
  color: rgb(22 24 18 / 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-strip strong {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.25;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.about-copy {
  padding-left: clamp(0px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.about-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.ratio-3-4 {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-3-4 > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-media {
  width: min(72%, 470px);
  margin: 0 0 0 auto;
}

.about-media img {
  object-position: 52% 63%;
}

.about-collage {
  position: relative;
  min-height: clamp(610px, 53vw, 760px);
}

.about-people {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: min(52%, 330px);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--paper);
  transform-origin: 48% 72%;
  animation: photo-float 6.5s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.about-people img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
  transform: scale(1.015);
  animation: portrait-breathe 12s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.about-location {
  position: absolute;
  left: 0;
  top: 42px;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link .icon {
  width: 18px;
  height: 18px;
}

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

.section-intro {
  max-width: 780px;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.section-intro p {
  max-width: 46ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.category-line {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0 0 58px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  overflow: hidden;
}

.category-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 18%;
  height: 3px;
  background: var(--accent-dark);
  transform: translate3d(-120%, 0, 0);
  animation: category-scan 7s linear infinite;
}

.category-line li {
  display: flex;
  align-items: center;
  gap: 28px;
}

.category-line li:not(:last-child)::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--accent-dark);
}

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

.menu-feature {
  min-width: 0;
}

.menu-feature > .ratio-3-4 img {
  transform: scale(1.02);
  transition: transform 480ms var(--ease-out), filter 300ms ease;
  will-change: transform;
}

.menu-feature:nth-child(1) > .ratio-3-4 img { animation: menu-drift-a 13s var(--ease-in-out) infinite alternate; }
.menu-feature:nth-child(2) > .ratio-3-4 img { animation: menu-drift-b 16s var(--ease-in-out) infinite alternate; }
.menu-feature:nth-child(3) > .ratio-3-4 img { animation: menu-drift-a 18s var(--ease-in-out) -4s infinite alternate-reverse; }

.menu-feature:nth-child(1) > .ratio-3-4 img {
  object-position: 50% 54%;
}

.menu-feature:nth-child(2) > .ratio-3-4 img {
  object-position: 50% 50%;
}

.menu-feature:nth-child(3) > .ratio-3-4 img {
  object-position: 45% 40%;
}

.menu-feature h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.menu-feature h3 .menu-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-top: -3px;
}

.menu-feature p {
  margin: 11px 0 0;
  color: var(--ink-soft);
}

.experience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--accent);
}

.experience::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8vw;
  bottom: -18vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgb(22 24 18 / 0.22);
  border-radius: 50%;
  transform: scale(0.96);
  animation: ambient-pulse 7s var(--ease-in-out) infinite alternate;
}

.experience-orbit {
  position: absolute;
  z-index: -1;
  right: -9vw;
  top: -12vw;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgb(22 24 18 / 0.30);
  border-radius: 50%;
  animation: seal-spin 24s linear infinite;
}

.experience-orbit::before,
.experience-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(22 24 18 / 0.20);
  border-radius: 50%;
}

.experience-orbit::before {
  inset: 14%;
}

.experience-orbit::after {
  inset: 34%;
}

.experience-orbit span {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  background: var(--ink);
  transform: translateX(-50%);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.experience-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.experience-heading p {
  max-width: 42ch;
  margin: 28px 0 0;
  color: rgb(22 24 18 / 0.76);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
}

.experience-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 28px 0 30px;
  border-top: 1px solid rgb(22 24 18 / 0.32);
}

.experience-item:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgb(22 24 18 / 0.32);
}

.experience-item .icon {
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.experience-item h3,
.experience-item p {
  margin: 0;
}

.experience-item h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.experience-item p {
  margin-top: 8px;
  color: rgb(22 24 18 / 0.72);
  font-size: 0.92rem;
}

.scene-break {
  position: relative;
  min-height: min(82svh, 780px);
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.scene-break > .scene-picture,
.scene-break > .scene-picture img,
.scene-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-break > .scene-picture {
  display: block;
  z-index: -2;
}

.scene-break > .scene-picture img {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.025);
  animation: scene-drift 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.scene-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.08) 20%, rgb(0 0 0 / 0.30) 100%);
}

.scene-break::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20% auto -20% -32vw;
  width: min(30vw, 420px);
  background: rgb(255 255 255 / 0.12);
  filter: blur(28px);
  pointer-events: none;
  transform: skewX(-13deg) translate3d(0, 0, 0);
  animation: light-sweep 9s var(--ease-in-out) infinite;
}

.scene-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(52px, 8vw, 92px);
}

.scene-content p {
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-content h2 {
  max-width: 11ch;
  color: var(--white);
}

.button-light {
  margin-top: 30px;
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18vw;
  top: 12%;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgb(199 216 60 / 0.25);
  border-radius: 50%;
  opacity: 0.55;
  transform: scale(0.94);
  animation: ambient-pulse 8s var(--ease-in-out) infinite alternate;
}

.gallery .section-intro p {
  color: #c8cbbb;
}

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

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: zoom-in;
  transition: transform 180ms var(--ease-out);
}

.gallery-item:active {
  transform: scale(0.985);
}

.gallery-caption {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.gallery-item img {
  transform: scale(1.01);
  transition: transform 420ms var(--ease-out), filter 300ms ease;
}

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

.gallery-item:nth-child(1) img { object-position: 50% 48%; }
.gallery-item:nth-child(2) img { object-position: 50% 50%; }
.gallery-item:nth-child(3) img { object-position: 50% 55%; }
.gallery-item:nth-child(4) img { object-position: 50% 50%; }
.gallery-item:nth-child(5) img { object-position: 50% 44%; }
.gallery-item:nth-child(6) img { object-position: 50% 60%; }

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

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: start;
}

.reviews-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.reviews-kicker {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.rating-lockup {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 44px 0 0;
}

.rating-lockup strong {
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  transform-origin: left center;
  animation: rating-breathe 4.6s var(--ease-in-out) infinite alternate;
}

.rating-lockup span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.reviews-heading .text-link {
  margin-top: 32px;
}

.review-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.review {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}

.stars {
  margin: 0;
  color: var(--accent-dark);
  font-size: 1rem;
  letter-spacing: 0.13em;
}

.review blockquote {
  flex: 1;
  margin: 30px 0 38px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.review-footer {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 4px 12px;
}

.review-footer img {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.review-footer strong {
  font-size: 0.9rem;
}

.review-footer a {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: stretch;
}

.visit-details {
  display: flex;
  flex-direction: column;
}

.visit-details h2 {
  margin-bottom: 58px;
}

.visit-detail-block {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.visit-detail-block h3,
.visit-detail-block p {
  margin: 0;
}

.visit-detail-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-detail-block .detail-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--ink);
}

.visit-detail-block p {
  font-weight: 650;
}

.visit-detail-block p + p {
  grid-column: 2;
}

.visit-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 34px;
}

.map-wrap {
  min-height: 680px;
  overflow: hidden;
  background: #ddd;
}

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

.site-footer {
  padding-block: 64px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.8fr auto;
  gap: 38px;
  align-items: end;
}

.footer-brand p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  letter-spacing: -0.055em;
}

.footer-brand span {
  color: #b8bba9;
  font-size: 0.82rem;
}

.footer-contact,
.footer-nav {
  display: grid;
  justify-items: start;
  gap: 8px;
  font-size: 0.84rem;
}

.footer-contact a,
.footer-contact .footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--paper);
  filter: brightness(0) invert(1);
}

.footer-contact .footer-hours {
  align-items: flex-start;
}

.footer-contact > span {
  max-width: 24ch;
  color: #b8bba9;
  font-size: 0.76rem;
}

.footer-social {
  color: var(--paper);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 20px;
  padding: 24px;
  color: var(--white);
  background: rgb(13 14 10 / 0.94);
  visibility: hidden;
  opacity: 0;
  transition: opacity 140ms var(--ease-out), visibility 0s linear 140ms;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 220ms var(--ease-out), visibility 0s linear 0s;
}

.lightbox-close,
.lightbox-nav {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(250 251 244 / 0.55);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), color 150ms ease, background-color 150ms ease;
}

.lightbox .icon-image {
  filter: brightness(0) invert(1);
}

.lightbox-close:active,
.lightbox-nav:active,
.menu-toggle:active,
.menu-close:active,
.social-link:active {
  transform: scale(0.94);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
}

.lightbox-figure {
  min-width: 0;
  max-width: min(86vw, 1300px);
  max-height: 86vh;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto;
  opacity: 0;
  filter: blur(2px);
  transform: scale(0.97);
  transition: opacity 140ms var(--ease-out), filter 140ms ease, transform 140ms var(--ease-out);
}

.lightbox.is-open .lightbox-figure {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition-duration: 220ms;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-figure figcaption {
  font-size: 0.84rem;
}

.gallery-cursor {
  position: fixed;
  z-index: 45;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translate3d(-100px, -100px, 0) scale(0.82);
  transition: opacity 150ms ease;
  will-change: transform;
}

.gallery-cursor.is-visible {
  opacity: 1;
}

.closing-loop {
  overflow: hidden;
  border-top: 1px solid rgb(242 243 233 / 0.2);
  border-bottom: 1px solid rgb(242 243 233 / 0.2);
  color: var(--accent);
  background: var(--ink);
}

.closing-loop-track {
  width: max-content;
  display: flex;
  transform: translate3d(0, 0, 0);
  animation: closing-marquee 22s linear infinite;
  will-change: transform;
}

.closing-loop-copy {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(24px, 4vw, 48px) clamp(28px, 4vw, 64px);
  font-size: clamp(2rem, 5vw, 5.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.closing-loop-copy i {
  width: clamp(12px, 1.5vw, 22px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  background: currentColor;
  transform: rotate(45deg);
  animation: marker-turn 5s linear infinite;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.motion-ready .reveal {
  opacity: 0.72;
  transform: translateY(28px);
  transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready .reveal .ratio-3-4 {
  clip-path: inset(0 0 12% 0);
  transition: clip-path 820ms var(--ease-out);
}

html.motion-ready .reveal.is-visible .ratio-3-4 {
  clip-path: inset(0 0 0 0);
}

.menu-feature:nth-child(2),
.experience-item:nth-child(even) {
  transition-delay: 70ms;
}

.menu-feature:nth-child(3) {
  transition-delay: 140ms;
}

@keyframes copy-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-0.7%, 0.45%, 0); }
}

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

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

@keyframes seal-float {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(0, -14px, 0) rotate(2deg); }
}

@keyframes photo-float {
  from { transform: translate3d(0, 0, 0) rotate(-1.2deg); }
  to { transform: translate3d(0, -13px, 0) rotate(1deg); }
}

@keyframes portrait-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-0.6%, -0.4%, 0); }
}

@keyframes category-scan {
  0% { transform: translate3d(-120%, 0, 0); }
  100% { transform: translate3d(660%, 0, 0); }
}

@keyframes menu-drift-a {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-0.7%, -0.5%, 0); }
}

@keyframes menu-drift-b {
  from { transform: scale(1.025) translate3d(-0.5%, 0.4%, 0); }
  to { transform: scale(1.08) translate3d(0.6%, -0.5%, 0); }
}

@keyframes ambient-pulse {
  from { opacity: 0.36; transform: scale(0.94); }
  to { opacity: 0.76; transform: scale(1.04); }
}

@keyframes scene-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(0.6%, -0.5%, 0); }
}

@keyframes light-sweep {
  0%, 16% { opacity: 0; transform: skewX(-13deg) translate3d(0, 0, 0); }
  42%, 58% { opacity: 1; }
  84%, 100% { opacity: 0; transform: skewX(-13deg) translate3d(172vw, 0, 0); }
}

@keyframes rating-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.028); }
}

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

@keyframes marker-turn {
  to { transform: rotate(405deg); }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav > a:not(.social-link):hover::after,
  .footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover,
  .menu-toggle:hover,
  .menu-close:hover {
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-2px);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    color: var(--ink);
    background: var(--accent);
    transform: translateY(-2px);
  }

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

  .button-primary:hover {
    background: #d8e65d;
  }

  .menu-feature {
    transition: transform 220ms var(--ease-out);
  }

  .menu-feature:hover {
    transform: translateY(-7px);
  }

  .menu-feature:hover > .ratio-3-4 img,
  .gallery-item:hover img {
    filter: saturate(1.1) contrast(1.02);
  }

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

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 28px, 760px);
    --header-height: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header {
    padding-inline: 14px;
    color: var(--white);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    color: var(--ink);
    background: rgb(242 243 233 / 0.94);
    box-shadow: 0 1px 0 rgb(22 24 18 / 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-brand-disc {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    justify-items: center;
    border: 1px solid var(--white);
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    line-height: 1;
    box-shadow: 0 3px 14px rgb(0 0 0 / 0.18);
  }

  .mobile-brand-disc strong {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .mobile-brand-disc small {
    margin-top: 4px;
    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .wordmark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.03rem;
    font-weight: 400;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .site-header.is-scrolled .wordmark {
    color: var(--ink);
  }

  .wordmark span {
    display: inline;
  }

  .wordmark strong {
    font-size: inherit;
    font-weight: 400;
  }

  .social-link.mobile-header-facebook {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-left: auto;
    border: 0;
    color: inherit;
  }

  .mobile-header-facebook svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 22px);
  }

  .hero-seal {
    right: 24px;
    bottom: 64px;
    width: 112px;
  }

  .visit-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-strip p {
    min-height: 104px;
    padding: 20px 16px;
    border-top: 1px solid rgb(22 24 18 / 0.24);
  }

  .visit-strip p:nth-child(-n + 2) {
    border-top: 0;
  }

  .visit-strip p:nth-child(odd) {
    border-left: 0;
  }

  .visit-strip p:nth-child(even) {
    border-right: 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .about-media {
    width: min(72%, 560px);
  }

  .about-collage {
    min-height: min(94vw, 740px);
  }

  .about-people {
    width: min(50%, 350px);
  }

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

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

  .experience-heading,
  .reviews-heading {
    position: static;
  }

  .experience-heading {
    max-width: 650px;
  }

  .experience-orbit {
    right: -24vw;
    top: -10vw;
    width: 76vw;
  }

  .scene-break {
    min-height: 680px;
  }

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

  .visit-actions {
    margin-top: 0;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }

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

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding-block: 82px;
  }

  .site-header {
    height: 64px;
  }

  .site-header.is-scrolled .mobile-brand-disc {
    border-color: var(--ink);
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 34px;
  }

  .hero-eyebrow {
    display: block;
    max-width: none;
    margin: 0 0 18px;
    color: rgb(250 251 244 / 0.88);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1.2;
    text-transform: uppercase;
    animation: copy-enter 720ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 13vw, 4.8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    text-shadow: 0 3px 20px rgb(0 0 0 / 0.24);
  }

  .hero-title-desktop {
    display: none !important;
  }

  .hero h1 .hero-title-mobile {
    display: block;
  }

  .hero-tagline {
    max-width: 29ch !important;
    margin-top: 20px !important;
    color: var(--white);
    font-size: 1.04rem !important;
    font-weight: 400 !important;
    line-height: 1.38;
    text-shadow: 0 2px 14px rgb(0 0 0 / 0.2);
  }

  .hero-meta {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }

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

  .hero-actions .button {
    min-width: 0;
    min-height: 64px;
    justify-content: space-between;
    padding-inline: 15px;
    border-color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
  }

  .hero-actions .button-primary {
    color: var(--ink);
    background: var(--white);
  }

  .hero-actions .button-ghost {
    color: var(--white);
    background: rgb(22 24 18 / 0.16);
  }

  .hero-actions .button-ghost .button-icon {
    filter: brightness(0) invert(1);
  }

  .hero-image {
    object-position: 50% 46%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgb(0 0 0 / 0.26) 0%, rgb(0 0 0 / 0.04) 43%, rgb(0 0 0 / 0.68) 100%);
  }

  .hero-seal {
    top: clamp(116px, 17vh, 160px);
    right: 16px;
    bottom: auto;
    width: 142px;
    color: var(--white);
    opacity: 0.88;
    filter: drop-shadow(0 3px 16px rgb(0 0 0 / 0.28));
  }

  .hero-seal svg {
    fill: transparent;
    stroke: var(--white);
  }

  .hero-seal text {
    fill: var(--white);
  }

  .hero-seal-cup {
    stroke: var(--white);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .category-line {
    gap: 12px 18px;
    margin-bottom: 42px;
    padding-block: 18px;
    font-size: 1.25rem;
  }

  .category-line li {
    gap: 18px;
  }

  .category-line li:not(:last-child)::after {
    width: 6px;
    height: 6px;
  }

  .about-collage {
    min-height: 120vw;
  }

  .about-media {
    width: 78%;
  }

  .about-people {
    width: 54%;
    bottom: 0;
    border-width: 8px;
  }

  .about-location {
    top: 22px;
    font-size: 0.68rem;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .experience-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .experience-item:last-child {
    border-bottom: 1px solid rgb(22 24 18 / 0.32);
  }

  .experience::after {
    left: -30vw;
    bottom: -18vw;
    width: 95vw;
  }

  .scene-break {
    min-height: 590px;
  }

  .scene-break > .scene-picture img {
    object-position: 53% 50%;
  }

  .scene-content h2 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

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

  .gallery-caption {
    margin-top: 8px;
    font-size: 0.7rem;
  }

  .reviews-layout {
    gap: 52px;
  }

  .rating-lockup {
    margin-top: 32px;
  }

  .review {
    padding: 30px 0;
  }

  .review blockquote {
    margin-block: 30px 38px;
  }

  .visit-details h2 {
    margin-bottom: 42px;
  }

  .visit-detail-block {
    grid-template-columns: 78px 1fr;
  }

  .visit-actions .button {
    flex: 1;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 430px;
  }

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

  .closing-loop-copy {
    gap: 24px;
    padding: 26px 28px;
    font-size: 2.4rem;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 4px;
    padding: 16px 8px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 390px) {
  .wordmark {
    font-size: 0.9rem;
    letter-spacing: 0.085em;
  }
}

@media (max-width: 380px) {
  .wordmark {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }
}

@media (min-width: 901px) {
  .site-header {
    color: var(--white);
  }

  .site-header.is-scrolled {
    color: var(--ink);
  }

  .hero-image {
    object-position: 50% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 0.38) 0%, rgb(0 0 0 / 0.08) 54%, rgb(0 0 0 / 0.2) 100%),
      linear-gradient(180deg, rgb(0 0 0 / 0.22) 0%, rgb(0 0 0 / 0.02) 48%, rgb(0 0 0 / 0.68) 100%);
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    grid-template-rows: auto auto;
    align-content: end;
    align-items: end;
    column-gap: clamp(48px, 7vw, 120px);
    padding-top: calc(var(--header-height) + 84px);
    padding-bottom: clamp(56px, 7vw, 92px);
  }

  .hero-eyebrow {
    display: block;
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin: 0 0 24px;
    color: rgb(250 251 244 / 0.88);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
    animation: copy-enter 720ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.2rem, 7.6vw, 8.8rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-shadow: 0 4px 26px rgb(0 0 0 / 0.26);
  }

  .hero-side {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    width: min(100%, 390px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .hero-tagline {
    max-width: 26ch !important;
    margin: 0 0 0 auto !important;
    color: var(--white);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem) !important;
    font-weight: 400 !important;
    line-height: 1.35;
    text-align: right;
    text-shadow: 0 2px 14px rgb(0 0 0 / 0.24);
  }

  .hero-meta {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }

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

  .hero-actions .button {
    min-height: 60px;
    justify-content: space-between;
    padding-inline: 18px;
    border-color: var(--white);
  }

  .hero-actions .button-primary {
    color: var(--ink);
    background: var(--white);
  }

  .hero-actions .button-ghost {
    color: var(--white);
    background: rgb(22 24 18 / 0.18);
  }

  .hero-actions .button-ghost .button-icon {
    filter: brightness(0) invert(1);
  }

  .hero-seal {
    top: clamp(84px, 9vw, 132px);
    right: clamp(28px, 5vw, 84px);
    bottom: auto;
    width: clamp(168px, 15vw, 236px);
    color: var(--white);
    opacity: 0.82;
    filter: drop-shadow(0 4px 18px rgb(0 0 0 / 0.28));
  }

  .hero-seal svg {
    fill: transparent;
    stroke: var(--white);
  }

  .hero-seal text {
    fill: var(--white);
  }

  .hero-seal-cup {
    stroke: var(--white);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  html.motion-ready .reveal,
  html.motion-ready .reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: opacity 160ms ease;
  }

  .hero-image,
  .hero-seal,
  .hero-seal svg,
  .hero-seal-cup,
  .about-people,
  .about-people img,
  .category-line::after,
  .menu-feature > .ratio-3-4 img,
  .experience::after,
  .experience-orbit,
  .scene-break > .scene-picture img,
  .scene-break::after,
  .gallery::before,
  .rating-lockup strong,
  .closing-loop-track,
  .closing-loop-copy i {
    animation: none !important;
  }

  .closing-loop-copy:nth-child(2) {
    display: none;
  }

  .gallery-cursor {
    display: none;
  }

  .scene-break::after {
    opacity: 0;
  }

  html.motion-ready .reveal .ratio-3-4,
  html.motion-ready .reveal.is-visible .ratio-3-4 {
    clip-path: none;
  }
}
