/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --gold: #FDC300;
  /* --gold: #ffee00; */
  /* --gold: #fcea60; */
  --gold-hover: #FFD633;
  --gold-dim: rgba(253,195,0,0.14);
  --gold-border: rgba(253,195,0,0.30);
  /* Brand palette — high contrast between base and elevated */
  --black: #151515;          /* main page background */
  --black-elevated: #1D1C1C; /* lifted sections / cards */
  --black-surface: #1D1C1C;  /* surface panels */
  --black-card: #1e1e1e;     /* card base (between base and elevated) */
  --black-deep: #0d0d0d;     /* deepest accent (footer, overlays) */
  --white: #FFFFFF;
  --cream: #F6F5ED;          /* warm off-white accent */
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-60: rgba(255,255,255,0.6);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-05: rgba(255,255,255,0.05);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --cut-sm: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 14px) 100%, 0% 100%, 0% 0%);
  --cut-md: polygon(18px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 28px) 100%, 0% 100%, 0% 0%);
  --cut-lg: polygon(28px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 40px) 100%, 0% 100%, 0% 0%);
  --container: 1440px;
  --gutter: 64px;
}



/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overscroll-behavior-y: none;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3{
	text-wrap: balance;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--black); padding: 12px 24px;
  font-weight: 600; font-size: 1rem;
  clip-path: var(--cut-sm);
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ═══════════════════════════════════════════
   INTERACTIVE GRID PATTERN (utility)
   Apply [data-interactive-grid] to any positioned container.
   JS sets --mx / --my from cursor for the spotlight effect.
   ═══════════════════════════════════════════ */
[data-interactive-grid] {
  --mx: 50%;
  --my: 50%;
  --grid-size: 104px;
  --grid-color: rgba(255,255,255,0.05);
  --grid-spotlight: rgba(255,255,255,0.2);
  --grid-spotlight-radius: 280px;
  position: relative;
  isolation: isolate;
}
/* Always-visible base grid (uniform across container) */
[data-interactive-grid]::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
  z-index: 0;
}
/* Cursor-following bright spotlight grid (gold) */
[data-interactive-grid]::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-spotlight) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-spotlight) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  mask-image: radial-gradient(var(--grid-spotlight-radius) circle at var(--mx) var(--my), black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(var(--grid-spotlight-radius) circle at var(--mx) var(--my), black 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-smooth);
  pointer-events: none;
  z-index: 0;
}
[data-interactive-grid].is-grid-active::after { opacity: 1; }
/* Direct children should sit above the grid layers */
[data-interactive-grid] > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 36px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-smooth);
  clip-path: var(--cut-sm);
  position: relative; isolation: isolate;
  min-height: 48px;
}
.btn-primary {
  background: var(--gold); color: var(--black);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: var(--gold); color: var(--gold);
  padding: 16.5px 40px;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 2px;
  background: var(--black);
  clip-path: var(--cut-sm); z-index: -1;
  transition: background var(--duration-normal) var(--ease-smooth);
}
.item-outline {
  background: var(--gold); color: var(--gold);
  padding: 16.5px 40px;
}
.item-outline::before {
  content: ''; position: absolute; inset: 2px;
  background: var(--black);
  clip-path: var(--cut-sm); z-index: -1;
  transition: background var(--duration-normal) var(--ease-smooth);
}
.btn-outline:hover, .btn-outline:focus-visible { color: var(--black); }
.btn-outline:hover::before, .btn-outline:focus-visible::before { background: var(--gold); }

.item-outline--xs::before {
  inset: 0px;
	background: var(--black-deep);
}

/* Focus ring for accessibility */
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: border-color var(--duration-normal) var(--ease-smooth);
}
.site-nav::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(21,21,21,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}
.site-nav[data-navigation-status="open"]::before { opacity: 0; }

.nav-inner {
  position: relative; z-index: 3;
  max-width: var(--container); margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
	gap: 1rem;
}
.logo {
  display: flex; align-items: center;
  position: relative; z-index: 2;
}
.logo img { height: clamp(3rem, 2.2258rem + 2.1505vw, 4rem); width: auto; }

/* Actions row (icon buttons + menu toggle) */
.nav-actions {
  position: relative; z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-action {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 2px solid var(--white-15);
  color: var(--white);
  border-radius: 0;
  
  transition: background var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth);
}
.nav-action:hover, .nav-action:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

@media all and (max-width: 640px) {
	.nav-action {
		display: none;
	}
}

/* Language button */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--white-50);
  text-transform: uppercase;
}

.lang-switch a {
  color: var(--white-50);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.lang-switch a.is-active {
  color: var(--white);
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--gold);
}

.lang-switch span {
  color: var(--white-15);
}


/* Toggle button (always visible) */
.nav-toggle {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 20px 10px 22px;
  background: var(--white);
  color: var(--black);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  clip-path: var(--cut-sm);
  transition: background var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth);
  min-height: 44px;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle-label {
  display: inline-block;
  transition: opacity var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
}
[data-nav-text-close] {
  position: absolute; left: 22px; top: 50%;
  transform: translateY(-30%);
  opacity: 0;
}
[data-navigation-status="open"] [data-nav-text-open] {
  opacity: 0; transform: translateY(-6px);
}
[data-navigation-status="open"] [data-nav-text-close] {
  opacity: 1; transform: translateY(-50%);
}

.nav-toggle-icon {
  width: 18px; height: 14px;
  position: relative;
  display: inline-block;
}
.nav-toggle-bar {
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--duration-normal) var(--ease-out),
              top var(--duration-normal) var(--ease-out);
}
.nav-toggle-bar:nth-child(1) { top: 3px; }
.nav-toggle-bar:nth-child(2) { top: 9px; }
[data-navigation-status="open"] .nav-toggle-bar:nth-child(1) {
  top: 6px; transform: rotate(45deg);
}
[data-navigation-status="open"] .nav-toggle-bar:nth-child(2) {
  top: 6px; transform: rotate(-45deg);
}

/* Full-screen overlay */
.nav-overlay {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
}
.nav-overlay-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(253,195,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(253,195,0,0.05) 0%, transparent 60%),
    var(--black-deep);
  clip-path: inset(0% 0% 100% 0%);
  transition: clip-path 0.7s var(--ease-out);
}
[data-navigation-status="open"] .nav-overlay {
  pointer-events: auto;
}
[data-navigation-status="open"] .nav-overlay-bg {
  clip-path: inset(0% 0% 0% 0%);
}

.nav-overlay-inner {
  position: relative;
  width: 100%;
  display: flex; align-items: center;
  /* Top padding clears the fixed nav bar (logo ~72px + 18px*2 padding ≈ 108px)
     plus breathing room; bottom padding keeps meta-block off the edge. */
  padding: 140px 0 64px;
  overflow-y: auto;
}
.nav-overlay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  width: 100%;
}

/* Nav list */
.nav-list {
  display: flex; flex-direction: column;
  transition: border-color var(--duration-slow) var(--ease-smooth);
}
[data-navigation-status="open"] .nav-list {
  border-top-color: var(--white-08);
  transition-delay: 0.25s;
}
.nav-list-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: 0s;
}
[data-navigation-status="open"] .nav-list-item {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(0.18s + var(--i, 0) * 0.06s);
}

.nav-link {
  display: flex; align-items: center; gap: 28px;
  padding: 16px 0;
  color: var(--white-70);
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;

  text-transform: uppercase;
  transition: color var(--duration-normal) var(--ease-smooth);
  position: relative;
}
.nav-link-num {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white-70);
  align-self: flex-start;
  padding-top: 12px;
  min-width: 32px;
  transition: color var(--duration-normal) var(--ease-smooth);
}
.nav-link-text {
  flex: 1;
  transition: transform var(--duration-slow) var(--ease-out);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--gold); }
.nav-link:hover .nav-link-num,
.nav-link:focus-visible .nav-link-num { color: var(--gold); }
.nav-link:hover .nav-link-text,
.nav-link:focus-visible .nav-link-text { transform: translateX(8px); }
.nav-link-cta { color: var(--gold); }
.nav-link-cta .nav-link-num { color: var(--gold); }

/* Meta block */
.nav-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: 0s;
}
[data-navigation-status="open"] .nav-meta {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(0.18s + var(--i, 0) * 0.06s);
}
.nav-meta-block {
  display: flex; flex-direction: column; gap: 8px;
}
.nav-meta-label {
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.nav-meta-val {
  font-size: 1rem; color: var(--white-70);
  transition: color var(--duration-fast) var(--ease-smooth);
}
a.nav-meta-val:hover, a.nav-meta-val:focus-visible { color: var(--gold); }

/* Lock body scroll when open */
body.nav-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; height: 100dvh;
  min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay-side {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.69) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.08) 100%);
  opacity: .5;
}
.hero-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: .75;
}
/* Subtle gold accent glow */
.hero-glow {
  position: absolute; bottom: -120px; left: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,195,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  position: absolute; top: 50%; right: 80px;
  transform: translateY(-60%);
}
.hero-badge-label {
  font-size: 14px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white-70);
  margin-bottom: 6px;
}
.hero-badge-val {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--white-70);
  border-left: 2px solid var(--gold); padding-left: 10px;
}
.hero-body {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter) 90px;
}
.hero-content { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.hero-eyebrow-text {
  font-size: 14px; color: var(--white-70); letter-spacing: 0.05em;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800; line-height: 0.92;
 text-transform: uppercase;
  margin-bottom: 28px;
}
h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 17px; color: var(--white);
  max-width: 500px; line-height: 1.75;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px;
}
.avatars { display: flex; }
.av {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--black-deep);
  background: var(--black-elevated); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--white-70);
}
.av:first-child { margin-left: 0; }
.trust-text {  color: var(--white-70); }
.trust-text strong { color: var(--white-90); }

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  position: relative;
  overflow: hidden;
  /* background: radial-gradient(circle at calc(100% + 80px) calc(100% + 120px), rgba(253,195,0,0.08) 0%, transparent 60%); */
}
.stats-grid {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
  padding: 88px var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stat {
  padding: 0 8px 0 32px;
  position: relative;
}

.stat::after {
  content: ''; position: absolute;
  left: 0; top: 6px;
  width: 2px; height: 32px;
  background: var(--gold);
}
.stat-eyebrow {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 38px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 800; line-height: 0.9;
  color: var(--white);

  margin-bottom: 14px;
}
.stat-plus {
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  font-size: 14px; color: var(--white-70);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
.section { padding: 110px 0; }
.section-tag {
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; font-weight: 600;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 22px;
}
.section-desc {
  font-size: 1rem; color: var(--white-70);
  max-width: 480px; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about { background: transparent; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Image wrap with framing accent + floating stat */
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
}
.about-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  clip-path: var(--cut-lg);
  display: block;
}
/* Decorative offset frame behind the image — adds depth */
.about-img-frame {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background: var(--white-05);
  clip-path: var(--cut-lg);
  z-index: -1;
  pointer-events: none;
}
/* Floating stat top-right of the image */
.about-stat {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--black-deep);
  padding: 18px 22px;
  clip-path: var(--cut-sm);
  display: flex; align-items: baseline; gap: 12px;
  border-left: 2px solid var(--gold);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  line-height: 1;
  color: var(--white);

}
.about-stat-label {
  font-size: 14px; line-height: 1.3;
  color: var(--white-70);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 500;
}
/* Founded badge — bigger year, premium feel */
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--black-deep);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  clip-path: var(--cut-sm);
}
.about-badge span {
  display: block; font-size: 14px; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 4px; font-weight: 600;
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800; color: var(--white);

  line-height: 1;
}

.perks-eyebrow {
  margin-top: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-08);
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
}
.perks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 28px;
}
.perk { display: flex; gap: 14px; align-items: flex-start; }
.perk-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  clip-path: var(--cut-sm);
}
.perk-icon i {
  font-size: 1rem;
  color: var(--gold);
}
.perk-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.perk-text { font-size: 14px; color: var(--white-70); line-height: 1.55; }

/* ═══════════════════════════════════════════
   PHOTO STRIP
   ═══════════════════════════════════════════ */
.img-strip-section {
  background: transparent;
  padding: 96px 0;
}
.img-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--white-08);
}
.img-strip-h {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;

  line-height: 1;
  color: var(--white);
  margin: 0;
}
.img-strip-intro {
  font-size: 1rem; line-height: 1.6;
  color: var(--white-70);
  max-width: 360px;
  margin: 0;
  text-align: right;
}

.img-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.img-strip-item {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  clip-path: var(--cut-md);
  background: var(--black-deep);
}
.img-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Top overlay: icon + meta-pill */
.img-strip-overlay {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  pointer-events: none;
  z-index: 2;
}
.img-strip-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  clip-path: var(--cut-sm);
  color: var(--gold);
  font-size: 18px;
}
.img-strip-meta {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  clip-path: var(--cut-sm);
}

/* Bottom caption */
.img-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(0deg, rgba(13,13,13,0.71) 0%, rgba(13,13,13,0.41) 55%, transparent 100%);
  display: flex; align-items: center; gap: 18px;
  z-index: 1;
}
.img-cap-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  align-self: stretch;
  display: flex; align-items: center;
}
.img-cap-body {
  display: flex; flex-direction: column; gap: 4px;
}
.img-cap-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.1;
}
.img-cap-sub {
  font-size: 14px;
  color: var(--white-70);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Country / Brand strip */

.country-strip,
.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

@media all and (min-width: 768px) {
		max-width: clamp(300px, 35vw, 420px);
	
}

.country-strip span {
  padding: 10px 12px;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  color: var(--white-70);
  clip-path: var(--cut-sm);
	font-size: 14px;
}

.country-strip span:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold-border);
}

.brand-strip span {
  padding: 8px 13px;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  color: var(--white-70);
  text-transform: uppercase;
  clip-path: var(--cut-sm);
	font-size: 14px;
}

.brand-strip span:hover {
  color: var(--gold);
  border-color: var(--gold-border);
}


/* ═══════════════════════════════════════════
   WERKWIJZE (PROCESS)
   ═══════════════════════════════════════════ */
.werkwijze { background: transparent; }
.werkwijze-header { text-align: center; margin-bottom: 80px; }

/* Sticky features layout */
.sf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Visual column — sticky */
.sf-visual-col {
  position: sticky;
  top: 120px;
  height: calc(100vh - 200px);
  min-height: 480px;
  max-height: 720px;
	z-index: 3;
}
.sf-visual-stack {
  position: relative;
  width: 100%; height: 100%;
	z-index: 4;
}
.sf-visual {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: scale(0.985);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth),
    visibility 0s linear var(--duration-slow);
  clip-path: var(--cut-lg);
  overflow: hidden;

}
.sf-visual.is-active {
  opacity: 1; visibility: visible;
  transform: scale(1);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth);
}
.sf-visual-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.sf-visual-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(253,195,0,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(253,195,0,0.06) 0%, transparent 50%),
    linear-gradient(155deg, rgba(21,21,21,0.6) 0%, rgba(13,13,13,0.88) 100%);
	opacity: .15;
}
.sf-visual-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
}
.sf-visual-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 48px;
}
.sf-visual-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  clip-path: var(--cut-sm);
}
.sf-visual-icon i {
  font-size: 26px;
  color: var(--gold);
}
.sf-visual-num {
  font-family: var(--font-display);
  font-size: clamp(140px, 18vw, 240px);
  font-weight: 800; line-height: 0.85;
  color: var(--gold);

  margin-top: auto;
  text-shadow: 0 0 80px rgba(253,195,0,0.15);
}
.sf-visual-label {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-top: 18px;
}

/* Content column */
.sf-content-col {
  display: flex;
  flex-direction: column;
}
.sf-item {
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0;
  opacity: 0.28;
  transition: opacity var(--duration-slow) var(--ease-smooth);
}
.sf-item.is-active { opacity: 1; }
.sf-item-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.sf-item-num {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.sf-item-divider {
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.sf-item-tag {
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white-70);
  font-weight: 600;
}
.sf-item-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800; line-height: 0.95;

  text-transform: uppercase;
  margin-bottom: 20px;
}
.sf-item-text {
  font-size: 1.125rem; line-height: 1.7;
  color: var(--white-70);
  max-width: 460px;
}

.sf-item-text a,
.sf-item-text a:visited {
  color: var(--gold);
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════ */
.portfolio { background: transparent; }
.port-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}
.port-filters { display: flex; gap: 4px; }
.filter-btn {
  clip-path: var(--cut-sm);
  background: var(--white-15);
  color: var(--white-70);
  padding: 9px 20px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; isolation: isolate;
  transition: all var(--duration-normal) var(--ease-smooth);
  min-height: 44px; display: inline-flex; align-items: center;
}
.filter-btn::before {
  content: ''; position: absolute; inset: 2px;
  background: var(--black);
  clip-path: var(--cut-sm); z-index: -1;
  transition: background var(--duration-normal) var(--ease-smooth);
}
.filter-btn.active, .filter-btn:hover, .filter-btn:focus-visible {
  background: var(--gold); color: var(--black);
}
.filter-btn.active::before, .filter-btn:hover::before, .filter-btn:focus-visible::before {
  background: var(--gold);
}

.cars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--black-deep);
  padding: 32px;
  clip-path: var(--cut-md);
  position: relative;
}
.car-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black);
  margin: -32px -32px 28px;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 28px) 100%, 0% 100%);
}
.car-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.car-tag {
  font-size: 14px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
}
.car-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.car-specs {
  display: flex; gap: 20px;
  padding-top: 16px;
}
.car-spec {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  font-size: 14px; color: var(--white-70);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.car-spec strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
}
.port-note {
  text-align: center; margin-top: 40px;
  font-size: 14px; color: var(--white-70);
  letter-spacing: 0.04em; font-style: italic;
}



/* ═══════════════════════════════════════════
   PRIVATE SALES
   ═══════════════════════════════════════════ */
.private { background: transparent; }
.private-outer {
  clip-path: var(--cut-lg);
}
.private-inner {
  clip-path: var(--cut-lg);
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 480px;
}

/* Background image — sits behind everything, dimmed + dark gradient overlay */
.private-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.private-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.private-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(13,13,13,0.75) 0%,
      rgba(13,13,13,0.66) 35%,
      rgba(13,13,13,0.41) 70%,
      rgba(13,13,13,0.26) 100%),
    radial-gradient(ellipse at 85% 100%, rgba(253,195,0,0.14) 0%, transparent 55%);
	opacity: .5;
}
.private-text {
  padding: 72px 64px;
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.private-text::before {
  content: ''; position: absolute; top: -120px; left: -80px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,195,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.private-tag {
  font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; font-weight: 600;
}
.private-desc {
  font-size: 1rem; color: var(--white);
  max-width: 520px; line-height: 1.75; margin-top: 20px;
}
.brands {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 48px;
  opacity: 0.85;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              filter var(--duration-normal) var(--ease-smooth);
  filter: grayscale(1);
}
.brand-logo img {
  height: 100%;
  width: auto;
  display: block;
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.brand-logo--more {
  opacity: 0.85;
  filter: none;
}
.brand-logo--more span {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-70);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
.brand-logo--more:hover { opacity: 1; }

.private-cta { margin-top: 40px; }

/* ═══════════════════════════════════════════
   TESTIMONIALS (OSMO Line Reveal carousel — original markup,
   with Wolkotte colors and Barlow Condensed)
   ═══════════════════════════════════════════ */
.testimonials { background: transparent; }

.testimonial-lines {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial-lines__controls {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33.3333%;
  display: flex;
}

.testimonial-lines__main {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial-lines__button {
  background-color: transparent;
  border: 2px solid var(--gold-border);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  padding: 0;
  display: flex;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth);
}
.testimonial-lines__button:hover,
.testimonial-lines__button:focus-visible {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.testimonial-lines__arrow {
  width: .75em;
  display: block;
}

.testimonial-lines__main-details {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-lines__count {
  width: 1ch;
  display: inline-block;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-lines__p {
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.testimonial-lines__p.is--faded { opacity: .75; font-weight: 400; }

.testimonial-lines__collection { width: 100%; }

.testimonial-lines__list {
  width: 100%;
  display: grid;
  position: relative;
}

.testimonial-lines__item {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  opacity: 0;
  visibility: hidden;
  flex-flow: column;
  grid-area: 1 / 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.testimonial-lines__item.is--active {
  opacity: 1;
  visibility: visible;
}

.testimonial-lines__h {
  font-family: var(--font-display);
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 1.4286rem + 0.8929vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  text-transform: none;
  color: var(--white-90);
}

/* SplitText mask wrapper */
.text-line-mask {
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}

.testimonial-lines__item-details {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-lines__item-visual {
  aspect-ratio: 1;
  border-radius: 100em;
  width: 5em;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.testimonial-lines__item-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 0.6em;
}

.testimonial-lines__item-avatar {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125em; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
}

@media screen and (max-width: 767px) {
  .testimonial-lines {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }
  .testimonial-lines__controls {
    order: 9999;
    width: 100%;
  }
  .testimonial-lines__main {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }
  .testimonial-lines__p { font-size: 1em; }
  .testimonial-lines__item {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }
  .testimonial-lines__h { font-size: 2em; }
  .testimonial-lines__item-visual { width: 3.5em; }
}

/* ═══════════════════════════════════════════
   PHOTO BREAK
   ═══════════════════════════════════════════ */
.photo-break {
  height: 480px; overflow: hidden; position: relative;
}
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
}
.photo-break::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.26);
}

/* ═══════════════════════════════════════════
   PARALLAX FOOTER
   ═══════════════════════════════════════════ */
html, body { background: var(--black-deep); }

.page-wrap {
  position: relative;
  background: var(--black);
}

.site-footer {
  position: relative;
  width: 100%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(253,195,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(253,195,0,0.04) 0%, transparent 60%),
    var(--black-deep);
  color: var(--white);
  overflow: hidden;
}
.site-footer-inner {
  position: relative; z-index: 1;
  padding: 160px 0 40px;
}

/* Top CTA */
.footer-top {
  max-width: 720px;
  margin-bottom: 24px;
}
.footer-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white-70);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(253,195,0,0.18);
  animation: pulse-dot 2.4s var(--ease-smooth) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(253,195,0,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(253,195,0,0.05); }
}
.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800; line-height: 0.95;
 text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-headline em {
  color: var(--gold); font-style: normal;
}
.footer-sub {
   color: var(--white-70);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.footer-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* Columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding: 56px 0;
}
.footer-col-label {
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-nav li {
  font-size: 1rem; color: var(--white-70);
  line-height: 1.5;
}
.footer-nav a {
  color: var(--white-70);
  transition: color var(--duration-fast) var(--ease-smooth);
}
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--gold); }

/* Big wordmark */
.footer-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  text-align: center;
  margin: 56px 0 32px;
  user-select: none;
  white-space: nowrap;
}

/* Bottom row */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding-top: 28px;
}
.footer-copy {
  font-size: 14px; color: var(--white-70); letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 14px; color: var(--white-70);
  transition: color var(--duration-fast) var(--ease-smooth);
  padding: 4px 0;
}
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 56px; }

  /* Werkwijze on tablet: 2 cols would be too cramped (~320px each);
     tighten the gap, shorten the sticky visual and shrink the big
     number so the visual column doesn't overflow its grid cell. */
  .sf-layout { gap: 48px; }
  .sf-visual-col {
    height: calc(100vh - 240px);
    min-height: 400px;
    max-height: 560px;
  }
  .sf-visual-num { font-size: clamp(120px, 14vw, 180px); }
  .sf-visual-inner { padding: 36px; }
  .sf-item { min-height: 70vh; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; }

  /* Nav overlay mobile */
  .nav-overlay-inner { padding: 120px 0 48px; align-items: flex-start; }
  .nav-overlay-grid { gap: 40px; }
  .nav-link { gap: 16px; padding: 18px 0; }
  .nav-link-num { min-width: 24px; padding-top: 8px; font-size: 14px; }
  .nav-meta { grid-template-columns: 1fr; gap: 24px; }
  .nav-action { width: 40px; height: 40px; }
  .nav-actions { gap: 8px; }

  .hero { min-height: 600px; }
  .hero-badge { display: none; }
  h1 { font-size: clamp(40px, 10vw, 60px); }
  .hero-sub { font-size: 1rem; }

  .stats-grid {
    grid-template-columns: 1fr;
    padding: 56px var(--gutter);
    gap: 36px;
  }
  .stat-num { font-size: 56px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .perks { grid-template-columns: 1fr; gap: 20px; }

  .img-strip-section { padding: 64px 0; }
  .img-strip { grid-template-columns: 1fr; gap: 16px; }
  .img-strip-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .img-strip-intro { text-align: left; }
  .img-strip-item--lg, .img-strip-item--sm { aspect-ratio: 4/3; }
  .img-strip-overlay { top: 16px; left: 16px; right: 16px; }
  .img-strip-icon { width: 40px; height: 40px;  }
  .img-cap { padding: 24px; }
  .img-cap-text { font-size: 18px; }

  /* Sticky features on mobile: single-column, visual stays sticky at the top
     of the viewport, items are sized so the JS center-detection syncs cleanly
     with the image swap. Previous code had min-height:60vh on items which,
     combined with a 280px sticky visual, put the reading band behind the
     image and caused the visual/text to drift out of sync. */
  .sf-layout { grid-template-columns: 1fr; gap: 24px; }
  .sf-visual-col {
    /* top clears the 72px logo + 18px*2 nav padding ≈ 108px */
    top: 96px;
    height: 220px;
    min-height: 0; max-height: none;
  }
  .sf-visual-inner { padding: 24px; }
  .sf-visual-icon { width: 44px; height: 44px; }
  .sf-visual-icon svg { width: 20px; height: 20px; }
  .sf-visual-num { font-size: 110px; }
  .sf-visual-label { font-size: 14px; }
  .sf-item {
    /* Each step occupies roughly one screen below the sticky visual.
       The JS picks the step whose center is nearest the viewport center;
       with a 220px sticky visual at top:96px the reading band sits below
       the image, so text and image line up correctly. */
    min-height: calc(100vh - 340px);
    padding: 24px 0;
    /* On mobile the sticky visual sits on top of the page; if items dim to
       0.28 they still show through the visual as ghosted text. Keep all
       steps fully opaque — the sticky visual + step heading make it clear
       which step is active. */
    opacity: 1;
  }
  .sf-item-text { font-size: 1rem; }

  .port-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .port-filters { flex-wrap: wrap; }
  .cars-grid { grid-template-columns: 1fr; }

  .private-text { padding: 48px var(--gutter); }
  .brands { gap: 24px; }
  .brand-logo { height: 24px; }

  .photo-break { height: 300px; }

  /* Footer mobile */
  .site-footer-inner { padding: 96px 0 28px; }
  .footer-top { margin-bottom: 56px; }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .footer-bottom {
    flex-direction: column; align-items: flex-start;
    gap: 16px; text-align: left;
  }
  .footer-cta-row { flex-direction: column; align-items: stretch; }
  .footer-cta-row .btn { width: 100%; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
