:root {
  --ink: #1c1d18;
  --ink-soft: #484a42;
  --canvas: #f5f5f2;
  --surface: #fffefa;
  --accent: #d4dc35;
  --rust: #6f3a2e;
  --rust-dark: #4f271f;
  --line: rgba(28, 29, 24, 0.18);
  --light-line: rgba(255, 255, 255, 0.22);
  --radius: 2px;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --header-height: 66px;
  --z-sticky: 50;
  --z-header: 70;
  --z-modal-backdrop: 90;
  --z-modal: 100;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: calc(var(--z-modal) + 10);
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--surface);
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 36px), 1240px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(84px, 10vw, 136px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-wrap: balance;
}

h2 {
  font-size: clamp(3rem, 10vw, 6rem);
}

h3 {
  text-wrap: balance;
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(28, 29, 24, 0.91);
  color: var(--surface);
  backdrop-filter: blur(12px);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.brand {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: none;
}

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

.header-actions,
.footer-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-link,
.round-button,
.menu-button,
.lightbox-nav {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), opacity 160ms ease, background-color 160ms ease, color 160ms ease;
}

.icon-link:active,
.round-button:active,
.menu-button:active,
.lightbox-nav:active,
.button:active,
.text-link:active,
.mobile-actions a:active {
  transform: scale(0.97);
}

.icon-link {
  width: 44px;
  height: 44px;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.icon-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.lucide-icon {
  display: block;
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-icon {
  width: 21px;
  height: 21px;
}

.button-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 12px;
  stroke-width: 1.65;
}

.text-link-icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.menu-preview-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.footer-link-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: -0.12em;
}

.menu-button {
  gap: 10px;
  padding-inline: 12px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-panel,
.lightbox {
  position: fixed;
  z-index: var(--z-modal);
  inset: 0;
}

.menu-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 14px 18px 28px;
  background: var(--accent);
  color: var(--ink);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 420ms var(--ease-drawer), opacity 180ms ease;
  transform-origin: top right;
}

.menu-panel.is-open {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.menu-panel.is-closing {
  transition-duration: 240ms, 160ms;
}

.menu-panel.is-closing .overlay-nav a {
  transition-duration: 180ms, 140ms, 140ms;
  transition-delay: 0ms;
}

.menu-panel[hidden],
.lightbox[hidden] {
  display: none;
}

.menu-panel-top,
.menu-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-panel-top {
  min-height: 52px;
  border-bottom: 1px solid rgba(28, 29, 24, 0.26);
}

.menu-panel-top p,
.menu-panel-bottom p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.round-button {
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.round-button .lucide-icon {
  width: 20px;
  height: 20px;
}

.overlay-nav {
  display: grid;
  align-content: center;
  gap: 1px;
  padding-block: 22px;
}

.overlay-nav a {
  display: flex;
  min-height: 55px;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-block: 5px;
  border-bottom: 1px solid rgba(28, 29, 24, 0.22);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 10vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: transform 320ms var(--ease-out), opacity 220ms ease, color 160ms ease;
}

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

.menu-panel.is-open .overlay-nav a:nth-child(1) { transition-delay: 50ms; }
.menu-panel.is-open .overlay-nav a:nth-child(2) { transition-delay: 90ms; }
.menu-panel.is-open .overlay-nav a:nth-child(3) { transition-delay: 130ms; }
.menu-panel.is-open .overlay-nav a:nth-child(4) { transition-delay: 170ms; }
.menu-panel.is-open .overlay-nav a:nth-child(5) { transition-delay: 210ms; }
.menu-panel.is-open .overlay-nav a:nth-child(6) { transition-delay: 250ms; }

.overlay-nav a span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-panel-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(28, 29, 24, 0.26);
}

.menu-panel-bottom a {
  font-weight: 700;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--surface);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -20%;
  bottom: -20%;
  left: -32%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.17), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20%) skewX(-13deg);
  animation: heroLightSweep 9s var(--ease-in-out) 1.5s infinite;
}

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

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 49% 42%;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.30));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding-top: calc(var(--header-height) + 22px);
  padding-bottom: 22px;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 16px;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  color: var(--surface);
  pointer-events: none;
  animation: orbitFloat 4.8s var(--ease-in-out) infinite alternate;
}

.hero-orbit svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit circle {
  fill: rgba(28, 29, 24, 0.34);
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1;
}

.hero-orbit text {
  fill: var(--surface);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.hero-orbit > span {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
}

.hero-location {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: heroTextIn 780ms var(--ease-out) both;
}

.hero-main {
  align-self: end;
  padding-bottom: 24px;
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  color: var(--surface);
  font-size: clamp(4rem, 19vw, 6rem);
  animation: heroTextIn 980ms var(--ease-out) 90ms both;
}

.hero-main > p {
  max-width: 27rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  text-wrap: pretty;
  animation: heroTextIn 900ms var(--ease-out) 180ms both;
}

.hero-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  animation: heroTextIn 900ms var(--ease-out) 260ms both;
}

.hero-fact {
  display: grid;
  gap: 1px;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
}

.hero-fact strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 400;
}

.hero-details .button-row {
  grid-column: 1 / -1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-label-mobile {
  display: none;
}

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

.button-dark {
  background: var(--ink);
  color: var(--surface);
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms var(--ease-out), color 160ms ease;
}

.text-link span {
  font-size: 1.08rem;
}

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

.portrait-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story {
  background: var(--canvas);
}

.story-intro {
  display: grid;
  gap: 36px;
}

.story-intro h2 {
  max-width: 10ch;
}

.story-copy {
  max-width: 42rem;
}

.story-copy .lead {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  line-height: 1.35;
}

.story-copy > p:not(.lead) {
  max-width: 68ch;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.story-visuals {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: clamp(54px, 8vw, 92px);
}

.story-portrait,
.story-wide {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-portrait img,
.story-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.story-wide {
  aspect-ratio: 4 / 3;
}

.story-portrait figcaption,
.story-wide figcaption,
.rhythm-patio figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.story-stamp {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 20px 22px;
  background: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: stampFloat 4.2s var(--ease-in-out) infinite alternate;
}

.story-stamp span {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 0.8;
}

.menu-section {
  background: var(--ink);
  color: var(--surface);
}

.menu-heading {
  display: grid;
  gap: 26px;
  margin-bottom: 56px;
}

.menu-heading > p:first-child {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
}

.menu-heading-copy {
  max-width: 32rem;
  margin: 0;
  color: #c9cac1;
  text-wrap: pretty;
}

.menu-feature-grid {
  display: grid;
  gap: 46px;
}

.menu-feature-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 9px;
}

.menu-feature h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.menu-feature-top strong {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.menu-feature > p {
  max-width: 34rem;
  margin: 0;
  color: #bfc0b7;
  font-size: 0.9rem;
  text-wrap: pretty;
}

.menu-feature .portrait-frame img {
  animation: menuImageDrift 12s var(--ease-in-out) infinite alternate;
}

.menu-feature:nth-child(2) .portrait-frame img {
  animation-delay: -4s;
  animation-direction: alternate-reverse;
}

.menu-feature:nth-child(3) .portrait-frame img {
  animation-delay: -8s;
}

.menu-board {
  display: grid;
  margin-top: clamp(78px, 10vw, 130px);
  overflow: hidden;
  background: var(--rust);
}

.menu-photo-preview {
  position: relative;
  display: block;
  width: 100%;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--rust-dark);
  color: var(--surface);
  cursor: zoom-in;
  transition: transform 160ms var(--ease-out), filter 180ms ease;
}

.menu-photo-preview:active {
  transform: scale(0.988);
  filter: brightness(0.9);
}

.menu-photo-preview::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.76));
  content: "";
}

.menu-photo-preview img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: 50% 50%;
  transition: transform 700ms var(--ease-out);
}

.menu-photo-preview span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

.menu-list-wrap {
  padding: 38px 22px 28px;
}

.menu-list-intro h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.menu-list-intro p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.menu-list {
  display: grid;
}

.menu-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding-block: 17px;
  border-bottom: 1px solid var(--light-line);
}

.menu-list span,
.menu-list small {
  display: block;
}

.menu-list b {
  font-family: var(--serif);
  font-size: 1.13rem;
  font-weight: 400;
}

.menu-list small {
  max-width: 54ch;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.45;
}

.menu-list > div > strong {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.menu-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.coffee-sweets {
  display: grid;
  gap: 14px;
  padding-top: clamp(70px, 9vw, 110px);
}

.coffee-sweets-copy {
  align-self: center;
  padding-block: 12px 28px;
}

.coffee-sweets-copy h3 {
  max-width: 10ch;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.coffee-sweets-copy p {
  max-width: 33rem;
  margin: 0;
  color: #c9cac1;
}

.coffee-sweets figure {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
}

.coffee-sweets img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-sweets figure img {
  animation: cabinetDrift 10s var(--ease-in-out) infinite alternate;
}

.coffee-sweets figure:last-child img {
  animation-delay: -5s;
  animation-direction: alternate-reverse;
}

.steam {
  position: absolute;
  z-index: 2;
  bottom: 53%;
  left: 50%;
  width: 18px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 16px, 0) scale(0.8);
  animation: steamRise 3.2s var(--ease-in-out) infinite;
}

.steam-two {
  margin-left: 22px;
  animation-delay: 1.05s;
}

.steam-three {
  margin-left: -22px;
  animation-delay: 2.1s;
}

.rhythm-section {
  position: relative;
  overflow: hidden;
  background: var(--rust);
  color: var(--surface);
}

.rhythm-section::before,
.rhythm-section::after {
  position: absolute;
  border: 1px solid rgba(212, 220, 53, 0.55);
  border-radius: 50%;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.rhythm-section::before {
  top: 6%;
  right: -86px;
  width: 220px;
  height: 220px;
  animation: ambientOrbit 8s var(--ease-in-out) infinite alternate;
}

.rhythm-section::after {
  bottom: 21%;
  left: -42px;
  width: 94px;
  height: 94px;
  background: rgba(212, 220, 53, 0.15);
  animation: ambientOrbit 6s var(--ease-in-out) -3s infinite alternate-reverse;
}

.rhythm-head {
  display: grid;
  gap: 26px;
  margin-bottom: 50px;
}

.rhythm-head > p {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
}

.rhythm-mosaic {
  display: grid;
  gap: 12px;
}

.rhythm-mosaic figure,
.rhythm-patio {
  margin: 0;
  overflow: hidden;
}

.rhythm-coffee,
.rhythm-pause {
  aspect-ratio: 3 / 4;
}

.rhythm-table {
  aspect-ratio: 8 / 5;
}

.rhythm-mosaic img,
.rhythm-patio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.rhythm-mosaic img {
  animation: rhythmDrift 13s var(--ease-in-out) infinite alternate;
}

.rhythm-mosaic figure:nth-child(2) img {
  animation-delay: -5s;
  animation-direction: alternate-reverse;
}

.rhythm-mosaic figure:nth-child(3) img {
  animation-delay: -9s;
}

.rhythm-patio img {
  animation: patioDrift 15s var(--ease-in-out) infinite alternate;
}

.rhythm-beats {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--light-line);
}

.rhythm-beat {
  padding-block: 22px;
  border-bottom: 1px solid var(--light-line);
}

.rhythm-beat span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.rhythm-beat p {
  max-width: 32rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  line-height: 1.25;
}

.rhythm-patio-wrap {
  position: relative;
  width: min(100%, 1600px);
  margin: clamp(58px, 9vw, 110px) auto 0;
}

.rhythm-patio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
}

.rhythm-patio::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(28, 29, 24, 0.82));
  content: "";
  pointer-events: none;
}

.rhythm-patio-copy {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: min(46%, 560px);
  max-width: none;
  padding: clamp(30px, 4.5vw, 66px) clamp(26px, 4vw, 62px);
  background: transparent;
  color: var(--surface);
}

.rhythm-patio-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rhythm-patio-copy h3 {
  max-width: 30rem;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

.rhythm-patio-copy > p:not(.rhythm-patio-kicker) {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.45;
}

.rhythm-patio-copy .button {
  margin-top: 28px;
}

.rhythm-patio figcaption {
  z-index: 3;
}
}

.fact-band {
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.fact-marquee {
  width: 100%;
  overflow: hidden;
}

.fact-band-track {
  display: flex;
  width: max-content;
  padding-block: 34px;
  animation: factMarquee 34s linear infinite;
}

.fact-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  white-space: nowrap;
}

.fact-sequence span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 18px 8px 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.15;
}

.fact-sequence span::after {
  margin-left: 18px;
  color: var(--rust);
  content: "●";
  font-size: 0.55rem;
}

.fact-band-track strong {
  margin-right: 0.3em;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.gallery-head {
  display: grid;
  gap: 28px;
  margin-bottom: 44px;
}

.gallery-head > p {
  max-width: 28rem;
  margin: 0;
  color: var(--ink-soft);
}

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

.gallery-card {
  width: 100%;
  padding: 0;
  border: 0;
  background: #d9d9d2;
  cursor: zoom-in;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1);
  transform-style: preserve-3d;
  transition: transform 260ms var(--ease-out);
}

.gallery-card.is-tilting {
  transition: none;
}

.gallery-card img {
  transition: transform 650ms var(--ease-out), filter 250ms ease;
}

.gallery-card:active img {
  transform: scale(1.01);
}

.reviews-section {
  background: var(--surface);
}

.reviews-head {
  display: grid;
  gap: 34px;
  margin-bottom: 46px;
}

.rating-lockup {
  display: grid;
  width: max-content;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0 16px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.rating-lockup strong {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.rating-lockup > span,
.review-meta p {
  color: #735b00;
  letter-spacing: 0.05em;
}

.rating-lockup small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
}

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

.review {
  display: grid;
  gap: 28px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

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

.review-meta img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta h3 {
  margin: 0;
  font-size: 0.88rem;
}

.review-meta p {
  margin: 2px 0 0;
  font-size: 0.75rem;
}

.review blockquote {
  max-width: 60rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-wrap: pretty;
}

.review .text-link {
  margin: 0;
  justify-self: start;
}

.visit-section {
  padding-bottom: 18px;
  background: var(--canvas);
}

.visit-grid {
  display: grid;
  gap: 54px;
}

.visit-grid > * {
  min-width: 0;
}

.visit-copy address {
  margin-top: 40px;
  font-style: normal;
}

.visit-copy address p {
  margin-bottom: 16px;
}

.visit-copy address a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 390px;
  gap: 16px;
  margin-block: 30px;
  padding-block: 16px;
  border-block: 1px solid var(--line);
}

.hours p {
  margin: 0;
}

.hours-label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hours-label .lucide-icon {
  width: 17px;
  height: 17px;
  color: var(--rust);
  stroke-width: 1.9;
}

.visit-buttons {
  margin-bottom: 34px;
}

.visit-buttons .button-icon {
  margin: 0 10px 0 0;
}

.visit-notes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.visit-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visit-notes li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--accent);
  content: "";
}

.map-wrap {
  width: 100%;
  min-width: 0;
  min-height: 500px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #deded9;
}

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

.site-footer {
  padding-block: 66px 84px;
  background: var(--ink);
  color: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 42px;
}

.footer-brand {
  width: 104px;
  height: 104px;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-contact p {
  margin: 0;
  color: #c6c7bf;
}

.footer-contact a,
.footer-links a {
  text-underline-offset: 4px;
}

.footer-links {
  align-content: start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #9b9d93;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  position: fixed;
  z-index: var(--z-sticky);
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(calc(100% + 18px));
  transition: transform 420ms var(--ease-out);
}

.mobile-actions.is-active {
  transform: translateY(0);
}

.mobile-actions.is-suppressed {
  transform: translateY(calc(100% + 18px));
}

.mobile-actions a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-actions .lucide-icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.mobile-actions a:last-child {
  background: var(--accent);
  color: var(--ink);
}

.lightbox {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(0, 0, 0, 0.94);
  color: var(--surface);
  opacity: 0;
  transition: opacity 160ms ease;
}

.lightbox.is-open {
  opacity: 1;
  transition-duration: 220ms;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-toolbar {
  z-index: 1;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 20px;
}

.lightbox-toolbar p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.round-button.light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--surface);
}

.lightbox-stage {
  z-index: 1;
  display: grid;
  min-height: 0;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  padding: 0 4px 18px;
  opacity: 0;
  transform: scale(0.96);
  transition: transform 180ms var(--ease-out), opacity 160ms ease;
  transform-origin: center;
}

.lightbox.is-open .lightbox-stage {
  opacity: 1;
  transform: scale(1);
  transition-duration: 280ms, 200ms;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 92px);
  object-fit: contain;
}

.lightbox-nav {
  z-index: 2;
  width: 44px;
  height: 64px;
  color: var(--surface);
  font-size: 1.6rem;
}

.lightbox-nav .lucide-icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.lightbox-nav[hidden] {
  visibility: hidden;
}

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

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 700ms var(--ease-out), clip-path 800ms var(--ease-out);
}

.reveal.will-reveal[data-reveal="image"] {
  clip-path: inset(0 0 8% 0);
}

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

@keyframes heroTextIn {
  from { opacity: 0; transform: translate3d(0, 28px, 0); clip-path: inset(0 0 35% 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); clip-path: inset(0 0 0 0); }
}

@keyframes heroLightSweep {
  0%, 12% { opacity: 0; transform: translate3d(-20%, 0, 0) skewX(-13deg); }
  32%, 44% { opacity: 0.8; }
  58%, 100% { opacity: 0; transform: translate3d(430%, 0, 0) skewX(-13deg); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitFloat {
  from { transform: translate3d(0, -5px, 0) rotate(-2deg); }
  to { transform: translate3d(-7px, 9px, 0) rotate(3deg); }
}

@keyframes stampFloat {
  from { transform: translate3d(0, -4px, 0) rotate(-1deg); }
  to { transform: translate3d(-7px, 7px, 0) rotate(1.5deg); }
}

@keyframes menuImageDrift {
  from { transform: scale(1.025) translate3d(0, -0.8%, 0); }
  to { transform: scale(1.075) translate3d(-1.2%, 1.1%, 0); }
}

@keyframes cabinetDrift {
  from { transform: scale(1.02) translate3d(0, -0.6%, 0); }
  to { transform: scale(1.065) translate3d(1.1%, 1%, 0); }
}

@keyframes steamRise {
  0% { opacity: 0; transform: translate3d(-50%, 18px, 0) scale(0.76) rotate(-4deg); }
  26% { opacity: 0.72; }
  72% { opacity: 0.46; }
  100% { opacity: 0; transform: translate3d(-42%, -34px, 0) scale(1.15) rotate(8deg); }
}

@keyframes ambientOrbit {
  from { opacity: 0.22; transform: translate3d(-8px, -8px, 0) scale(0.94); }
  to { opacity: 0.62; transform: translate3d(18px, 16px, 0) scale(1.08); }
}

@keyframes rhythmDrift {
  from { transform: scale(1.03) translate3d(0, -0.8%, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 1.1%, 0); }
}

@keyframes patioDrift {
  from { transform: scale(1.02) translate3d(-0.7%, 0, 0); }
  to { transform: scale(1.07) translate3d(1.2%, -0.6%, 0); }
}

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

@media (max-width: 719px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 8px 12px;
  }

  .site-header:not(.is-solid) {
    border-bottom-color: transparent;
    background: linear-gradient(to bottom, rgba(16, 17, 14, 0.56), transparent);
    backdrop-filter: none;
  }

  .brand {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .site-header .brand img {
    width: clamp(48px, 13vw, 52px);
    height: clamp(48px, 13vw, 52px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
  }

  .brand-wordmark {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    letter-spacing: 0.02em;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.48);
    white-space: nowrap;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions .icon-link {
    width: 44px;
    min-width: 44px;
  }

  .menu-button {
    width: 44px;
    gap: 0;
    padding-inline: 8px;
  }

  .menu-button > span:first-child {
    display: none;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-shade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.58));
  }

  .hero-content {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .hero-location {
    margin-bottom: 12px;
  }

  .hero-main {
    display: contents;
  }

  .hero h1 {
    max-width: none;
    margin: 0 0 16px -0.03em;
    font-size: clamp(3.05rem, 13.9vw, 3.65rem);
    line-height: 0.88;
    white-space: nowrap;
  }

  .hero h1 br {
    display: none;
  }

  .hero-main > p {
    width: min(100%, 22rem);
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(1rem, 4.3vw, 1.1rem);
    line-height: 1.45;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
  }

  .hero-details {
    display: block;
    width: 100%;
    padding-top: 0;
    border-top: 0;
  }

  .hero-details .hero-fact {
    display: none;
  }

  .hero-details .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-details .button {
    min-height: 60px;
    justify-content: space-between;
    padding-inline: clamp(12px, 4vw, 20px);
    font-size: clamp(0.84rem, 4vw, 1rem);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
  }

  .hero-details .button-label-wide {
    display: none;
  }

  .hero-details .button-label-mobile {
    display: inline;
  }

  .hero-details .button-accent {
    background: var(--surface);
  }

  .hero-orbit {
    top: calc(var(--header-height) + clamp(16px, 5.5vh, 48px));
    right: 12px;
    width: clamp(116px, 33vw, 140px);
    height: clamp(116px, 33vw, 140px);
  }

  .hero-orbit > span {
    width: clamp(52px, 14vw, 60px);
    height: clamp(52px, 14vw, 60px);
  }

  .rhythm-patio::after {
    display: none;
  }

  .rhythm-patio-copy {
    position: static;
    width: 100%;
    max-width: none;
    padding: 36px 24px 42px;
    background: transparent;
    color: var(--surface);
  }

  .rhythm-patio-kicker {
    color: var(--accent);
  }

  .rhythm-patio-copy > p:not(.rhythm-patio-kicker) {
    color: rgba(255, 255, 255, 0.84);
  }
}

@media (min-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 28px 18px;
  }

  .shell {
    width: min(calc(100% - 72px), 1240px);
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero-main {
    padding-bottom: 34px;
  }

  .hero h1 {
    margin-bottom: 24px;
  }

  .hero-details {
    grid-template-columns: 180px 190px 1fr;
    align-items: end;
    gap: 26px;
  }

  .hero-details .button-row {
    grid-column: auto;
    justify-self: end;
  }

  .story-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: 8vw;
  }

  .story-visuals {
    grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
    grid-template-rows: 1fr auto;
    gap: 18px;
  }

  .story-portrait {
    grid-row: 1 / 3;
  }

  .story-wide {
    align-self: end;
  }

  .story-stamp {
    width: max-content;
    justify-self: end;
    padding: 26px 30px;
  }

  .menu-heading {
    grid-template-columns: 0.42fr 1fr 0.55fr;
    align-items: end;
  }

  .menu-heading > p:first-child {
    align-self: start;
  }

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

  .menu-feature:nth-child(2) {
    margin-top: 74px;
  }

  .menu-board {
    grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  }

  .menu-photo-preview,
  .menu-photo-preview img {
    min-height: 760px;
  }

  .menu-list-wrap {
    padding: 54px 44px 38px;
  }

  .coffee-sweets {
    grid-template-columns: minmax(320px, 1fr) minmax(220px, 0.55fr) minmax(220px, 0.55fr);
    align-items: center;
    gap: 18px;
  }

  .coffee-sweets-copy {
    padding-right: 6vw;
  }

  .rhythm-head {
    grid-template-columns: 1fr 0.48fr;
    align-items: end;
  }

  .rhythm-mosaic {
    grid-template-columns: minmax(210px, 0.48fr) minmax(430px, 1.04fr) minmax(210px, 0.48fr);
    align-items: end;
    gap: 18px;
  }

  .rhythm-table {
    align-self: center;
  }

  .rhythm-pause {
    margin-bottom: 10vw !important;
  }

  .rhythm-beats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
  }

  .rhythm-beat {
    padding: 26px 28px 8px 0;
  }

  .rhythm-beat:not(:last-child) {
    margin-right: 28px;
    border-right: 1px solid var(--light-line);
  }

  .gallery-head,
  .reviews-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .review {
    grid-template-columns: 190px minmax(0, 1fr) 155px;
    align-items: start;
  }

  .review .text-link {
    justify-self: end;
    margin-top: 3px;
  }

  .visit-grid {
    grid-template-columns: minmax(330px, 0.78fr) minmax(440px, 1.22fr);
    align-items: stretch;
    gap: 8vw;
  }

  .map-wrap {
    min-height: 700px;
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 150px 1fr 0.55fr auto;
    align-items: start;
  }

  .site-footer {
    padding-bottom: 26px;
  }

  .mobile-actions {
    display: none;
  }

  .lightbox-stage {
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    padding-inline: 12px;
  }
}

@media (min-width: 1024px) {
  .site-header:not(.is-solid) {
    border-bottom-color: transparent;
    background: linear-gradient(to bottom, rgba(16, 17, 14, 0.5), transparent);
    backdrop-filter: none;
  }

  .site-header.is-solid {
    border-bottom-color: rgba(255, 255, 255, 0.22);
    background: rgba(28, 29, 24, 0.94);
    backdrop-filter: blur(12px);
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.46)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 48%, rgba(0, 0, 0, 0.08));
  }

  .hero-content {
    display: block;
    padding-top: var(--header-height);
    padding-bottom: 0;
  }

  .hero-location {
    position: absolute;
    bottom: clamp(8.5rem, 16vh, 10rem);
    left: 0;
  }

  .hero-main {
    position: static;
    padding-bottom: 0;
  }

  .hero h1 {
    position: absolute;
    bottom: clamp(1.75rem, 4vh, 2.75rem);
    left: -0.04em;
    max-width: none;
    margin: 0;
    font-size: clamp(4.8rem, 6.6vw, 6rem);
    line-height: 0.84;
    white-space: nowrap;
  }

  .hero h1 br {
    display: none;
  }

  .hero-main > p {
    position: absolute;
    right: 0;
    bottom: calc(clamp(1.75rem, 4vh, 2.75rem) + 84px);
    width: min(31vw, 25rem);
    max-width: none;
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    line-height: 1.45;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
  }

  .hero-details {
    position: absolute;
    right: 0;
    bottom: clamp(1.75rem, 4vh, 2.75rem);
    display: block;
    width: min(34vw, 31rem);
    padding-top: 0;
    border-top: 0;
  }

  .hero-details .hero-fact {
    display: none;
  }

  .hero-details .button-row {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 12px;
  }

  .hero-details .button {
    min-height: 60px;
    justify-content: space-between;
    padding-inline: clamp(1rem, 1.7vw, 1.5rem);
    font-size: clamp(0.66rem, 0.78vw, 0.72rem);
    letter-spacing: 0.07em;
    white-space: nowrap;
  }

  .hero-details .button-accent {
    background: var(--surface);
  }

  .hero-orbit {
    top: clamp(5.75rem, 10vh, 7.5rem);
    right: max(calc((100vw - 1240px) / 2), 36px);
    width: clamp(164px, 13vw, 194px);
    height: clamp(164px, 13vw, 194px);
  }

  .hero-orbit > span {
    width: 68px;
    height: 68px;
    font-size: 0.7rem;
  }
}

@media (min-width: 1040px) {
  .gallery-grid {
    gap: 18px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button,
  .icon-link,
  .menu-button,
  .text-link,
  .round-button,
  .overlay-nav a {
    transition: transform 140ms var(--ease-out), color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
  }

  .button-accent:hover,
  .button-dark:hover {
    background: var(--surface);
    color: var(--ink);
  }

  .button-ghost:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
  }

  .button-outline:hover {
    background: var(--ink);
    color: var(--surface);
  }

  .icon-link:hover,
  .menu-button:hover,
  .text-link:hover {
    color: var(--accent);
  }

  .menu-panel .round-button:hover,
  .menu-panel .overlay-nav a:hover {
    opacity: 0.58;
  }

  .story-portrait:hover img,
  .story-wide:hover img,
  .menu-photo-preview:hover img {
    transform: scale(1.025);
  }

  .menu-feature:hover .portrait-frame img,
  .coffee-sweets figure:hover img,
  .rhythm-mosaic figure:hover img,
  .rhythm-patio:hover img {
    animation-play-state: paused;
  }

  .gallery-card:hover img {
    transform: scale(1.035);
    filter: brightness(0.84);
  }
}

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

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

  .reveal,
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero::after,
  .hero-orbit,
  .hero-orbit svg,
  .hero-location,
  .hero h1,
  .hero-main > p,
  .hero-details,
  .story-stamp,
  .menu-feature .portrait-frame img,
  .coffee-sweets figure img,
  .steam,
  .rhythm-section::before,
  .rhythm-section::after,
  .rhythm-mosaic img,
  .rhythm-patio img,
  .fact-band-track {
    animation: none !important;
  }

  .hero-location,
  .hero h1,
  .hero-main > p,
  .hero-details {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .fact-band-track {
    width: 100%;
    transform: none;
  }

  .fact-sequence {
    flex-wrap: wrap;
    white-space: normal;
  }

  .fact-sequence[aria-hidden="true"] {
    display: none;
  }
}
