:root {
  --sky: #d9edf4;
  --sky-soft: #edf7f9;
  --sky-strong: #b8dce9;
  --paper: #f8fbfb;
  --ink: #17252b;
  --muted: #4d626b;
  --accent: #7b2d1d;
  --accent-rich: #91341f;
  --accent-dark: #441c15;
  --night: #17272b;
  --line: rgba(23, 37, 43, 0.18);
  --radius: 14px;
  --header-height: 82px;
  --page-pad: clamp(18px, 4vw, 64px);
  --content-width: 1280px;
  --shadow: 0 18px 46px rgba(48, 79, 90, 0.17);
  --z-menu: 25;
  --z-actions: 28;
  --z-header: 30;
  --z-dialog: 50;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vertical-align: -0.15em;
}

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

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

h1, h2, h3 {
  margin-bottom: 0;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: calc(var(--z-header) + 1);
  padding: 10px 14px;
  color: var(--paper);
  background: var(--accent-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 20px));
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
  padding: clamp(88px, 9vw, 132px) var(--page-pad);
}

.section-intro,
.feature-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active { transform: scale(0.97); }
.button .icon { margin-left: 0.56rem; }
.button-primary { color: #fff; background: var(--accent-rich); }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.8); background: rgba(0, 0, 0, 0.17); }
.button-light { color: var(--accent-dark); background: var(--paper); }
.button-outline { color: var(--accent); border-color: currentColor; background: transparent; }

.text-link,
.story-links a {
  color: var(--accent);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 3.4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 25, 28, 0.48) 0%, rgba(17, 25, 28, 0.12) 72%, transparent 100%);
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

body.has-scrolled .site-header {
  color: var(--ink);
  background: rgba(248, 251, 251, 0.96);
  border-bottom-color: rgba(23, 37, 43, 0.1);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

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

@supports (animation-timeline: scroll()) {
  .scroll-progress span {
    animation: page-progress linear both;
    animation-timeline: scroll(root block);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font-size: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(10, 18, 21, 0.28);
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
}

body.has-scrolled .brand img { border-color: var(--accent); }

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

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
  transition: color 180ms ease, transform 160ms var(--ease-out), box-shadow 180ms ease;
}

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

.desktop-nav .nav-call {
  padding: 10px 17px;
  color: var(--ink);
  border: 0;
  background: rgba(248, 251, 251, 0.92);
  border-radius: 0;
}

body.has-scrolled .desktop-nav .nav-call {
  color: #fff;
  border-color: var(--accent-rich);
  background: var(--accent-rich);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), color 180ms ease, background-color 180ms ease;
}

.menu-toggle:active { transform: scale(0.95); }

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 200ms ease;
}

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: var(--z-menu);
  padding: 32px var(--page-pad) calc(96px + env(safe-area-inset-bottom));
  overflow-y: auto;
  background: rgba(237, 247, 249, 0.99);
}

.mobile-menu:not([hidden]) { animation: menu-panel-in 240ms var(--ease-drawer) both; }
.mobile-menu:not([hidden]) a { animation: menu-link-in 280ms var(--ease-out) both; }
.mobile-menu:not([hidden]) a:nth-child(2) { animation-delay: 35ms; }
.mobile-menu:not([hidden]) a:nth-child(3) { animation-delay: 70ms; }
.mobile-menu:not([hidden]) a:nth-child(4) { animation-delay: 105ms; }
.mobile-menu:not([hidden]) a:nth-child(5) { animation-delay: 140ms; }
.mobile-menu:not([hidden]) a:nth-child(6) { animation-delay: 175ms; }
.mobile-menu.instant-motion,
.mobile-menu.instant-motion a { animation: none; }

.mobile-menu nav { display: grid; }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.35rem, 7vw, 2rem);
  font-weight: 780;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  display: block;
  overflow: hidden;
}

.hero-image {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(1.045);
  animation: hero-drift 16s var(--ease-in-out) infinite alternate;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - (2 * var(--page-pad))));
  margin: 0 auto clamp(38px, 6vh, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  grid-template-areas: "brand copy" "title actions";
  align-items: end;
  column-gap: clamp(32px, 6vw, 112px);
  row-gap: 6px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
  animation: hero-enter 750ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero-glow {
  position: absolute;
  top: 7%;
  right: 7%;
  width: clamp(220px, 30vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(184, 220, 233, 0.16);
  box-shadow: 0 0 80px rgba(184, 220, 233, 0.2);
  transform: translate3d(0, 0, 0) scale(0.92);
  animation: hero-glow-drift 9s var(--ease-in-out) infinite alternate;
}

.hero-orbit {
  position: absolute;
  top: clamp(78px, 11vh, 132px);
  right: clamp(18px, 3vw, 54px);
  width: clamp(220px, 19vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.2));
  animation: orbit-float 6.5s var(--ease-in-out) infinite alternate;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--sky-strong);
  box-shadow: 0 0 20px rgba(184, 220, 233, 0.75);
}

.hero-orbit::before {
  top: 7%;
  left: 24%;
  width: 8px;
  height: 8px;
  animation: satellite-pulse 2.6s ease-in-out infinite;
}

.hero-orbit::after {
  right: 8%;
  bottom: 25%;
  width: 13px;
  height: 13px;
  animation: satellite-pulse 2.6s 1.3s ease-in-out infinite;
}

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

.hero-orbit svg text {
  fill: currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.hero-orbit-core {
  width: 42%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(68, 28, 21, 0.72);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  animation: orbit-core-breathe 3.4s ease-in-out infinite;
}

.hero-scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 42px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-cue i {
  position: relative;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(-100%);
  animation: scroll-cue-flow 2.2s var(--ease-in-out) infinite;
}

.hero-brand {
  display: block;
  grid-area: brand;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-brand .icon { display: none; }

.hero h1 {
  grid-area: title;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.75rem, 9.6vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-copy {
  grid-area: copy;
  justify-self: end;
  max-width: 430px;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 520;
  line-height: 1.5;
  text-align: right;
}

.hero-copy-mobile,
.button-label-mobile,
.button-icon-mobile { display: none; }

.hero-title-wide { display: none; }
.hero-title-mobile { display: inline; }

.hero-actions {
  grid-area: actions;
  justify-self: end;
  width: min(100%, 390px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-actions .button {
  width: 100%;
  min-height: 62px;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 0;
  text-align: left;
}

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

.hero-rating {
  display: none;
}

.hero-rating span { color: #ffd46b; letter-spacing: 0.08em; }
.hero-rating .icon-star { width: 0.92em; height: 0.92em; stroke-width: 2.2; }
.hero-rating strong { font-size: 1.05rem; }

.visit-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  background: var(--accent-dark);
}

.visit-snapshot div {
  min-width: 0;
  padding: 25px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-snapshot div:last-child { border-right: 0; }

.visit-snapshot span,
.visit-snapshot strong { display: block; }

.visit-snapshot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.visit-snapshot strong { font-size: 0.98rem; line-height: 1.35; }

.service-strip {
  overflow: hidden;
  padding: 20px 0;
  color: var(--accent-dark);
  background: var(--sky-strong);
  font-size: 0.88rem;
  font-weight: 750;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

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

.service-group {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}

.service-strip span { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; white-space: nowrap; }
.service-strip .icon { width: 1.1em; height: 1.1em; stroke-width: 2.2; }
.service-strip span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-rich); }

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: center;
}

.story h2,
.menu-heading h2,
.favourites-heading h2,
.gallery-heading h2,
.reviews h2,
.visit h2 {
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
}

.story-copy > p:not(.section-intro) {
  max-width: 64ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 32px;
}

.story-links a { display: inline-flex; align-items: center; gap: 7px; }
.story-links .icon { width: 1em; height: 1em; }

.story-images {
  position: relative;
  display: block;
  width: min(100%, 570px);
  justify-self: center;
}

.story-team { animation: image-float-a 7s var(--ease-in-out) infinite alternate; }

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

.ratio-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 550ms var(--ease-out), filter 300ms ease;
}

.ratio-frame figcaption,
.menu-photo-strip figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 18px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-size: 0.82rem;
  font-weight: 750;
}

.menu-section {
  width: 100%;
  max-width: none;
  background: var(--sky-soft);
}

.menu-section > * {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
}

.menu-heading,
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 52px;
  align-items: end;
}

.menu-heading > p,
.gallery-heading > p {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 48ch;
  margin-bottom: 5px;
  color: var(--muted);
}

.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.menu-photo-strip figure { min-width: 0; }
.menu-photo-strip figcaption { display: grid; gap: 2px; }
.menu-photo-strip figcaption span { color: rgba(255, 255, 255, 0.78); font-size: 0.72rem; }
.menu-photo-strip figcaption span { display: inline-flex; align-items: center; gap: 5px; }
.menu-photo-strip figcaption span .icon { width: 1.15em; height: 1.15em; }
.menu-photo-strip figcaption strong { font-size: 1rem; }
.menu-photo-strip figure:nth-child(1) img { animation: menu-image-drift-a 12s var(--ease-in-out) infinite alternate; }
.menu-photo-strip figure:nth-child(2) img { animation: menu-image-drift-b 14s var(--ease-in-out) infinite alternate; }
.menu-photo-strip figure:nth-child(3) img { animation: menu-image-drift-a 13s 1.5s var(--ease-in-out) infinite alternate-reverse; }

.menu-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px clamp(36px, 7vw, 100px);
  margin-top: 76px;
}

.menu-group {
  position: relative;
  padding-top: 22px;
  border-top: 2px solid var(--accent);
}

.menu-group::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 38%;
  height: 2px;
  background: var(--sky-strong);
  transform: translateX(0);
  animation: menu-line-flow 5s var(--ease-in-out) infinite alternate;
}

.menu-group:nth-child(2)::before { animation-delay: -1.25s; }
.menu-group:nth-child(3)::before { animation-delay: -2.5s; }
.menu-group:nth-child(4)::before { animation-delay: -3.75s; }

.menu-group h3 { display: flex; align-items: flex-start; gap: 9px; font-size: clamp(1.55rem, 2.8vw, 2.15rem); line-height: 1.05; }
.menu-group h3 .icon { width: 0.86em; height: 0.86em; margin-top: 0.04em; color: var(--accent-rich); stroke-width: 2.1; }

.menu-note {
  min-height: 2.8em;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-group dl { margin-bottom: 0; }

.menu-group dl div,
.feature-prices div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-group dt,
.menu-group dd,
.feature-prices dt,
.feature-prices dd { margin: 0; font-weight: 750; }

.menu-group dd { color: var(--accent); text-align: right; }
.menu-group small { color: var(--muted); font-size: 0.72em; font-weight: 650; }

.menu-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
}

.menu-actions p { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: 0.82rem; }

.favourites-heading { padding-bottom: 64px; }
.favourites-heading h2 { max-width: 900px; }

.signature-story,
.sweet-story {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-pad), calc((100vw - var(--content-width)) / 2 + var(--page-pad)));
}

.signature-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  color: #fff;
  background: var(--accent-dark);
  overflow: hidden;
}

.signature-story > * { position: relative; z-index: 1; }

.signature-story::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(-150px, -8vw, -70px);
  width: clamp(410px, 48vw, 720px);
  aspect-ratio: 1;
  border: 1px dashed rgba(184, 220, 233, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 0 72px rgba(184, 220, 233, 0.035), inset 0 0 0 144px rgba(184, 220, 233, 0.025);
  transform: translateY(-50%) rotate(0deg);
  animation: signature-ring 28s linear infinite;
}

.signature-story::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 29%;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(184, 220, 233, 0.1);
  box-shadow: 0 0 76px rgba(184, 220, 233, 0.19);
  animation: signature-glow 7s var(--ease-in-out) infinite alternate;
}

.signature-copy { max-width: 600px; }
.signature-copy .feature-label { color: var(--sky-strong); }

.signature-copy h3,
.poster-copy h3,
.sweet-copy h3 { font-size: clamp(2.45rem, 5vw, 4.6rem); }

.signature-copy > p:not(.feature-label) {
  max-width: 58ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-prices { margin: 30px 0; }
.feature-prices div { border-color: rgba(255, 255, 255, 0.22); }
.feature-prices dd { color: var(--sky-strong); }
.signature-image {
  width: min(100%, 500px);
  justify-self: end;
  animation: signature-float 6.8s var(--ease-in-out) infinite alternate;
}

.signature-image::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.24) 49%, transparent 63%);
  transform: translateX(-75%);
  animation: image-sheen 7.5s 1.2s var(--ease-in-out) infinite;
}

.poster-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.15fr) minmax(220px, 0.8fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.poster-breakfast { animation: poster-float-a 7.5s var(--ease-in-out) infinite alternate; }
.poster-noodles { animation: poster-float-b 8.5s var(--ease-in-out) infinite alternate; }

.poster-copy { text-align: center; }
.poster-copy .feature-label { margin-bottom: 16px; }
.poster-copy p:not(.feature-label) { max-width: 54ch; margin: 24px auto 0; color: var(--muted); }

.poster-prices {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.92rem;
}

.poster-prices span { display: flex; justify-content: space-between; gap: 18px; padding-top: 10px; border-top: 1px solid var(--line); }
.poster-prices strong { color: var(--accent); }


.sweet-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
  background: var(--sky-soft);
}

.sweet-copy { max-width: 540px; }
.sweet-copy > p:not(.feature-label) { margin: 25px 0; color: var(--muted); }

.sweet-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.sweet-images figure:last-child { margin-top: 74px; }
.sweet-images figure:first-child { animation: image-float-b 8s var(--ease-in-out) infinite alternate; }
.sweet-images figure:last-child { animation: image-float-a 7s var(--ease-in-out) infinite alternate; }

.gallery-section {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  background: var(--sky);
}

.gallery-section::before,
.gallery-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.52;
}

.gallery-section::before {
  top: 12%;
  left: -120px;
  width: 310px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 90px rgba(255, 255, 255, 0.3);
  animation: gallery-blob-a 10s var(--ease-in-out) infinite alternate;
}

.gallery-section::after {
  right: -90px;
  bottom: 6%;
  width: 240px;
  aspect-ratio: 1;
  background: rgba(123, 45, 29, 0.09);
  box-shadow: 0 0 84px rgba(123, 45, 29, 0.12);
  animation: gallery-blob-b 12s var(--ease-in-out) infinite alternate;
}

.gallery-section > * {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin-inline: auto;
}

.gallery-marquee {
  width: 100%;
  max-width: none;
  margin: clamp(34px, 5vw, 64px) 0 0;
  overflow: hidden;
  pointer-events: none;
}

.gallery-marquee-track {
  width: max-content;
  display: flex;
  color: transparent;
  font-size: clamp(5.5rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(68, 28, 21, 0.24);
  transform: translateX(0);
  animation: gallery-words 26s linear infinite;
  will-change: transform;
}

.gallery-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  padding-right: clamp(18px, 3vw, 46px);
}

.gallery-marquee-track b {
  color: var(--accent-rich);
  font-size: 0.45em;
  -webkit-text-stroke: 0;
  animation: word-dot-pulse 2.4s ease-in-out infinite;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(30px, 4vw, 48px);
}

.gallery-card {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--sky-strong);
  cursor: zoom-in;
  transform: translateY(0);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

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

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.gallery-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.74));
  font-size: 0.86rem;
  font-weight: 780;
  text-align: left;
}

.gallery-card:nth-child(1) img { object-position: 50% 48%; }
.gallery-card:nth-child(2) img { object-position: 50% 50%; }
.gallery-card:nth-child(3) img { object-position: 50% 54%; }
.gallery-card:nth-child(4) img { object-position: 50% 42%; }
.gallery-card:nth-child(5) img { object-position: 50% 48%; }
.gallery-card:nth-child(6) img { object-position: 50% 48%; }

.reviews {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 4vw, 60px);
  align-items: start;
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(86px, 8vw, 118px);
}

.reviews-summary {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  max-width: 390px;
  padding-top: 6px;
}

.reviews-summary .section-intro {
  margin-bottom: 24px;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.reviews-summary h2 {
  max-width: 9.2ch;
  font-size: clamp(3.15rem, 5.2vw, 4.55rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.rating-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  margin-top: 30px;
}

.rating-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 100px;
  aspect-ratio: 1;
  border: 1px dashed rgba(123, 45, 29, 0.34);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  animation: rating-ring 15s linear infinite;
}

.rating-line > strong { position: relative; color: var(--accent); font-size: clamp(3.7rem, 5.8vw, 4.7rem); line-height: 0.9; }
.rating-line > div { display: grid; gap: 2px; }
.rating-line span { color: var(--accent-rich); letter-spacing: 0.08em; }
.rating-line span { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.rating-line .icon-star { width: 0.95em; height: 0.95em; stroke-width: 2.1; }
.rating-line p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.review-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.review-topics span,
.amenities span {
  padding: 8px 12px;
  border: 1px solid rgba(23, 37, 43, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 720;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.review {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 3.2vw, 48px);
  border: 1px solid rgba(23, 37, 43, 0.18);
  border-radius: var(--radius);
  background: rgba(248, 251, 251, 0.4);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.review-featured {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(64px, 8vw, 118px);
}

.review img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.review-featured img { width: 64px; height: 64px; align-self: center; }
.stars {
  margin: 20px 0;
  color: var(--accent-rich);
  letter-spacing: 0.08em;
  transform-origin: left center;
  animation: stars-breathe 3.2s ease-in-out infinite;
}
.review-featured .stars { align-self: center; }
.review-stack .review:nth-child(1) .stars { animation-delay: -1.1s; }
.review-stack .review:nth-child(2) .stars { animation-delay: -2.2s; }
.review blockquote { margin-bottom: 24px; font-size: 1.08rem; line-height: 1.5; }
.review-featured blockquote {
  width: 100%;
  max-width: 14ch;
  margin: 0 auto 34px;
  font-size: clamp(1.75rem, 2.65vw, 2.65rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
}
.reviewer { margin-bottom: 8px; font-weight: 820; }
.review a { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.88rem; font-weight: 760; }
.review a .icon { width: 0.95em; height: 0.95em; }
.review-featured .reviewer {
  margin-top: auto;
}

.review-featured > a { align-self: flex-start; }

.review-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.review-stack .review {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 38px);
}

.review-stack .review blockquote {
  max-width: 17ch;
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.review-stack .reviewer { margin-top: auto; }

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: stretch;
}

.visit-details { padding: 10px 0; }

.visit address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 28px 0 10px;
  color: var(--muted);
  font-size: 1.05rem;
  font-style: normal;
}

.visit address .icon { flex: 0 0 auto; margin-top: 0.16em; color: var(--accent); }

.phone-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 1.15rem; font-weight: 820; }
.phone-link .icon { width: 1em; height: 1em; }

.hours {
  display: grid;
  gap: 13px;
  margin: 34px 0 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours div { display: flex; justify-content: space-between; gap: 20px; }
.hours div > span { display: inline-flex; align-items: center; gap: 8px; }
.hours div > span .icon { width: 1em; height: 1em; color: var(--accent); }
.hours strong { text-align: right; }
.price-guide { margin-bottom: 18px; color: var(--muted); }
.price-guide strong { color: var(--ink); }

.amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.amenities span { display: inline-flex; align-items: center; gap: 6px; }
.amenities .icon { width: 1em; height: 1em; color: var(--accent); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.map-wrap {
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 1fr) auto;
  align-items: end;
  gap: 30px 46px;
  padding: 54px var(--page-pad);
  color: #fff;
  background: var(--night);
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 60px; height: 60px; border-radius: 10px; }
.footer-brand p { margin-bottom: 1px; font-size: 1.2rem; font-weight: 850; }
.footer-brand span { color: rgba(255, 255, 255, 0.64); font-size: 0.82rem; }
.footer-contact p { margin-bottom: 4px; color: rgba(255, 255, 255, 0.72); }
.footer-contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--sky-strong); font-weight: 780; }
.footer-contact a .icon { width: 1em; height: 1em; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.site-footer nav a { font-weight: 760; text-decoration: none; }
.footer-note { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.54); font-size: 0.78rem; }

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

dialog::backdrop { background: rgba(11, 19, 22, 0.82); }
dialog[open]:not(.instant-motion) { animation: dialog-in 260ms var(--ease-out) both; }
dialog[open]:not(.instant-motion)::backdrop { animation: backdrop-in 220ms ease both; }

.dialog-close,
.dialog-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 25, 28, 0.75);
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.dialog-close { width: 46px; height: 46px; font-size: 1.65rem; }

.lightbox {
  width: min(100vw, 1120px);
  height: min(100dvh, 900px);
  max-width: none;
  max-height: none;
  padding: 54px 78px 30px;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #101719;
}

.lightbox .dialog-close { position: absolute; top: 8px; right: 8px; }

.lightbox figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 0;
}

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

.lightbox figcaption { text-align: center; }

.dialog-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.dialog-close:active { transform: scale(0.94); }
.dialog-nav:active { transform: translateY(-50%) scale(0.94); }

.dialog-prev { left: 14px; }
.dialog-next { right: 14px; }

.menu-dialog {
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: clamp(20px, 4vw, 42px);
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sky-soft);
}

.menu-dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.menu-dialog-header p { margin-bottom: 3px; color: var(--accent); font-weight: 800; }
.menu-dialog h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }
.menu-dialog .dialog-close { flex: 0 0 auto; }
.menu-pages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.menu-pages button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  transition: transform 180ms var(--ease-out), filter 180ms ease;
}
.menu-pages button:active { transform: scale(0.985); }
.menu-pages img { width: 100%; height: auto; display: block; border-radius: 9px; }

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.reveal-soft { transform: translateY(18px) scale(0.985); }

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

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-3px); }
  .button-primary:hover { background: var(--accent-dark); }
  .button-light:hover { color: #fff; background: var(--accent-rich); }
  .button-outline:hover { color: #fff; background: var(--accent-rich); border-color: var(--accent-rich); }
  .desktop-nav a:not(.nav-call):hover,
  .story-links a:hover,
  .text-link:hover,
  .review a:hover { color: var(--accent-rich); }
  .desktop-nav .nav-call:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(123, 45, 29, 0.2); }
  .brand:hover img { transform: rotate(-4deg) scale(1.04); }
  .ratio-frame:hover > img { filter: saturate(1.08) contrast(1.02); }
  .gallery-card:hover { transform: translateY(-8px); box-shadow: 0 22px 40px rgba(48, 79, 90, 0.2); }
  .gallery-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
  .review:hover { transform: translateY(-5px); border-color: rgba(123, 45, 29, 0.32); box-shadow: 0 18px 36px rgba(48, 79, 90, 0.1); }
  .menu-pages button:hover { transform: translateY(-4px); filter: saturate(1.04); }
  .dialog-close:hover,
  .dialog-nav:hover { background: rgba(123, 45, 29, 0.92); border-color: rgba(255, 255, 255, 0.62); }
}

@keyframes page-progress { to { transform: scaleX(1); } }

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

@keyframes hero-glow-drift {
  from { opacity: 0.62; transform: translate3d(0, 0, 0) scale(0.92); }
  to { opacity: 1; transform: translate3d(-24px, 34px, 0) scale(1.08); }
}

@keyframes orbit-float {
  from { transform: translate3d(0, -7px, 0); }
  to { transform: translate3d(0, 11px, 0); }
}

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

@keyframes orbit-core-breathe {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.035); }
}

@keyframes satellite-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes scroll-cue-flow {
  0% { opacity: 0; transform: translateY(-100%); }
  28% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translateY(100%); }
}

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

@keyframes image-float-a {
  from { transform: translate3d(0, -8px, 0); }
  to { transform: translate3d(0, 10px, 0); }
}

@keyframes image-float-b {
  from { transform: translate3d(0, 9px, 0); }
  to { transform: translate3d(0, -7px, 0); }
}

@keyframes seal-turn {
  from { transform: rotate(-8deg); }
  to { transform: rotate(352deg); }
}

@keyframes menu-image-drift-a {
  from { transform: scale(1.035) translate3d(-0.5%, 0, 0); }
  to { transform: scale(1.105) translate3d(1.4%, -1.2%, 0); }
}

@keyframes menu-image-drift-b {
  from { transform: scale(1.045) translate3d(1%, -0.5%, 0); }
  to { transform: scale(1.115) translate3d(-1.4%, 1.1%, 0); }
}

@keyframes menu-line-flow {
  from { transform: translateX(0); }
  to { transform: translateX(164%); }
}

@keyframes signature-ring {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes signature-glow {
  from { opacity: 0.5; transform: translate3d(0, -12px, 0) scale(0.88); }
  to { opacity: 1; transform: translate3d(42px, 26px, 0) scale(1.12); }
}

@keyframes signature-float {
  from { transform: translate3d(0, -7px, 0); }
  to { transform: translate3d(0, 10px, 0); }
}

@keyframes image-sheen {
  0%, 18% { opacity: 0; transform: translateX(-78%); }
  32% { opacity: 1; }
  54% { opacity: 0; transform: translateX(78%); }
  100% { opacity: 0; transform: translateX(78%); }
}

@keyframes poster-float-a {
  from { transform: translate3d(0, 8px, 0); }
  to { transform: translate3d(0, -10px, 0); }
}

@keyframes poster-float-b {
  from { transform: translate3d(0, -9px, 0); }
  to { transform: translate3d(0, 11px, 0); }
}

@keyframes gallery-blob-a {
  from { transform: translate3d(-20px, -14px, 0) scale(0.9); }
  to { transform: translate3d(74px, 52px, 0) scale(1.16); }
}

@keyframes gallery-blob-b {
  from { transform: translate3d(0, 32px, 0) scale(0.92); }
  to { transform: translate3d(-74px, -36px, 0) scale(1.12); }
}

@keyframes gallery-words { to { transform: translateX(-50%); } }

@keyframes word-dot-pulse {
  0%, 100% { opacity: 0.38; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.08); }
}

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

@keyframes stars-breathe {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.025); }
}

@keyframes menu-panel-in {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menu-link-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes reduced-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 1040px) {
  .story { gap: 50px; }
  .poster-story { grid-template-columns: minmax(180px, 0.75fr) minmax(270px, 1.2fr) minmax(180px, 0.75fr); }
  .reviews { grid-template-columns: 1fr; }
  .reviews-summary { position: static; max-width: 760px; }
  .reviews-summary h2 { max-width: 12ch; }
}

@media (max-width: 840px) {
  .visit-snapshot { grid-template-columns: repeat(2, 1fr); }
  .visit-snapshot div:nth-child(2) { border-right: 0; }
  .visit-snapshot div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .story, .signature-story, .sweet-story, .visit { grid-template-columns: 1fr; }
  .story-copy { max-width: 700px; }
  .story-images { width: min(100%, 460px); }
  .menu-heading, .gallery-heading { grid-template-columns: 1fr; gap: 22px; }
  .signature-image { justify-self: center; }
  .poster-story { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .poster-copy { grid-column: 1 / -1; grid-row: 1; max-width: 720px; margin-inline: auto; }
  .sweet-copy { max-width: 700px; }
  .sweet-images { width: min(100%, 720px); }
  .reviews-layout { grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr); }
  .review-featured { min-height: 560px; }
  .review-stack { display: grid; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; --page-pad: 18px; }

  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header {
    color: #fff;
    background: linear-gradient(180deg, rgba(17, 25, 28, 0.54) 0%, rgba(17, 25, 28, 0.12) 72%, transparent 100%);
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  }

  .site-header::before {
    content: "LOOP CAFÉ";
    position: absolute;
    left: 50%;
    top: 50%;
    color: currentColor;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.03rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }

  .brand {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
  }

  .brand span { display: none; }
  .brand img {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(10, 18, 21, 0.28);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding-inline: 10px;
    border-color: transparent;
    border-radius: 0;
    color: #fff;
    background: transparent;
  }

  .menu-toggle:focus-visible { outline-color: #fff; }

  body.has-scrolled .site-header,
  body.menu-open .site-header {
    color: var(--ink);
    background: rgba(248, 251, 251, 0.96);
    border-bottom-color: rgba(23, 37, 43, 0.1);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
  }

  body.has-scrolled .brand img,
  body.menu-open .brand img { border-color: var(--accent); }

  body.has-scrolled .menu-toggle,
  body.menu-open .menu-toggle {
    border-color: var(--line);
    color: var(--ink);
    background: var(--paper);
  }

  .section { padding-top: 78px; padding-bottom: 78px; }

  .hero-image { object-position: 50% 44%; }
  .hero-scrim { background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.3) 100%); }
  .hero-orbit { top: 7%; right: -64px; width: 184px; opacity: 0.72; }
  .hero-glow { top: 6%; right: -54px; width: 246px; }
  .hero-scroll-cue { display: none; }
  .hero-content {
    display: block;
    width: calc(100% - (2 * var(--page-pad)));
    margin: 0 var(--page-pad) calc(28px + env(safe-area-inset-bottom));
  }

  .hero-brand {
    display: block;
    margin-bottom: 16px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .hero-brand .icon { display: none; }
  .hero-title-wide,
  .hero-copy-wide,
  .button-label-wide { display: none; }
  .hero-title-mobile,
  .hero-copy-mobile,
  .button-label-mobile { display: inline; }
  .hero-actions .button-icon-wide { display: none; }
  .hero-actions .button-icon-mobile { display: inline-block; }

  .hero h1 {
    max-width: 100%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.35rem, 15.6vw, 4.7rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.88;
    text-transform: uppercase;
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 20px;
    font-size: 1.02rem;
    font-weight: 520;
    line-height: 1.38;
    justify-self: auto;
    text-align: left;
  }

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

  .hero-actions .button {
    width: 100%;
    min-height: 64px;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
    text-align: left;
  }

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

  .hero-actions .button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(17, 25, 28, 0.18);
  }

  .hero-actions .button .icon { width: 1.15em; height: 1.15em; margin-left: 8px; }
  .hero-rating { display: none; }

  .visit-snapshot div { padding: 20px 18px; }
  .visit-snapshot span { font-size: 0.72rem; }
  .visit-snapshot strong { font-size: 0.86rem; }
  .service-strip { padding-top: 18px; padding-bottom: 18px; }
  .service-group { gap: 18px; padding-right: 18px; }

  .story h2,
  .menu-heading h2,
  .favourites-heading h2,
  .gallery-heading h2,
  .reviews h2,
  .visit h2 { font-size: clamp(2.4rem, 11vw, 3.2rem); }

  .story { gap: 42px; }
  .story-images { width: min(100%, 430px); }
  .ratio-frame figcaption { padding: 36px 10px 10px; font-size: 0.68rem; }
  .story-links { display: grid; gap: 13px; }

  .menu-photo-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 320px);
    gap: 12px;
    margin-top: 40px;
    padding-bottom: 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .menu-photo-strip figure { scroll-snap-align: start; }
  .menu-catalog { grid-template-columns: 1fr; gap: 42px; margin-top: 54px; }
  .menu-note { min-height: 0; }
  .menu-actions { align-items: flex-start; flex-direction: column; margin-top: 42px; }

  .favourites-heading { padding-bottom: 46px; }
  .signature-story { gap: 42px; }
  .signature-copy h3, .poster-copy h3, .sweet-copy h3 { font-size: clamp(2.25rem, 10vw, 3.1rem); }
  .signature-image { width: min(100%, 430px); }
  .signature-story::before { right: -230px; width: 560px; }
  .signature-story::after { right: 8%; }
  .poster-story { gap: 10px; }
  .poster-copy { margin-bottom: 32px; text-align: left; }
  .poster-copy p:not(.feature-label) { margin-left: 0; }
  .poster-prices span { display: grid; gap: 1px; }
  .sweet-story { gap: 42px; }
  .sweet-images { gap: 10px; }
  .sweet-images figure:last-child { margin-top: 46px; }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: row;
    gap: 10px;
    margin-top: 40px;
  }
  .gallery-card span { padding: 38px 10px 9px; font-size: 0.7rem; line-height: 1.3; }
  .gallery-marquee { margin-top: 38px; }
  .gallery-marquee-track { font-size: clamp(4.4rem, 24vw, 6.5rem); -webkit-text-stroke-width: 1.5px; }

  .reviews { gap: 42px; }
  .reviews-summary { max-width: none; }
  .reviews-summary h2 { max-width: 12ch; font-size: clamp(2.75rem, 10.4vw, 3.7rem); }
  .rating-line { margin-top: 26px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-stack { display: grid; }
  .review-featured { min-height: 0; padding: 32px; }
  .review-featured blockquote { max-width: 15ch; font-size: clamp(1.45rem, 7.6vw, 2rem); }
  .review-stack .review { padding: 26px; }
  .review-stack .review blockquote { max-width: 30ch; }

  .visit { gap: 46px; }
  .hours div { font-size: 0.92rem; }
  .map-wrap, .map-wrap iframe { min-height: 460px; }
  .map-wrap iframe { width: 600px; max-width: none; }

  .site-footer { grid-template-columns: 1fr; align-items: start; padding-bottom: 72px; }
  .site-footer nav { grid-column: auto; justify-content: flex-start; }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: var(--z-actions);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: var(--night);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 260ms var(--ease-out);
  }

  body:not(.has-scrolled) .mobile-action-bar,
  body.menu-open .mobile-action-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  }

  .mobile-action-bar a {
    min-height: 60px;
    display: grid;
    place-items: center;
    grid-auto-flow: column;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 140ms var(--ease-out), color 180ms ease, background-color 180ms ease;
  }

  .mobile-action-bar a:active { transform: scale(0.95); background: rgba(255, 255, 255, 0.08); }
  .mobile-action-bar .icon { width: 1.08em; height: 1.08em; }

  .mobile-action-bar a:last-child { border-right: 0; color: var(--sky-strong); }

  .lightbox { width: 100vw; height: 100dvh; padding: 64px 14px 78px; }
  .dialog-nav { top: auto; bottom: 16px; transform: none; }
  .dialog-nav:active { transform: scale(0.94); }
  .dialog-prev { left: 16px; }
  .dialog-next { right: 16px; }
  .lightbox figcaption { padding-inline: 58px; }
  .menu-dialog { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); padding: 20px; }
  .menu-pages { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 3.12rem; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero-actions .button { padding-inline: 10px; font-size: 0.72rem; }
  .hero-orbit { width: 174px; right: -40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image,
  .hero-glow,
  .hero-orbit,
  .hero-orbit::before,
  .hero-orbit::after,
  .hero-orbit svg,
  .hero-orbit-core,
  .hero-scroll-cue i::after,
  .story-team,
  .menu-photo-strip img,
  .menu-group::before,
  .signature-story::before,
  .signature-story::after,
  .signature-image,
  .signature-image::after,
  .poster-breakfast,
  .poster-noodles,
  .sweet-images figure,
  .gallery-section::before,
  .gallery-section::after,
  .gallery-marquee-track,
  .gallery-marquee-track b,
  .rating-line::before,
  .stars,
  .scroll-progress span {
    animation: none !important;
    transform: none !important;
  }

  .hero-scroll-cue { display: none; }
  .service-track { width: 100%; animation: none; }
  .service-group { flex-wrap: wrap; justify-content: center; padding-inline: var(--page-pad); }
  .service-group[aria-hidden="true"],
  .gallery-marquee-group:last-child { display: none; }
  .gallery-marquee-track { width: auto; justify-content: center; }
  .motion-ready .reveal,
  .motion-ready .reveal.reveal-soft,
  .motion-ready .reveal.is-visible { opacity: 1; transform: none; transition: opacity 160ms ease; }
  .mobile-menu:not([hidden]),
  .mobile-menu:not([hidden]) a,
  dialog[open]:not(.instant-motion),
  dialog[open]:not(.instant-motion)::backdrop { animation: reduced-fade 160ms ease both; transform: none; }
  .button,
  .site-header,
  .mobile-action-bar,
  .menu-toggle,
  .gallery-card,
  .review,
  .dialog-close,
  .dialog-nav,
  .menu-pages button,
  .mobile-action-bar a { transition-property: color, background-color, border-color, opacity; }

  .site-header,
  .mobile-action-bar { transition: none !important; }

  .story-team > img { transition: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .button-ghost { background: rgba(16, 28, 33, 0.78); }
}
