/*
Theme Name: Oksbøl Autoservice
Theme URI: https://oksbølautoservice.dk
Author: Refokus
Author URI: https://refokus.nu
Description: Custom WP-tema for Oksbøl Autoservice. Lokalt autoværksted i Oksbøl. Light, modern, video-driven design ported from V3 draft.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oksbol-auto
*/

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #eef1f5;
  --ink: #0b1320;
  --ink-2: #2b3545;
  --muted: #6a7586;
  --line: #e2e7ed;
  --line-2: #cdd4dc;
  --accent: #0F766E;
  --accent-2: #14B8A6;
  --accent-soft: #CCFBF1;
  --success: #16a574;
  --danger: #c33b3b;
  --electric: #5EEAD4;

  --f: 'General Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-display: 'Cabinet Grotesk', 'General Sans', system-ui, sans-serif;

  --container: 1280px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --space: clamp(5rem, 9vw, 8rem);
  --shadow: 0 1px 3px rgba(11,19,32,.04), 0 12px 32px rgba(11,19,32,.06);
  --shadow-lg: 0 4px 10px rgba(11,19,32,.05), 0 30px 60px rgba(11,19,32,.1);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   2. BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--f);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7.5vw, 6rem); font-weight: 800; letter-spacing: -.045em; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -.04em; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--ink-2); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: var(--r);
  font-weight: 600;
  z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}
@media (min-width: 768px) {
  .container {
    padding-left: max(2.5rem, env(safe-area-inset-left));
    padding-right: max(2.5rem, env(safe-area-inset-right));
  }
}

section { padding-block: var(--space); position: relative; }
section.is-tint { background: var(--surface-soft); }
section.is-dark { background: var(--ink); color: #fff; }

/* ============================================================
   4. CHIP / EYEBROW
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}
.chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(15,118,110,.18);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .6; } }

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.sec-head h2 { margin: 1rem 0; }
.sec-head p { font-size: 1.15rem; color: var(--muted); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 1rem 1.65rem;
  border-radius: 999px;
  font-family: var(--f);
  font-size: .95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(15,118,110,.3); }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-glass { background: rgba(255,255,255,.92); color: var(--ink); border-color: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-glass:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.3); color: var(--ink); }

.btn-glass-outline { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); }
.btn-glass-outline:hover { background: rgba(255,255,255,.95); color: var(--ink); border-color: rgba(255,255,255,.95); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--accent-soft); transform: translateY(-2px); color: var(--accent); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.0625rem; }

/* ============================================================
   6. HEADER
   ============================================================ */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: all .3s var(--ease);
  padding-top: 1rem;
  padding-bottom: 0;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .hdr {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
}

.hdr-inner {
  position: relative;
  margin: 0 auto;
  padding: .5rem .5rem .5rem 1.25rem;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(226,231,237,.7);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  box-shadow: 0 1px 3px rgba(11,19,32,.04), 0 8px 24px rgba(11,19,32,.05);
}
.hdr.scrolled .hdr-inner { background: rgba(255,255,255,.95); }
@media (min-width: 768px) { .hdr-inner { padding: .5rem .5rem .5rem 1.5rem; } }

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none;
}
.brand img { height: 36px; width: auto; }
.brand-n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.015em;
  line-height: 1;
  display: none;
}
@media (min-width: 480px) { .brand-n { display: inline; } }

.nav {
  display: none;
  gap: .25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav a, .nav .menu-item a {
  padding: .55rem 1rem;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: all .2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.nav a:hover, .nav .current-menu-item > a {
  background: var(--surface-soft);
  color: var(--ink);
}
.nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: .25rem; }

.hdr-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.phone-link {
  display: none;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 999px;
  transition: all .2s var(--ease);
  text-decoration: none;
  letter-spacing: -.01em;
}
.phone-link:hover { background: var(--surface-soft); color: var(--ink); }
.phone-link svg { color: var(--accent); width: 15px; height: 15px; flex-shrink: 0; }
@media (min-width: 1200px) { .phone-link { display: inline-flex; } }

.lang-switch {
  display: none;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lang-switch a {
  padding: .35rem .65rem;
  color: var(--muted);
  border-radius: 999px;
  transition: all .2s var(--ease);
  text-decoration: none;
}
.lang-switch a.active { background: var(--ink); color: #fff; }
.lang-switch a:not(.active):hover { color: var(--ink); }
@media (min-width: 900px) { .lang-switch { display: inline-flex; } }

.cta-head {
  display: none;
  padding: .7rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.cta-head:hover { background: var(--accent); transform: translateY(-1px); color: #fff; }
@media (min-width: 1024px) { .nav { display: flex; } .cta-head { display: inline-flex; } }
@media (max-width: 1023px) { .nav { display: none !important; } }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background .2s var(--ease);
  position: relative;
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  padding: 0;
}
.menu-btn:hover, .menu-btn:active { background: var(--accent); }
.menu-btn span {
  width: 16px; height: 2px;
  background: #fff;
  display: block;
  position: relative;
  transition: background .2s var(--ease);
  pointer-events: none;
}
.menu-btn span::before, .menu-btn span::after {
  content: '';
  position: absolute; left: 0;
  width: 16px; height: 2px;
  background: #fff;
  transition: transform .3s var(--ease), top .3s var(--ease);
  pointer-events: none;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after  { top:  6px; }
.menu-btn[aria-expanded="true"] span { background: transparent; }
.menu-btn[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.menu-btn[aria-expanded="true"] span::after  { transform: rotate(-45deg); top: 0; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Mobile drawer — full-screen overlay with clear header + close button */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 70; /* above header so close button always works */
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  display: flex;
  flex-direction: column;
}
.nav-drawer[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility 0s linear 0s;
}

/* Drawer top: brand left, close button right */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
}
.drawer-brand img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}
.drawer-brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
}
.drawer-close {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--surface-soft);
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.drawer-close:hover, .drawer-close:active {
  background: var(--ink);
  color: #fff;
  transform: rotate(90deg);
}

/* Drawer nav links — bigger, full-width tap targets */
.drawer-nav {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.drawer-nav li { margin: 0; }
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease), color .2s var(--ease);
  letter-spacing: -.02em;
}
.drawer-nav a:hover, .drawer-nav a:active {
  background: var(--accent-soft);
  color: var(--accent);
}
.drawer-nav a::after {
  content: '→';
  color: var(--muted);
  font-weight: 400;
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.drawer-nav a:hover::after,
.drawer-nav a:active::after {
  transform: translateX(4px);
  color: var(--accent);
}

/* Drawer bottom: CTAs + language switcher */
.drawer-foot {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.drawer-foot .btn { width: 100%; justify-content: center; }

.drawer-lang {
  margin-top: .5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.drawer-lang-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .65rem;
}
.drawer-lang-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.drawer-lang-pills a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s var(--ease);
  min-height: 44px;
}
.drawer-lang-pills a.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.drawer-lang-pills a:not(.active):hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

@media (min-width: 1024px) {
  .nav-drawer { display: none !important; }
}
/* Old .nav-drawer ul/a rules removed — replaced by .drawer-nav above */

/* ============================================================
   7. HERO — fullscreen video
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Bottom-left brand accent glow (petrol-blue) */
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(15,118,110,.55), transparent 65%),
    /* Top-right cool tint for cinematic depth */
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(94,234,212,.18), transparent 70%),
    /* Vertical scrim — soft top, transparent middle, deep bottom */
    linear-gradient(180deg,
      rgba(11,19,32,.55) 0%,
      rgba(11,19,32,.15) 22%,
      rgba(11,19,32,0) 45%,
      rgba(11,19,32,.4) 75%,
      rgba(11,19,32,.92) 100%),
    /* Edge vignette */
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 50%, rgba(11,19,32,.45) 100%);
  background-blend-mode: screen, screen, normal, multiply;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 9rem 3rem;
}
@media (min-width: 768px) { .hero-inner { padding-block: 10rem 4rem; } }

.hero-top {
  position: absolute;
  top: 8rem;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}
@media (max-width: 767px) { .hero-top { top: 6rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22,165,116,.3);
  animation: pulse 2s infinite;
}
/* Closed state — amber dot, no pulse */
.hero-badge.is-closed::before {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,.25);
  animation: none;
}
/* Explicit open state class for clarity (same as default) */
.hero-badge.is-open::before {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22,165,116,.3);
}

.hero-copy { max-width: 900px; }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.045em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero-copy h1 span.gradient {
  background: linear-gradient(135deg, #5EEAD4 0%, #14B8A6 60%, #CCFBF1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  margin-bottom: 2rem;
  line-height: 1.55;
  text-shadow: 0 1px 20px rgba(0,0,0,.35);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.hero-trust .chip-trust {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem .5rem .55rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-trust .chip-trust .ic {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  flex-shrink: 0;
}
.hero-trust .chip-trust .ic svg { width: 13px; height: 13px; }

.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-floats { position: absolute; z-index: 2; display: none; pointer-events: none; }
@media (min-width: 1100px) { .hero-floats { display: block; } }
.hero-float {
  position: absolute;
  padding: .85rem 1.15rem;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: .75rem;
  pointer-events: auto;
  animation: fi .9s both;
}
.hero-float.a { top: 22%; right: 5%; animation-delay: .4s; }
.hero-float.b { top: 40%; right: 15%; animation-delay: .65s; }
@keyframes fi { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-float .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-float .ic svg { width: 18px; height: 18px; }
.hero-float .t { font-family: var(--f-display); font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.15; }
.hero-float .t small { display: block; color: var(--muted); font-weight: 500; font-size: .72rem; margin-top: .2rem; }

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  animation: bob 2.5s ease-in-out infinite;
  pointer-events: none;
  display: none;
}
@media (min-width: 1100px) { .hero-scroll { display: block; } }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Inner page hero (for non-front pages) */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--bg) 100%);
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding-top: 11rem; padding-bottom: 4rem; } }
.page-hero h1 { margin: 1rem 0; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   8. SERVICES (svc)
   ============================================================ */
.svc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
}
.svc-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  background: var(--accent-soft);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.svc-ico svg { width: 24px; height: 24px; }
.svc-card h3 { margin-bottom: .5rem; font-size: 1.25rem; }
.svc-card p { color: var(--muted); font-size: .975rem; line-height: 1.55; }
.svc-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--muted);
}
.svc-foot .go {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.svc-card:hover .go { color: var(--ink); }

/* ============================================================
   9. CARS
   ============================================================ */

/* Filter/sortér-bar (kun /biler/-siden) */
.cars-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.cars-filter {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 160px;
  flex: 1 1 160px;
}
.cars-filter label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}
.cars-filter select {
  font-family: var(--f);
  font-size: .9rem;
  padding: .65rem .85rem;
  background: #fafafb;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.cars-filter select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}
.cars-filter-reset {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--f);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  padding: .65rem 0;
  transition: color .15s var(--ease);
}
.cars-filter-reset:hover { color: var(--ink); text-decoration: underline; }

.cars-count {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cars-no-match {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
}
.cars-no-match p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.05rem; }

.cars-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.car {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.car:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
a.car { text-decoration: none; color: var(--ink); display: block; }
.car-link { display: block; color: inherit; text-decoration: none; }
.car-link:hover { color: inherit; }
.car:focus-within { outline: 2px solid var(--accent); outline-offset: 4px; }

.car-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}
.car-img img,
.car-img picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.car:hover .car-img img { transform: scale(1.05); }
.car-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,19,32,0) 60%, rgba(11,19,32,.35) 100%);
  pointer-events: none;
}
.car-tags {
  position: absolute;
  z-index: 2;
  top: 1rem; left: 1rem;
  display: flex;
  gap: .4rem;
}
.car-tags span {
  padding: .3rem .65rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fav {
  position: absolute;
  z-index: 2;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.fav:hover { background: #fff; color: var(--danger); transform: scale(1.05); }
.fav.is-saved { background: var(--danger); color: #fff; }
.fav.is-saved svg { fill: currentColor; }

.car-body { padding: 1.5rem; }
.car-title { font-family: var(--f-display); font-size: 1.075rem; font-weight: 700; margin-bottom: .25rem; line-height: 1.2; }
.car-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.car-specs { display: flex; gap: .75rem; flex-wrap: wrap; padding-block: .75rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.car-specs span { font-size: .8rem; color: var(--ink-2); font-weight: 500; }
.car-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.car-price .kr { font-family: var(--f-display); font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1; }
.car-price .kr small { display: block; font-family: var(--f); font-size: .7rem; color: var(--muted); font-weight: 500; margin-top: .25rem; }
.car-price .go { color: var(--accent); font-weight: 600; font-size: .825rem; }

.cars-foot { margin-top: 3rem; text-align: center; }

/* ============================================================
   10. ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 1fr; gap: 4.5rem; }
}
.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p { color: var(--ink-2); font-size: 1.0625rem; margin-bottom: 1.25rem; }
.about-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-kpis div { padding: 1.25rem; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); text-align: center; }
.about-kpis .n { font-family: var(--f-display); font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.about-kpis .t { font-size: .8rem; color: var(--muted); margin-top: .25rem; display: block; }

.about-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1; /* matches 2×2 team composite */
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .about-visual { aspect-ratio: 1 / 1; }
}
.about-visual img,
.about-visual picture img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(11,19,32,.15));
  pointer-events: none;
}
.about-team-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 100%; height: 100%;
}
.about-team-mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-group-photo {
  width: 100%; height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 280px;
}
.about-group-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

/* ============================================================
   11. TEAM
   ============================================================ */
.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface-soft); }
.team-photo img, .team-photo picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.04); }

/* Bento layout: group photo + portrait grid */
.team-bento { display: flex; flex-direction: column; gap: 0.5rem; }
.team-bento-hero {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: clamp(140px, 16vw, 220px);
  box-shadow: var(--shadow-lg);
}
.team-bento-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.team-bento-portraits {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
.team-bento-portraits .team-card { min-width: 0; }
.team-info { padding: 1.25rem 1.5rem 1.5rem; }
.team-info h3 { margin-bottom: .15rem; font-size: 1.075rem; letter-spacing: -.01em; }
.team-info .role { font-size: .8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================
   12. CASTROL
   ============================================================ */
.castrol {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.castrol::before {
  content: '';
  position: absolute;
  top: -250px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,154,68,.18), transparent 65%);
  pointer-events: none;
}
.castrol::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(127,29,29,.12), transparent 70%);
  pointer-events: none;
}
.castrol-inner { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .castrol-inner { grid-template-columns: 1.1fr 1fr; gap: 4.5rem; } }
.castrol-copy .chip {
  background: rgba(0,154,68,.18);
  color: #4ade80;
  border: 1px solid rgba(0,154,68,.3);
}
.castrol-copy .chip::before {
  background: #7F1D1D;
  box-shadow: 0 0 0 3px rgba(127,29,29,.25);
}
.castrol-copy h2 { color: #fff; margin: 1rem 0 1.25rem; }
.castrol-copy > p { color: rgba(255,255,255,.8); font-size: 1.075rem; margin-bottom: 2.25rem; }

.castrol-stats { display: grid; gap: .875rem; list-style: none; padding: 0; }
.castrol-stats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.125rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
  align-items: center;
}
.castrol-stats .ico {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: rgba(0,154,68,.2);
  color: #4ade80;
  border: 1px solid rgba(0,154,68,.3);
  border-radius: 10px;
  flex-shrink: 0;
}
.castrol-stats .ico svg { width: 20px; height: 20px; }
.castrol-stats strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: .15rem; }
.castrol-stats span { color: rgba(255,255,255,.65); font-size: .9rem; }

.castrol-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 30px 60px -20px rgba(0,154,68,.35),
    0 20px 40px -25px rgba(127,29,29,.25);
}
.castrol-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,154,68,.06), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(127,29,29,.04), transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}
.castrol-logo-img {
  position: relative;
  display: block;
  width: 70%;
  max-width: 280px;
  height: auto;
  z-index: 1;
}
.castrol-partner-label {
  position: relative;
  display: inline-block;
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #009A44;
  z-index: 1;
}
.castrol-partner-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #7F1D1D;
  vertical-align: middle;
  margin-right: .75rem;
  border-radius: 2px;
}

/* ============================================================
   12. REVIEWS — dark section, 3-row infinite marquee
   ============================================================ */
.reviews {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 6rem);
}
.reviews-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(15,118,110,.20), transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(20,184,166,.12), transparent 65%);
}
.reviews > .container { position: relative; z-index: 1; }

.reviews .sec-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.reviews-eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--electric);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.reviews-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -.025em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.8);
}
.reviews-meta strong { color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; }
.reviews-meta .rc-stars { color: #fbbf24; }
.reviews-meta .rc-stars svg { width: 18px; height: 18px; }

.rc-stars { display: inline-flex; gap: .15rem; color: #fbbf24; }

.rev-row {
  position: relative;
  margin: 1rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.rev-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: rev-scroll var(--speed, 60s) linear infinite;
}
.rev-row[data-dir="reverse"] .rev-track { animation-direction: reverse; }
.rev-row:hover .rev-track { animation-play-state: paused; }

@keyframes rev-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.rev-card {
  flex: 0 0 auto;
  width: 360px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.rev-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(94,234,212,.25);
  transform: translateY(-2px);
}
.rc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.rc-source {
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.rc-quote {
  font-family: var(--f);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0;
  letter-spacing: -.005em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rc-author {
  font-family: var(--f);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: -.005em;
  margin-top: auto;
}

.reviews-cta-wrap { text-align: center; margin-top: 2.5rem; }
.reviews-cta-wrap .btn {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.15);
  box-shadow: none;
}
.reviews-cta-wrap .btn:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

@media (max-width: 600px) {
  .reviews { padding-block: 3.5rem; }
  .reviews .sec-head { margin-bottom: 2.25rem; }
  .rev-card { width: 280px; padding: 1.25rem 1.4rem; }
  .rc-quote { font-size: .9rem; -webkit-line-clamp: 6; }
  .rev-row { margin: .65rem 0; }
  .rev-track { gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
}

/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #115E59 100%);
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255,255,255,.1) 0, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 44rem; margin: 0 auto; }
.cta-inner .chip { background: rgba(255,255,255,.16); color: #fff; }
.cta-inner .chip::before { background: var(--electric); box-shadow: 0 0 0 3px rgba(94,234,212,.25); }
.cta-inner h2 { color: #fff; margin: 1rem 0 1.25rem; }
.cta-inner p { color: rgba(255,255,255,.88); margin-bottom: 2.5rem; font-size: 1.125rem; }
.cta-inner .btns { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   14. CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.contact-item {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.contact-item .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: .85rem;
}
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item .ct-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.contact-item .ct-value { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink); font-weight: 600; line-height: 1.4; }
.contact-item a.ct-value { color: var(--ink); }
.contact-item a.ct-value:hover { color: var(--accent); }

/* Contact page form */
.contact-page {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-page { grid-template-columns: 1.25fr 1fr; gap: 3.5rem; }
}
.contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.contact-form .field-group { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.contact-form .field-group.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.contact-form .field-group.cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); }
.contact-form .field-group + .field-group { margin-top: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--f);
  font-size: 1rem;
  padding: .85rem 1rem;
  background: #fafafb;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  width: 100%;
  transition: all .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .85rem; margin-top: .15rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-feedback { display: none; margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: var(--r); font-weight: 500; }
.form-feedback.is-visible { display: block; }
.form-feedback.is-success { background: rgba(22,165,116,.1); border: 1px solid rgba(22,165,116,.3); color: var(--success); }
.form-feedback.is-error { background: rgba(195,59,59,.1); border: 1px solid rgba(195,59,59,.3); color: var(--danger); }
.contact-form .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.contact-side { display: flex; flex-direction: column; gap: 1rem; }
.contact-side .box { background: var(--surface); padding: 1.75rem; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.contact-side h3 { font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.contact-side h3 svg { color: var(--accent); }
.contact-side dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; margin: 0; font-size: .9rem; }
.contact-side dt { color: var(--muted); font-size: .8rem; }
.contact-side dd { margin: 0; font-weight: 500; color: var(--ink); }
.contact-side dd a { color: var(--ink); }
.contact-side dd a:hover { color: var(--accent); }
.map-embed { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Online booking-indlejring (Servicebogen.dk) */
.booking-embed {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.booking-embed iframe {
  width: 100%;
  min-height: 1100px;
  height: 82vh;
  border: 0;
  display: block;
}
.booking-fallback {
  margin-top: 1rem;
  text-align: center;
  font-size: .9rem;
  color: var(--ink-2);
}
.booking-fallback a { color: var(--accent); font-weight: 600; }
@media (max-width: 700px) {
  .booking-embed iframe { min-height: 920px; }
}

/* Klik-for-at-indlæse kort (GDPR — ingen Google-cookies før klik) */
.map-embed-js .map-load {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .55rem; padding: 1.5rem; text-align: center;
  border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--surface-soft), #e3e9ef);
  color: var(--ink);
  transition: background .2s var(--ease, ease);
}
.map-embed-js .map-load:hover { background: linear-gradient(135deg, #e6ecf1, #d6dee6); }
.map-embed-js .map-load svg { color: var(--accent); }
.map-embed-js .map-load-title { font-weight: 700; font-size: 1.05rem; }
.map-embed-js .map-load-note { font-size: .8rem; line-height: 1.4; color: var(--ink-2); max-width: 32ch; }
.map-embed-js.is-loaded .map-load { display: none; }

/* ============================================================
   15. SERVICE DETAIL (page-ydelser)
   ============================================================ */
.svc-list { display: grid; gap: 1.25rem; }
.svc-detail {
  background: var(--surface);
  padding: 2.25rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  transition: box-shadow .3s var(--ease);
}
.svc-detail:hover { box-shadow: var(--shadow-lg); }
.svc-detail-head {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-bottom: 1.5rem;
}
.svc-detail h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.svc-detail-body { color: var(--muted); font-size: 1.05rem; }
.svc-detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .625rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.svc-detail-list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .925rem;
  color: var(--ink-2);
}
.svc-detail-list .check {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding-block: 5rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  margin-bottom: 3.5rem;
}
.footer-col h4 {
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .625rem; }
.footer-col li, .footer-col a { color: rgba(255,255,255,.85); font-weight: 500; }
.footer-col a:hover { color: #fff; }
.footer-col .logo { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-col .logo img { height: 44px; width: auto; }
.footer-col .tagline { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.6; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { white-space: nowrap; }
.footer-credit {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.55);
}
.footer-credit a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 1px;
  transition: all .2s var(--ease);
}
.footer-credit a:hover {
  color: #fff;
  border-bottom-color: var(--electric);
}
@media (max-width: 700px) {
  .footer-bottom { gap: .5rem; }
  .footer-credit, .footer-legal-links { font-size: .8rem; }
}

/* --- Facebook social row --- */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.footer-fb:hover { color: #fff; }
.drawer-fb {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  padding: .6rem 0;
  opacity: .8;
  transition: opacity .2s;
}
.drawer-fb:hover { opacity: 1; }

/* ============================================================
   17. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(11,19,32,.5);
  display: none;
  max-width: var(--container);
  margin: 0 auto;
}
.cookie-banner[data-open="true"] { display: block; }
@media (min-width: 768px) { .cookie-banner { inset: auto 2rem 2rem 2rem; } }
.cookie-banner-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .cookie-banner-inner { grid-template-columns: 1fr auto; gap: 2rem; } }
.cookie-banner h3 { color: #fff; font-size: 1.075rem; margin-bottom: .35rem; }
.cookie-banner p { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.55; }
.cookie-banner p a { color: var(--electric); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: .8rem 1.4rem; font-size: .85rem; }

/* ============================================================
   18. PROSE (legal pages)
   ============================================================ */
.prose { max-width: 800px; margin: 0 auto; padding-block: var(--space); }
.prose h1 { margin-bottom: 1.5rem; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.prose h3 { margin: 1.5rem 0 .5rem; font-size: 1.15rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; line-height: 1.7; color: var(--ink-2); font-size: 1.0625rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: .25rem; }
.prose strong { color: var(--ink); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

/* ============================================================
   19. 404
   ============================================================ */
.error-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 9rem;
}
.error-404 .big {
  font-family: var(--f-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.error-404 h2 { margin-bottom: 1rem; }
.error-404 p { color: var(--muted); margin-bottom: 2rem; font-size: 1.075rem; max-width: 480px; }
.error-404 .btns { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   20. UTILITY + helpers
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.sec-after-hero { padding-top: 2rem !important; }
.sec-attached   { padding-top: 0 !important; }
.sec-bare       { padding-block: 3rem !important; }
.sec-cta        { text-align: center; margin-top: 4rem; }
.contact-cta    { text-align: center; margin-top: 3rem; }
.about-cta      { margin-top: 2rem; }

/* Footer brand stack */
.footer-brand-name {
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.footer-day { color: #fff; }

/* Static (non-clickable) feature cards */
.svc-card.svc-card--static { cursor: default; }
.svc-card.svc-card--static:hover { transform: none; box-shadow: var(--shadow); }
.svc-card.svc-card--static:hover::after { transform: scaleX(0); }

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

/* ============================================================
   22. SCROLL REVEAL — subtle fade-up on entering viewport
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   23. POLISH — small, high-impact tweaks
   ============================================================ */
/* Page hero spacing on inner pages — tighter vertical rhythm */
.page-hero h1 { letter-spacing: -.04em; }
.page-hero .chip { margin-bottom: 1rem; }

/* Hero subtitle text-shadow softer */
.hero-copy h1 { text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-copy p { text-shadow: 0 1px 14px rgba(0,0,0,.4); }

/* Hero floats — nicer position so they don't crash with text */
@media (min-width: 1100px) and (max-width: 1399px) {
  .hero-float.a { top: 20%; right: 4%; }
  .hero-float.b { top: 38%; right: 10%; }
}
@media (min-width: 1400px) {
  .hero-float.a { top: 22%; right: 8%; }
  .hero-float.b { top: 42%; right: 16%; }
}

/* Hero CTAs — subtle hover lift */
.hero-ctas .btn { box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* Service cards: arrow on hover */
.svc-card .go svg { transition: transform .25s var(--ease); }
.svc-card:hover .go { color: var(--ink); }

/* Cars — better fav button visibility */
.fav { box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.fav svg { transition: transform .2s var(--ease); }
.fav:hover svg { transform: scale(1.1); }

/* About KPIs — better visual hierarchy */
.about-kpis div { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.about-kpis div:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Team — hover ring */
.team-card { position: relative; }
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color .25s var(--ease);
  pointer-events: none;
}
.team-card:hover::after { border-color: var(--accent); }

/* Castrol stats — hover highlight */
.castrol-stats li { transition: background .25s var(--ease), border-color .25s var(--ease); }
.castrol-stats li:hover { background: rgba(94,234,212,.06); border-color: rgba(94,234,212,.2); }

/* Cookie banner — refine on mobile */
@media (max-width: 600px) {
  .cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner h3 { font-size: 1rem; }
  .cookie-banner p { font-size: .85rem; }
  .cookie-banner-actions .btn { width: 100%; }
}

/* (Drawer styles now in .drawer-* rules above) */

/* Map embed accent border */
.map-embed { border: 1px solid var(--line); }

/* Better focus states on cards */
.svc-card:focus-visible,
.car:focus-visible,
.team-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Smaller header padding when scrolled */
.hdr.scrolled { padding-top: .5rem; padding-bottom: .5rem; }
.hdr.scrolled .hdr-inner { padding-block: .35rem; }
.hdr.scrolled .brand img { height: 32px; transition: height .3s var(--ease); }
.hdr .brand img { transition: height .3s var(--ease); }

/* Cleaner section connection when stacked */
section + section.is-tint,
section.is-tint + section { border-top: 1px solid transparent; }
section.castrol + .cta-banner,
.cta-banner + section { /* contiguous transitions */ }

/* CTAs in dark sections — focus visibility */
.castrol .btn:focus-visible, .cta-banner .btn:focus-visible { outline-color: #fff; }

/* ============================================================
   23B. CAR DETAIL PAGE
   ============================================================ */
.car-detail {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .car-detail { padding-top: 10rem; padding-bottom: 5rem; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-hidden] { color: var(--line-2); }
.breadcrumb > span:not([aria-hidden]) { color: var(--ink); font-weight: 500; }

/* Main grid */
.car-detail-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .car-detail-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: start;
  }
}

/* Gallery */
.car-detail-gallery { position: relative; }
.cd-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
  box-shadow: var(--shadow-lg);
}
.cd-main picture, .cd-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-tags {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  display: flex;
  gap: .4rem;
  z-index: 2;
}
.cd-tags span {
  padding: .4rem .9rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(11,19,32,.15);
}
.cd-fav {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  z-index: 2;
}
.cd-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .25rem;
}
.cd-thumb {
  flex: 0 0 calc(25% - .45rem);
  min-width: 90px;
  background: var(--surface-soft);
  border: 2px solid transparent;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.cd-thumb:hover { transform: translateY(-2px); }
.cd-thumb.is-active { border-color: var(--accent); }
.cd-thumb picture, .cd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Side panel */
.car-detail-side h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  margin-bottom: .35rem;
  line-height: 1.1;
}
.cd-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Price card */
.cd-price-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cd-price { margin-bottom: 1.5rem; }
.cd-price-big {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.cd-price-sub {
  display: block;
  margin-top: .5rem;
  color: var(--muted);
  font-size: .9rem;
}
.cd-price-sub strong { color: var(--ink); font-weight: 700; }
.cd-cta-row {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.cd-cta-row .btn { width: 100%; justify-content: center; }
.cd-trust {
  display: grid;
  gap: .55rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.cd-trust span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--ink-2);
  font-weight: 500;
}
.cd-trust svg { color: var(--accent); flex-shrink: 0; }

/* Book prøvetur — inline formular-panel i pris-kortet */
.cd-testdrive-panel {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.cd-testdrive-panel[hidden] { display: none; }
.cd-testdrive-panel .contact-form {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cd-testdrive-panel .contact-form .field-group + .field-group { margin-top: 1rem; }
.cd-testdrive-panel .contact-form .btn { margin-top: 1.25rem; }

/* Finance accordion */
.cd-finance {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cd-finance summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: background .2s var(--ease);
}
.cd-finance summary::-webkit-details-marker { display: none; }
.cd-finance summary:hover { background: var(--surface-soft); }
.cd-finance[open] summary { border-bottom: 1px solid var(--line); }
.cd-finance summary svg {
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.cd-finance[open] summary svg { transform: rotate(90deg); }
.cd-finance-body { padding: 1.25rem 1.5rem 1.5rem; }
.cd-finance-body p { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.cd-finance-body table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.cd-finance-body th, .cd-finance-body td { padding: .5rem 0; text-align: left; border-bottom: 1px solid var(--line); }
.cd-finance-body th { color: var(--muted); font-weight: 500; }
.cd-finance-body tr:last-child th, .cd-finance-body tr:last-child td { border-bottom: 0; }

/* Specs grid */
.cd-specs {
  margin-top: 3.5rem;
  padding: 2.25rem 2rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.cd-specs h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.cd-specs-grid {
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.cd-spec {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cd-spec dt {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.cd-spec dd {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.025rem;
  color: var(--ink);
  margin: 0;
}

/* Description + equipment */
.cd-content-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .cd-content-grid { grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
}
.cd-description h2, .cd-equipment h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.cd-description p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
}
.cd-description p:last-child { margin-bottom: 0; }
.cd-description strong { color: var(--ink); }
.cd-description-list {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: .4rem;
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.cd-equipment ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.cd-equipment li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  color: var(--ink-2);
}
.cd-equipment .check {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile detail */
@media (max-width: 600px) {
  .car-detail { padding-top: 6.5rem; padding-bottom: 3rem; }
  .breadcrumb { font-size: .75rem; margin-bottom: 1.25rem; }
  .car-detail-grid { gap: 1.5rem; }
  .car-detail-side h1 { font-size: 1.65rem; }
  .cd-price-big { font-size: 1.875rem; }
  .cd-price-card { padding: 1.5rem; }
  .cd-specs { padding: 1.5rem; margin-top: 2.5rem; }
  .cd-specs h2 { font-size: 1.25rem; }
  .cd-specs-grid { grid-template-columns: 1fr 1fr; gap: .75rem 1rem; }
  .cd-spec dd { font-size: .95rem; }
  .cd-content-grid { margin-top: 2rem; gap: 1.5rem; }
  .cd-description h2, .cd-equipment h2 { font-size: 1.25rem; }
  .cd-description p { font-size: 1rem; }
  .cd-thumbs { display: none; }
}

/* ============================================================
   24. MOBILE — comprehensive pass
   ============================================================ */

/* Touch target safety on touch devices (WCAG 2.5.5) */
@media (pointer: coarse), (max-width: 768px) {
  .btn, .cta-head, .phone-link, .lang-switch a, .nav-drawer a {
    min-height: 44px;
  }
  .menu-btn { width: 44px; height: 44px; }
  .fav { width: 44px; height: 44px; }
}

/* Prevent horizontal overflow */
html, body { overflow-x: hidden; }
img, video, picture, iframe, table { max-width: 100%; }

/* ───── Tiny phones (≤ 380px) ───── */
@media (max-width: 380px) {
  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }
  .hero-copy h1 { font-size: clamp(2.4rem, 12vw, 3rem); letter-spacing: -.02em; }
  .hero-copy p { font-size: 1rem; }
  .hero-trust { gap: .4rem; margin-bottom: 1.25rem; }
  .hero-trust .chip-trust { font-size: .73rem; padding: .45rem .75rem .45rem .5rem; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-badge { font-size: .75rem; padding: .45rem .9rem; }
  h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
}

/* ───── Phones (≤ 600px) ───── */
@media (max-width: 600px) {
  :root { --space: clamp(3.5rem, 8vw, 5rem); }

  .container {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }

  /* Header pill compresses on mobile */
  .hdr {
    padding-top: .75rem;
    padding-left: max(.75rem, env(safe-area-inset-left));
    padding-right: max(.75rem, env(safe-area-inset-right));
  }
  .hdr-inner { padding: .35rem .35rem .35rem 1rem; gap: .5rem; }
  .brand img { height: 32px; }
  .menu-btn { width: 40px; height: 40px; }

  /* Hero — tighter, mobile-friendly */
  .hero-inner { padding-block: 7rem 2.5rem; }
  .hero-top { top: 5.5rem; }
  .hero-badge { font-size: .78rem; }
  .hero-copy h1 {
    font-size: clamp(2.3rem, 9vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
  }
  .hero-copy p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  .hero-trust {
    gap: .45rem;
    margin-bottom: 1.5rem;
  }
  .hero-trust .chip-trust {
    font-size: .75rem;
    padding: .45rem .8rem .45rem .5rem;
  }
  .hero-ctas { gap: .5rem; }
  .hero-ctas .btn {
    flex: 1 1 calc(50% - .25rem);
    min-width: 0;
    justify-content: center;
    padding: .9rem 1rem;
    font-size: .9rem;
  }

  /* Section headers tighter */
  .sec-head { margin-bottom: 2.5rem; }
  .sec-head p { font-size: 1rem; }

  /* Service cards padding tighter */
  .svc-card { padding: 1.5rem; border-radius: var(--r); }
  .svc-card h3 { font-size: 1.1rem; }
  .svc-card p { font-size: .9rem; }
  .svc-foot { padding-top: 1rem; font-size: .8rem; }

  /* Service detail (ydelser-side) */
  .svc-detail { padding: 1.5rem; border-radius: var(--r); }
  .svc-detail-head {
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
  }
  .svc-detail h2 { font-size: 1.25rem; }
  .svc-detail-body { font-size: .95rem; }
  .svc-detail-list { grid-template-columns: 1fr; }
  .svc-detail-list li { font-size: .9rem; }

  /* Cars */
  .cars-grid { gap: 1rem; }
  .car-body { padding: 1.25rem; }
  .car-title { font-size: 1rem; }
  .car-price .kr { font-size: 1.05rem; }
  .car-specs { gap: .5rem; padding-block: .5rem; }
  .car-specs span { font-size: .75rem; }

  /* About */
  .about-grid { gap: 2rem; }
  .about-copy p { font-size: 1rem; }
  .about-kpis {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.5rem;
  }
  .about-kpis div { padding: 1rem; }
  .about-kpis .n { font-size: 1.5rem; }
  .about-kpis .t { font-size: .72rem; }
  .about-kpis div:nth-child(3) {
    grid-column: 1 / -1;
  }

  /* Team */
  .team-grid { gap: 1rem; grid-template-columns: 1fr 1fr; }
  .team-bento-portraits { grid-template-columns: repeat(4, 1fr); }
  .team-bento-hero { height: clamp(120px, 32vw, 200px); }
  .team-info { padding: 1rem 1.1rem 1.25rem; }
  .team-info h3 { font-size: .95rem; }
  .team-info .role { font-size: .68rem; }

  /* Castrol */
  .castrol-inner { gap: 2rem; }
  .castrol-copy > p { font-size: 1rem; }
  .castrol-stats li { padding: 1rem 1.15rem; gap: .85rem; }
  .castrol-stats .ico { width: 36px; height: 36px; }
  .castrol-stats strong { font-size: .95rem; }
  .castrol-stats span { font-size: .85rem; }
  .castrol-visual {
    padding: 2rem 1.5rem;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
  .castrol-logo-img { width: 75%; max-width: 240px; }
  .castrol-partner-label { font-size: .68rem; letter-spacing: .25em; }

  /* CTA banner */
  .cta-inner h2 { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .cta-inner p { font-size: 1rem; margin-bottom: 1.75rem; }
  .cta-inner .btns { gap: .5rem; }
  .cta-inner .btns .btn { flex: 1 1 100%; justify-content: center; }

  /* Contact preview */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .contact-item { padding: 1.25rem; gap: .25rem; }
  .contact-item .ico { width: 36px; height: 36px; margin-bottom: .65rem; }
  .contact-item .ct-label { font-size: .7rem; }
  .contact-item .ct-value { font-size: .9rem; }

  /* Contact form on small screens */
  .contact-form { padding: 1.5rem; border-radius: var(--r); }
  .field input, .field select, .field textarea { padding: .75rem .85rem; font-size: 16px; /* prevents iOS zoom on focus */ }
  .contact-side .box { padding: 1.5rem; }

  /* Page hero (inner pages) */
  .page-hero {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .page-hero p { font-size: 1rem; }

  /* Footer */
  .site-footer { padding-block: 3rem 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
  .footer-bottom { font-size: .8rem; flex-direction: column; align-items: flex-start; }

  /* Cookie banner */
  .cookie-banner { inset: auto .75rem .75rem .75rem; padding: 1rem 1.25rem; border-radius: var(--r); }
  .cookie-banner h3 { font-size: 1rem; }
  .cookie-banner p { font-size: .85rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 100%; }

  /* Drawer mobile refinements */
  .drawer-header { padding: 1rem 1.25rem; }
  .drawer-brand-name { font-size: 1rem; }
  .drawer-brand img { height: 36px; }
  .drawer-nav { padding-top: 1rem; }
  .drawer-nav a { padding: 1rem 1.25rem; font-size: 1.2rem; }
  .drawer-foot { padding: 1.25rem; gap: .5rem; }

  /* Map embed smaller aspect */
  .map-embed { aspect-ratio: 16 / 11; }

  /* 404 */
  .error-404 .big { font-size: clamp(5rem, 24vw, 7rem); }
  .error-404 .btns { width: 100%; }
  .error-404 .btns .btn { flex: 1 1 100%; justify-content: center; }
}

/* ───── Tablets (601 — 900px) ───── */
@media (min-width: 601px) and (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-bento-portraits { grid-template-columns: repeat(4, 1fr); }
  .about-kpis { grid-template-columns: repeat(3, 1fr); }
  .hero-copy h1 { font-size: clamp(3rem, 8vw, 5rem); }
  .castrol-visual { aspect-ratio: 16 / 10; max-width: 480px; }
}

/* ───── Reduce motion fallbacks for hover-only effects ───── */
@media (hover: none) {
  .svc-card:hover, .car:hover, .team-card:hover, .feature-card:hover,
  .about-kpis div:hover, .contact-item:hover {
    transform: none;
  }
  .svc-card:hover::after { transform: scaleX(0); }
  .car:hover .car-img img, .team-card:hover .team-photo img { transform: none; }
}

/* Disable expensive backdrop-filter on low-end devices to keep scroll fps */
@media (max-width: 600px) {
  .hdr-inner {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* Scroll-snap for car list on mobile (optional polish) */
@media (max-width: 600px) {
  .cars-grid {
    scroll-snap-type: y mandatory;
  }
  .car { scroll-snap-align: start; }
}

/* ============================================================
   25. MOBILE — final polish (overrides all above)
   ============================================================ */

/* iOS / Android safe-area + remove tap-highlight blue flash.
   Safe-area handled per-element to avoid additive padding conflicts. */
html { -webkit-tap-highlight-color: transparent; }
.car-link:focus { outline: none; }
.car-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: var(--r-lg); }

/* Smooth scroll-padding aligned with actual header height on mobile */
@media (max-width: 1023px) { html { scroll-padding-top: 80px; } }
@media (max-width: 600px)  { html { scroll-padding-top: 72px; } }

/* ───── Hero refinements for mobile ───── */
@media (max-width: 600px) {
  /* Smarter hero height — let content drive minimum so we always fit */
  .hero {
    min-height: auto;
    min-height: clamp(580px, 90vh, 100dvh);
  }
  .hero-inner { padding-block: 6.5rem 2.5rem; }
  .hero-top { top: 5.25rem; padding: 0 1rem; }
  .hero-badge {
    font-size: .7rem;
    padding: .42rem .85rem;
    letter-spacing: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.5rem);
    line-height: 1.02;
    margin-bottom: .9rem;
    text-shadow: 0 2px 22px rgba(0,0,0,.45);
  }
  .hero-copy p {
    font-size: .975rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 12px rgba(0,0,0,.5);
  }
  /* Trust-chips two per row max for cleaner mobile look */
  .hero-trust { gap: .4rem; margin-bottom: 1.25rem; }
  .hero-trust .chip-trust {
    font-size: .72rem;
    padding: .42rem .75rem .42rem .42rem;
    gap: .45rem;
  }
  .hero-trust .chip-trust .ic { width: 22px; height: 22px; }
  /* CTAs: STACK vertically on phones — better tap targets, no cramped text */
  .hero-ctas { gap: .55rem; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn {
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
    padding: .95rem 1.1rem;
    font-size: .95rem;
  }
  /* Mobile scrim: lighter top, transparent middle so video is visible,
     dark bottom only behind CTAs for text contrast */
  .hero-scrim {
    background:
      radial-gradient(ellipse 70% 50% at 20% 90%, rgba(15,118,110,.35), transparent 65%),
      linear-gradient(180deg,
        rgba(11,19,32,.25) 0%,
        rgba(11,19,32,0) 18%,
        rgba(11,19,32,0) 45%,
        rgba(11,19,32,.35) 70%,
        rgba(11,19,32,.85) 100%);
  }
}

/* ───── Header refinements ───── */
@media (max-width: 600px) {
  .hdr { padding-top: .75rem; }
  .hdr-inner {
    padding: .35rem .35rem .35rem 1rem;
    gap: .4rem;
    border-radius: 999px;
  }
  .brand img { height: 30px; }
  /* Compact phone-pill — show only icon under 360px viewport */
  @media (max-width: 360px) {
    .hdr-right .lang-switch { display: none; }
  }
}

/* ───── About / Team / Castrol refinements ───── */
@media (max-width: 600px) {
  .about-visual { aspect-ratio: 4 / 3; }
  .about-kpis div:nth-child(3) { grid-column: 1 / -1; }
  .castrol-visual { padding: 1.75rem 1.25rem; max-width: 100%; aspect-ratio: 16 / 11; }
  .castrol-logo-img { width: 78%; max-width: 230px; }
  .castrol::before, .castrol::after { width: 380px; height: 380px; }
}

/* ───── Section transitions tighter on mobile ───── */
@media (max-width: 600px) {
  .sec-after-hero { padding-top: 1rem !important; }
  .sec-cta        { margin-top: 2.5rem; }
  .sec-bare       { padding-block: 1.5rem !important; }
}

/* ───── Cars section + cards ───── */
@media (max-width: 600px) {
  .cars-filters { padding: 1rem 1.15rem; gap: .9rem; }
  .cars-filter { min-width: 0; flex: 1 1 calc(50% - .45rem); }
  .cars-filter select { font-size: 16px; padding: .7rem .75rem; } /* 16px forhindrer iOS-zoom ved fokus */
  .cars-filter-reset { flex-basis: 100%; text-align: left; padding-top: 0; }
  .cars-grid { gap: .9rem; scroll-snap-type: none; }
  .car-img { aspect-ratio: 16 / 11; }
  .car-link { -webkit-tap-highlight-color: transparent; }
  .car-tags span, .cd-tags span { font-size: .65rem; padding: .28rem .65rem; }
  .fav { width: 38px; height: 38px; top: .85rem; right: .85rem; }
  .car-body { padding: 1.1rem 1.15rem 1.25rem; }
  .car-specs { gap: .55rem; padding-block: .65rem; }
  .car-specs span { font-size: .76rem; }
  .car-title { font-size: 1rem; line-height: 1.2; }
  .car-sub { font-size: .82rem; margin-bottom: .75rem; }
  .car-price .kr { font-size: 1rem; }
  .car-price .kr small { font-size: .68rem; }
  .car-price .go { font-size: .78rem; }
}

/* ───── Single car detail page mobile ───── */
@media (max-width: 600px) {
  .car-detail { padding-top: 5.5rem; padding-bottom: 2rem; }
  .breadcrumb { font-size: .72rem; margin-bottom: 1rem; }
  .car-detail-grid { gap: 1.25rem; }
  .cd-main { aspect-ratio: 16 / 12; border-radius: var(--r); }
  .cd-tags { top: .85rem; left: .85rem; }
  .cd-fav { top: .85rem; right: .85rem; }
  .car-detail-side h1 { font-size: 1.5rem; margin-bottom: .25rem; }
  .cd-sub { font-size: .95rem; margin-bottom: 1.1rem; }
  .cd-price-card { padding: 1.25rem; border-radius: var(--r); }
  .cd-price-big { font-size: 1.65rem; }
  .cd-price-sub { font-size: .82rem; }
  .cd-cta-row { gap: .5rem; }
  .cd-trust span { font-size: .8rem; }
  .cd-finance summary { padding: .95rem 1.15rem; font-size: .9rem; }
  .cd-finance-body { padding: 1rem 1.15rem 1.25rem; }
  .cd-finance-body table { font-size: .82rem; }
  .cd-specs { margin-top: 2rem; padding: 1.25rem; border-radius: var(--r); }
  .cd-specs h2 { font-size: 1.15rem; margin-bottom: 1rem; }
  .cd-specs-grid { grid-template-columns: 1fr 1fr; gap: .75rem .85rem; }
  .cd-spec { padding-bottom: .75rem; }
  .cd-spec dt { font-size: .68rem; letter-spacing: .04em; }
  .cd-spec dd { font-size: .9rem; }
  .cd-content-grid { margin-top: 1.5rem; gap: 1.25rem; }
  .cd-description h2, .cd-equipment h2 { font-size: 1.15rem; margin-bottom: .85rem; }
  .cd-description p { font-size: .95rem; line-height: 1.6; }
  .cd-description-list { font-size: .95rem; }
  .cd-equipment li { font-size: .88rem; }
}

/* ───── Service cards on phones ───── */
@media (max-width: 600px) {
  .svc-grid { gap: .75rem; }
  .svc-card { padding: 1.4rem 1.35rem; border-radius: var(--r); }
  .svc-card h3 { font-size: 1.075rem; }
  .svc-card p { font-size: .9rem; line-height: 1.5; }
  .svc-foot { padding-top: .85rem; font-size: .78rem; }
  .svc-ico { width: 44px; height: 44px; margin-bottom: 1rem; }
  .svc-ico svg { width: 20px; height: 20px; }
}

/* ───── Contact form mobile polish ───── */
@media (max-width: 600px) {
  .contact-form { padding: 1.4rem; border-radius: var(--r); }
  .contact-form .field-group + .field-group { margin-top: 1rem; }
  .field-group { gap: 1rem; }
  .field label { font-size: .85rem; }
  .field input, .field select, .field textarea {
    padding: .85rem 1rem;
    font-size: 16px; /* prevents iOS zoom */
    border-radius: var(--r-sm);
  }
  .contact-form .btn { padding: 1rem; font-size: .95rem; }
  .contact-page { gap: 1.5rem; }
  .contact-side .box { padding: 1.4rem; border-radius: var(--r); }
  .contact-side dl { gap: .4rem .85rem; font-size: .85rem; }
}

/* ───── Page hero on mobile — tightenes ───── */
@media (max-width: 600px) {
  .page-hero { padding-top: 6rem; padding-bottom: 1.5rem; }
  .page-hero h1 { font-size: clamp(1.875rem, 8vw, 2.5rem); margin: .75rem 0 .65rem; }
  .page-hero p { font-size: .95rem; }
}

/* ───── Section header on mobile ───── */
@media (max-width: 600px) {
  .sec-head { margin-bottom: 2rem; }
  .sec-head h2 { margin: .75rem 0; font-size: clamp(1.625rem, 7.5vw, 2.25rem); }
  .sec-head p { font-size: .95rem; line-height: 1.55; }
}

/* ───── CTA banner mobile ───── */
@media (max-width: 600px) {
  .cta-inner h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); margin: .85rem 0 1rem; }
  .cta-inner p { font-size: .95rem; margin-bottom: 1.5rem; }
  .cta-inner .btns { flex-direction: column; align-items: stretch; }
  .cta-inner .btns .btn { width: 100%; justify-content: center; }
}

/* ───── Contact preview cards on mobile ───── */
@media (max-width: 600px) {
  .contact-grid { gap: .75rem; }
  .contact-item { padding: 1.15rem; border-radius: var(--r); }
  .contact-item .ico { width: 36px; height: 36px; margin-bottom: .6rem; border-radius: 10px; }
  .contact-item .ct-label { font-size: .68rem; }
  .contact-item .ct-value { font-size: .88rem; line-height: 1.35; }
}

/* ───── Footer bottom stack cleanly on mobile ───── */
@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    font-size: .78rem;
  }
  .footer-legal-links { display: flex; flex-wrap: wrap; gap: .35rem; }
  .footer-credit { font-size: .78rem; }
}

/* ───── Reduce animation cost on mobile ───── */
@media (max-width: 600px) {
  .reveal { transition-duration: .5s; transform: translateY(16px); }
  .hero-floats { display: none !important; }
}

/* ───── Cookie banner — better positioning on mobile ───── */
@media (max-width: 600px) {
  .cookie-banner {
    inset: auto .65rem .65rem .65rem;
    padding: 1rem 1.15rem;
    border-radius: var(--r);
  }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: .85rem; }
  .cookie-banner h3 { font-size: .98rem; }
  .cookie-banner p { font-size: .82rem; line-height: 1.5; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { width: 100%; padding: .7rem 1.2rem; font-size: .85rem; }
}

/* (Drawer mobile-rules consolidated into main drawer block above) */

/* ───── Map embed taller on mobile so it doesn't feel cramped ───── */
@media (max-width: 600px) {
  .map-embed { aspect-ratio: 4 / 3; border-radius: var(--r); }
}

/* ───── Final phone-link visible above 1024px not 1200px — keep mobile clean ───── */
@media (min-width: 1024px) and (max-width: 1199px) {
  .phone-link { display: inline-flex; padding: .5rem .7rem; font-size: .82rem; gap: .35rem; }
}

/* ============================================================
   21. SALES LOCATION (Strandvejen)
   ============================================================ */

.sales-location {
  padding: var(--sec-pad) 0;
  background: var(--surface);
}

.sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sales-copy .chip { margin-bottom: 1rem; }

.sales-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--ink);
}

.sales-lead {
  color: var(--ink-60);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.sales-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sales-details li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .95rem;
  color: var(--ink-80);
}

.sales-details li svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--accent);
}

.sales-details li span {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  line-height: 1.45;
}

.sales-details li strong {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.sales-details a {
  color: var(--accent);
  text-decoration: none;
}
.sales-details a:hover { text-decoration: underline; }

.sales-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
}

.sales-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact page — sales box */
.box-sales { border-top: 2px solid var(--accent-10, rgba(var(--accent-rgb, 0,80,80),.1)); }
.box-sales h3 { color: var(--accent); }
.box-sales .btn-sm {
  margin-top: .75rem;
  font-size: .82rem;
  padding: .45rem 1rem;
}

/* Footer sales separator + label */
.footer-sales-sep {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: .6rem 0 .4rem;
  display: block;
  list-style: none;
}
.footer-sales-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .55;
}
.footer-sales-hours {
  font-size: .82rem;
  opacity: .7;
}

/* Responsive */
@media (max-width: 860px) {
  .sales-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sales-map {
    aspect-ratio: 16 / 9;
    order: -1;
  }
}

@media (max-width: 600px) {
  .sales-map { aspect-ratio: 4 / 3; border-radius: var(--r); }
  .sales-details li { font-size: .88rem; }
}

/* ============================================================
   22. PRINT
   ============================================================ */
@media print {
  .hdr, .site-footer, .cookie-banner, .hero-bg, .hero-scrim, .hero-floats, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
