/* ==========================================================================
   Cafetaria de Vesting — Mobile-first one-pager
   ========================================================================== */

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fafafa;
  --color-bg-warm: #fff6eb;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --color-border: #e8e8e8;
  --color-accent: #f7941d;
  --color-accent-hover: #e08512;
  --color-accent-pressed: #c9740e;
  --color-on-accent: #ffffff;
  --color-cyan: #00b7ce;
  --color-green: #8dc63f;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;

  --radius: 0.5rem;
  --header-h: 4rem;
  --header-stack-h: 6.35rem;
  --logo-mark-size: 2.1rem;
  --logo-overhang: 0.7rem;
  --sticky-cta-pad: 0.65rem;
  --sticky-cta-btn-h: 3.1rem;
  /* True bar height: top pad + button + max(bottom pad, home-indicator) — no double safe-area */
  --sticky-cta-h: calc(
    var(--sticky-cta-pad) + var(--sticky-cta-btn-h) +
      max(var(--sticky-cta-pad), env(safe-area-inset-bottom, 0px))
  );
  --max-w: 48rem;
  --shell-max: 72rem;
  --pad-x: 1.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  padding-bottom: calc(var(--sticky-cta-h) + 1rem);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--color-accent);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-accent-hover);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100%;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Buttons — Oswald + accent orange only
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-on-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-on-accent);
}

.btn--primary:active {
  background: var(--color-accent-pressed);
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--ghost:active {
  transform: scale(0.98);
}

.btn--ghost-dark {
  background: #fff;
  color: var(--color-text);
  border: 2px solid #fff;
}

.btn--ghost-dark:hover {
  background: #f3f3f3;
  color: var(--color-text);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn--outline:hover {
  background: var(--color-text);
  color: #fff;
}

.btn--outline:active {
  transform: scale(0.98);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

.cta-group .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header + logo (mark sticks out of the bar)
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0.35rem var(--pad-x) 0.25rem;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand order"
    "nav nav";
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  overflow: visible;
}

/* Sticky CTA owns Order/Call on the one-pager; free header height for the hero */
@media (max-width: 899.98px) {
  body:not(.page-legal) .site-header__actions {
    display: none;
  }

  body:not(.page-legal) .site-header__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
  }

  body:not(.page-legal) .brand {
    justify-self: center;
  }
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  width: max-content;
}

.brand:hover {
  color: inherit;
}

.brand:hover .brand__mark {
  transform: translateY(2px) scale(1.03);
}

.brand__mark {
  width: var(--logo-mark-size);
  height: auto;
  flex-shrink: 0;
  margin-top: calc(var(--logo-overhang) * 0.15);
  margin-bottom: calc(var(--logo-overhang) * -0.75);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.16));
  transition: transform 0.25s var(--ease-out);
  transform-origin: center bottom;
}

.brand__wordmark {
  width: auto;
  height: 1.55rem;
  margin-top: 8px;
}

.site-nav {
  grid-area: nav;
  min-width: 0;
  position: relative;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0 0.15rem 0.1rem;
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 0.75rem,
    #000 calc(100% - 0.75rem),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 0.75rem,
    #000 calc(100% - 0.75rem),
    transparent 100%
  );
}

.site-nav__list::-webkit-scrollbar {
  display: none;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0.35rem;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: var(--color-accent-hover);
  background: rgba(247, 148, 29, 0.08);
}

.site-header__actions {
  grid-area: order;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
}

.site-header__actions .btn {
  white-space: nowrap;
}

.site-header__call .icon {
  width: 0.95em;
  height: 0.95em;
}

.icon {
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentColor;
}

.site-nav__list a.is-active {
  color: var(--color-accent);
  background: rgba(247, 148, 29, 0.12);
}

.section,
.hero {
  scroll-margin-top: calc(var(--header-stack-h) + var(--logo-overhang));
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

/* Alternating section washes: white / warm / white / soft gray rhythm */
main > .section.hours,
main > .section.promo {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 246, 235, 0.2) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(247, 148, 29, 0.035) 11px,
      rgba(247, 148, 29, 0.035) 12px
    ),
    var(--color-bg-warm);
}

main > .section.steps,
main > .section.assortment,
main > .section.siblings {
  background: #ffffff;
}

main > .section.allergens {
  background: #f7f7f8;
}

main > .section.welcome,
main > .section.location {
  background: transparent;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  box-sizing: border-box;
}

.section__inner--flush {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section h2 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section__lead {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 32ch;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Welcome
   -------------------------------------------------------------------------- */

.welcome {
  padding-block: 0;
}

.welcome__split {
  display: grid;
  width: 100%;
}

.welcome__info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--pad-x);
  background: #f7f7f8;
  overflow: hidden;
}

.welcome__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.welcome__wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.18;
  filter: grayscale(0.15);
}

.welcome__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 247, 248, 0.55) 0%, rgba(247, 247, 248, 0.92) 100%);
}

.welcome__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}

.welcome__copy h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  max-width: none;
}

.welcome__copy p {
  margin: 0 0 var(--space-md);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
  max-width: none;
}

.welcome__copy p:last-child {
  margin-bottom: 0;
}

.welcome__close strong {
  font-weight: 700;
}

.welcome__cta {
  margin-top: var(--space-lg);
}

.welcome__photos {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--color-bg-warm);
  overflow: hidden;
}

.welcome__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  touch-action: pan-y;
  background: var(--color-bg-warm);
}

.welcome__track {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.45s var(--ease-out);
}

.welcome__shot {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  margin: 0;
  overflow: hidden;
  height: 100%;
  background: var(--color-bg-warm);
}

.welcome__shot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.welcome__arrow--prev {
  left: 0.65rem;
}

.welcome__arrow--next {
  right: 0.65rem;
}

.welcome__arrow .icon {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
}

.welcome__arrow:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: #fff;
}

.welcome__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.welcome__dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.welcome__dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.welcome__dot::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 2.75rem;
  height: 2.75rem;
  transform: translate(-50%, -50%);
}

.welcome__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.welcome__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .welcome__track {
    transition: none;
  }
}

.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  background: var(--color-bg-warm);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-reveal],
[data-reveal-media] {
  opacity: 1;
  transform: none;
}

.js-reveal [data-reveal],
.js-reveal [data-reveal-media] {
  opacity: 0;
  transform: translateY(18px);
}

.js-reveal [data-reveal].is-visible,
.js-reveal [data-reveal-media].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.js-reveal .assortment__item.is-visible:nth-child(1) { transition-delay: 0.02s; }
.js-reveal .assortment__item.is-visible:nth-child(2) { transition-delay: 0.08s; }
.js-reveal .assortment__item.is-visible:nth-child(3) { transition-delay: 0.14s; }
.js-reveal .assortment__item.is-visible:nth-child(4) { transition-delay: 0.2s; }
.js-reveal .assortment__item.is-visible:nth-child(5) { transition-delay: 0.26s; }
.js-reveal .assortment__item.is-visible:nth-child(6) { transition-delay: 0.32s; }

.js-reveal .hours.is-visible .hours__row--today {
  animation: hours-today-in 0.55s var(--ease-out) 0.12s both;
}

@keyframes hours-today-in {
  from {
    opacity: 0.35;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assortment__media img,
  .assortment__tile:hover .assortment__media img,
  .assortment__tile:focus-visible .assortment__media img,
  .siblings__media img,
  .siblings__item:hover .siblings__media img,
  .siblings__item:focus-visible .siblings__media img {
    transition: none;
    transform: none;
  }

  .js-reveal .hours.is-visible .hours__row--today {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   1. Hero — full-bleed photo + soft vignette overlay
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #1a120c;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease-out);
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.05);
  transform-origin: center center;
}

.hero__slide.is-active .hero__photo {
  animation: hero-kenburns 7.5s linear forwards;
}

.hero:not(.is-in-view) .hero__slide.is-active .hero__photo {
  animation-play-state: paused;
}

@media (max-height: 380px) {
  .hero__arrow {
    display: none;
  }

  .hero__scroll {
    display: none;
  }
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }

  .hero__slide.is-active .hero__photo {
    animation: none;
    transform: scale(1.05);
  }
}

body.is-reduced-motion .hero__slide {
  transition: none;
}

body.is-reduced-motion .hero__slide.is-active .hero__photo {
  animation: none;
  transform: scale(1.05);
}

.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.45rem;
}

.hero__arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.hero__arrow .icon {
  width: 0.85rem;
  height: 0.85rem;
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: #fff;
}

.hero__arrow:active {
  transform: scale(0.96);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.hero__dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

/* Expand hit area to ≥44px without enlarging the visible dot */
.hero__dot::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 2.75rem;
  height: 2.75rem;
  transform: translate(-50%, -50%);
}

.hero__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero__scroll {
  position: absolute;
  right: max(1rem, env(safe-area-inset-right));
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll:hover {
  color: #fff;
}

.hero__scroll-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  animation: hero-scroll-bounce 1.8s var(--ease-out) infinite;
}

.hero__scroll-icon .icon {
  width: 0.8rem;
  height: 0.8rem;
}

.hero__scroll:hover .hero__scroll-icon {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.45);
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (min-width: 900px) {
  .hero__controls {
    left: auto;
    right: max(1.5rem, env(safe-area-inset-right));
    bottom: 2rem;
    transform: none;
  }

  .hero__scroll {
    left: 50%;
    right: auto;
    bottom: 2rem;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-icon {
    animation: none;
  }
}

body.is-reduced-motion .hero__scroll-icon {
  animation: none;
}

/* Lighter global veil + localized text gradient (left/bottom only) */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 50% at 62% 38%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.38) 32%,
      rgba(0, 0, 0, 0.08) 58%,
      rgba(0, 0, 0, 0) 78%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-stack-h) - var(--sticky-cta-h));
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg) var(--pad-x) calc(var(--space-lg) + 4rem);
  max-width: var(--shell-max);
  margin: 0 auto;
}

.hero__copy {
  max-width: 34rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.js-hero-ready .hero__brand,
.js-hero-ready .hero__headline,
.js-hero-ready .hero__ctas {
  opacity: 0;
  transform: translateY(18px);
}

.js-hero-ready.hero-in .hero__brand,
.js-hero-ready.hero-in .hero__headline,
.js-hero-ready.hero-in .hero__ctas {
  opacity: 1;
  transform: none;
}

.js-hero-ready.hero-in .hero__brand {
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.js-hero-ready.hero-in .hero__headline {
  transition: opacity 0.45s var(--ease-out) 0.12s, transform 0.45s var(--ease-out) 0.12s;
}

.js-hero-ready.hero-in .hero__ctas {
  transition: opacity 0.45s var(--ease-out) 0.24s, transform 0.45s var(--ease-out) 0.24s;
}

.hero__brand {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 10.5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.hero__brand-kicker {
  display: inline-block;
  font-size: clamp(0.95rem, 3.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.22em 0.55em;
  margin-bottom: 0.35em;
}

.hero__brand-main {
  display: block;
}

.hero__headline {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 4.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 26ch;
  color: #fff;
}

.hero__ctas {
  max-width: 28rem;
}

.hero__ctas .btn {
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero__inner {
    min-height: auto;
  }

  .btn,
  .js-reveal [data-reveal],
  .js-reveal [data-reveal-media],
  .js-hero-ready .hero__brand,
  .js-hero-ready .hero__headline,
  .js-hero-ready .hero__ctas {
    transition: none;
  }

  .js-reveal [data-reveal],
  .js-reveal [data-reveal-media],
  .js-hero-ready .hero__brand,
  .js-hero-ready .hero__headline,
  .js-hero-ready .hero__ctas {
    opacity: 1;
    transform: none;
  }
}

body.is-reduced-motion .hero__inner {
  min-height: auto;
}

body.is-reduced-motion .js-hero-ready .hero__brand,
body.is-reduced-motion .js-hero-ready .hero__headline,
body.is-reduced-motion .js-hero-ready .hero__ctas {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   2. Opening hours — poster scale
   -------------------------------------------------------------------------- */

.hours__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--color-text);
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours__day {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hours__time {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  white-space: nowrap;
  color: var(--color-text-muted);
}

.hours__exceptions {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-md) var(--space-md) 1.1rem;
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-accent);
}

.hours__exceptions-title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours__exception {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   3. Promo — photo-first, near full-bleed
   -------------------------------------------------------------------------- */

.promo {
  padding-bottom: var(--space-2xl);
}

.promo__intro {
  margin-bottom: var(--space-lg);
}

.promo__feature {
  display: grid;
  gap: var(--space-lg);
}

.promo__media {
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius);
}

.promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.promo__body {
  padding-top: 0;
}

.promo__eyebrow {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.promo__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.promo__text {
  margin: 0 0 var(--space-md);
  font-family: var(--font-body);
  color: var(--color-text-muted);
  max-width: 36ch;
}

/* --------------------------------------------------------------------------
   4. Assortment
   -------------------------------------------------------------------------- */

.assortment .section__lead {
  max-width: 58ch;
}

.assortment__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 0.85rem;
}

.assortment__media {
  aspect-ratio: 4 / 5;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: var(--radius);
}

.assortment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
}

.assortment__tile:hover .assortment__media img,
.assortment__tile:focus-visible .assortment__media img {
  transform: scale(1.04);
}

.assortment__name {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.assortment__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.assortment__cta-wrap {
  display: none;
}

/* --------------------------------------------------------------------------
   5. Allergens
   -------------------------------------------------------------------------- */

.allergens p {
  margin: 0 0 var(--space-md);
  font-family: var(--font-body);
  max-width: 40ch;
}

.allergens p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. Location — full-bleed text | map split
   -------------------------------------------------------------------------- */

.location {
  padding-block: 0;
}

.location__split {
  display: grid;
  width: 100%;
}

.location__info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--pad-x);
  background: #f7f7f8;
  overflow: hidden;
}

.location__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.location__wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.18;
  filter: grayscale(0.15);
}

.location__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 247, 248, 0.55) 0%, rgba(247, 247, 248, 0.92) 100%);
}

.location__info-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}

.location__info .section__lead {
  margin-bottom: var(--space-md);
  font-size: 1.15rem;
  max-width: none;
}

.location__info h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
}

.location__address {
  display: block;
  margin: 0 0 var(--space-md);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.5;
}

.location__address strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.location__parking {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.location__parking strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.location__map {
  position: relative;
  width: 100%;
  min-height: 18rem;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #ddd;
  border-radius: var(--radius);
}

.location__map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.location__map-link {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.location__map-link:hover {
  background: var(--color-accent-hover);
  color: var(--color-on-accent);
}

.location__map-link:active {
  background: var(--color-accent-pressed);
  transform: translateX(-50%) scale(0.98);
}

/* --------------------------------------------------------------------------
   7. Sibling links
   -------------------------------------------------------------------------- */

.siblings {
  padding-bottom: calc(var(--space-2xl) + 0.5rem);
}

.siblings .section__lead {
  max-width: 56ch;
}

.siblings__strip {
  display: grid;
  gap: var(--space-lg);
}

.siblings__item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.siblings__media {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #111;
  margin-bottom: var(--space-md);
  border-radius: var(--radius);
}

.siblings__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.siblings__item:hover .siblings__media img,
.siblings__item:focus-visible .siblings__media img {
  transform: scale(1.04);
}

.siblings__copy {
  padding: 0;
}

.siblings__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.siblings__text {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  max-width: 48ch;
}

.siblings__link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.siblings__item:hover .siblings__link {
  color: var(--color-accent-hover);
}

.siblings__links,
.siblings__btn {
  display: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding: var(--space-2xl) 0 0;
  border-top: 1px solid var(--color-border);
  background: #f7f7f8;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--space-xl);
  width: 100%;
  box-sizing: border-box;
}

.site-footer__grid {
  display: grid;
  gap: var(--space-xl);
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.site-footer__mark {
  width: 2.75rem;
  height: auto;
  flex-shrink: 0;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-footer__trust,
.site-footer__meta,
.site-footer__note,
.site-footer__cta-text {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-style: normal;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.site-footer__note {
  margin-bottom: 0;
}

.site-footer__heading {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-footer__heading--social {
  margin-top: var(--space-lg);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}

.site-footer__social-link .icon {
  width: 1.45rem;
  height: 1.45rem;
  fill: #fff;
}

.site-footer__social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.site-footer__social-link:active {
  transform: scale(0.96);
}

.site-footer__social-link--tiktok {
  background: #111;
}

.site-footer__social-link--instagram {
  background: linear-gradient(45deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.site-footer__social-link--facebook {
  background: #1877f2;
}

.site-footer__meta a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer__meta a:hover {
  color: var(--color-accent-hover);
}

.site-footer__list {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer__list a {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  color: var(--color-accent);
}

.site-footer__list a:hover {
  color: var(--color-accent-hover);
}

.site-footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.site-footer__hours-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
  padding: 0.35rem 0.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  border-radius: 0.3rem;
}

.site-footer__hours-day {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.site-footer__hours-time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.site-footer__hours-row--today {
  background: rgba(247, 148, 29, 0.12);
  color: var(--color-text);
}

.site-footer__hours-row--today .site-footer__hours-day,
.site-footer__hours-row--today .site-footer__hours-time {
  color: var(--color-text);
  font-weight: 600;
}

.site-footer__today-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.35rem;
  border-radius: 0.25rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.site-footer__status {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: var(--space-md) 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  line-height: 1.35;
}

.site-footer__status--open {
  background: rgba(141, 198, 63, 0.14);
  border-color: rgba(141, 198, 63, 0.35);
  color: var(--color-text);
}

.site-footer__status--closed {
  background: rgba(0, 166, 214, 0.1);
  border-color: rgba(0, 166, 214, 0.28);
  color: var(--color-text);
}

.site-footer__status-dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-footer__status--open .site-footer__status-dot {
  background: var(--color-green);
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.25);
}

.site-footer__status--closed .site-footer__status-dot {
  background: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 166, 214, 0.2);
}

.site-footer__status-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.site-footer__status-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__status-detail {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.site-footer__order {
  width: 100%;
  max-width: 16rem;
}

.site-footer__legal {
  width: 100%;
  border-top: 1px solid var(--color-border);
  background: #e9e9eb;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.site-footer__legal-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.95rem var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
}

.site-footer__copy,
.site-footer__credit {
  margin: 0;
}

.site-footer__legal-start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
}

.site-footer__subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__subnav a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer__subnav a:hover,
.site-footer__subnav a[aria-current="page"] {
  color: var(--color-accent-hover);
}

.site-footer__credit a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer__credit a:hover {
  color: var(--color-accent-hover);
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
  }

  .site-footer__legal-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .site-footer__credit {
    text-align: right;
  }
}

@media (min-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr);
    column-gap: clamp(1.75rem, 3vw, 2.75rem);
    row-gap: var(--space-xl);
  }
}

/* --------------------------------------------------------------------------
   Mobile sticky CTA
   -------------------------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.5rem;
  padding: var(--sticky-cta-pad) 0.85rem;
  padding-bottom: max(var(--sticky-cta-pad), env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

.sticky-cta .btn {
  min-height: var(--sticky-cta-btn-h);
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Desktop / tablet
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .cta-group {
    flex-direction: row;
  }

  .cta-group .btn {
    width: auto;
    flex: 1;
  }

  .hero__ctas {
    width: max-content;
    max-width: 100%;
  }

  .hero__ctas .btn {
    flex: 0 1 auto;
    width: auto;
  }

  .promo__feature {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 0;
    max-width: var(--shell-max);
    margin: 0 auto;
  }

  .promo__media {
    aspect-ratio: 1 / 1;
  }

  .promo__body.section__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .assortment__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1.25rem;
  }

  .siblings__strip {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 900px) {
  :root {
    --pad-x: 2rem;
    --max-w: 64rem;
    --logo-mark-size: 2.55rem;
    --logo-overhang: 0.85rem;
    --header-stack-h: var(--header-h);
    --space-2xl: 5.75rem;
  }

  body {
    padding-bottom: 0;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav order";
    column-gap: 1.25rem;
    padding-block: 0.45rem;
  }

  .site-nav__list {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
    gap: 0.1rem;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .site-nav__list a {
    font-size: 18px;
    min-height: 0;
    padding: 0.45rem 0.65rem;
  }

  .site-header__actions {
    display: flex;
    gap: 0.55rem;
  }

  .hero__inner {
    align-items: center;
    min-height: calc(100svh - var(--header-h));
    padding: var(--space-2xl) var(--pad-x);
  }

  .hero__copy {
    max-width: 34rem;
  }

  .brand__wordmark {
    height: 1.7rem;
  }

  .sticky-cta {
    display: none;
  }

  .section__inner {
    max-width: var(--max-w);
    padding: 0 var(--pad-x);
  }

  .section h2 {
    font-size: clamp(2.75rem, 3vw, 3.25rem);
  }

  .promo__intro.section__inner,
  .assortment .section__inner,
  .hours .section__inner,
  .allergens .section__inner,
  .siblings .section__inner {
    max-width: var(--max-w);
  }

  .welcome__split {
    grid-template-columns: minmax(20rem, 1fr) minmax(0, 1.05fr);
    min-height: min(34rem, 72vh);
  }

  .welcome__info {
    padding-block: var(--space-2xl);
    padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  }

  .welcome__copy {
    margin: 0;
    max-width: 42rem;
  }

  .welcome__photos {
    height: 100%;
    min-height: 100%;
  }

  .welcome__viewport {
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .welcome__shot {
    min-height: 100%;
    height: 100%;
  }

  .location__split {
    grid-template-columns: minmax(20rem, 0.95fr) 1.05fr;
    min-height: min(34rem, 72vh);
  }

  .location__info {
    padding-block: var(--space-2xl);
    padding-inline: clamp(1.5rem, 4vw, 3.5rem);
    justify-content: center;
  }

  .location__info-inner {
    margin: 0 auto;
    max-width: 32rem;
  }

  .location__map {
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
  }
}

@media (min-width: 1100px) {
  .hero__brand {
    font-size: clamp(5.5rem, 6vw, 7rem);
  }
}

/* Large screens (1080p / 2K / 4K) live at end of stylesheet for cascade. */

/* ==========================================================================
   Upgrade components (status, steps, tiles, map, footer)
   ========================================================================== */

.status-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin: 0 0 var(--space-md);
  padding: 0.65rem 0.9rem;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}

.status-chip--block {
  background: rgba(255, 255, 255, 0.65);
  color: var(--color-text);
}

.status-chip--footer {
  background: transparent;
  padding: 0;
  margin: 0 0 var(--space-sm);
  border-radius: 0;
  border-bottom: none;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.status-chip__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--color-text-muted);
  flex-shrink: 0;
}

.status-chip--open .status-chip__dot {
  background: var(--color-green);
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.25);
}

.status-chip--closed .status-chip__dot {
  background: var(--color-cyan);
}

.status-chip__label {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.status-chip__detail {
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.hero .status-chip {
  color: #fff;
}

.trust-line {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.hours__row--today {
  background: var(--color-bg-warm);
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0.35rem;
}

.hours__today-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.hours__row--today .hours__time {
  color: var(--color-text);
  font-weight: 600;
}

.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 3px solid var(--color-text);
}

.steps__item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: var(--space-md);
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.steps__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--color-accent);
}

.steps__copy {
  min-width: 0;
}

.steps__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.steps__text {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.steps__cta {
  margin: var(--space-xl) 0 0;
}

.promo--poster {
  /* padding from .section */
}

.promo__poster {
  display: grid;
  gap: var(--space-lg);
  width: 100%;
}

.promo__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius);
}

.promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.promo__body {
  padding: 0;
  max-width: none;
  margin: 0;
  width: 100%;
}

.promo__price {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.assortment__tile {
  display: block;
  text-decoration: none;
  color: inherit;
}

.assortment__tile:hover .assortment__name,
.assortment__tile:focus-visible .assortment__name {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 0.2em;
}

.assortment__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius);
}

.assortment__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 70%);
  color: #fff;
  transition: background 0.35s var(--ease-out);
}

.assortment__tile:hover .assortment__overlay,
.assortment__tile:focus-visible .assortment__overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 68%);
}

.assortment__name {
  margin: 0 0 0.15rem;
  color: #fff;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}

.assortment__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.35;
}

.media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  background: linear-gradient(135deg, #ffe0b8, #f0f0f0);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  padding: var(--space-2xl) 0 0;
}

.sticky-cta .btn--ghost-dark {
  border-width: 0;
}

@media (min-width: 640px) {
  .steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 3px solid var(--color-text);
  }

  .steps__item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: 1.35rem clamp(1rem, 2.5vw, 1.75rem);
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }

  .steps__item:first-child {
    padding-left: 0;
  }

  .steps__item:last-child {
    border-right: none;
    padding-right: 0;
  }

  .steps__num {
    margin-bottom: 0.15rem;
  }

  .promo__poster {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: var(--space-xl);
  }

  .promo__media {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .promo__media img {
    object-position: center 68%;
  }

  .promo__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
}

/* Back to top + scroll progress */
.to-top {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: calc(var(--sticky-cta-h) + 0.85rem);
  z-index: 55;
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top:hover {
  color: var(--color-accent);
}

.to-top:active {
  transform: scale(0.96);
}

.to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.to-top__track {
  stroke: #e6e6e6;
  stroke-width: 2.5;
}

.to-top__progress {
  stroke: var(--color-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.05s linear;
}

.to-top__arrow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-0.06em);
}

@media (min-width: 900px) {
  .to-top {
    right: 1.25rem;
    bottom: 1.5rem;
    width: 3.35rem;
    height: 3.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .to-top,
  .to-top__progress {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Legal / privacy page
   -------------------------------------------------------------------------- */

.page-legal {
  padding-bottom: 0;
}

.site-header__inner--simple {
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "brand back order";
  align-items: center;
}

.site-header__inner--simple .brand {
  justify-self: start;
}

.site-header__inner--simple .site-header__back {
  grid-area: back;
  justify-self: center;
}

.site-header__inner--simple .site-header__actions {
  justify-self: end;
}

.site-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.55rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.35rem;
  white-space: nowrap;
}

.site-header__back .icon {
  width: 0.85rem;
  height: 0.85rem;
}

.site-header__back:hover,
.site-header__back:focus-visible {
  color: var(--color-accent-hover);
  background: rgba(247, 148, 29, 0.08);
}

.page-legal .site-header__call {
  display: none;
}

.site-header__order--icon,
.site-header__order--responsive {
  min-width: 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border-radius: var(--radius);
}

.site-header__order--icon .icon,
.site-header__order--responsive .site-header__order-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.site-header__order--responsive .site-header__order-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 640px) {
  .site-header__order--responsive {
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0.85rem 1.35rem;
  }

  .site-header__order--responsive .site-header__order-icon {
    display: none;
  }

  .site-header__order--responsive .site-header__order-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

.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;
}

.legal {
  padding: var(--space-2xl) 0;
  background: #fff;
}

.legal__inner {
  max-width: 46rem;
}

.legal__eyebrow {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.legal__eyebrow a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal h1 {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.legal h2 {
  margin: var(--space-xl) 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal p,
.legal li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
}

.legal p {
  margin: 0 0 var(--space-md);
}

.legal ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

.legal li + li {
  margin-top: 0.35rem;
}

.legal a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal a:hover {
  color: var(--color-accent-hover);
}


/* --------------------------------------------------------------------------
   Large screens: 1080p → 2K → 4K
   -------------------------------------------------------------------------- */

/* Large desktop / 1080p laptops (~1440–1919) */
@media (min-width: 1440px) {
  :root {
    --shell-max: 92rem;
    --max-w: 76rem;
    --pad-x: 2.5rem;
    --space-xl: 3.25rem;
    --space-2xl: 5.75rem;
    --logo-mark-size: 4.75rem;
    --logo-overhang: 1.85rem;
    --header-h: 4.25rem;
  }

  body {
    font-size: 1.15rem;
  }

  .site-nav__list a {
    font-size: 18px;
    padding: 0.5rem 0.7rem;
  }

  .hero__copy {
    max-width: 36rem;
  }

  .hero__headline {
    font-size: 1.55rem;
    max-width: 26ch;
  }

  .hours__day {
    font-size: 1.75rem;
  }

  .hours__time {
    font-size: 1.3rem;
  }

  .assortment__grid {
    gap: 2rem 1.5rem;
  }

  .assortment__name {
    font-size: 1.2rem;
  }

  .btn {
    min-height: 3.4rem;
    font-size: 1.1rem;
  }

  .location__split {
    min-height: min(38rem, 70vh);
  }

  .hero__arrow {
    width: 2.85rem;
    height: 2.85rem;
  }
}

/* Full HD / 1080p desktop (~1920–2559) */
@media (min-width: 1920px) {
  :root {
    --shell-max: 112rem;
    --max-w: 92rem;
    --pad-x: 3.25rem;
    --space-xl: 3.75rem;
    --space-2xl: 6.5rem;
    --logo-mark-size: 5.5rem;
    --logo-overhang: 2.15rem;
    --header-h: 4.5rem;
  }

  body {
    font-size: 1.2rem;
  }

  .site-nav__list {
    gap: 0.2rem;
  }

  .site-nav__list a {
    font-size: 19px;
    padding: 0.55rem 0.75rem;
  }

  .brand__wordmark {
    height: 2.24rem;
  }

  .section h2 {
    font-size: clamp(3.25rem, 2.8vw, 4rem);
  }

  .section__lead {
    font-size: 1.25rem;
    max-width: 38ch;
  }

  .hero__brand {
    font-size: clamp(6.5rem, 5.5vw, 8.5rem);
  }

  .hero__copy {
    max-width: 40rem;
  }

  .hero__headline {
    font-size: 1.8rem;
    max-width: 28ch;
  }

  .hero__ctas {
    max-width: none;
  }

  .promo__title {
    font-size: 2.85rem;
  }

  .promo__media {
    min-height: 30rem;
  }

  .promo__media img {
    object-position: center 68%;
  }

  .location__split {
    min-height: min(42rem, 72vh);
  }

  .location__info-inner {
    max-width: 34rem;
  }

  .location__info h2 {
    font-size: clamp(2.75rem, 3vw, 3.75rem);
  }

  .site-footer__heading {
    font-size: 1.3rem;
  }

  .site-footer__hours-row,
  .site-footer__hours-day {
    font-size: 1rem;
  }

  .hero__controls {
    gap: 1rem;
  }

  .hero__arrow,
  .hero__scroll-icon {
    width: 3rem;
    height: 3rem;
  }

  .hero__dot {
    width: 0.65rem;
    height: 0.65rem;
  }
}

/* 2K / QHD (~2560–3839) */
@media (min-width: 2560px) {
  :root {
    --shell-max: 148rem;
    --max-w: 118rem;
    --pad-x: 4.5rem;
    --space-xl: 4.25rem;
    --space-2xl: 8rem;
    --logo-mark-size: 6.75rem;
    --logo-overhang: 2.6rem;
    --header-h: 5.25rem;
  }

  body {
    font-size: 1.35rem;
  }

  .site-header__inner {
    padding-block: 0.65rem;
    column-gap: 1.75rem;
  }

  .site-nav__list a {
    font-size: 22px;
    padding: 0.6rem 0.85rem;
  }

  .brand__wordmark {
    height: 2.75rem;
  }

  .section h2 {
    font-size: clamp(3.85rem, 2.5vw, 5rem);
  }

  .section__lead {
    font-size: 1.4rem;
    max-width: 42ch;
  }

  .hero__inner {
    min-height: calc(100svh - var(--header-h));
    padding-block: 5.5rem;
  }

  .hero__brand {
    font-size: clamp(8.5rem, 5.2vw, 11rem);
  }

  .hero__copy {
    max-width: 48rem;
  }

  .hero__headline {
    font-size: 2.15rem;
    max-width: 28ch;
  }

  .hours__day {
    font-size: 2.25rem;
  }

  .hours__time {
    font-size: 1.6rem;
  }

  .promo__title {
    font-size: 3.5rem;
  }

  .promo__text {
    font-size: 1.3rem;
  }

  .promo__media {
    min-height: 36rem;
  }

  .assortment__grid {
    gap: 2.75rem 2.25rem;
  }

  .assortment__name {
    font-size: 1.45rem;
  }

  .assortment__desc {
    font-size: 1.1rem;
  }

  .btn {
    min-height: 4rem;
    padding: 1.05rem 1.85rem;
    font-size: 1.25rem;
  }

  .location__split {
    min-height: min(48rem, 74vh);
  }

  .location__info-inner {
    max-width: 38rem;
  }

  .location__address {
    font-size: 1.45rem;
  }

  .siblings__name {
    font-size: 1.6rem;
  }

  .siblings__text {
    font-size: 1.15rem;
  }

  .site-footer__brand {
    font-size: 1.5rem;
  }

  .site-footer__heading {
    font-size: 1.4rem;
  }

  .site-footer__meta,
  .site-footer__note,
  .site-footer__cta-text,
  .site-footer__list a {
    font-size: 1.1rem;
  }

  .site-footer__hours-row,
  .site-footer__hours-day {
    font-size: 1.05rem;
  }

  .site-footer__legal {
    font-size: 1rem;
  }

  .hero__arrow,
  .hero__scroll-icon {
    width: 3.35rem;
    height: 3.35rem;
    font-size: 1.1rem;
  }

  .hero__scroll {
    font-size: 0.9rem;
  }

  .hero__dot {
    width: 0.75rem;
    height: 0.75rem;
  }

  .steps__num {
    font-size: clamp(2.5rem, 3vw, 3.25rem);
  }

  .steps__title {
    font-size: 1.45rem;
  }

  .steps__text {
    font-size: 1.15rem;
  }
}

/* 4K / UHD (~3840+) */
@media (min-width: 3840px) {
  :root {
    --shell-max: 188rem;
    --max-w: 148rem;
    --pad-x: 6rem;
    --space-xl: 5rem;
    --space-2xl: 9.5rem;
    --logo-mark-size: 8rem;
    --logo-overhang: 3.1rem;
    --header-h: 6rem;
  }

  body {
    font-size: 1.55rem;
  }

  .site-header__inner {
    padding-block: 0.75rem;
    column-gap: 2.25rem;
  }

  .site-nav__list a {
    font-size: 26px;
    padding: 0.7rem 1rem;
  }

  .brand__wordmark {
    height: 3.25rem;
  }

  .section h2 {
    font-size: clamp(4.75rem, 2.2vw, 6rem);
  }

  .section__lead {
    font-size: 1.55rem;
    max-width: 44ch;
  }

  .hero__brand {
    font-size: clamp(11rem, 4.8vw, 14rem);
  }

  .hero__copy {
    max-width: 56rem;
  }

  .hero__headline {
    font-size: 2.5rem;
    max-width: 28ch;
  }

  .hours__day {
    font-size: 2.6rem;
  }

  .hours__time {
    font-size: 1.85rem;
  }

  .promo__title {
    font-size: 4.25rem;
  }

  .promo__text {
    font-size: 1.45rem;
  }

  .promo__media {
    min-height: 44rem;
  }

  .assortment__grid {
    gap: 3.25rem 2.75rem;
  }

  .assortment__name {
    font-size: 1.7rem;
  }

  .assortment__desc {
    font-size: 1.25rem;
  }

  .btn {
    min-height: 4.5rem;
    padding: 1.2rem 2.15rem;
    font-size: 1.4rem;
  }

  .location__split {
    min-height: min(56rem, 76vh);
  }

  .location__info-inner {
    max-width: 44rem;
  }

  .location__info h2 {
    font-size: clamp(3.5rem, 2.5vw, 4.75rem);
  }

  .location__address {
    font-size: 1.65rem;
  }

  .location__parking {
    font-size: 1.3rem;
  }

  .siblings__name {
    font-size: 1.9rem;
  }

  .siblings__text,
  .siblings__link {
    font-size: 1.3rem;
  }

  .site-footer__brand {
    font-size: 1.75rem;
  }

  .site-footer__heading {
    font-size: 1.55rem;
  }

  .site-footer__meta,
  .site-footer__note,
  .site-footer__cta-text,
  .site-footer__list a,
  .site-footer__trust {
    font-size: 1.25rem;
  }

  .site-footer__hours-row,
  .site-footer__hours-day,
  .site-footer__hours-time {
    font-size: 1.2rem;
  }

  .site-footer__status {
    padding: 1rem 1.15rem;
  }

  .site-footer__status-label {
    font-size: 1.15rem;
  }

  .site-footer__status-detail {
    font-size: 1.05rem;
  }

  .site-footer__legal {
    font-size: 1.1rem;
  }

  .site-footer__legal-inner {
    padding-block: 1.25rem;
  }

  .hero__arrow,
  .hero__scroll-icon {
    width: 3.85rem;
    height: 3.85rem;
    font-size: 1.25rem;
  }

  .hero__scroll {
    font-size: 1rem;
    bottom: 2rem;
  }

  .hero__controls {
    bottom: 2.5rem;
    gap: 1.25rem;
  }

  .hero__dot {
    width: 0.9rem;
    height: 0.9rem;
  }

  .steps__num {
    font-size: clamp(3rem, 2.5vw, 4rem);
  }

  .steps__title {
    font-size: 1.7rem;
  }

  .steps__text {
    font-size: 1.3rem;
  }

  .to-top {
    width: 4rem;
    height: 4rem;
  }

  .legal__inner {
    max-width: 56rem;
  }

  .legal h1 {
    font-size: 5rem;
  }

  .legal h2 {
    font-size: 2.25rem;
  }

  .legal p,
  .legal li {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   FAQ: accordion (harmonica) met "was dit nuttig?"-duim
   ========================================================================== */

.faq {
  background: #fff7ee;
}

.faq__list {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
  max-width: 52rem;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  overflow: hidden;
}

.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-text);
  list-style: none;
  transition: background-color 0.2s var(--ease-out);
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary:hover {
  background: var(--color-bg-warm);
}

.faq__details[open] .faq__summary,
.faq__details[open] .faq__summary:hover {
  background: #fff;
}

.faq__summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -3px;
}

.faq__q {
  flex: 1;
}

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__details[open] .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__panel {
  padding: 0 var(--space-md) var(--space-md);
}

.faq__answer {
  margin: 0;
  max-width: 62ch;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq__answer a {
  color: var(--color-accent);
  font-weight: 600;
}

.faq__vote {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.faq__vote:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.faq__vote:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.faq__vote-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.faq__vote.is-voted {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .faq__icon::before,
  .faq__icon::after,
  .faq__summary,
  .faq__vote {
    transition: none;
  }
}

/* ==========================================================================
   Cookie consent (AVG)
   ========================================================================== */

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.85rem var(--pad-x) calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
}

body.has-cookie-consent--sticky .cookie-consent {
  bottom: var(--sticky-cta-h);
  padding-bottom: 0.85rem;
}

.cookie-consent__panel {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.cookie-consent__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.cookie-consent__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.cookie-consent__text a:hover {
  color: var(--color-accent-hover);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.cookie-consent__btn {
  flex: 1 1 auto;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
}

.cookie-consent .btn--ghost-dark {
  background: transparent;
  color: var(--color-text-muted);
  border: 2px solid transparent;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

.cookie-consent .btn--ghost-dark:hover {
  background: transparent;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .cookie-consent {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    width: min(28rem, calc(100vw - 2.5rem));
    padding: 1.15rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  }

  body.has-cookie-consent--sticky .cookie-consent {
    bottom: 1.25rem;
    padding-bottom: 1.15rem;
  }

  .cookie-consent__panel {
    max-width: none;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-consent__actions {
    flex-wrap: nowrap;
  }

  .cookie-consent__btn {
    flex: 1 1 0;
    width: auto;
    font-size: 0.75rem;
    padding: 0.55rem 0.4rem;
  }
}

.cookie-consent__cats {
  list-style: none;
  margin: 0.5rem 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0;
}

.cookie-consent__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--color-border);
}

.cookie-consent__cat:last-child {
  border-bottom: 1px solid var(--color-border);
}

.cookie-consent__cat-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.cookie-consent__cat-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.cookie-consent__cat-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.cookie-consent__switch {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.55rem;
  cursor: pointer;
}

.cookie-consent__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-consent__switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cfcfcf;
  transition: background-color 0.2s var(--ease-out);
}

.cookie-consent__switch span::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--ease-out);
}

.cookie-consent__switch input:checked + span {
  background: var(--color-accent);
}

.cookie-consent__switch input:checked + span::after {
  transform: translateX(1.2rem);
}

.cookie-consent__switch input:focus-visible + span {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.cookie-consent__switch--locked {
  cursor: not-allowed;
  opacity: 0.85;
}

.cookie-consent__switch--locked input:checked + span {
  background: var(--color-green);
}
