:root {
  --ink: #1b1b17;
  --muted: #5f625a;
  --paper: #f3f5ee;
  --paper-soft: #e8ece1;
  --line: #cfd4c8;
  --accent: #e65323;
  --cocoa: #361709;
  --white: #fbfcf8;
  --header-height: 72px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-pad: clamp(76px, 9vw, 144px);
  --radius-control: 999px;
  --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) + 20px);
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

img {
  max-width: 100%;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: transform .2s var(--ease-out);
}

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

.page-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section-pad {
  padding-block: var(--section-pad);
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid rgb(255 255 255 / .26);
  color: var(--white);
  background: rgb(54 23 9 / .84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.brand {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: none;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name-mobile {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: .9rem;
  font-weight: 800;
}

.desktop-nav a,
.footer-nav a,
.footer-socials a,
.mobile-menu a {
  transition: color .2s ease;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform .22s var(--ease-out);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link,
.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .34);
  border-radius: var(--radius-control);
  background: rgb(20 20 18 / .18);
  color: var(--white);
  transition: transform .25s var(--ease-out), background-color .25s ease;
}

.social-link:active,
.menu-toggle:active,
.button:active,
.gallery-item:active,
.footer-social-link:active,
.text-link:active,
.review > a:active,
.mobile-action-bar a:active {
  transform: translateY(1px) scale(.98);
}

.social-link svg {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .25s var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 40px) var(--page-gutter) 40px;
  visibility: hidden;
  opacity: 0;
  color: var(--white);
  background: rgb(54 23 9 / .98);
  transition: opacity .26s var(--ease-out), visibility .26s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

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

.mobile-menu nav a {
  padding-block: 8px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 13vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: color .2s ease, opacity .24s var(--ease-out), transform .24s var(--ease-out);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 50ms;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 100ms;
}

.mobile-menu.is-open nav a:nth-child(4) {
  transition-delay: 150ms;
}

.mobile-menu-socials {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .22s var(--ease-out) 170ms, transform .22s var(--ease-out) 170ms;
}

.mobile-menu.is-open .mobile-menu-socials {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-keyboard-closing,
.mobile-menu.is-keyboard-closing * {
  transition-duration: 0ms !important;
  transition-delay: 0ms !important;
}

.mobile-menu-socials .social-link {
  display: inline-grid;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--white);
  background: #2b211c;
}

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

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.035);
  animation: hero-breathe 18s var(--ease-in-out) infinite alternate;
}

.hero-scrim {
  z-index: 2;
  background: linear-gradient(to bottom, rgb(0 0 0 / .10) 0%, rgb(0 0 0 / .12) 48%, rgb(0 0 0 / .28) 100%);
}

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

.hero-glow {
  position: absolute;
  width: clamp(280px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .22;
  background: radial-gradient(circle, rgb(255 126 75 / .72) 0 12%, rgb(255 165 104 / .22) 42%, transparent 70%);
  will-change: transform, opacity;
}

.hero-glow-one {
  top: -18%;
  right: -10%;
  animation: hero-glow-one 11s var(--ease-in-out) infinite alternate;
}

.hero-glow-two {
  bottom: -28%;
  left: 18%;
  width: clamp(230px, 30vw, 480px);
  opacity: .15;
  animation: hero-glow-two 14s var(--ease-in-out) infinite alternate;
}

.hero-orbit {
  position: absolute;
  top: clamp(116px, 17vh, 190px);
  right: clamp(30px, 6vw, 104px);
  z-index: 3;
  width: clamp(146px, 17vw, 230px);
  aspect-ratio: 1;
  color: var(--white);
  pointer-events: none;
  animation: orbit-float 5.8s var(--ease-in-out) infinite alternate;
}

.hero-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: orbit-spin 18s linear infinite;
}

.hero-orbit text {
  fill: currentColor;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.45px;
}

.hero-orbit-core {
  position: absolute;
  inset: 29%;
  display: grid;
  place-content: center;
  border: 1px solid rgb(255 255 255 / .58);
  border-radius: 50%;
  background: rgb(54 23 9 / .52);
  box-shadow: 0 16px 46px rgb(0 0 0 / .2);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-orbit-core strong {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  letter-spacing: -.08em;
  line-height: 1;
}

.hero-orbit-core small {
  margin-top: 5px;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(310px, .78fr);
  min-height: 100%;
  align-items: end;
  gap: clamp(44px, 6vw, 104px);
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: clamp(26px, 4vh, 46px);
}

.hero-kicker,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  animation: hero-copy-in .8s var(--ease-out) forwards;
}

.hero h1 {
  animation-delay: 70ms;
}

.hero-copy {
  animation-delay: 140ms;
}

.hero-actions {
  animation-delay: 210ms;
}

.hero-kicker {
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  text-shadow: 0 3px 24px rgb(0 0 0 / .28);
}

.hero-intro {
  min-width: 0;
  padding-bottom: 18px;
}

.hero-title-desktop {
  display: block;
  font-family: "Bodoni MT", Didot, "Times New Roman", serif;
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .72;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title-mobile,
.hero-kicker-mobile {
  display: none;
}

.hero-side {
  width: min(100%, 440px);
  justify-self: end;
  padding-bottom: 2px;
}

.hero-copy {
  max-width: 420px;
  font-size: clamp(1.03rem, 1.45vw, 1.28rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgb(0 0 0 / .56);
}

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

.hero-actions .button {
  min-height: 60px;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 0;
}

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

.button-arrow {
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 18px;
  transition: transform .2s var(--ease-out);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease-out), background-color .25s ease, color .25s ease;
}

.button-primary {
  color: #1e0b04;
  background: #ff7140;
}

.button-ghost {
  border-color: rgb(255 255 255 / .72);
  color: var(--white);
  background: rgb(20 20 18 / .24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-dark {
  width: fit-content;
  gap: 10px;
  color: var(--white);
  background: var(--cocoa);
}

.button-dark .button-arrow {
  margin-left: auto;
}

.button-leading {
  width: 18px;
  height: 18px;
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

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

.quick-facts dl {
  min-width: 0;
  padding: 28px clamp(18px, 2.6vw, 42px);
  border-left: 1px solid var(--line);
}

.quick-facts dl:last-child {
  border-right: 1px solid var(--line);
}

.quick-facts dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-facts .fact-icon {
  width: 17px;
  height: 17px;
  color: var(--accent);
  animation: fact-pulse 2.8s var(--ease-in-out) infinite;
}

.quick-facts dl:nth-child(2) .fact-icon {
  animation-delay: -.7s;
}

.quick-facts dl:nth-child(3) .fact-icon {
  animation-delay: -1.4s;
}

.quick-facts dl:nth-child(4) .fact-icon {
  animation-delay: -2.1s;
}

.quick-facts dd {
  margin-top: 5px;
  font-weight: 900;
  line-height: 1.25;
}

.flavour-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background: var(--cocoa);
}

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

.flavour-run {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(20px, 2vw, 36px);
  padding: 17px clamp(20px, 2vw, 36px) 18px 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.flavour-run i {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(46px, 6vw, 100px);
  align-items: center;
}

.about-copy p {
  max-width: 720px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
  line-height: 1.65;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 900;
}

.service-line span:not(:last-child)::after {
  content: "/";
  margin-left: 20px;
  color: var(--accent);
}

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

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

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .75fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: start;
}

.daylight-stamp {
  position: absolute;
  right: 12%;
  bottom: 3%;
  z-index: 2;
  display: grid;
  width: clamp(104px, 10vw, 146px);
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--cocoa);
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 42px rgb(54 23 9 / .22);
  text-align: center;
  animation: stamp-float 4.8s var(--ease-in-out) infinite alternate;
}

.daylight-stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgb(255 255 255 / .82);
  border-radius: 50%;
  animation: stamp-spin 12s linear infinite;
}

.daylight-stamp strong,
.daylight-stamp span {
  position: relative;
  z-index: 1;
}

.daylight-stamp strong {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -.08em;
  line-height: 1;
}

.daylight-stamp span {
  margin-top: 4px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-detail {
  margin-top: clamp(70px, 10vw, 150px);
}

.about-figure img,
.about-detail img {
  object-position: 50% 50%;
}

.menu-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

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

.menu-ambient span {
  position: absolute;
  display: block;
  border: 1px solid rgb(230 83 35 / .22);
  border-radius: 46% 54% 63% 37% / 41% 39% 61% 59%;
  will-change: transform, opacity;
}

.menu-ambient span:nth-child(1) {
  top: 4%;
  right: -7%;
  width: clamp(180px, 24vw, 390px);
  aspect-ratio: 1;
  background: rgb(230 83 35 / .035);
  animation: liquid-drift-one 12s var(--ease-in-out) infinite alternate;
}

.menu-ambient span:nth-child(2) {
  bottom: 3%;
  left: -8%;
  width: clamp(220px, 30vw, 470px);
  aspect-ratio: 1;
  border-color: rgb(54 23 9 / .11);
  animation: liquid-drift-two 16s var(--ease-in-out) infinite alternate;
}

.menu-ambient span:nth-child(3) {
  top: 48%;
  left: 48%;
  width: clamp(70px, 8vw, 120px);
  aspect-ratio: 1;
  border-color: transparent;
  background: rgb(230 83 35 / .065);
  animation: liquid-drift-three 8s var(--ease-in-out) infinite alternate;
}

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

.section-heading p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(26px, 5vw, 78px);
  margin-bottom: clamp(46px, 6vw, 84px);
}

.menu-heading-copy {
  min-width: 0;
}

.menu-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.menu-heading h2 {
  max-width: 900px;
  font-size: clamp(2.75rem, 5vw, 5.2rem);
  letter-spacing: -.04em;
  text-wrap: balance;
}

.menu-heading p {
  margin-top: 22px;
}

.menu-action {
  min-width: 176px;
  margin-top: clamp(24px, 3vw, 38px);
  justify-content: space-between;
  padding-inline: 18px;
  border-radius: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 26px);
  align-items: stretch;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.menu-card-image {
  background: var(--line);
}

.menu-card-image img {
  object-position: 50% 50%;
  transition: transform .28s var(--ease-out);
}

.menu-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: clamp(18px, 2vw, 26px);
}

.menu-card-copy > h3 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.04;
  text-wrap: balance;
}

.menu-card-copy > p {
  max-width: 34ch;
  min-height: 2.9em;
  margin-top: 15px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.menu-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(45px, auto));
  margin-top: auto;
  padding-top: 20px;
}

.menu-list > div {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: .83rem;
}

.menu-list dt {
  font-weight: 800;
  line-height: 1.32;
}

.menu-list dd {
  color: #9b3019;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .75rem;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.text-link-icon,
.inline-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: transform .2s var(--ease-out);
}

.text-link-icon .icon,
.inline-icon .icon {
  width: 17px;
  height: 17px;
}

.moment-section {
  position: relative;
  min-height: min(78vw, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--cocoa);
}

.moment-section > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.moment-section > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.03);
  animation: courtyard-breathe 16s var(--ease-in-out) infinite alternate;
}

.moment-section::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -35%;
  z-index: 2;
  width: 24%;
  opacity: 0;
  transform: translate3d(-120%, 0, 0) rotate(12deg);
  background: linear-gradient(90deg, transparent, rgb(255 247 222 / .42), transparent);
  pointer-events: none;
  animation: courtyard-light 8s linear infinite;
  will-change: transform, opacity;
}

.moment-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(0 0 0 / .28), rgb(0 0 0 / .04) 62%, rgb(0 0 0 / .08));
}

.moment-copy {
  position: absolute;
  z-index: 3;
  left: var(--page-gutter);
  bottom: clamp(32px, 7vw, 92px);
  width: min(calc(100% - (var(--page-gutter) * 2)), 620px);
  padding: clamp(28px, 4vw, 54px);
  background: rgb(54 23 9 / .90);
}

.moment-copy h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.moment-copy p {
  max-width: 460px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.moment-copy .button {
  margin-top: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 24px);
  counter-reset: eddies-gallery;
}

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: var(--line);
  counter-increment: eddies-gallery;
}

.gallery-item::after {
  content: "0" counter(eddies-gallery);
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .52);
  border-radius: 50%;
  color: var(--white);
  background: rgb(54 23 9 / .68);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .22s var(--ease-out), opacity .22s ease;
}

.gallery-item img {
  object-position: 50% 50%;
  transition: transform .28s var(--ease-out), filter .24s ease;
}

.gallery-item:nth-child(1) img {
  object-position: 50% 46%;
}

.gallery-item:nth-child(3) img,
.gallery-item:nth-child(5) img {
  object-position: 50% 54%;
}

.reviews-section {
  background: #eef1e8;
}

.reviews-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.review-score {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.review-score strong {
  margin-right: 8px;
  color: var(--ink);
  font-size: 1.4rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.review {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  transition: transform .22s var(--ease-out);
}

.review-featured {
  grid-row: 1 / span 2;
  padding-right: clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-person img {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}

.review h3 {
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.stars {
  margin-top: 4px;
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: .06em;
  transform-origin: left center;
  animation: stars-breathe 3.6s var(--ease-in-out) infinite;
}

.review blockquote {
  margin-top: 28px;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  font-weight: 700;
  line-height: 1.42;
}

.review-featured blockquote {
  max-width: 710px;
  font-size: clamp(1.85rem, 3.4vw, 3.55rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.review > a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  font-size: .9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: stretch;
}

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

.visit-copy h2 {
  font-size: clamp(2.7rem, 5.7vw, 5.5rem);
}

.visit-copy address {
  margin-top: 36px;
  font-size: 1.08rem;
  font-style: normal;
  line-height: 1.7;
}

.hours {
  margin-block: 30px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}

.hours p {
  color: var(--muted);
}

.hours strong {
  display: block;
  margin-top: 4px;
  font-size: 1.18rem;
}

.visit-features {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .88rem;
}

.visit-facts {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.visit-facts dl {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.visit-facts dt {
  font-weight: 900;
}

.visit-facts dd {
  max-width: 390px;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.map-frame {
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-soft);
}

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

.site-footer {
  padding-block: 58px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.mobile-action-bar {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr .7fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 900;
}

.footer-brand span {
  display: block;
  max-width: 250px;
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.footer-address,
.footer-nav {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--ink);
  transition: border-color .2s ease, color .2s ease, transform .2s var(--ease-out);
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
}

.footer-address p + p {
  margin-top: 10px;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  border: 0;
  color: var(--white);
  background: rgb(15 15 13 / .94);
  opacity: 0;
  transition: opacity .22s var(--ease-out);
}

.lightbox[open] {
  opacity: 1;
}

@starting-style {
  .lightbox[open] {
    opacity: 0;
  }
}

.lightbox::backdrop {
  background: rgb(15 15 13 / .94);
}

.lightbox-panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  place-items: center;
  padding: 70px clamp(56px, 8vw, 120px) 32px;
}

.lightbox figure {
  display: grid;
  max-width: min(82vw, 900px);
  max-height: 88vh;
  place-items: center;
  gap: 12px;
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(88vh - 38px);
  object-fit: contain;
}

.lightbox-caption {
  color: #d6d7d1;
  font-size: .9rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(255 255 255 / .3);
  border-radius: var(--radius-control);
  color: var(--white);
  background: rgb(255 255 255 / .08);
  cursor: pointer;
  transition: transform .16s var(--ease-out), opacity .16s ease;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  font-size: 0;
}

.lightbox-nav {
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateY(-50%);
  font-size: 0;
}

.lightbox-close .icon {
  width: 20px;
  height: 20px;
}

.lightbox-nav .icon {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close:active {
  transform: scale(.97);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(.94);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out) var(--reveal-delay, 0ms), transform .7s var(--ease-out) var(--reveal-delay, 0ms);
}

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

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.105) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes hero-glow-one {
  from {
    opacity: .14;
    transform: translate3d(0, 0, 0) scale(.88);
  }
  to {
    opacity: .3;
    transform: translate3d(-16%, 18%, 0) scale(1.12);
  }
}

@keyframes hero-glow-two {
  from {
    opacity: .09;
    transform: translate3d(-8%, 4%, 0) scale(.9);
  }
  to {
    opacity: .2;
    transform: translate3d(18%, -18%, 0) scale(1.16);
  }
}

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

@keyframes orbit-float {
  from {
    transform: translate3d(0, -8px, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(0, 12px, 0) rotate(3deg);
  }
}

@keyframes fact-pulse {
  0%, 100% {
    opacity: .45;
    transform: scale(.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

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

@keyframes stamp-float {
  from {
    transform: translate3d(0, -8px, 0) rotate(-4deg);
  }
  to {
    transform: translate3d(0, 10px, 0) rotate(4deg);
  }
}

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

@keyframes liquid-drift-one {
  from {
    opacity: .5;
    transform: translate3d(0, -8%, 0) rotate(-14deg) scale(.92);
  }
  to {
    opacity: 1;
    transform: translate3d(-24%, 22%, 0) rotate(32deg) scale(1.08);
  }
}

@keyframes liquid-drift-two {
  from {
    opacity: .42;
    transform: translate3d(-4%, 8%, 0) rotate(12deg) scale(1);
  }
  to {
    opacity: .85;
    transform: translate3d(22%, -18%, 0) rotate(-28deg) scale(.88);
  }
}

@keyframes liquid-drift-three {
  from {
    opacity: .32;
    transform: translate3d(-28%, -12%, 0) rotate(0deg) scale(.76);
  }
  to {
    opacity: .78;
    transform: translate3d(36%, 30%, 0) rotate(180deg) scale(1.18);
  }
}

@keyframes courtyard-breathe {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(1.4%, -1%, 0);
  }
}

@keyframes courtyard-light {
  0%, 12% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0) rotate(12deg);
  }
  28%, 45% {
    opacity: .52;
  }
  62%, 100% {
    opacity: 0;
    transform: translate3d(700%, 0, 0) rotate(12deg);
  }
}

@keyframes stars-breathe {
  0%, 100% {
    opacity: .68;
    transform: scale(.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.045);
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand img {
    transition: transform .22s var(--ease-out);
  }

  .brand:hover img {
    transform: rotate(-6deg) scale(1.06);
  }

  .desktop-nav a:hover,
  .footer-nav a:hover,
  .footer-socials a:hover {
    color: var(--accent);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover,
  .menu-toggle:hover {
    transform: translateY(-2px);
    background: rgb(20 20 18 / .36);
  }

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

  .button:hover .button-arrow {
    transform: translate3d(4px, -4px, 0);
  }

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

  .button-ghost:hover {
    background: rgb(20 20 18 / .42);
  }

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

  .menu-card-image:hover img {
    transform: scale(1.055) rotate(.8deg);
  }

  .text-link:hover,
  .review > a:hover {
    color: var(--accent);
  }

  .text-link:hover span {
    transform: translate3d(4px, -4px, 0);
  }

  .review > a:hover .inline-icon {
    transform: translate3d(4px, -4px, 0);
  }

  .gallery-item:hover img {
    transform: scale(1.07) rotate(.8deg);
    filter: saturate(1.08);
  }

  .gallery-item:nth-child(even):hover img {
    transform: scale(1.07) rotate(-.8deg);
  }

  .gallery-item:hover::after {
    transform: rotate(12deg) scale(1.12);
  }

  .review:hover {
    transform: translateY(-5px);
  }

  .footer-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px) rotate(4deg);
  }

  .lightbox-close:hover {
    transform: scale(1.03);
    background: rgb(255 255 255 / .18);
  }

  .lightbox-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgb(255 255 255 / .18);
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions > .social-link {
    display: none;
  }

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

  .menu-toggle {
    display: inline-grid;
  }

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

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding-bottom: clamp(52px, 8vh, 96px);
  }

  .hero-intro,
  .hero-side {
    width: 100%;
  }

  .hero-intro {
    padding-bottom: 0;
  }

  .hero-side {
    justify-self: auto;
    padding-bottom: 0;
  }

  .hero-title-desktop,
  .hero-kicker-desktop {
    display: none;
  }

  .hero-title-mobile,
  .hero-kicker-mobile {
    display: block;
  }

  .hero h1 {
    max-width: 960px;
    font-size: clamp(3.2rem, 8.6vw, 8.3rem);
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 570px;
    margin-top: 20px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 2px 18px rgb(0 0 0 / .28);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-height: 50px;
    justify-content: center;
    padding: 13px 23px;
    border-radius: var(--radius-control);
  }

  .hero .button-primary {
    background: #ff7140;
  }

  .button-arrow {
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
  }

  .hero-orbit {
    top: 112px;
    right: 24px;
    width: 152px;
  }

  .about-grid,
  .visit-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-action {
    justify-self: start;
    margin-top: 0;
  }

  .about-copy {
    order: 1;
  }

  .about-images {
    order: 2;
    width: min(100%, 760px);
  }

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

  .review-featured {
    grid-row: auto;
    padding-right: 0;
    border-right: 0;
  }

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

  .reviews-grid {
    max-width: 720px;
  }

  .review blockquote {
    max-width: 620px;
  }

  .review-featured blockquote {
    max-width: 720px;
  }

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

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

@media (max-width: 600px) {
  :root {
    --header-height: 66px;
    --page-gutter: 18px;
    --section-pad: 78px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-over-content,
  body.menu-open .site-header {
    background: rgb(54 23 9 / .96);
    border-bottom-color: rgb(255 255 255 / .2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .brand {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    gap: 9px;
    overflow: visible;
  }

  .site-header .brand img {
    width: 48px;
    height: 48px;
    flex: none;
    border: 1px solid rgb(255 255 255 / .76);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgb(0 0 0 / .2);
  }

  .brand-name-mobile {
    display: block;
    font-family: "Bodoni MT", Didot, "Times New Roman", serif;
    font-size: clamp(1.28rem, 5.7vw, 1.58rem);
    font-weight: 400;
    letter-spacing: .025em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgb(0 0 0 / .34);
  }

  .header-actions {
    gap: 0;
  }

  .header-actions > .social-link {
    display: inline-grid;
    width: 34px;
    height: 42px;
    border: 0;
    background: transparent;
  }

  .header-actions > .social-link svg {
    width: 20px;
    height: 20px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 26px;
    height: 1.5px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: max(28px, calc(env(safe-area-inset-bottom) + 20px));
  }

  .hero-orbit {
    top: 118px;
    right: -2px;
    width: 150px;
  }

  .hero-orbit text {
    font-size: 9px;
  }

  .hero-glow-one {
    top: -4%;
    right: -34%;
  }

  .hero-glow-two {
    bottom: -12%;
    left: -26%;
  }

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

  .hero-title-desktop,
  .hero-kicker-desktop {
    display: block;
  }

  .hero-title-mobile,
  .hero-kicker-mobile {
    display: none;
  }

  .hero-kicker {
    margin-bottom: 13px;
    font-size: .66rem;
    letter-spacing: .14em;
  }

  .hero h1 {
    max-width: none;
    font-size: inherit;
  }

  .hero-title-desktop {
    font-size: clamp(3.35rem, 15.2vw, 4.2rem);
    line-height: .82;
    letter-spacing: -.065em;
  }

  .hero-side {
    margin-top: 22px;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 0;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.45;
    text-shadow: 0 2px 18px rgb(0 0 0 / .54);
  }

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

  .button {
    min-height: 48px;
  }

  .hero-actions .button {
    min-height: 62px;
    justify-content: space-between;
    padding: 14px 17px;
    border-radius: 0;
  }

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

  .button-arrow {
    display: inline-block;
    margin-left: 10px;
  }

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

  .quick-facts dl {
    padding: 21px 18px;
  }

  .quick-facts dl:nth-child(2) {
    border-right: 1px solid var(--line);
  }

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

  .quick-facts dd {
    font-size: .9rem;
  }

  .flavour-run {
    gap: 18px;
    padding-block: 15px 16px;
    padding-right: 18px;
    font-size: 1.2rem;
  }

  .flavour-run i {
    width: 7px;
    height: 7px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-images {
    gap: 10px;
  }

  .about-detail {
    margin-top: 48px;
  }

  .daylight-stamp {
    right: 8%;
    bottom: -2%;
    width: 96px;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .service-line {
    display: grid;
    gap: 8px;
  }

  .service-line span::after {
    display: none;
  }

  .menu-ambient span:nth-child(1) {
    right: -28%;
  }

  .menu-ambient span:nth-child(2) {
    bottom: 18%;
    left: -34%;
  }

  .menu-grid {
    gap: 48px;
  }

  .menu-card-copy {
    margin-top: 18px;
  }

  .menu-card-copy > h3 {
    font-size: 2rem;
  }

  .menu-card-copy > p {
    min-height: 0;
  }

  .menu-footer {
    flex-direction: column;
    gap: 4px;
  }

  .moment-section {
    min-height: 650px;
  }

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

  .moment-section::after {
    background: linear-gradient(to top, rgb(0 0 0 / .28), rgb(0 0 0 / .04) 72%);
  }

  .moment-section::before {
    left: -52%;
    width: 42%;
  }

  .moment-copy {
    bottom: 18px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 26px;
  }

  .moment-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reviews-grid {
    gap: 42px;
  }

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

  .map-frame,
  .map-frame iframe {
    min-height: 460px;
    height: 460px;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    transform: translateY(calc(100% + 30px));
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: var(--radius-control);
    background: rgb(54 23 9 / .94);
    box-shadow: 0 14px 44px rgb(54 23 9 / .22);
    transition: transform .35s var(--ease-out), opacity .25s ease, visibility .35s;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-action-bar.is-visible {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-control);
    color: var(--white);
    font-size: .88rem;
    font-weight: 900;
  }

  .mobile-action-bar .action-icon {
    width: 16px;
    height: 16px;
  }

  .mobile-action-bar a:first-child {
    color: #1e0b04;
    background: #ff7140;
  }

  .mobile-action-bar a:last-child {
    border: 1px solid rgb(255 255 255 / .42);
  }

  .lightbox-panel {
    padding: 70px 14px 80px;
  }

  .lightbox figure {
    max-width: 100%;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav:active {
    transform: scale(.94);
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 600px) and (hover: hover) and (pointer: fine) {
  .lightbox-nav:hover {
    transform: scale(1.06);
  }
}

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

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

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

  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-image,
  .hero-glow,
  .hero-orbit,
  .hero-orbit svg,
  .quick-facts .fact-icon,
  .flavour-track,
  .daylight-stamp,
  .daylight-stamp::before,
  .menu-ambient span:nth-child(1),
  .menu-ambient span:nth-child(2),
  .menu-ambient span:nth-child(3),
  .moment-section > picture img,
  .moment-section::before,
  .stars {
    animation: none;
  }

  .flavour-track {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .button-ghost,
  .hero-orbit-core,
  .gallery-item::after,
  .mobile-action-bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header,
  .button-ghost,
  .mobile-action-bar {
    background: rgb(30 25 21 / .96);
  }

  .hero-orbit-core,
  .gallery-item::after {
    background: rgb(54 23 9 / .92);
  }
}
