/* DCQ Bikes: fresh site */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --bg-soft: #1a1a1a;
  --light: #f4f4f2;
  --light-muted: #e8e8e4;
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --text-dark: #141414;
  --text-dark-muted: #5c5c5c;
  --accent: #e30613;
  --accent-hover: #ff1f2e;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.1);
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --space: clamp(1.5rem, 4vw, 3rem);
  --container: 1180px;
  --header-h: 5rem;
  --sticky-offset: var(--header-h);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 6px;
  --space-section: clamp(5.5rem, 12vw, 9.5rem);
  --space-section-sm: clamp(3.75rem, 8.5vw, 6rem);
  --space-head: clamp(2.35rem, 5vw, 3.85rem);
  --space-block: clamp(2.75rem, 5.5vw, 4.25rem);
  --space-stack: clamp(1.15rem, 2.5vw, 1.75rem);
  --text-xs: 0.85rem;
  --text-sm: 0.95rem;
  --text-md: clamp(1.05rem, 0.98rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.05rem, 1.35vw, 1.22rem);
  --text-label: 0.75rem;
  --text-eyebrow: clamp(1.05rem, 1.5vw, 1.25rem);
  --text-size: var(--text-md);
  --h1: clamp(2.35rem, 6.2vw, 4.35rem);
  --h2: clamp(2.15rem, 5.6vw, 4.15rem);
  --h3: clamp(1.25rem, 2.2vw, 1.55rem);
  --display: clamp(2.6rem, 7.5vw, 5.75rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sticky-offset) + 2px);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-size);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

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

::selection {
  background: #fff;
  color: var(--accent);
}

::-moz-selection {
  background: #fff;
  color: var(--accent);
}

.hero ::selection {
  background: #fff;
  color: var(--accent);
}

.hero ::-moz-selection {
  background: #fff;
  color: var(--accent);
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 0 0 0.45em;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2 * var(--space), var(--container));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  box-sizing: border-box;
}

.container--narrow {
  --container: 780px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
  line-height: 1.35;
}

.lede {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: var(--text-lg);
  line-height: 1.65;
  margin-top: 0.85rem;
}

.section--light .lede {
  color: var(--text-dark-muted);
}

.section {
  padding: var(--space-section) 0;
  position: relative;
  scroll-margin-top: calc(var(--sticky-offset) + 2px);
  max-width: 100%;
  overflow-x: hidden;
}

.section--dark {
  background: var(--bg);
  color: var(--text);
}

.section--light {
  background: var(--light);
  color: var(--text-dark);
}

.section-head {
  margin-bottom: var(--space-head);
}

.section-head h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-head .lede {
  margin-top: 0.85rem;
  margin-bottom: 0;
  max-width: 36rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--on-dark {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 14rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.cookie-banner a {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--bg);
}

.site-header__inner {
  width: min(100% - 2 * var(--space), var(--container));
  max-width: 100%;
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 0.75rem;
}

.site-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.site-logo img {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  min-width: 0;
  flex-shrink: 1;
}

.store-status--nav {
  margin-left: 1.5rem;
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.25rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.store-status:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.store-status__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}

.store-status.open .store-status__dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: status-pulse-open 1.8s ease-out infinite;
}

.store-status.warning .store-status__dot {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.55);
  animation: status-pulse-warn 1.8s ease-out infinite;
}

.store-status.closed .store-status__dot {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  animation: status-pulse-closed 1.8s ease-out infinite;
}

@keyframes status-pulse-open {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 0.55rem rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes status-pulse-warn {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.55); }
  70% { box-shadow: 0 0 0 0.55rem rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes status-pulse-closed {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  70% { box-shadow: 0 0 0 0.55rem rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.store-status-text {
  display: inline-block;
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dcq-kurt-egg-trigger {
  cursor: pointer;
  text-decoration: none;
  color: #e8e8e8;
}

.dcq-kurt-egg-trigger:hover,
.dcq-kurt-egg-trigger:focus-visible {
  color: #fff;
  outline: none;
}

@keyframes dcq-kurt-egg-wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-4deg) scale(1.02); }
  40% { transform: rotate(4deg) scale(1.03); }
  60% { transform: rotate(-3deg) scale(1.02); }
  80% { transform: rotate(2deg) scale(1.01); }
}

@keyframes dcq-kurt-egg-backdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

#dcqKurtEggOverlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 1.5rem;
  animation: dcq-kurt-egg-backdrop 0.22s ease forwards;
}

#dcqKurtEggOverlay .dcq-kurt-egg-img {
  max-width: min(88vw, 420px);
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: dcq-kurt-egg-wobble 1.15s ease-in-out 2;
}

#dcqKurtEggOverlay .dcq-kurt-egg-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

#dcqKurtEggOverlay .dcq-kurt-egg-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.nav-panel {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-panel a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.35rem auto;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  max-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.2) 38%, rgba(10, 10, 10, 0.78) 100%),
    linear-gradient(270deg, rgba(10, 10, 10, 0.55) 0%, transparent 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2 * var(--space)), var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + clamp(1rem, 4vh, 2.5rem)) 0 clamp(4rem, 14vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(0.85rem, 3.2vh, 2.25rem);
  text-align: right;
}

.hero__brand {
  display: block;
  width: min(300px, 48vw, 34vh);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
  opacity: 0;
  animation: hero-fade-up 0.9s var(--ease) 0.12s forwards;
}

.hero__brand--text {
  display: none;
  width: auto;
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 12vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #fff;
  white-space: nowrap;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 2.8vw + 2.4vh, 4.15rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.038em;
  max-width: 11ch;
  margin: 0;
  overflow-wrap: anywhere;
  opacity: 0;
  animation: hero-fade-up 0.9s var(--ease) 0.28s forwards;
}

.hero__support {
  margin: 0;
  max-width: min(32rem, 46vw);
  font-size: clamp(1.02rem, 1.1vw + 0.6vh, 1.28rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  animation: hero-fade-up 0.9s var(--ease) 0.42s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.4vh, 0.95rem);
  margin-top: clamp(0.35rem, 1.5vh, 1rem);
  opacity: 0;
  animation: hero-fade-up 0.9s var(--ease) 0.56s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: max(var(--space), calc((100% - var(--container)) / 2));
  right: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  animation: hero-fade-up 0.9s var(--ease) 0.85s forwards;
}

.hero__scroll-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  animation: hero-scroll-pulse 2s ease-in-out infinite;
}

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

@keyframes hero-scroll-pulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1.35);
    opacity: 1;
  }
}

/* Offer */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}

.offer-tile {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  background: #111;
  grid-column: span 2;
  border-radius: 0;
}

.offer-tile--hero {
  grid-column: span 3;
  min-height: clamp(20rem, 38vw, 28rem);
}

.offer-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}

.offer-tile:hover img {
  transform: scale(1.03);
}

.offer-tile__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem 1.35rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  color: #fff;
  z-index: 1;
}

.offer-tile--hero .offer-tile__label {
  padding: 1.75rem 1.6rem 1.45rem;
}

.offer-tile__label h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.offer-tile--hero .offer-tile__label h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
}

/* Featured bikes */
.featured {
  margin-top: var(--space-block);
  max-width: 100%;
  min-width: 0;
}

.featured__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.featured__head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.featured__head p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.92rem;
}

.featured__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.35rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bike-card {
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
}

.bike-card__media {
  background: #fff;
  height: 17.5rem;
  flex: 0 0 17.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.85rem;
  box-sizing: border-box;
  border-radius: var(--radius);
}

.bike-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.bike-card__body {
  padding: 1rem 0.1rem 0;
  color: var(--text-dark);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: transparent;
}

.bike-card__brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.45rem;
  max-width: 100%;
  line-height: 0;
}

.bike-card__brand img {
  display: block;
  height: 1.2rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  object-position: left center;
}

.bike-card__brand--text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.2;
}

.bike-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
}

.bike-card__body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
  min-height: 0;
}

.bike-card__price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0.15rem 0 0;
  color: var(--text-dark-muted);
}

.bike-card__desc {
  display: none;
  margin: 0;
}

/* Atmosphere */
.atmosphere__video {
  position: relative;
  margin-bottom: var(--space-stack);
  background: #000;
}

.atmosphere__video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.atmosphere__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.atmosphere__grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 0.45s var(--ease), transform 0.55s var(--ease);
}

.atmosphere__grid img:hover {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.012);
}

/* Brands: logo wall */
.brands {
  display: grid;
  gap: 1.75rem;
}

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

.brand-logo {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.brand-logo:hover {
  border-color: rgba(227, 6, 19, 0.45);
  color: inherit;
  transform: translateY(-1px);
}

.brand-logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 3.5rem;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.25s;
}

.brand-logo:hover img {
  opacity: 1;
}

.brand-logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* Full-bleed visual break */
.visual-break {
  position: relative;
  height: clamp(14rem, 32vw, 26rem);
  overflow: hidden;
}

.visual-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.35));
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: stretch;
  margin-bottom: var(--space-block);
}

.about-media {
  margin: 0;
  overflow: hidden;
  background: #111;
  position: relative;
  height: 100%;
  min-height: 0;
  align-self: stretch;
}

.about-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about-copy {
  color: var(--text-muted);
  line-height: 1.75;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 1.25rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 0;
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Statement (extends team section) */
.statement-rotate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.2em 0.35em;
  margin: var(--space-block) 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: right;
  color: var(--text-dark);
  max-width: 100%;
  min-width: 0;
}

.statement-rotate__fixed {
  flex-shrink: 0;
  line-height: 1;
}

.statement-rotate__slot {
  position: relative;
  display: grid;
  grid-template-columns: max-content;
  justify-items: end;
  flex: 0 0 auto;
  overflow: hidden;
  text-align: right;
  color: var(--accent);
  line-height: 1;
}

.statement-rotate__item {
  grid-area: 1 / 1;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translate3d(0, 0.55em, 0);
  transition:
    opacity 480ms var(--ease),
    transform 480ms var(--ease);
  pointer-events: none;
}

.statement-rotate__item.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.statement-rotate__item.is-exit {
  opacity: 0;
  transform: translate3d(0, -0.55em, 0);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 3rem;
  max-width: 680px;
}

.team-member {
  text-align: left;
}

.team-member__photo {
  background: #e4e4e0;
  margin-bottom: 1.1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 260px;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member__meta h3 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.team-member__meta p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.92rem;
}

/* Contact */
.contact-media {
  display: block;
  overflow: hidden;
  background: #111;
  margin-bottom: var(--space-block);
}

.contact-media img,
.contact-media__video {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: none;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.contact-media:hover img,
.contact-media:hover .contact-media__video {
  transform: scale(1.02);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: stretch;
}

.contact-aside {
  display: grid;
  gap: var(--space-block);
  align-content: start;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 0;
  min-width: 0;
}

.contact-map {
  display: none;
  flex: 1 1 auto;
  min-height: 14rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) brightness(0.82) contrast(1.05);
}

@media (min-width: 901px) {
  .contact-map {
    display: block;
  }
}

.contact-block,
.hours-block {
  padding: 0;
  background: transparent;
  border: none;
}

.contact-block h3,
.hours-block h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list__label,
.contact-field__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.contact-field__label {
  color: var(--text);
  margin-bottom: 0;
}

.contact-list a {
  display: block;
  text-decoration: none;
  color: var(--text);
  line-height: 1.45;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-list__note {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  max-width: 100%;
  margin-top: 0.25rem;
  padding: 0.7rem 0.95rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #fff;
}

.whatsapp-btn__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: #25d366;
}

.whatsapp-btn__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-btn__number {
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.whatsapp-btn:hover .whatsapp-btn__number {
  color: rgba(255, 255, 255, 0.85);
}

.hours-block .hours {
  margin: 0;
}

.contact-dl {
  margin: 0 0 2rem;
}

.contact-dl > div {
  margin-bottom: 1.25rem;
}

.contact-dl dt {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.contact-dl dd {
  margin: 0;
}

.contact-dl a {
  text-decoration: none;
}

.contact-dl a:hover {
  text-decoration: underline;
}

.note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hours-title {
  margin-top: 0.5rem;
}

.hours {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}

.hours th,
.hours td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hours th {
  width: 8rem;
  color: var(--text-muted);
}

.hours__saturday th {
  color: var(--text-muted);
  font-weight: 400;
}

.hours__close-early {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05em;
}

.note-inline {
  display: block;
  margin-top: 0.35rem;
  margin-left: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent);
}

.contact-form {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}

.contact-form__head h3 {
  margin: 0 0 0.55rem;
  font-size: var(--h3);
}

.contact-form__head p:not(.eyebrow) {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.6;
}

.contact-form__head .eyebrow {
  margin-bottom: 0.45rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  line-height: 1.45;
  box-sizing: border-box;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.contact-field textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.contact-form .btn:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

.contact-form__status {
  margin: 0;
  font-size: var(--text-sm, 0.95rem);
}

.contact-form__status--ok {
  color: #6fdf8b;
}

.contact-form__status--error {
  color: #ff8a8a;
}

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

/* Cadeaubon */
.gift {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.gift__visual {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.gift__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gift__copy .eyebrow {
  margin-bottom: 0.55rem;
}

.gift__copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--text-dark);
}

.gift__copy .lede {
  margin: 0.85rem 0 1.5rem;
  color: var(--text-dark-muted);
}

.gift__copy .btn {
  align-self: flex-start;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.25rem 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "-";
}

.faq__body {
  padding: 0 0 1.65rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__body a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.faq__body a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
}

.pay-logos img {
  width: 4.75rem;
  height: 2.85rem;
  padding: 0.45rem 0.55rem;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
  box-sizing: border-box;
  filter: none;
  opacity: 1;
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 4rem 0 3rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.75rem;
}

.site-footer__brand img {
  height: 3.25rem;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer__brand p,
.site-footer__meta p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-left: 0.35rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.site-footer__ig {
  display: block;
  flex-shrink: 0;
  opacity: 0.85;
}

.site-footer__credit:hover {
  color: var(--accent);
}

.site-footer__credit:hover .site-footer__ig {
  opacity: 1;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #fff;
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  min-height: 70svh;
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal.is-in:nth-child(2) { transition-delay: 0.06s; }
.reveal.is-in:nth-child(3) { transition-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__brand,
  .hero__brand--text,
  .hero__title,
  .hero__support,
  .hero__actions,
  .hero__scroll,
  .hero__scroll-line,
  .offer-tile img {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .store-status__dot {
    animation: none !important;
  }
  .statement-rotate__item {
    transition: none;
  }
}

/* Short viewports (e.g. 850x450, laptop browser chrome) */
@media (max-height: 700px) {
  .hero__content {
    gap: clamp(0.45rem, 2vh, 1rem);
    padding-bottom: clamp(1.1rem, 3.5vh, 2rem);
  }

  .hero__brand--logo {
    width: min(200px, 24vh, 38vw);
  }

  .hero__brand--text {
    font-size: clamp(2rem, 7.5vw + 1vh, 2.75rem);
  }

  .hero__title {
    font-size: clamp(1.65rem, 3.4vw + 1.7vh, 2.75rem);
    max-width: 16ch;
  }

  .hero__support {
    max-width: min(30rem, 52vw);
    font-size: clamp(0.95rem, 1.5vh + 0.4vw, 1.1rem);
    line-height: 1.4;
  }

  .hero__actions {
    margin-top: 0.25rem;
    gap: 0.55rem;
  }

  .hero__actions .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__image {
    object-position: center 38%;
  }
}

@media (max-height: 520px) {
  .hero__content {
    gap: 0.4rem;
    padding-top: calc(var(--header-h) + 0.45rem);
    padding-bottom: 0.85rem;
  }

  .hero__brand--logo {
    width: min(150px, 18vh, 30vw);
  }

  .hero__brand--text {
    font-size: clamp(1.65rem, 6vw + 1vh, 2.1rem);
  }

  .hero__title {
    font-size: clamp(1.4rem, 2.8vw + 1.4vh, 2.1rem);
  }

  .hero__support {
    display: none;
  }

  .hero__actions {
    margin-top: 0.2rem;
  }
}

/* Responsive: desktop → iPad → phone */
@media (max-width: 1100px) {
  .brands__primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-tile,
  .offer-tile--hero {
    grid-column: span 1;
    min-height: 15rem;
  }

  .offer-tile--hero {
    min-height: 17rem;
  }

  .brands__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .brand-logo {
    min-height: 6.25rem;
    padding: 1.35rem 1.1rem;
  }

  .brand-logo img {
    max-height: 3rem;
  }

  .brand-logo__text {
    font-size: 1.2rem;
  }

  .about-layout,
  .about-gallery,
  .contact-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    aspect-ratio: 4 / 3;
    height: auto;
    order: -1;
  }

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

  .atmosphere__grid img {
    aspect-ratio: 4 / 3;
  }

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

  .about-gallery img {
    aspect-ratio: 1 / 1;
  }

  .visual-break {
    height: clamp(10rem, 28vw, 16rem);
  }

  .team-grid {
    max-width: 36rem;
  }

  .nav-panel {
    gap: 1.25rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 4.35rem;
    --space: 1.35rem;
  }

  .section {
    padding: clamp(4.75rem, 14vw, 6.5rem) 0;
    --space-section: clamp(4.75rem, 14vw, 6.5rem);
    --space-section-sm: clamp(3.5rem, 10vw, 4.75rem);
    --space-head: clamp(2rem, 6vw, 2.75rem);
    --space-block: clamp(2.25rem, 7vw, 3.25rem);
    --space-stack: clamp(1rem, 3vw, 1.35rem);
  }

  .section-head {
    margin-bottom: var(--space-head);
  }

  .section-head h2 {
    max-width: none;
  }

  .site-logo img {
    height: 2.75rem;
    width: auto;
    max-width: none;
  }

  .site-nav {
    gap: 0.65rem;
  }

  .store-status {
    height: 2rem;
    padding: 0 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    order: -1;
    margin-left: 0;
  }

  .store-status-text {
    max-width: 7.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.35rem 0 0.85rem;
    z-index: 40;
  }

  .site-header.is-open .nav-panel {
    display: flex;
  }

  .nav-panel a {
    padding: 0.9rem var(--space);
  }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
    height: 100svh;
    height: 100dvh;
    max-height: 100dvh;
  }

  .hero__content {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 0.75rem);
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
    align-items: flex-start;
    text-align: left;
    gap: 0;
  }

  .hero__brand {
    width: min(200px, 56vw, 26vh);
    margin-bottom: 1.45rem;
  }

  .hero__brand--logo {
    display: none;
  }

  .hero__brand--text {
    display: block;
    margin-bottom: 1.15rem;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero__title {
    max-width: none;
    font-size: clamp(1.65rem, 6.5vw + 1vh, 2.45rem);
  }

  .hero__support {
    max-width: none;
    margin: 1.05rem 0 0;
    font-size: clamp(0.95rem, 2.6vw, 1rem);
    line-height: 1.5;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 1.75rem;
    gap: 0.7rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .offer-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .team-member__photo {
    max-width: none;
    width: 100%;
  }

  .brands {
    gap: 1.25rem;
  }

  .brands__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .brand-logo {
    min-height: 5.5rem;
    padding: 1.15rem 0.95rem;
  }

  .brand-logo img {
    max-height: 2.65rem;
  }

  .brand-logo__text {
    font-size: 1.1rem;
  }

  .offer-tile,
  .offer-tile--hero {
    grid-column: auto;
    min-height: 13.5rem;
  }

  .featured {
    margin-top: var(--space-block);
  }

  .featured__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.1rem;
  }

  /* Mobile: 2-koloms, wit vlak voor productfoto, rustige meta */
  .featured__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.7rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .featured__track::before,
  .featured__track::after {
    content: none;
    display: none;
  }

  .featured__track .bike-card {
    flex: none;
    width: auto;
    max-width: none;
    height: auto;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0;
    scroll-snap-align: none;
  }

  .featured__track .bike-card:first-child,
  .featured__track .bike-card:last-child {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    border-bottom: none;
  }

  .featured__track .bike-card + .bike-card {
    margin-top: 0;
  }

  .bike-card__media {
    height: 9.5rem;
    flex: 0 0 9.5rem;
    aspect-ratio: auto;
    padding: 0.7rem 0.45rem;
    background: #fff;
    border-radius: var(--radius);
  }

  .bike-card__media img {
    object-fit: contain;
  }

  .bike-card__body {
    padding: 0.7rem 0.05rem 0;
    min-height: 0;
    background: transparent;
    gap: 0.3rem;
  }

  .bike-card__brand {
    margin: 0;
  }

  .bike-card__brand img {
    height: 0.95rem;
  }

  .bike-card__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    align-items: start;
    flex: none;
  }

  .bike-card__body h4 {
    font-size: 0.86rem;
    min-height: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  .bike-card__price {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-dark-muted);
    white-space: nowrap;
  }

  .bike-card__desc {
    display: none;
  }

  .atmosphere__grid {
    gap: 0.65rem;
  }

  .atmosphere__video {
    margin-bottom: 1rem;
  }

  .about-gallery {
    gap: 0.55rem;
    margin-bottom: 2.25rem;
  }

  .about-gallery img {
    aspect-ratio: 1 / 1;
  }

  .contact-media img,
  .contact-media__video {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .statement-rotate {
    margin-top: var(--space-block);
    justify-content: flex-start;
    text-align: left;
    font-size: clamp(2.15rem, 10.5vw, 3.25rem);
    gap: 0.15em 0.3em;
  }

  .statement-rotate__slot {
    justify-items: start;
    text-align: left;
  }

  .hours th {
    width: 6.5rem;
  }

  .hours th,
  .hours td {
    font-size: 0.88rem;
    padding: 0.45rem 0;
  }

  .note-inline {
    display: block;
    margin-left: 0;
    margin-top: 0.15rem;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-banner {
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.65rem;
  }

  .cookie-banner p {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .cookie-banner__actions {
    width: auto;
    flex-shrink: 0;
  }

  .cookie-banner__actions .btn {
    flex: 0 0 auto;
    padding: 0.4rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .site-footer {
    padding: 3.5rem 0 3rem;
  }

  .gift {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gift__visual {
    order: -1;
    max-width: 22rem;
  }

  .gift__copy h2 {
    max-width: none;
  }

  .faq summary {
    font-size: 0.98rem;
    padding-right: 1.75rem;
  }

  .visual-break {
    height: 9.5rem;
  }
}

@media (max-width: 480px) {
  .brands__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-status-text {
    max-width: 5.5rem;
  }

  .offer-tile--hero {
    min-height: 12.5rem;
  }
}
