/* =========================================================================
   SNE Fleet & Courier — Design System
   Aesthetic: refined automotive luxury · deep black · metallic gold · warm white
   Author build: hand-crafted, no framework (client-editable)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0a0b;
  --bg-elev:   #0f0f12;
  --bg-card:   #121216;
  --bg-card-2: #16161b;

  --fg:        #f4f1ea;
  --fg-dim:    #c8c3b8;
  --muted:     #94908a;
  --faint:     #6c6963;

  --gold:        #d4af5a;
  --gold-bright: #ecce82;
  --gold-deep:   #9c7a2c;
  --gold-grad:   linear-gradient(135deg, #f7e8bc 0%, #dcb863 38%, #b58e3c 70%, #8e6c28 100%);
  --gold-soft:   rgba(212, 175, 90, 0.12);
  --gold-line:   rgba(212, 175, 90, 0.22);

  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --shadow:     0 24px 60px -28px rgba(0, 0, 0, 0.8);
  --shadow-gold:0 24px 70px -30px rgba(212, 175, 90, 0.35);
  --glass:      rgba(10, 10, 11, 0.72);

  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Unbounded', 'Manrope', system-ui, sans-serif;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;

  --container: 1200px;
  --radius:   18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(72px, 11vw, 150px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* stop continuous / looping motion */
  .hero-glow, .marquee-track, .scroll-cue .mouse::after, .hero-badge .dot { animation: none !important; }
  /* reveals fade in (opacity only) — no sliding movement */
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transform: none !important; }
  .hero [data-load] { animation: none !important; opacity: 1 !important; transform: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.62;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(212, 175, 90, 0.3); color: #fff; }

/* ---------- Ambient background / grain ---------- */
body::before {
  /* fixed atmosphere: subtle gold radial top, vignette bottom */
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(212, 175, 90, 0.14), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(212, 175, 90, 0.05), transparent 55%),
    var(--bg);
}
body::after {
  /* film grain */
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: var(--section-pad); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-line); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
h1, h2, h3 { font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
.h-display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; }
h2.title { font-family: var(--font-body); font-weight: 800; font-size: clamp(30px, 5vw, 52px); letter-spacing: -0.025em; line-height: 1.08; }
.lead { color: var(--fg-dim); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; margin-top: 20px; }
.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.slogan { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 28px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x); border-radius: 100px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold-grad); color: #1a1407; box-shadow: 0 10px 30px -12px rgba(212, 175, 90, 0.6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -14px rgba(212, 175, 90, 0.7); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--fg); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); background: var(--gold-soft); }
.btn-block { width: 100%; }
.btn-lg { --pad-y: 18px; --pad-x: 36px; font-size: 16px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright);
  font-weight: 700; font-size: 15px; transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; transition: height .4s var(--ease); }
.header.scrolled .nav { height: 70px; }

/* Wordmark logo */
.logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo .logo-main {
  font-family: var(--font-body); font-weight: 800; font-size: 27px;
  letter-spacing: 0.005em; color: var(--fg); text-transform: uppercase;
}
.logo .logo-sub {
  font-family: var(--font-body); font-weight: 600; font-size: 9px;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
  padding-left: 2px;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 9px 14px; font-size: 14.5px; font-weight: 600; color: var(--fg-dim);
  border-radius: 8px; transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-links .mobile-cta { display: none; } /* shown only inside the mobile menu */

/* Language switcher */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid var(--line-2);
  border-radius: 100px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--fg-dim);
  transition: border-color .25s, color .25s;
}
.lang-btn:hover { border-color: var(--gold-line); color: var(--fg); }
.lang-btn svg { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.lang.open .lang-btn svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 160px;
  background: rgba(18, 18, 22, 0.96); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 14px; padding: 7px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .28s var(--ease); z-index: 120;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--fg-dim); transition: background .2s, color .2s;
}
.lang-menu button:hover { background: var(--gold-soft); color: var(--fg); }
.lang-menu button.active { color: var(--gold-bright); }
.lang-menu button .flag { font-size: 17px; line-height: 1; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 18px; height: 1.6px; background: var(--fg); transition: .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--fg); transition: .3s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 80px; overflow: hidden; }
.hero-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 80% 10%, #000 30%, transparent 75%);
}
.hero-lines::before {
  content: ""; position: absolute; inset: -2px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: 0.6;
}
.hero-glow {
  position: absolute; width: 620px; height: 620px; right: -120px; top: 4%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 90, 0.22), transparent 62%); filter: blur(20px);
  animation: floatGlow 14s ease-in-out infinite;
}
@keyframes floatGlow { 0%,100% { transform: translateY(0) scale(1);} 50% { transform: translateY(28px) scale(1.06);} }

.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 920px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; margin-bottom: 30px;
  border: 1px solid var(--gold-line); border-radius: 100px; background: rgba(212, 175, 90, 0.06);
  font-size: 13px; font-weight: 600; color: var(--fg-dim);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(212, 175, 90, 0.16); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(42px, 8.2vw, 96px); line-height: 0.98; letter-spacing: -0.03em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero-sub { margin-top: 28px; max-width: 600px; font-size: clamp(16px, 1.8vw, 20px); color: var(--fg-dim); line-height: 1.65; }
.hero-slogan { margin-top: 20px; font-family: var(--font-serif); font-style: italic; font-size: clamp(19px, 2.4vw, 26px); color: var(--gold-bright); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line); }
.hero-trust li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--fg-dim); }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: var(--gold); transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }

/* =========================================================================
   SERVICES
   ========================================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  position: relative; padding: 38px 32px 34px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev)); overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.svc-card:hover { transform: translateY(-8px); border-color: var(--gold-line); box-shadow: var(--shadow-gold); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--faint); letter-spacing: 0.1em; }
.svc-icon { width: 60px; height: 60px; margin: 20px 0 22px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-bright); transition: transform .45s var(--ease); }
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-3deg); }
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 23px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.svc-card p { color: var(--muted); font-size: 15.5px; line-height: 1.66; margin-bottom: 22px; }
.svc-list li { display: flex; gap: 11px; align-items: flex-start; padding: 7px 0; font-size: 14.5px; color: var(--fg-dim); border-top: 1px solid var(--line); }
.svc-list li:first-child { border-top: none; }
.svc-list svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column; padding: 34px 30px; border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.price-card.featured { border-color: var(--gold-line); background: linear-gradient(180deg, rgba(212,175,90,0.10), var(--bg-elev)); box-shadow: var(--shadow-gold); }
.price-tag { position: absolute; top: 18px; right: 18px; padding: 6px 13px; border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold-grad); color: #1a1407; }
.price-card .pkg { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.price-card .amount { font-family: var(--font-display); font-weight: 700; display: flex; align-items: baseline; gap: 6px; }
.price-card .amount .pre { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--muted); }
.price-card .amount .num { font-size: clamp(38px, 5vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.price-card .amount .cur { font-size: 26px; color: var(--gold-bright); }
.price-card .price-desc { color: var(--muted); font-size: 14.5px; margin: 14px 0 22px; min-height: 44px; }
.price-feat { flex: 1; margin-bottom: 26px; }
.price-feat li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: 14.5px; color: var(--fg-dim); border-top: 1px solid var(--line); }
.price-feat li:first-child { border-top: none; }
.price-feat svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }
.price-note { margin-top: 28px; display: flex; gap: 12px; align-items: flex-start; padding: 18px 22px; border: 1px dashed var(--gold-line); border-radius: var(--radius-sm); background: var(--gold-soft); color: var(--fg-dim); font-size: 14.5px; }
.price-note svg { width: 20px; height: 20px; color: var(--gold-bright); flex: none; margin-top: 1px; }

/* Courier wide card */
.courier-card {
  margin-top: 22px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center;
  padding: 34px 36px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(120deg, var(--bg-card), var(--bg-elev));
}
.courier-card h3 { font-size: 24px; margin-bottom: 10px; }
.courier-card p { color: var(--muted); font-size: 15px; }
.courier-card .courier-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.courier-card .courier-cta .big { font-family: var(--font-display); font-weight: 700; font-size: 22px; }

/* =========================================================================
   GALLERY (before/after)
   ========================================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ba {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); -webkit-user-select: none; user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba-after, .ba-before { position: absolute; inset: 0; background-repeat: no-repeat; background-size: 200% auto; }
.ba-after  { z-index: 1; background-position: 100% 50%; }   /* right half = Nachher */
.ba-before { z-index: 2; background-position: 0% 50%; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba--1 .ba-after, .ba--1 .ba-before { background-image: url(../img/vergleich-1.jpg); }
.ba--2 .ba-after, .ba--2 .ba-before { background-image: url(../img/vergleich-2.jpg); }
.ba-tag { position: absolute; top: 14px; z-index: 4; padding: 6px 13px; border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(10,10,11,0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid var(--line-2); }
.ba-tag.before { left: 14px; color: var(--fg-dim); }
.ba-tag.after { right: 14px; color: var(--gold-bright); }
.ba-handle { position: absolute; top: 0; bottom: 0; z-index: 3; width: 44px; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; }
.ba-handle .knob { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px -6px rgba(0,0,0,.7); color: #1a1407; }
.ba-handle .knob svg { width: 22px; height: 22px; }
.ba-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: var(--gold); }
.ba-caption { margin-top: 14px; font-size: 14px; color: var(--muted); }
.gallery-placeholder-note { margin-top: 26px; display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--faint); }
.gallery-placeholder-note svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--gold); }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.about-left .slogan { display: block; font-size: clamp(24px, 3vw, 34px); color: var(--gold-bright); margin-top: 24px; line-height: 1.3; }
.about-right p { color: var(--fg-dim); margin-bottom: 20px; font-size: 16px; line-height: 1.75; }
.about-right p:last-child { margin-bottom: 0; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 38px; }
.value { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card); transition: border-color .35s, transform .35s var(--ease); }
.value:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.value .v-ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--gold-soft); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; color: var(--gold-bright); }
.value .v-ic svg { width: 21px; height: 21px; }
.value h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.value p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.contact-info { position: sticky; top: 110px; }
.contact-info .lead { margin-top: 0; margin-bottom: 32px; }
.info-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.info-row { display: flex; gap: 16px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card); transition: border-color .3s, transform .3s var(--ease); }
.info-row:hover { border-color: var(--gold-line); transform: translateX(4px); }
.info-row .i-ic { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--gold-soft); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; color: var(--gold-bright); }
.info-row .i-ic svg { width: 20px; height: 20px; }
.info-row .i-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
.info-row .i-value { font-size: 15.5px; font-weight: 600; color: var(--fg); }
.info-row .i-value:hover { color: var(--gold-bright); }

.socials { display: flex; gap: 12px; }
.social-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--fg-dim); transition: all .3s var(--ease); }
.social-btn svg { width: 21px; height: 21px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-4px); background: var(--gold-soft); }

/* Google review CTA */
.google-cta { display: flex; align-items: center; gap: 16px; margin-top: 26px; padding: 16px 20px; border: 1px solid var(--gold-line); border-radius: var(--radius-sm); background: var(--gold-soft); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.google-cta:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.google-cta .g-icon { width: 40px; height: 40px; flex: none; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--bg); border: 1px solid var(--line-2); color: var(--gold-bright); }
.google-cta .g-icon svg { width: 20px; height: 20px; }
.google-cta .g-text { display: flex; flex-direction: column; gap: 2px; }
.google-cta .g-stars { color: var(--gold-bright); font-size: 13px; letter-spacing: 2px; }
.google-cta .g-text strong { font-size: 15px; font-weight: 700; color: var(--fg); }
.google-cta .g-arrow { width: 18px; height: 18px; margin-left: auto; color: var(--gold-bright); transition: transform .3s var(--ease); }
.google-cta:hover .g-arrow { transform: translateX(4px); }

/* Form */
.form-card { padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--bg-card), var(--bg-elev)); box-shadow: var(--shadow); }
.tabs { display: flex; gap: 6px; padding: 6px; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; margin-bottom: 30px; }
.tab { flex: 1; padding: 12px; border-radius: 100px; font-size: 14px; font-weight: 700; color: var(--muted); transition: all .3s var(--ease); }
.tab.active { background: var(--gold-grad); color: #1a1407; }
.form-pane { display: none; }
.form-pane.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-dim); margin-bottom: 8px; }
.field label .req { color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px;
  color: var(--fg); font-size: 15px; transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d4af5a' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgba(212,175,90,0.04); box-shadow: 0 0 0 4px rgba(212,175,90,0.10); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #d46a5a; }

/* radio / choice pills */
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--line-2); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--fg-dim); transition: all .25s var(--ease); }
.choice input:checked + span { border-color: var(--gold); color: var(--gold-bright); background: var(--gold-soft); }
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.consent input { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; flex: none; border: 1px solid var(--line-2); border-radius: 6px; margin-top: 1px; cursor: pointer; transition: all .25s; position: relative; }
.consent input:checked { background: var(--gold-grad); border-color: transparent; }
.consent input:checked::after { content: ""; position: absolute; left: 7px; top: 3px; width: 5px; height: 10px; border: solid #1a1407; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.consent a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }

.form-status { margin-top: 16px; padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; display: none; }
.form-status.show { display: block; animation: fadeUp .4s var(--ease); }
.form-status.ok { background: rgba(90, 200, 130, 0.12); border: 1px solid rgba(90, 200, 130, 0.4); color: #8fe0ad; }
.form-status.err { background: rgba(212, 106, 90, 0.12); border: 1px solid rgba(212, 106, 90, 0.4); color: #f0a596; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(26,20,7,0.35); border-top-color: #1a1407; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn[aria-busy="true"] .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.cond-field { display: none; }
.cond-field.show { display: block; animation: fadeUp .4s var(--ease); }
.form-hint { margin-top: 14px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 84px); padding-bottom: 36px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 280px; }
.footer-brand .slogan { display: block; margin-top: 16px; color: var(--gold-bright); font-size: 17px; }
.footer h5 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; font-weight: 700; }
.footer-col a, .footer-col li, .footer-col span, .footer-col address { display: block; color: var(--fg-dim); font-size: 14.5px; line-height: 1.55; padding: 6px 0; font-style: normal; transition: color .25s, padding-left .25s var(--ease); }
.footer-col a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--faint); }
.footer-bottom a:hover { color: var(--gold-bright); }
.footer-bottom .legal-links { display: flex; gap: 22px; }

/* =========================================================================
   COOKIE BANNER
   ========================================================================= */
.cookie {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200; max-width: 520px;
  padding: 22px 24px; border: 1px solid var(--gold-line); border-radius: var(--radius);
  background: rgba(15, 15, 18, 0.94); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); box-shadow: var(--shadow);
  transform: translateY(140%); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie h4 { font-size: 16px; margin-bottom: 8px; }
.cookie p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.cookie p a { color: var(--gold-bright); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { --pad-y: 11px; --pad-x: 20px; font-size: 13.5px; }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* hero load reveal */
.hero [data-load] { opacity: 0; transform: translateY(26px); animation: heroIn .9s var(--ease) forwards; }
.hero [data-load="1"] { animation-delay: .15s; }
.hero [data-load="2"] { animation-delay: .28s; }
.hero [data-load="3"] { animation-delay: .41s; }
.hero [data-load="4"] { animation-delay: .54s; }
.hero [data-load="5"] { animation-delay: .67s; }
.hero [data-load="6"] { animation-delay: .8s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.legal { padding-top: 150px; padding-bottom: 100px; }
.legal .container { max-width: 860px; }
.legal h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 50px); margin-bottom: 12px; }
.legal .legal-sub { color: var(--muted); margin-bottom: 50px; }
.legal h2 { font-size: 22px; margin: 42px 0 14px; color: var(--gold-bright); }
.legal h3 { font-size: 17px; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--fg-dim); font-size: 15.5px; line-height: 1.75; margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; color: var(--gold-bright); font-weight: 600; }
.legal .back svg { width: 16px; height: 16px; }

/* =========================================================================
   MOBILE
   ========================================================================= */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .courier-card { grid-template-columns: 1fr; gap: 20px; }
  .courier-card .courier-cta { align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav .desk-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 0; z-index: 90; flex-direction: column; justify-content: center;
    gap: 6px; background: rgba(10,10,11,0.97); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 80px 32px 40px;
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  body.nav-open .nav-links { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 26px; font-family: var(--font-display); font-weight: 700; padding: 14px; color: var(--fg); }
  .nav-links a::after { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 0; padding-top: 140px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; }
}

/* utility for JS to hide before init */
[hidden] { display: none !important; }

/* ============================================================
   ENHANCEMENTS — light theme · animations · new sections
   ============================================================ */

/* ---- Light theme ---- */
[data-theme="light"] {
  --bg: #f4f1ea;
  --bg-elev: #fffdf8;
  --bg-card: #ffffff;
  --bg-card-2: #faf7f1;
  --fg: #17130d;
  --fg-dim: #423d35;
  --muted: #6a655c;
  --faint: #9c958a;
  --gold: #9c7a2c;
  --gold-bright: #876413;
  --gold-deep: #6f521a;
  --gold-grad: linear-gradient(135deg, #c49a3a 0%, #a47d28 45%, #7a5d1c 100%);
  --gold-soft: rgba(156, 122, 44, 0.10);
  --gold-line: rgba(156, 122, 44, 0.30);
  --line: rgba(23, 19, 13, 0.10);
  --line-2: rgba(23, 19, 13, 0.16);
  --shadow: 0 24px 60px -30px rgba(90, 70, 25, 0.25);
  --shadow-gold: 0 24px 70px -34px rgba(156, 122, 44, 0.40);
  --glass: rgba(248, 246, 240, 0.80);
}
[data-theme="light"] body::before {
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(156,122,44,0.10), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(156,122,44,0.05), transparent 55%),
    var(--bg);
}
[data-theme="light"] body::after { opacity: 0.025; }
[data-theme="light"] .hero-glow { opacity: 0.5; }
[data-theme="light"] .hero-lines { opacity: 0.7; }
[data-theme="light"] .btn-gold,
[data-theme="light"] .price-tag,
[data-theme="light"] .tab.active,
[data-theme="light"] .to-top,
[data-theme="light"] .ba-handle .knob { color: #fff; }
[data-theme="light"] .consent input:checked::after { border-color: #fff; }
[data-theme="light"] .ba-tag { background: rgba(255, 255, 255, 0.82); }

/* Smooth theme cross-fade — applied ONLY during the toggle (class added by JS for ~400ms),
   so it never overrides the hover/focus transitions on cards, buttons or inputs. */
html.theme-anim, html.theme-anim *, html.theme-anim *::before, html.theme-anim *::after {
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, fill .35s ease, stroke .35s ease !important;
}

/* ---- Theme toggle ---- */
.theme-toggle { width: 42px; height: 42px; flex: none; border: 1px solid var(--line-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--fg-dim); transition: border-color .25s, color .25s, transform .35s var(--ease); }
.theme-toggle:hover { border-color: var(--gold-line); color: var(--gold-bright); transform: rotate(-18deg); }
.theme-toggle svg { width: 18px; height: 18px; }
[data-theme="dark"] .theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }

/* ---- Scroll progress bar ---- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: var(--gold-grad); z-index: 300; will-change: transform; }

/* ---- Back to top ---- */
.to-top { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; background: var(--gold-grad); color: #1a1407; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); opacity: 0; transform: translateY(18px) scale(.85); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease); z-index: 150; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ---- Marquee (target groups) ---- */
.marquee-section { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-elev); overflow: hidden; }
.marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 42s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-item { font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.9vw, 21px); color: var(--fg-dim); white-space: nowrap; }
.m-sep { color: var(--gold); font-style: normal; margin: 0 26px; font-size: 11px; }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding: 34px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-card), var(--bg-elev)); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); overflow: hidden; }
.step::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.step:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: var(--shadow-gold); }
.step:hover::before { transform: scaleX(1); }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 46px; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px var(--gold-line); }
.step-ic { width: 52px; height: 52px; margin: 16px 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-bright); }
.step-ic svg { width: 24px; height: 24px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

/* ---- Compare gallery (before/after) ---- */
.compare-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.compare-item { display: flex; flex-direction: column; }
.compare { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.compare img { width: 100%; height: auto; display: block; }
.cmp-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, transparent, var(--gold), transparent); z-index: 2; pointer-events: none; }
.compare-item .ba-caption { margin-top: 14px; }
.gallery-more { margin-top: 26px; }
.gallery-more a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); font-weight: 700; }
.gallery-more svg { width: 16px; height: 16px; }
@media (max-width: 980px) { .compare-list { grid-template-columns: 1fr; } }

/* ---- Founder / profile ---- */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.founder-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gold-line); box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--bg-card); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-badge { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 100px; background: var(--glass); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--gold-line); font-size: 13px; font-weight: 700; color: var(--gold-bright); }
.founder-badge svg { width: 16px; height: 16px; }
.founder-role { color: var(--gold-bright); font-weight: 600; font-size: 16px; margin: 8px 0 6px; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0; }
.f-stat { padding: 20px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card); text-align: center; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.f-stat:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.f-stat .num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; }
.f-stat .lbl { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }
.founder-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.founder-cta .slogan { font-size: 18px; color: var(--gold-bright); }
@media (max-width: 980px) { .founder-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .founder-stats { grid-template-columns: 1fr; } }

/* ---- Footer mission credit ---- */
.footer-mission { color: var(--faint); font-size: 13px; }
.footer-mission strong { color: var(--gold-bright); font-weight: 700; }
.footer-mission:hover strong { text-decoration: underline; }

/* ---- Reveal variants ---- */
.reveal-left { transform: translateX(-42px); }
.reveal-right { transform: translateX(42px); }
.reveal-scale { transform: scale(.92); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { transform: none; }

/* ---- perf hints ---- */
.hero-glow, .scroll-progress, .marquee-track { will-change: transform; }

/* ---- Skip link + slider focus (a11y) ---- */
.skip-link { position: fixed; top: -64px; left: 16px; z-index: 400; padding: 12px 18px; border-radius: 0 0 12px 12px; background: var(--gold-grad); color: #1a1407; font-weight: 700; font-size: 14px; transition: top .25s var(--ease); }
.skip-link:focus { top: 0; outline: none; }
[data-theme="light"] .skip-link { color: #fff; }
.ba:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
