:root {
  --page: #f2f3ee;
  --surface: #e7e9e1;
  --ink: #20231f;
  --muted: #646960;
  --line: #c7cbc0;
  --accent: #52684e;
  --accent-dark: #3e503b;
  --signal: #d9df72;
  --white: #f9faf5;
  --radius: 4px;
  --header-height: 70px;
  --shell: min(1240px, calc(100vw - 40px));
  --section-space: clamp(84px, 10vw, 150px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

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

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

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #738e6d;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px max(20px, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out), opacity 220ms var(--ease-out), visibility 0s linear 220ms;
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header.is-solid,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgb(242 243 238 / 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: max-content;
  color: inherit;
  text-decoration: none;
  line-height: 0.88;
}

.mobile-wordmark {
  display: none;
}

.brand-primary {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.brand-secondary {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

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

.social-link:active,
.button:active,
.text-link:active,
.gallery-item:active,
.map-card:active,
.lightbox-toolbar button:active,
.lightbox-nav:active,
.menu-dialog header button:active {
  transform: scale(0.97);
}

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 20px;
  height: 20px;
  transition: transform 180ms var(--ease-out), opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-content: space-between;
  padding: calc(var(--header-height) + 58px) 20px 34px;
  background: var(--page);
  color: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}

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

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

.mobile-menu nav a {
  padding-block: 4px;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 15vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.mobile-menu-meta {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

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

.hero-image {
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.025);
  animation: hero-drift 24s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-overlay {
  background: linear-gradient(to top, rgb(0 0 0 / 0.30) 0%, rgb(0 0 0 / 0.10) 68%, rgb(0 0 0 / 0.10) 100%);
}

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

.hero-glow,
.hero-steam {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.hero-glow {
  width: clamp(260px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 239 179 / 0.26) 0%, rgb(255 239 179 / 0.08) 42%, transparent 72%);
  mix-blend-mode: screen;
}

.hero-glow-one {
  top: 4%;
  right: -9%;
  animation: glow-drift-one 13s var(--ease-in-out) infinite alternate;
}

.hero-glow-two {
  left: -16%;
  bottom: 5%;
  opacity: 0.58;
  animation: glow-drift-two 17s var(--ease-in-out) -4s infinite alternate;
}

.hero-steam {
  width: clamp(70px, 8vw, 120px);
  height: clamp(170px, 22vw, 300px);
  border: 1px solid rgb(249 250 245 / 0.28);
  border-color: rgb(249 250 245 / 0.28) transparent transparent;
  border-radius: 50%;
}

.hero-steam-one {
  top: 20%;
  right: 13%;
  animation: steam-rise 7s var(--ease-in-out) infinite;
}

.hero-steam-two {
  top: 25%;
  right: 19%;
  opacity: 0.6;
  animation: steam-rise 8.5s var(--ease-in-out) -3s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: clamp(136px, 13vw, 174px);
}

.hero-seal {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 145px;
  z-index: 2;
  width: clamp(118px, 12vw, 164px);
  aspect-ratio: 1;
  color: var(--white);
  pointer-events: none;
  animation: seal-float 5.5s var(--ease-in-out) infinite alternate;
}

.hero-seal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-seal text {
  fill: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform-box: fill-box;
  transform-origin: center;
  animation: seal-spin 22s linear infinite;
}

.hero-seal circle,
.hero-seal .seal-cup {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-seal circle {
  opacity: 0.5;
}

.hero-seal .seal-cup {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about h2,
.reviews-section h2,
.visit-section h2 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 8vw, 6rem);
}

.hero-copy {
  max-width: 480px;
  margin: 20px 0 0;
  font-size: clamp(1.03rem, 1.8vw, 1.3rem);
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-facts {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 22px 0 24px;
  border-top: 1px solid rgb(249 250 245 / 0.5);
  color: var(--white);
  transform: translateX(-50%);
}

.story-ribbon {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--signal);
  color: var(--ink);
}

.story-ribbon-track {
  display: flex;
  width: max-content;
  padding-block: 16px;
  animation: ribbon-flow 24s linear infinite;
  will-change: transform;
}

.story-ribbon-track span {
  flex: none;
  padding-right: 0.55em;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-facts div {
  display: grid;
  gap: 4px;
  padding-right: 28px;
}

.hero-facts div + div {
  padding-left: 28px;
  border-left: 1px solid rgb(249 250 245 / 0.28);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgb(249 250 245 / 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dt .icon {
  width: 14px;
  height: 14px;
  stroke-width: 1.7;
}

.hero-facts dd {
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 750;
}

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

.button {
  min-height: 48px;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  gap: 9px;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.button .icon {
  width: 17px;
  height: 17px;
}

.icon-mobile-arrow {
  display: none;
}

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

.button-ghost {
  border-color: rgb(249 250 245 / 0.75);
  background: rgb(32 35 31 / 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.about {
  overflow: clip;
}

.about-visuals {
  position: relative;
  min-height: 620px;
}

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

.about h2,
.section-heading h2,
.reviews-section h2,
.visit-section h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.about-copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 42px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  gap: 5px;
}

.about-facts dt,
.visit-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-facts dd,
.visit-details dd {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.about-facts dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.about-facts dt .icon {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

.ratio-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

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

.about-media img {
  object-position: 51% 48%;
}

.about-media {
  width: 82%;
  margin: 0 0 0 auto;
  animation: about-photo-float 8s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.about-detail {
  position: absolute;
  left: -12%;
  bottom: 0;
  z-index: 1;
  width: 76%;
  margin: 0;
  padding: 9px;
  background: var(--page);
  animation: about-detail-float 7s var(--ease-in-out) -2s infinite alternate;
  will-change: transform;
}

.about-detail img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-detail figcaption {
  padding: 9px 4px 2px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.about-stamp {
  position: absolute;
  top: 13%;
  left: -7%;
  z-index: 2;
  width: clamp(96px, 10vw, 132px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 10px 22px rgb(32 35 31 / 0.14);
  animation: stamp-float 6s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}

.about-stamp::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgb(32 35 31 / 0.6);
  border-radius: inherit;
  animation: seal-spin 18s linear infinite reverse;
}

.about-stamp span {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  font-weight: 850;
  line-height: 0.8;
}

.about-stamp small {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin-bottom: 52px;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 28px);
}

.menu-card {
  position: relative;
  min-width: 0;
  transition: transform 220ms var(--ease-out);
}

.menu-card-media::after {
  content: "";
  position: absolute;
  inset: -25% auto -25% -45%;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.28), transparent);
  transform: translateX(-180%) rotate(12deg);
  animation: media-sweep 9s linear infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.menu-card:nth-child(2) .menu-card-media::after {
  animation-delay: -6s;
}

.menu-card:nth-child(3) .menu-card-media::after {
  animation-delay: -3s;
}

.menu-card-media img {
  object-position: 50% 48%;
  transition: transform 700ms var(--ease);
}

.menu-card-body {
  padding-top: 24px;
}

.menu-card h3 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.menu-card-body > p {
  min-height: 3.2em;
  margin: 14px 0 24px;
  color: var(--muted);
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.menu-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 8px 0;
  font-size: 0.94rem;
  transition: transform 180ms var(--ease-out), color 180ms ease;
}

.menu-items li + li {
  border-top: 1px solid rgb(199 203 192 / 0.62);
}

.menu-items strong {
  font-variant-numeric: tabular-nums;
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.menu-cta p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

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

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

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

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

.rhythm-ambient span {
  position: absolute;
  width: clamp(240px, 36vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgb(217 223 114 / 0.22);
  border-radius: 50%;
  opacity: 0.7;
  will-change: transform, opacity;
}

.rhythm-ambient span:nth-child(1) {
  top: -20%;
  left: -8%;
  animation: ambient-orbit-one 18s var(--ease-in-out) infinite alternate;
}

.rhythm-ambient span:nth-child(2) {
  top: 28%;
  right: -18%;
  width: clamp(360px, 48vw, 720px);
  animation: ambient-orbit-two 22s var(--ease-in-out) -5s infinite alternate;
}

.rhythm-ambient span:nth-child(3) {
  left: 38%;
  bottom: -24%;
  width: clamp(180px, 26vw, 420px);
  border-style: dashed;
  animation: seal-spin 34s linear infinite;
}

.rhythm-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 90px);
}

.rhythm-heading h2,
.brand-break h2 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.rhythm-heading p {
  max-width: 460px;
  margin: 0;
  color: #cfd3ca;
  font-size: 1.03rem;
  text-wrap: pretty;
}

.rhythm-track {
  display: grid;
  grid-template-columns: 0.78fr 1.02fr 1.22fr 0.86fr;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: end;
}

.rhythm-scene {
  min-width: 0;
  margin: 0;
}

.rhythm-scene > div {
  overflow: hidden;
  background: #343833;
  animation: scene-breathe 7s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.rhythm-scene:nth-child(2) > div {
  animation-duration: 8.5s;
  animation-delay: -4s;
}

.rhythm-scene:nth-child(3) > div {
  animation-duration: 9.5s;
  animation-delay: -2s;
}

.rhythm-scene:nth-child(4) > div {
  animation-duration: 7.5s;
  animation-delay: -5s;
}

.rhythm-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.rhythm-scene-coffee > div,
.rhythm-scene-treat > div {
  aspect-ratio: 3 / 4;
}

.rhythm-scene-baking {
  padding-bottom: 82px;
}

.rhythm-scene-baking > div,
.rhythm-scene-lunch > div {
  aspect-ratio: 4 / 3;
}

.rhythm-scene-lunch {
  padding-bottom: 20px;
}

.rhythm-scene figcaption {
  display: grid;
  gap: 2px;
  padding-top: 16px;
}

.rhythm-scene figcaption strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}

.rhythm-scene figcaption strong .icon {
  width: 18px;
  height: 18px;
  color: var(--signal);
  stroke-width: 2;
}

.rhythm-scene figcaption span {
  color: #aeb4aa;
  font-size: 0.82rem;
}

.rhythm-rail {
  margin-top: clamp(58px, 7vw, 90px);
  overflow: hidden;
  border-block: 1px solid rgb(249 250 245 / 0.22);
}

.rhythm-rail > div {
  display: flex;
  width: max-content;
  padding-block: 13px;
  animation: ribbon-flow-reverse 31s linear infinite;
  will-change: transform;
}

.rhythm-rail span {
  flex: none;
  padding-right: 0.55em;
  color: var(--signal);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.brand-break {
  position: relative;
  min-height: 0;
  aspect-ratio: 1600 / 842;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.brand-break-media {
  display: block;
}

.brand-break-media > img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.025);
  animation: mural-drift 24s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.brand-break-overlay {
  background: linear-gradient(to top, rgb(0 0 0 / 0.55), rgb(0 0 0 / 0.08) 72%);
}

.brand-break-orbit {
  position: absolute;
  top: clamp(84px, 10vw, 132px);
  right: max(24px, calc((100vw - 1240px) / 2));
  z-index: 1;
  width: clamp(124px, 14vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgb(249 250 245 / 0.66);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  animation: seal-float 6.5s var(--ease-in-out) -2s infinite alternate;
  pointer-events: none;
}

.brand-break-orbit::before,
.brand-break-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.brand-break-orbit::before {
  inset: 9px;
  border: 1px dashed rgb(217 223 114 / 0.8);
  animation: seal-spin 24s linear infinite;
}

.brand-break-orbit::after {
  inset: -13px;
  border: 1px solid rgb(249 250 245 / 0.22);
}

.brand-break-orbit span {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  font-weight: 850;
  line-height: 0.76;
}

.brand-break-orbit small {
  margin-top: 11px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-break-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(54px, 8vw, 96px);
}

.brand-break-content > p {
  margin: 0 0 16px;
  font-weight: 750;
}

.brand-break h2 {
  max-width: 760px;
}

.brand-break .button {
  margin-top: 30px;
}

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

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

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

.gallery-item::before {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -65%;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.24), transparent);
  opacity: 0;
  transform: translateX(-140%) rotate(12deg);
  animation: gallery-light 11s linear infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.gallery-item:nth-child(2)::before {
  animation-delay: -8.8s;
}

.gallery-item:nth-child(3)::before {
  animation-delay: -6.6s;
}

.gallery-item:nth-child(4)::before {
  animation-delay: -4.4s;
}

.gallery-item:nth-child(5)::before {
  animation-delay: -2.2s;
}

.gallery-item img {
  transition: transform 650ms var(--ease-out);
}

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

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

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

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

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

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

.gallery-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(249 250 245 / 0.62);
  border-radius: 50%;
  background: rgb(32 35 31 / 0.22);
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease;
  pointer-events: none;
}

.gallery-expand .icon {
  width: 16px;
  height: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 10vw, 150px);
  align-items: start;
}

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

.rating {
  display: grid;
  width: max-content;
  margin-top: 38px;
}

.rating strong {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(5rem, 9vw, 6rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
}

.rating span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 18px;
  color: var(--accent);
  transform-origin: left center;
  animation: stars-pulse 3.2s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}

.stars .icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke-width: 1.5;
}

.reviews-list {
  display: grid;
  gap: 34px;
}

.review {
  padding: 0;
}

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

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

.review h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.review header span {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.review blockquote {
  max-width: 660px;
  margin: 24px 0 20px;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.review > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.review > a .icon {
  width: 14px;
  height: 14px;
}

.review-featured {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
}

.review-featured header,
.review-featured blockquote,
.review-featured > a {
  position: relative;
  z-index: 1;
}

.review-mark {
  position: absolute;
  top: clamp(24px, 4vw, 44px);
  right: clamp(24px, 4vw, 44px);
  width: clamp(64px, 8vw, 92px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px dashed rgb(217 223 114 / 0.7);
  border-radius: 50%;
  color: var(--signal);
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  animation: review-mark-orbit 6s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}

.review-featured blockquote {
  max-width: 760px;
  margin-top: clamp(38px, 6vw, 74px);
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.18;
}

.review-featured > a {
  color: #cfd3ca;
}

.review-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.review-pair .review {
  padding-top: 30px;
}

.review-pair .review + .review {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.review-pair .review:first-child {
  padding-right: 30px;
}

.review-pair .review blockquote {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.visit-section {
  padding-top: 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  min-height: 620px;
  background: var(--surface);
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 78px);
}

.visit-copy h2 {
  max-width: 520px;
}

.visit-copy address {
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.03rem;
  font-style: normal;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.visit-details div {
  display: grid;
  gap: 6px;
}

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

.map-wrap {
  position: relative;
}

.map-wrap iframe {
  display: block;
}

.map-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(310px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgb(26 29 25 / 0.14);
  border-radius: 2px;
  background: rgb(250 250 246 / 0.96);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 6px 8px rgb(26 29 25 / 0.14);
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.map-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-card span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  aspect-ratio: 1;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: map-pulse 2.6s var(--ease-out) infinite;
}

.map-card span .icon {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.map-card strong {
  font-size: 1.08rem;
}

.map-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer {
  padding: 64px 0 38px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.85fr auto;
  gap: 50px;
  align-items: start;
}

.brand-footer {
  margin-bottom: 24px;
}

.site-footer p {
  margin: 0 0 4px;
  color: #cfd3ca;
  font-size: 0.92rem;
}

.site-footer > a,
.site-footer div > a {
  font-size: 0.92rem;
}

.site-footer nav {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-hours {
  display: grid;
  gap: 4px;
  color: #cfd3ca;
  font-size: 0.9rem;
}

.footer-hours strong {
  color: var(--white);
}

.mobile-actions {
  display: none;
}

.lightbox,
.menu-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #171916;
  color: var(--white);
}

.lightbox::backdrop,
.menu-dialog::backdrop {
  background: rgb(23 25 22 / 0.98);
}

.lightbox[open],
.menu-dialog[open] {
  display: grid;
}

.lightbox {
  grid-template-rows: auto 1fr;
}

.lightbox-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  padding: 10px 20px;
  border-bottom: 1px solid rgb(249 250 245 / 0.2);
}

.lightbox-toolbar button,
.menu-dialog header button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgb(249 250 245 / 0.55);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.lightbox-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 92px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid rgb(249 250 245 / 0.45);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.menu-dialog {
  overflow: auto;
  background: var(--page);
  color: var(--ink);
}

.menu-dialog-inner {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.menu-dialog header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
  background: rgb(242 243 238 / 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.menu-dialog header > div > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-dialog h2 {
  margin: 2px 0 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.menu-dialog header button {
  border-color: var(--ink);
  color: var(--ink);
}

.lightbox-toolbar .icon,
.menu-dialog header button .icon {
  width: 16px;
  height: 16px;
}

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

.menu-sheets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  padding-top: 30px;
}

.menu-sheets img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

@keyframes hero-drift {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.085) translate3d(-0.8%, -0.9%, 0);
  }
}

@keyframes glow-drift-one {
  from {
    opacity: 0.56;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  to {
    opacity: 0.94;
    transform: translate3d(-14%, 10%, 0) scale(1.08);
  }
}

@keyframes glow-drift-two {
  from {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  to {
    transform: translate3d(18%, -12%, 0) scale(1.12);
  }
}

@keyframes steam-rise {
  0%, 100% {
    opacity: 0.14;
    transform: translate3d(0, 14%, 0) scale(0.88) rotate(-8deg);
  }
  50% {
    opacity: 0.52;
    transform: translate3d(-16%, -12%, 0) scale(1.06) rotate(8deg);
  }
}

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

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

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

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

@keyframes about-photo-float {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(0, -9px, 0) rotate(0.45deg);
  }
}

@keyframes about-detail-float {
  from {
    transform: translate3d(0, 2px, 0) rotate(-0.7deg);
  }
  to {
    transform: translate3d(5px, -7px, 0) rotate(0.6deg);
  }
}

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

@keyframes media-sweep {
  0%, 58% {
    opacity: 0;
    transform: translate3d(-180%, 0, 0) rotate(12deg);
  }
  64% {
    opacity: 0.8;
  }
  82% {
    opacity: 0.8;
    transform: translate3d(520%, 0, 0) rotate(12deg);
  }
  88%, 100% {
    opacity: 0;
    transform: translate3d(520%, 0, 0) rotate(12deg);
  }
}

@keyframes ambient-orbit-one {
  from {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.9);
  }
  to {
    opacity: 0.8;
    transform: translate3d(18%, 14%, 0) rotate(24deg) scale(1.12);
  }
}

@keyframes ambient-orbit-two {
  from {
    opacity: 0.26;
    transform: translate3d(0, 0, 0) scale(0.88);
  }
  to {
    opacity: 0.7;
    transform: translate3d(-18%, -8%, 0) scale(1.08);
  }
}

@keyframes scene-breathe {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.3deg);
  }
  to {
    transform: translate3d(0, -8px, 0) rotate(0.35deg);
  }
}

@keyframes mural-drift {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1%, -1%, 0);
  }
}

@keyframes gallery-light {
  0%, 72% {
    opacity: 0;
    transform: translate3d(-140%, 0, 0) rotate(12deg);
  }
  77% {
    opacity: 0.72;
  }
  92% {
    opacity: 0.72;
    transform: translate3d(560%, 0, 0) rotate(12deg);
  }
  97%, 100% {
    opacity: 0;
    transform: translate3d(560%, 0, 0) rotate(12deg);
  }
}

@keyframes stars-pulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes review-mark-orbit {
  from {
    opacity: 0.62;
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -7px, 0) rotate(3deg);
  }
}

@keyframes map-pulse {
  0% {
    opacity: 0.72;
    transform: translateY(-50%) scale(1);
  }
  76%, 100% {
    opacity: 0;
    transform: translateY(-50%) scale(3.2);
  }
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.motion-ready .menu-card.reveal,
.motion-ready .gallery-item.reveal {
  transition: opacity 600ms var(--ease-out), transform 220ms var(--ease-out);
}

.menu-card:nth-child(2),
.rhythm-scene:nth-child(2),
.gallery-item:nth-child(2),
.review-pair .review:nth-child(2) {
  --reveal-delay: 55ms;
}

.menu-card:nth-child(3),
.rhythm-scene:nth-child(3),
.gallery-item:nth-child(3) {
  --reveal-delay: 110ms;
}

.rhythm-scene:nth-child(4),
.gallery-item:nth-child(4) {
  --reveal-delay: 165ms;
}

.gallery-item:nth-child(5) {
  --reveal-delay: 220ms;
}

.gallery-item:nth-child(6) {
  --reveal-delay: 275ms;
}

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

  .social-link:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
  }

  .button:hover .icon,
  .text-link:hover .icon {
    transform: translate3d(2px, 0, 0);
  }

  .button-ghost:hover {
    border-color: var(--white);
    background: rgb(249 250 245 / 0.94);
    color: var(--ink);
    transform: translateY(-2px);
  }

  .button-dark:hover {
    background: var(--accent);
    transform: translateY(-2px);
  }

  .menu-card:hover {
    transform: translateY(-6px);
  }

  .menu-card:hover .menu-card-media img,
  .rhythm-scene:hover img,
  .gallery-item:hover img {
    transform: scale(1.04);
  }

  .menu-items li:hover {
    color: var(--accent-dark);
    transform: translateX(5px);
  }

  .text-link:hover {
    color: var(--accent);
  }

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

  .gallery-item:hover .gallery-expand {
    background: var(--signal);
    color: var(--ink);
    transform: rotate(45deg);
  }

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

  .review-featured > a:hover {
    color: var(--signal);
  }

  .map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 16px rgb(26 29 25 / 0.17);
  }

  .lightbox-toolbar button:hover,
  .lightbox-nav:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
  }

  .menu-dialog header button:hover {
    background: var(--ink);
    color: var(--white);
  }
}

@media (min-width: 901px) {
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    column-gap: clamp(48px, 5vw, 80px);
    align-items: end;
    width: min(calc(100% - 200px), 1460px);
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: clamp(58px, 6.2vw, 88px);
  }

  .hero-identity {
    align-self: end;
    min-width: 0;
  }

  .hero-support {
    align-self: end;
    justify-self: end;
    width: min(100%, 410px);
    padding-bottom: 10px;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .hero h1 {
    max-width: 850px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.8rem, 6.1vw, 6.2rem);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.055em;
    text-transform: uppercase;
  }

  .hero-copy {
    max-width: 410px;
    margin-top: 0;
    font-size: clamp(1.06rem, 1.55vw, 1.35rem);
    line-height: 1.42;
    text-align: right;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: 60px;
    justify-content: center;
    padding-inline: 18px;
    border-radius: 0;
  }

  .hero-actions .button .icon-desktop-leading {
    display: none;
  }

  .hero-actions .button .icon-mobile-arrow {
    position: absolute;
    right: 18px;
    display: block;
    width: 20px;
    height: 20px;
    stroke-width: 1.65;
  }

  .hero-seal {
    top: clamp(82px, 8vw, 124px);
    right: max(100px, calc((100vw - 1460px) / 2));
    bottom: auto;
    width: clamp(154px, 12vw, 208px);
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 0.18) 0%, rgb(0 0 0 / 0.04) 52%, rgb(0 0 0 / 0.12) 100%),
      linear-gradient(to top, rgb(0 0 0 / 0.30) 0%, rgb(0 0 0 / 0.23) 72%, rgb(0 0 0 / 0.15) 100%);
  }

  .hero-facts {
    display: none;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .desktop-nav,
  .header-actions .social-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

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

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

  .about-visuals {
    min-height: 740px;
  }

  .about-detail {
    left: 0;
    width: 62%;
  }

  .about-stamp {
    right: 4%;
    left: auto;
  }

  .menu-grid {
    gap: 18px;
  }

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

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

  .rhythm-track {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-right: calc((100vw - var(--shell)) / -2);
    padding-right: calc((100vw - var(--shell)) / 2);
    padding-bottom: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .brand-break {
    min-height: 0;
    aspect-ratio: 10 / 9;
  }

  .rhythm-track::-webkit-scrollbar {
    display: none;
  }

  .rhythm-scene {
    flex: 0 0 min(52vw, 420px);
    padding-bottom: 0;
    scroll-snap-align: start;
  }

  .reviews-summary {
    position: static;
  }

  .rating {
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    align-items: end;
  }

  .rating .stars,
  .rating span:last-child {
    grid-column: 2;
  }

  .rating .stars {
    margin-top: 0;
  }

  .visit-grid {
    min-height: 0;
  }

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

@media (max-width: 767px) {
  :root {
    --section-space: 88px;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 16px;
  }

  .brand {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 2px solid rgb(249 250 245 / 0.9);
    border-radius: 50%;
    background: rgb(249 250 245 / 0.94);
    color: var(--ink);
    box-shadow: 0 5px 16px rgb(0 0 0 / 0.16);
    line-height: 1;
  }

  .brand::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.34;
    pointer-events: none;
  }

  .brand-primary,
  .brand-secondary {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .brand-primary {
    max-width: 40px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.03;
  }

  .brand-secondary {
    margin-top: 3px;
    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.13em;
  }

  .mobile-wordmark {
    display: block;
    justify-self: center;
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.69rem, 3.2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    text-overflow: clip;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .header-actions {
    gap: 3px;
  }

  .header-actions .social-link {
    display: grid;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

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

  .menu-toggle {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle .icon {
    width: 22px;
    height: 22px;
  }

  .hero-content {
    padding-bottom: calc(44px + env(safe-area-inset-bottom));
  }

  .hero-image {
    object-position: 100% 42%;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgb(0 0 0 / 0.30) 0%, rgb(0 0 0 / 0.12) 64%, rgb(0 0 0 / 0.18) 100%);
  }

  .hero-atmosphere {
    opacity: 0.72;
  }

  .hero-steam {
    display: none;
  }

  .hero-glow-one {
    top: 8%;
    right: -36%;
  }

  .hero-glow-two {
    left: -42%;
    bottom: 18%;
  }

  .hero-steam-one {
    top: 19%;
    right: 18%;
  }

  .hero-steam-two {
    display: none;
  }

  .hero-seal {
    top: 112px;
    right: 16px;
    bottom: auto;
    width: 128px;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    max-width: 350px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.55rem, 12vw, 4.45rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: 62px;
    justify-content: center;
    padding-inline: 18px;
    border-radius: 0;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
  }

  .hero-actions .button .icon {
    position: absolute;
    right: 18px;
    width: 20px;
    height: 20px;
    stroke-width: 1.65;
  }

  .hero-actions .button .icon-desktop-leading {
    display: none;
  }

  .hero-actions .button .icon-mobile-arrow {
    display: block;
  }

  .hero-facts {
    display: none;
  }

  .story-ribbon-track {
    padding-block: 13px;
    animation-duration: 19s;
  }

  .about-grid {
    gap: 46px;
  }

  .about h2,
  .section-heading h2,
  .reviews-section h2,
  .visit-section h2 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

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

  .about-facts div {
    grid-template-columns: 76px 1fr;
    align-items: baseline;
  }

  .about-media {
    width: 82%;
  }

  .about-visuals {
    min-height: 530px;
  }

  .about-detail {
    width: 72%;
    padding: 7px;
  }

  .about-stamp {
    top: 10%;
    right: -1%;
    width: 92px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

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

  .menu-grid {
    gap: 52px;
  }

  .menu-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .gallery-grid {
    gap: 14px;
  }

  .rhythm-heading h2,
  .brand-break h2 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .rhythm-scene {
    flex-basis: min(82vw, 360px);
  }

  .rhythm-rail {
    margin-top: 52px;
  }

  .brand-break {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .brand-break-media > img {
    object-position: 48% 50%;
  }

  .brand-break-orbit {
    top: 82px;
    right: 16px;
    width: 108px;
  }

  .reviews-grid {
    gap: 48px;
  }

  .rating strong {
    font-size: 5rem;
  }

  .review blockquote {
    display: block;
    overflow: visible;
  }

  .review-mark {
    top: 20px;
    right: 20px;
    width: 64px;
  }

  .review-pair {
    grid-template-columns: 1fr;
  }

  .review-pair .review:first-child {
    padding-right: 0;
  }

  .review-pair .review + .review {
    margin-top: 30px;
    padding: 30px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .visit-copy {
    padding: 44px 24px;
  }

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

  .visit-actions .button,
  .visit-actions .text-link {
    width: 100%;
  }

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

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

  .footer-social {
    justify-self: start;
  }

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

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgb(32 35 31 / 0.18);
    background: rgb(249 250 245 / 0.96);
    color: var(--ink);
    backdrop-filter: blur(14px);
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 260ms var(--ease), visibility 260ms;
  }

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

  body.is-locked .mobile-actions {
    visibility: hidden;
    transform: translateY(100%);
  }

  .mobile-actions a {
    display: grid;
    grid-template-rows: auto auto;
    gap: 3px;
    place-items: center;
    min-width: 0;
    padding: 10px 6px;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions .icon {
    width: 16px;
    height: 16px;
    stroke-width: 1.9;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgb(32 35 31 / 0.14);
  }

  .mobile-actions a:active {
    background: var(--signal);
    transform: scale(0.97);
  }

  .lightbox-stage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .lightbox-stage img {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 100%;
    min-width: 0;
  }

  .menu-dialog-inner {
    width: calc(100vw - 28px);
  }

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

@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 {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }

  .hero-image,
  .hero-glow,
  .hero-steam,
  .hero-seal,
  .hero-seal text,
  .story-ribbon-track,
  .about-media,
  .about-detail,
  .about-stamp,
  .about-stamp::before,
  .menu-card-media::after,
  .rhythm-ambient span,
  .rhythm-scene > div,
  .rhythm-rail > div,
  .brand-break-media > img,
  .brand-break-orbit,
  .brand-break-orbit::before,
  .gallery-item::before,
  .stars,
  .review-mark,
  .map-card span::after {
    animation: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-solid,
  .site-header.is-menu-open,
  .menu-dialog header,
  .button-ghost {
    backdrop-filter: none;
  }
}
