@font-face {
  font-family: "Anybody";
  src: url("assets/fonts/anybody-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 75% 125%;
  font-display: swap;
}

@font-face {
  font-family: "Public Sans";
  src: url("assets/fonts/public-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: oklch(0.235 0.042 178);
  --ink-soft: oklch(0.36 0.035 177);
  --green: oklch(0.355 0.071 178);
  --green-bright: oklch(0.455 0.087 178);
  --cloud: oklch(0.975 0.006 170);
  --sage: oklch(0.89 0.026 171);
  --pink: oklch(0.88 0.065 27);
  --yellow: oklch(0.9 0.145 92);
  --white: oklch(1 0 0);
  --line: color-mix(in oklch, var(--ink) 18%, transparent);
  --shell: min(1240px, calc(100% - 40px));
  --z-sticky: 30;
  --z-modal: 80;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--cloud);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cloud);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: calc(var(--z-modal) + 10);
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

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

.scroll-progress {
  position: fixed;
  z-index: calc(var(--z-sticky) + 1);
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
}

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

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

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

.shell { width: var(--shell); margin-inline: auto; }
.shell-narrow { width: min(560px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(88px, 11vw, 152px); }
.ratio-3x4 { aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-3x4 img { width: 100%; height: 100%; object-fit: cover; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Anybody", "Arial Narrow", Arial, sans-serif;
  font-stretch: 92%;
  font-weight: 670;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h2 { margin-bottom: 28px; font-size: clamp(2.85rem, 6.2vw, 5.7rem); }
p { text-wrap: pretty; }

.site-header {
  position: fixed;
  z-index: var(--z-sticky);
  inset: 0 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
  background: oklch(0.18 0.025 178 / 0.48);
  border-bottom: 1px solid oklch(1 0 0 / 0.17);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease, transform 140ms var(--ease-out);
}

.icon-link svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.icon-link svg rect, .icon-link svg circle:not(.icon-fill) { fill: none; stroke: currentColor; stroke-width: 1.8; }
.icon-link .icon-fill { fill: currentColor; stroke: none; }

/* Lucide stays local so the demo keeps its icon language when previewed offline. */
.lucide-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  flex: none;
  background: currentColor;
  -webkit-mask: center / contain no-repeat var(--lucide-icon);
  mask: center / contain no-repeat var(--lucide-icon);
}

.lucide-icon--arrow-up-right { --lucide-icon: url("assets/icons/arrow-up-right.svg"); }
.lucide-icon--menu { --lucide-icon: url("assets/icons/menu.svg"); }
.lucide-icon--x { --lucide-icon: url("assets/icons/x.svg"); }
.lucide-icon--chevron-left { --lucide-icon: url("assets/icons/chevron-left.svg"); }
.lucide-icon--chevron-right { --lucide-icon: url("assets/icons/chevron-right.svg"); }
.lucide-icon--map-pin { --lucide-icon: url("assets/icons/map-pin.svg"); }
.lucide-icon--clock-3 { --lucide-icon: url("assets/icons/clock-3.svg"); }
.lucide-icon--phone { --lucide-icon: url("assets/icons/phone.svg"); }
.lucide-icon--car-front { --lucide-icon: url("assets/icons/car-front.svg"); }
.lucide-icon--credit-card { --lucide-icon: url("assets/icons/credit-card.svg"); }
.lucide-icon--scan-line { --lucide-icon: url("assets/icons/scan-line.svg"); }
.lucide-icon--door-open { --lucide-icon: url("assets/icons/door-open.svg"); }
.lucide-icon--coffee { --lucide-icon: url("assets/icons/coffee.svg"); }
.lucide-icon--package { --lucide-icon: url("assets/icons/package.svg"); }
.lucide-icon--sun { --lucide-icon: url("assets/icons/sun.svg"); }
.lucide-icon--accessibility { --lucide-icon: url("assets/icons/accessibility.svg"); }
.lucide-icon--plus { --lucide-icon: url("assets/icons/plus.svg"); }

.menu-button {
  height: 44px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background 180ms ease;
}

.menu-button__label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.075em; text-transform: uppercase; }
.menu-button .lucide-icon { width: 1.05rem; height: 1.05rem; }

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

.hero__picture, .hero__picture img, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__picture { z-index: -3; animation: hero-picture-in 1.1s var(--ease-out) both; }
.hero__picture img { object-fit: cover; object-position: 50% 42%; animation: hero-drift 18s 1.1s ease-in-out infinite alternate; }
.hero__overlay { z-index: -2; background: linear-gradient(180deg, rgba(7, 12, 11, 0.10), rgba(7, 12, 11, 0.14) 45%, rgba(7, 12, 11, 0.30)); }
.hero__atmosphere { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.hero__glow { position: absolute; display: block; border-radius: 50%; opacity: 0.22; mix-blend-mode: screen; filter: blur(3px); will-change: transform, opacity; }
.hero__glow--one { width: clamp(180px, 28vw, 460px); aspect-ratio: 1; top: 8%; right: -8%; background: radial-gradient(circle, oklch(0.9 0.145 92 / 0.72), transparent 68%); animation: glow-one 12s ease-in-out infinite alternate; }
.hero__glow--two { width: clamp(140px, 22vw, 350px); aspect-ratio: 1; bottom: 4%; left: -8%; background: radial-gradient(circle, oklch(0.88 0.065 27 / 0.7), transparent 70%); animation: glow-two 15s ease-in-out infinite alternate; }
.hero__glow--three { width: clamp(100px, 13vw, 220px); aspect-ratio: 1; top: 38%; left: 42%; border: 1px solid oklch(1 0 0 / 0.54); opacity: 0.16; animation: glow-three 10s ease-in-out infinite; }
.hero__content { padding-top: 126px; padding-bottom: max(42px, 6vh); }
.hero__tablet-only, .hero__desktop-only { display: none; }

.hero__brandline {
  margin-bottom: 22px;
  padding-bottom: 11px;
  border-bottom: 1px solid oklch(1 0 0 / 0.45);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: hero-rise 700ms 120ms var(--ease-out) both;
}

.hero__brandline i { font-style: normal; opacity: 0.58; }

.hero__layout { display: grid; gap: 26px; align-items: end; }
.hero__message { max-width: 940px; }
.hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8.2vw, 6rem);
  animation: hero-rise 800ms 180ms var(--ease-out) both;
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 30px;
  font-size: clamp(1.02rem, 2.1vw, 1.25rem);
  line-height: 1.5;
  animation: hero-rise 760ms 260ms var(--ease-out) both;
}

.hero__summary { max-width: 46ch; color: oklch(1 0 0 / 0.74); font-size: 0.91rem; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; animation: hero-rise 760ms 340ms var(--ease-out) both; }
.hero__side { display: grid; gap: 5px; margin-top: 26px; padding-top: 18px; border-top: 1px solid oklch(1 0 0 / 0.45); animation: hero-rise 760ms 420ms var(--ease-out) both; }
.hero__side span { font-size: 0.72rem; letter-spacing: 0.055em; }
.hero__side strong { font-family: "Anybody", sans-serif; font-size: 1.55rem; line-height: 1.08; }
.hero__side strong i { font-family: "Public Sans", sans-serif; font-size: 0.68rem; font-style: normal; font-weight: 500; opacity: 0.72; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-picture-in {
  from { opacity: 0.72; clip-path: inset(0 0 8% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes hero-drift {
  from { transform: scale(1.045) translate3d(-0.6%, -0.4%, 0); }
  to { transform: scale(1.075) translate3d(0.8%, 0.7%, 0); }
}

@keyframes glow-one {
  from { transform: translate3d(0, -6%, 0) scale(0.92); opacity: 0.14; }
  to { transform: translate3d(-18%, 14%, 0) scale(1.08); opacity: 0.28; }
}

@keyframes glow-two {
  from { transform: translate3d(-8%, 12%, 0) scale(1.04); opacity: 0.12; }
  to { transform: translate3d(24%, -18%, 0) scale(0.9); opacity: 0.24; }
}

@keyframes glow-three {
  0%, 100% { transform: translate3d(-24%, -12%, 0) rotate(0deg) scale(0.84); opacity: 0.08; }
  50% { transform: translate3d(34%, 24%, 0) rotate(180deg) scale(1.16); opacity: 0.22; }
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button--light { color: var(--ink); background: var(--white); }
.button--ghost { color: var(--white); border-color: oklch(1 0 0 / 0.76); background: oklch(1 0 0 / 0.08); }
.button--dark { color: var(--white); background: var(--green); }
.button .lucide-icon { width: 0.95rem; height: 0.95rem; margin-left: 8px; transition: transform 180ms var(--ease-out); }
.button:active, .menu-button:active, .icon-link:active, .dialog-close:active { transform: scale(0.97); }
.menu-feature__preview:active, .gallery-card:active { transform: scale(0.985); }

@media (hover: hover) and (pointer: fine) {
  .button:hover .lucide-icon, .text-link:hover .lucide-icon, .footer-bottom a:hover .lucide-icon { transform: translate3d(2px, -2px, 0); }
}

.brand-ribbon { overflow: hidden; color: var(--ink); background: var(--yellow); }
.brand-ribbon__viewport { overflow: hidden; }
.brand-ribbon__track { display: flex; width: max-content; animation: brand-marquee 18s linear infinite; will-change: transform; }
.brand-ribbon__words {
  min-height: 96px;
  width: max-content;
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  --ribbon-gap: clamp(12px, 2.2vw, 34px);
  gap: var(--ribbon-gap);
  padding: 18px 0 10px var(--ribbon-gap);
  font-family: "Anybody", sans-serif;
  font-size: clamp(2rem, 4.25vw, 3.25rem);
  font-stretch: 88%;
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand-ribbon__words span { font-size: 0.5em; }
.brand-ribbon__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; padding: 10px 20px 12px; border-top: 1px solid color-mix(in oklch, var(--ink) 24%, transparent); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.075em; text-transform: uppercase; }

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

.about { padding-block: 0; background: var(--cloud); }
.about__visuals { position: relative; padding: 58px 20px 48px; background: var(--green); }
.about__media { width: 78%; }
.about__media img { object-position: 48% 46%; animation: about-breathe 13s ease-in-out infinite alternate; }
.about__secondary { position: relative; z-index: 1; width: 48%; aspect-ratio: 4 / 5; margin: -35% 0 0 auto; overflow: hidden; border: 8px solid var(--green); }
.about__secondary img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.about__secondary { animation: about-float 7s ease-in-out infinite; will-change: transform; }
.about__photo-note { max-width: 260px; margin: 26px 0 0; color: oklch(1 0 0 / 0.8); font-size: 0.78rem; line-height: 1.55; }
.about__copy { padding-block: 72px 90px; }
.about__name { margin-bottom: 20px; color: var(--green); font-family: "Anybody", sans-serif; font-size: 1.15rem; font-weight: 700; }
.about__copy > p:not(.about__name) { max-width: 68ch; margin-bottom: 32px; color: var(--ink-soft); font-size: 1.03rem; }
.about__services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0 0 30px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.about__services li { display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 10px 4px; border-bottom: 1px solid var(--line); font-size: 0.82rem; font-weight: 700; }
.about__services li:nth-child(odd) { border-right: 1px solid var(--line); }
.about__services li:nth-child(even) { padding-left: 15px; }
.about__services li > .lucide-icon { width: 0.9rem; height: 0.9rem; color: var(--yellow); }

@keyframes about-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-0.8%, 0.7%, 0); }
}

@keyframes about-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.6deg); }
  50% { transform: translate3d(0, -11px, 0) rotate(0.7deg); }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 2px;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-section { overflow: hidden; background: var(--sage); }
.menu-orbit { position: absolute; top: 54px; right: -58px; width: clamp(170px, 20vw, 300px); aspect-ratio: 1; color: var(--green); opacity: 0.22; pointer-events: none; animation: menu-orbit 24s linear infinite; will-change: transform; }
.menu-orbit svg { width: 100%; height: 100%; overflow: visible; }
.menu-orbit text { fill: currentColor; font-family: "Public Sans", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.menu-orbit circle { fill: var(--pink); }
@keyframes menu-orbit { to { transform: rotate(360deg); } }
.section-heading { display: grid; gap: 22px; margin-bottom: clamp(46px, 7vw, 82px); }
.section-heading h2 { max-width: 680px; margin-bottom: 0; }
.section-heading__copy { max-width: 430px; align-self: end; }
.section-heading__copy p { margin-bottom: 14px; color: var(--ink-soft); font-size: 1.04rem; }
.section-heading__copy span { display: block; padding-top: 12px; border-top: 1px solid var(--line); font-size: 0.74rem; font-weight: 700; }
.menu-grid { display: grid; gap: 30px; }
.menu-card { min-width: 0; align-self: start; }
.menu-card__media img { object-position: 50% 50%; transition: transform 260ms var(--ease-out), filter 220ms var(--ease-out); }
.menu-card__body { min-height: 286px; padding: 25px 22px 26px; }
.menu-card--yellow .menu-card__body { background: var(--yellow); }
.menu-card--pink .menu-card__body { background: var(--pink); }
.menu-card--green .menu-card__body { color: var(--white); background: var(--green); }
.menu-card__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.menu-card__title span { padding-top: 5px; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-card h3 { margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 3.45rem); }
.menu-card dl { margin: 0; }
.menu-card dl div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid currentColor; }
.menu-card dt, .menu-card dd { margin: 0; }
.menu-card dt { font-size: 0.84rem; font-weight: 650; }
.menu-card dd { font-size: 0.83rem; font-variant-numeric: tabular-nums; }

.menu-feature { display: grid; margin-top: clamp(64px, 9vw, 116px); color: var(--white); background: var(--ink); }
.menu-feature__copy { align-self: center; padding: 44px 30px; }
.menu-feature__copy > span { display: block; margin-bottom: 20px; color: var(--yellow); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.075em; text-transform: uppercase; }
.menu-feature__copy h3 { max-width: 610px; margin-bottom: 20px; font-size: clamp(2.35rem, 5vw, 4.6rem); }
.menu-feature__copy p { max-width: 480px; margin-bottom: 0; color: oklch(1 0 0 / 0.72); }
.menu-feature__preview { display: grid; grid-template-rows: auto auto; align-self: start; width: 100%; min-width: 0; min-height: 0; overflow: hidden; padding: 0; color: var(--ink); text-align: left; background: var(--yellow); border: 0; cursor: zoom-in; transition: transform 150ms var(--ease-out); }
.menu-feature__image { min-width: 0; min-height: 0; display: grid; place-items: center; aspect-ratio: 1125 / 797; overflow: hidden; background: var(--sage); }
.menu-feature__preview img { width: 100%; height: 100%; min-height: 0; object-fit: contain; object-position: center; animation: menu-scan 12s ease-in-out infinite alternate; will-change: filter; }
.menu-feature__preview > .menu-feature__label { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 20px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.075em; text-transform: uppercase; }
.menu-feature__label .lucide-icon { width: 0.95rem; height: 0.95rem; transition: transform 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .menu-feature__preview:hover .menu-feature__label .lucide-icon { transform: translate3d(2px, -2px, 0); }
}

@keyframes menu-scan {
  from { filter: saturate(0.96) brightness(0.99); }
  to { filter: saturate(1.04) brightness(1.02); }
}

.gallery-section { overflow: hidden; color: var(--white); background: var(--ink); }
.gallery-heading { display: grid; gap: 16px; margin-bottom: clamp(50px, 8vw, 90px); }
.gallery-heading p { align-self: end; margin-bottom: 0; color: oklch(1 0 0 / 0.62); }
.gallery-heading h2 { max-width: 950px; margin: 0; }
.gallery-grid { display: grid; gap: 34px; padding-bottom: 8px; }
.gallery-card { position: relative; display: block; width: 100%; padding: 0; color: inherit; text-align: left; background: none; border: 0; cursor: zoom-in; transition: transform 150ms var(--ease-out); }
.gallery-card__media { display: block; background: var(--ink-soft); animation: gallery-float 9s ease-in-out infinite alternate; will-change: transform; }
.gallery-card:nth-child(2n) .gallery-card__media { animation-duration: 11s; animation-delay: -3s; }
.gallery-card:nth-child(3n) .gallery-card__media { animation-duration: 8s; animation-delay: -5s; }
.gallery-card__media img { object-position: 50% 50%; transition: transform 260ms var(--ease-out), filter 220ms var(--ease-out); }
.gallery-card__hover { position: absolute; z-index: 2; top: 43%; left: 50%; width: 72px; height: 72px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; opacity: 0; pointer-events: none; transform: translate3d(-50%, -42%, 0) scale(0.92); transition: opacity 180ms ease, transform 220ms var(--ease-out); }
.gallery-card__caption { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; font-size: 0.73rem; font-weight: 750; letter-spacing: 0.075em; text-transform: uppercase; }
.gallery-card__caption > .lucide-icon { width: 1.1rem; height: 1.1rem; color: var(--yellow); transition: transform 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .gallery-card:hover .gallery-card__caption > .lucide-icon { transform: rotate(90deg); }
}

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

.reviews { overflow: hidden; background: var(--yellow); }
.reviews__orbit { position: absolute; top: -110px; right: -14px; color: var(--green); font-family: Georgia, serif; font-size: clamp(19rem, 35vw, 38rem); line-height: 1; opacity: 0.08; pointer-events: none; animation: quote-drift 14s ease-in-out infinite alternate; will-change: transform, opacity; }
.reviews__heading, .review-layout { position: relative; z-index: 1; }
.reviews__heading { display: grid; gap: 30px; align-items: end; margin-bottom: 46px; }
.reviews__heading h2 { max-width: 800px; margin-bottom: 0; }
.rating-summary { display: flex; align-items: center; gap: 16px; }
.rating-summary > strong { font-family: "Anybody", sans-serif; font-size: 3.4rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.rating-summary > span { display: grid; gap: 2px; }
.rating-summary small { color: var(--ink-soft); }
.stars { color: oklch(0.46 0.11 65); font-size: 0.84rem; letter-spacing: 0.12em; white-space: nowrap; }
.review-layout { display: grid; background: var(--cloud); }
.review { display: flex; flex-direction: column; min-height: 300px; padding: 30px; }
.review header { display: flex; align-items: center; gap: 14px; }
.review header img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.review h3 { margin-bottom: 5px; font-family: "Public Sans", sans-serif; font-size: 1rem; font-weight: 750; letter-spacing: -0.015em; }
.review blockquote { flex: 1; margin: 34px 0; font-family: "Anybody", sans-serif; font-size: clamp(1.45rem, 2.6vw, 2.15rem); font-stretch: 95%; font-weight: 520; line-height: 1.28; letter-spacing: -0.025em; }
.review .text-link { align-self: flex-start; }
.review--featured { min-height: 520px; background: var(--pink); }
.review--featured blockquote { font-size: clamp(2rem, 4.8vw, 4.35rem); line-height: 1.06; }
.review-stack { display: grid; }
.review-stack .review:first-child { border-bottom: 1px solid var(--line); }

@keyframes quote-drift {
  from { transform: translate3d(-4%, -3%, 0) rotate(-7deg); opacity: 0.055; }
  to { transform: translate3d(7%, 7%, 0) rotate(4deg); opacity: 0.11; }
}

.visit { padding: 0; background: var(--sage); scroll-margin-top: 74px; }
.visit__details { padding-block: clamp(80px, 10vw, 124px); }
.visit__street { margin-bottom: 20px; color: var(--green); font-family: "Anybody", sans-serif; font-size: 1.1rem; font-weight: 700; }
.visit-list { margin: 38px 0 28px; border-top: 1px solid var(--line); }
.visit-list > div { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.visit-list__label { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.075em; text-transform: uppercase; }
.visit-list__label .lucide-icon { width: 0.9rem; height: 0.9rem; color: var(--green); }
.visit-list p { margin: 0; }
.visit-list a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.visit-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0 0 34px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.visit-amenities li { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 12px 6px; border-bottom: 1px solid var(--line); font-size: 0.76rem; font-weight: 650; }
.visit-amenities li > .lucide-icon { width: 0.95rem; height: 0.95rem; color: var(--green); }
.visit-amenities li:nth-child(odd) { border-right: 1px solid var(--line); }
.visit-amenities li:nth-child(even) { padding-left: 6px; }
.visit__map { min-height: 560px; background: color-mix(in oklch, var(--sage) 82%, var(--green)); }
.visit__map iframe { display: block; width: 100%; height: 560px; border: 0; }

.site-footer { padding: 72px 0 22px; color: var(--white); background: oklch(0.17 0.03 177); }
.footer-main { display: grid; gap: 52px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; }
.footer-brand p { margin: 0; font-family: "Anybody", sans-serif; font-size: 1.9rem; font-weight: 690; line-height: 0.94; letter-spacing: -0.03em; }
.footer-main nav { display: grid; gap: 9px; }
.footer-main nav a, .footer-contact > a { width: max-content; text-decoration: none; border-bottom: 1px solid transparent; }
.footer-contact p { color: oklch(1 0 0 / 0.64); }
.footer-socials { display: flex; gap: 8px; margin-top: 24px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 58px; padding-top: 20px; border-top: 1px solid oklch(1 0 0 / 0.16); color: oklch(1 0 0 / 0.56); font-size: 0.69rem; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }

dialog { max-width: none; max-height: none; }
dialog::backdrop { background: oklch(0.1 0.02 177 / 0.82); backdrop-filter: blur(10px); }
.nav-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px;
  color: var(--white);
  background: var(--green);
  border: 0;
}

.nav-dialog[open] { display: grid; grid-template-rows: auto 1fr auto; animation: dialog-enter 320ms var(--ease-out) both; }
.nav-dialog__top, .nav-dialog__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-dialog__top > span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.075em; text-transform: uppercase; }
.dialog-close {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background 180ms ease;
}
.dialog-close > .lucide-icon { width: 1.1rem; height: 1.1rem; }
.nav-dialog nav { display: grid; align-content: center; width: min(760px, 100%); margin: auto; }
.nav-dialog nav a { display: block; padding: 8px 0; color: var(--white); font-family: "Anybody", sans-serif; font-size: clamp(2.8rem, 10vw, 6rem); font-stretch: 88%; font-weight: 670; line-height: 0.98; letter-spacing: -0.03em; text-decoration: none; transition: color 180ms ease, transform 220ms var(--ease-out); }
.nav-dialog__foot { padding-top: 18px; border-top: 1px solid oklch(1 0 0 / 0.28); font-size: 0.76rem; }
.nav-dialog__foot a { color: inherit; }
.nav-dialog[open] nav a { opacity: 1; animation: nav-link-enter 480ms var(--ease-out) backwards; }
.nav-dialog[open] nav a:nth-child(2) { animation-delay: 45ms; }
.nav-dialog[open] nav a:nth-child(3) { animation-delay: 90ms; }
.nav-dialog[open] nav a:nth-child(4) { animation-delay: 135ms; }
.nav-dialog[open] nav a:nth-child(5) { animation-delay: 180ms; }
.nav-dialog.is-closing { animation: dialog-exit 180ms var(--ease-out) forwards; }

.lightbox {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 18px;
  color: var(--white);
  background: oklch(0.13 0.025 178);
  border: 0;
}
.lightbox[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; animation: lightbox-enter 260ms var(--ease-out) both; }
.lightbox__toolbar { display: flex; align-items: center; justify-content: space-between; }
.lightbox__toolbar > span { color: oklch(1 0 0 / 0.66); font-size: 0.73rem; letter-spacing: 0.075em; text-transform: uppercase; }
.lightbox__stage { position: relative; min-height: 0; display: grid; place-items: center; padding: 18px 0; touch-action: pan-y; }
.lightbox__stage img { max-width: 100%; max-height: calc(100svh - 150px); width: auto; height: auto; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.lightbox__arrow { position: absolute; z-index: 2; top: 50%; width: 46px; height: 46px; color: var(--white); background: oklch(0.13 0.025 178 / 0.78); border: 1px solid oklch(1 0 0 / 0.52); border-radius: 50%; transform: translateY(-50%); cursor: pointer; transition: transform 140ms var(--ease-out), background 180ms ease; }
.lightbox__arrow--prev { left: 4px; }
.lightbox__arrow--next { right: 4px; }
.lightbox__arrow .lucide-icon { width: 1.1rem; height: 1.1rem; }
.lightbox__arrow:active { transform: translateY(-50%) scale(0.97); }
.lightbox > p { max-width: 760px; margin: 0 auto; color: oklch(1 0 0 / 0.74); font-size: 0.76rem; letter-spacing: 0.04em; text-align: center; }
.lightbox.is-menu .lightbox__arrow { display: none; }
.lightbox.is-closing { animation: lightbox-exit 160ms var(--ease-out) forwards; }

dialog::backdrop { opacity: 1; transition: opacity 220ms var(--ease-out); }
dialog.is-closing::backdrop { opacity: 0; }

@starting-style {
  dialog[open]::backdrop { opacity: 0; }
}

@keyframes dialog-enter {
  from { opacity: 0; clip-path: inset(0 0 7% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes dialog-exit {
  to { opacity: 0; clip-path: inset(5% 0 0 0); }
}

@keyframes nav-link-enter {
  from { opacity: 0; transform: translate3d(0, 38%, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes lightbox-enter {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: none; }
}

@keyframes lightbox-exit {
  to { opacity: 0; transform: scale(0.985); }
}

[data-reveal] {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 720ms var(--ease-out), transform 820ms var(--ease-out), clip-path 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal="clip"] { clip-path: inset(0 0 14% 0); }
html.motion-ready [data-reveal].is-visible { opacity: 1; clip-path: inset(0); transform: none; }
.menu-card:nth-child(2) { --reveal-delay: 70ms; }
.menu-card:nth-child(3) { --reveal-delay: 140ms; }
.gallery-card:nth-child(2), .gallery-card:nth-child(5) { --reveal-delay: 60ms; }
.gallery-card:nth-child(3), .gallery-card:nth-child(6) { --reveal-delay: 120ms; }

.page-hidden .hero__picture img,
.page-hidden .hero__glow,
.page-hidden .brand-ribbon__track,
.page-hidden .about__media img,
.page-hidden .about__secondary,
.page-hidden .menu-orbit,
.page-hidden .menu-feature__preview img,
.page-hidden .gallery-card__media,
.page-hidden .reviews__orbit {
  animation-play-state: paused !important;
}

@media (hover: hover) and (pointer: fine) {
  .icon-link:hover { color: var(--ink); background: var(--white); opacity: 1; }
  .button:hover { transform: translateY(-2px); }
  .button:hover:active { transform: scale(0.97); }
  .button--dark:hover { background: var(--ink); }
  .menu-card:hover .menu-card__media img { transform: scale(1.035); filter: saturate(1.08); }
  .menu-feature__preview:hover img { animation-play-state: paused; filter: saturate(1.08) brightness(1.04); }
  .gallery-card:hover .gallery-card__media img { transform: scale(1.045); filter: brightness(0.84) saturate(1.1); }
  .gallery-card:hover .gallery-card__hover { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
  .footer-main nav a:hover, .footer-contact > a:hover { border-color: currentColor; }
  .nav-dialog nav a:hover { color: var(--yellow); transform: translate3d(12px, 0, 0); }
}

@media (min-width: 700px) {
  :root { --shell: min(1240px, calc(100% - 72px)); }
  .site-header { padding-inline: 36px; }
  .hero__pitch { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 50px; align-items: end; }
  .hero__side { margin-top: 0; padding: 18px 0 4px; }
  .about { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr); align-items: stretch; }
  .about__visuals { display: flex; flex-direction: column; justify-content: center; min-height: 980px; padding: 96px clamp(28px, 5vw, 74px) 80px max(36px, calc((100vw - 1240px) / 2)); }
  .about__media { width: 72%; }
  .about__secondary { width: 44%; margin-top: -34%; }
  .about__photo-note { max-width: 230px; }
  .about__copy { width: auto; max-width: 650px; margin: 0; padding: 112px clamp(40px, 7vw, 110px); align-self: center; }
  .section-heading, .reviews__heading, .gallery-heading { grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.65fr); }
  .gallery-heading h2 { grid-column: 1; grid-row: 1; }
  .gallery-heading p { grid-column: 2; grid-row: 1; }
  .menu-grid { grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.9fr) minmax(0, 1.06fr); gap: 20px; }
  .menu-card--pink { margin-top: 68px; }
  .menu-card__body { padding-inline: clamp(14px, 2vw, 24px); }
  .menu-card dt { font-size: clamp(0.68rem, 1.18vw, 0.84rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .gallery-card:nth-child(even) { margin-top: 58px; }
  .gallery-grid { padding-bottom: 58px; }
  .reviews__heading { grid-template-columns: minmax(0, 1.5fr) auto; }
  .review-layout { grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr); }
  .review-stack .review { min-height: 50%; }
  .visit { display: grid; grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr); }
  .visit__details { width: auto; max-width: 660px; margin: 0 0 0 auto; padding: 104px clamp(40px, 6vw, 90px) 104px 36px; }
  .visit__map, .visit__map iframe { height: 100%; min-height: 820px; }
  .footer-main { grid-template-columns: 1.2fr 0.7fr 0.8fr; }
  .nav-dialog { padding: 30px 40px; }
  .lightbox { padding: 26px 34px; }
  .lightbox__arrow--prev { left: 2vw; }
  .lightbox__arrow--next { right: 2vw; }
}

@media (min-width: 900px) {
  .menu-feature { grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr); }
  .menu-feature__copy { padding: clamp(40px, 4.5vw, 64px); }
  .menu-feature__copy h3 { font-size: clamp(2.25rem, 4.2vw, 4rem); }
}

@media (min-width: 1700px) {
  .brand-ribbon__words { min-width: 100vw; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .hero__content { width: min(1440px, calc(100% - 96px)); padding-bottom: clamp(42px, 5vw, 72px); }
  .hero__overlay { background: linear-gradient(180deg, rgba(7, 12, 11, 0.08), rgba(7, 12, 11, 0.12) 48%, rgba(7, 12, 11, 0.74)); }
  .hero__phone-only, .hero__tablet-only { display: none; }
  .hero__desktop-only { display: inline; }
  .hero__layout { grid-template-columns: minmax(0, 1.65fr) minmax(350px, 0.72fr); gap: clamp(64px, 8vw, 124px); align-items: end; }
  .hero__message { min-width: 0; max-width: none; }
  .hero__brandline { width: max-content; margin-bottom: clamp(18px, 2vw, 28px); padding: 0; border: 0; }
  .hero h1 { max-width: none; margin: 0; font-size: clamp(5.5rem, 8vw, 7rem); line-height: 0.9; text-transform: uppercase; }
  .hero__pitch { display: block; align-self: end; }
  .hero__lead { max-width: 20ch; margin-bottom: 18px; font-family: "Anybody", sans-serif; font-size: clamp(1.35rem, 1.8vw, 1.7rem); font-stretch: 94%; font-weight: 580; line-height: 1.22; }
  .hero__summary { display: block; margin-bottom: 28px; animation: hero-rise 760ms 300ms var(--ease-out) both; }
  .hero__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__actions .button { padding-inline: 18px; }
  .hero__side { grid-template-columns: auto 1fr; gap: 5px 18px; margin-top: 28px; padding-top: 16px; }
  .hero__side strong { grid-column: 1 / -1; }
  .hero__side span:last-child { align-self: end; text-align: right; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 42px 22px; }
  .gallery-card:nth-child(even) { margin-top: 70px; }
  .gallery-grid { padding-bottom: 70px; }
}

@media (max-width: 699px) {
  .menu-feature { width: 100%; }
  .menu-feature__copy { width: var(--shell); margin-inline: auto; padding-inline: 0; }
  .menu-feature__preview > .menu-feature__label { width: var(--shell); margin-inline: auto; padding-inline: 0; }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .hero__phone-only { display: none; }
  .hero__tablet-only { display: inline; }
}

@media (max-width: 599px) {
  .site-header { height: 72px; padding-inline: 14px; background: linear-gradient(180deg, oklch(0.14 0.025 178 / 0.62), transparent); border-bottom: 0; backdrop-filter: none; }
  .brand { gap: 8px; font-size: 0.69rem; letter-spacing: 0.065em; }
  .brand img { width: 44px; height: 44px; }
  .brand span { display: inline; }
  .header-actions { gap: 2px; }
  .site-header .icon-link { width: 36px; height: 44px; display: inline-grid; border: 0; }
  .site-header .icon-link svg { width: 19px; height: 19px; }
  .menu-button { width: 44px; min-width: 44px; height: 44px; padding: 0; color: var(--white); background: transparent; }
  .menu-button__label { display: none; }
  .menu-button .lucide-icon { width: 1.45rem; height: 1.45rem; }
  .hero { min-height: 100svh; }
  .hero__overlay { background: linear-gradient(180deg, rgba(7, 12, 11, 0.06), rgba(7, 12, 11, 0.1) 48%, rgba(7, 12, 11, 0.72)); }
  .hero__content { padding-bottom: 38px; }
  .hero__layout { gap: 24px; }
  .hero__brandline { width: max-content; margin-bottom: 14px; padding: 0; border: 0; }
  .hero h1 { margin-bottom: 0; font-size: clamp(3.15rem, 14.5vw, 3.75rem); line-height: 0.9; text-transform: uppercase; }
  .hero__lead { max-width: 30ch; margin-bottom: 26px; font-size: clamp(1.08rem, 4.7vw, 1.2rem); line-height: 1.38; }
  .hero__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__actions .button { min-width: 0; padding-inline: 12px; }
  .hero__side { display: none; }
}

@media (max-width: 479px) {
  .brand-ribbon__words { min-height: 96px; --ribbon-gap: 7px; padding: 16px 0 10px var(--ribbon-gap); font-size: clamp(1.8rem, 8.2vw, 2.15rem); }
  .brand-ribbon__meta { gap: 5px 14px; }
  .about__services { grid-template-columns: 1fr; }
  .about__services li:nth-child(odd) { border-right: 0; }
  .about__services li:nth-child(even) { padding-left: 4px; }
  .review { padding: 26px 22px; }
  .review--featured { min-height: 440px; }
  .nav-dialog__foot { align-items: flex-start; flex-direction: column; }
  .lightbox__arrow { top: auto; bottom: 4px; transform: none; }
  .lightbox__arrow:active { transform: scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero__picture img { transform: none; }
  .scroll-progress { display: none; }
  .brand-ribbon__track { animation: none; transform: none; }
  .brand-ribbon__words:nth-child(2) { display: none; }
  .about__media img, .about__secondary, .menu-orbit, .menu-feature__preview img, .gallery-card__media, .reviews__orbit { animation: none; transform: none; }
  .hero__glow { display: none; }
  html.motion-ready [data-reveal], html.motion-ready [data-reveal="clip"] { opacity: 1; clip-path: inset(0); transform: none; }
}
