/* =========================================================================
   Jensens Motorcykler A/S — hovedstilark
   Palette: dyb marineblå #0F1E33 + signal-rød #E63329
   Typografi: Space Grotesk (headings), Inter (body)
   Skala: 4px grid, container 1280px, 96px section padding desktop
   ========================================================================= */

:root {
    /* Brand */
    --navy-900: #0A1626;
    --navy-800: #0F1E33;
    --navy-700: #1A2E4A;
    --navy-600: #243C5C;
    --navy-500: #36506F;

    --red-700:  #B82A24;
    --red-600:  #E63329;
    --red-500:  #FF4A40;

    --bg:       #FFFFFF;
    --bg-soft:  #F5F7FA;
    --bg-card:  #FFFFFF;
    --line:     #D6DCE5;
    --ink-900:  #0F1A2A;
    --ink-700:  #364963;
    --ink-500:  #6B7B92;
    --ink-300:  #A3AEBF;

    --shadow-sm: 0 1px 2px rgba(15, 30, 51, .06), 0 1px 1px rgba(15, 30, 51, .04);
    --shadow:    0 4px 12px rgba(15, 30, 51, .08), 0 2px 4px rgba(15, 30, 51, .05);
    --shadow-lg: 0 20px 40px rgba(15, 30, 51, .12), 0 10px 20px rgba(15, 30, 51, .06);

    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --maxw: 1280px;
    --gutter: clamp(16px, 4vw, 32px);
    --section-y: clamp(48px, 9vw, 96px);

    --t-h1: clamp(36px, 5.4vw, 64px);
    --t-h2: clamp(28px, 3.8vw, 44px);
    --t-h3: clamp(22px, 2.6vw, 28px);
    --t-lead: clamp(18px, 1.6vw, 21px);
    --t-body: 17px;
    --t-small: 14px;

    --ease: cubic-bezier(.2, .8, .2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: var(--t-body);
    line-height: 1.6;
    color: var(--ink-900);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red-600); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    line-height: 1.15;
    margin: 0 0 .4em;
    color: var(--navy-900);
    letter-spacing: -.01em;
}
h1 { font-size: var(--t-h1); font-weight: 700; }
h2 { font-size: var(--t-h2); font-weight: 600; }
h3 { font-size: var(--t-h3); font-weight: 600; }
p  { margin: 0 0 1em; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--navy-700);
}
.eyebrow::before {
    content: "";
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--red-600);
    flex: 0 0 auto;
}

/* Knapper */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    min-height: 48px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 17px; min-height: 56px; }
.btn-sm { padding: 10px 16px; font-size: 14px; min-height: 40px; }

.btn-primary { background: var(--red-600); color: #fff; }
.btn-primary:hover { background: var(--red-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-secondary { background: var(--navy-800); color: #fff; }
.btn-secondary:hover { background: var(--navy-900); color: #fff; transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

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

.btn-link { background: transparent; color: var(--navy-900); padding: 0 8px; min-height: 32px; border-radius: 8px; }
.btn-link:hover { color: var(--red-600); background: rgba(230, 51, 41, .06); }

/* =========================================================================
   HEADER
   ========================================================================= */

.topbar {
    background: var(--navy-900);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar__items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    opacity: .85;
}
.topbar__item:hover { opacity: 1; color: #fff; }
.topbar__demo {
    background: var(--red-600);
    color: #fff;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy-900);
}
.site-header__logo-img {
    height: 56px;
    width: auto;
    max-height: 56px;
    display: block;
}
@media (max-width: 720px) {
    .site-header__logo-img { height: 44px; }
}
.site-header__logo-mark {
    width: 40px; height: 40px;
    background: var(--navy-900);
    color: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.02em;
}
.site-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}
.site-nav__item {
    position: relative;
}
.site-nav__link {
    padding: 10px 14px;
    font-weight: 500;
    border-radius: 8px;
    color: var(--navy-900);
    display: inline-flex;
    align-items: center;
}
.site-nav__link:hover { background: var(--bg-soft); color: var(--red-600); }
.site-nav__link.is-active { color: var(--red-600); }
.site-nav__item.has-dropdown:hover > .site-nav__link,
.site-nav__item.has-dropdown:focus-within > .site-nav__link {
    background: var(--bg-soft);
    color: var(--red-600);
}
.site-nav__submenu {
    list-style: none;
    padding: 8px;
    margin: 0;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
    z-index: 60;
}
.site-nav__item.has-dropdown:hover .site-nav__submenu,
.site-nav__item.has-dropdown:focus-within .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site-nav__submenu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px; height: 12px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
}
.site-nav__submenu li { margin: 0; }
.site-nav__submenu-link {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-900);
}
.site-nav__submenu-link:hover { background: var(--bg-soft); color: var(--red-600); }
.site-nav__submenu-link.is-active { color: var(--red-600); background: rgba(230, 51, 41, .08); }
.site-header__cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
    color: var(--navy-900);
}

/* Mobil-drawer */
.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 90vw);
    background: #fff;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transform: translateX(100%);
    transition: transform .25s var(--ease);
    display: none;
    visibility: hidden;
    pointer-events: none;
    flex-direction: column;
    padding: 24px;
}
.drawer.is-open {
    transform: translateX(0);
}
.drawer__close {
    align-self: flex-end;
    background: none;
    border: 0;
    padding: 10px;
}
.drawer__nav { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.drawer__top {
    padding: 14px 12px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    color: var(--navy-900);
    border-bottom: 1px solid var(--line);
}
.drawer__top:hover { background: var(--bg-soft); }
.drawer__sub {
    display: flex;
    flex-direction: column;
    padding: 4px 0 12px 16px;
    border-left: 2px solid var(--line);
    margin-left: 12px;
    margin-bottom: 8px;
}
.drawer__sub-link {
    padding: 10px 12px;
    font-size: 15px;
    color: var(--ink-700);
    border-radius: 8px;
}
.drawer__sub-link:hover { background: var(--bg-soft); color: var(--red-600); }
.drawer__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 38, .5);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    color: #fff;
    overflow: hidden;
    padding: clamp(56px, 9vw, 96px) 0 clamp(32px, 5vw, 56px);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(230, 51, 41, .15) 0%, transparent 55%);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero__title {
    color: #fff;
    font-size: var(--t-h1);
    font-weight: 700;
    margin: 0 0 24px;
}
.hero__title .accent { color: var(--red-500); }
.hero__lead {
    font-size: var(--t-lead);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px;
    max-width: 56ch;
}
.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero__trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero__trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .9);
}
.hero__trust-item svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--red-500);
}
.hero__trust-item strong { display: block; color: #fff; font-weight: 600; }
.hero__trust-item span { font-size: 14px; color: rgba(255, 255, 255, .7); }

.hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy-700);
    box-shadow: var(--shadow-lg);
}
.hero__visual::after {
    content: "Billede: Showroom eller motorcykel · VERIFICERES";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .35);
    font-size: 14px;
    padding: 16px;
    text-align: center;
}

/* =========================================================================
   TRUST-BAR
   ========================================================================= */

.trustbar {
    background: var(--navy-900);
    color: #fff;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.trustbar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center;
}
.trustbar__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 16px;
}
.trustbar__brand-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

/* =========================================================================
   SEKTION GENERELT
   ========================================================================= */

.section {
    padding: var(--section-y) 0;
}
.section--dark {
    background: var(--navy-900);
    color: #fff;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--soft { background: var(--bg-soft); }

.section__head {
    margin-bottom: clamp(32px, 5vw, 56px);
    max-width: 720px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 100%;
    gap: 24px;
    flex-wrap: wrap;
}
.section__title { margin-bottom: 12px; }
.section__lead { font-size: var(--t-lead); color: var(--ink-700); margin: 0; }

/* INTRO */
.intro__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.intro__features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: grid;
    gap: 12px;
}
.intro__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.intro__features svg { color: var(--red-600); flex: 0 0 auto; margin-top: 4px; }
.intro__fakta {
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 24px;
}
.intro__fakta-item strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--red-500);
    line-height: 1;
    margin-bottom: 4px;
}
.intro__fakta-item span { color: rgba(255, 255, 255, .8); font-size: 15px; }

/* BRAND-KORT */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .15s var(--ease), transform .15s var(--ease), box-shadow .15s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--navy-900);
}
.brand-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy-800);
    box-shadow: var(--shadow);
    color: var(--navy-900);
}
.brand-card__mark {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 22px;
}
.brand-card__name { font-size: 22px; margin: 0; }
.brand-card__tagline { font-size: 14px; color: var(--ink-700); margin: 0; }
.brand-card__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--red-600);
    font-weight: 600;
    font-size: 14px;
}

/* MOTORCYKEL-KORT */
.bike-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bike-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .15s var(--ease), box-shadow .15s var(--ease);
    color: var(--navy-900);
}
.bike-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--navy-900);
}
.bike-card__media {
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.bike-card__media::after {
    content: attr(data-placeholder);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--ink-300);
    font-size: 13px;
    padding: 12px;
    text-align: center;
}
.bike-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    position: relative; z-index: 1;
}
.bike-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--navy-900);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    z-index: 2;
}
.bike-card__badge--ny { background: var(--red-600); }
.bike-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bike-card__brand {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-500);
}
.bike-card__name { font-size: 19px; margin: 0; }
.bike-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-700);
}
.bike-card__meta li::before {
    content: "•";
    color: var(--ink-300);
    margin-right: 8px;
}
.bike-card__meta li:first-child::before { content: ""; margin: 0; }
.bike-card__foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bike-card__price { font-family: "Space Grotesk", sans-serif; font-weight: 600; color: var(--navy-900); font-size: 18px; }
.bike-card__link { color: var(--red-600); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* KATEGORI-BÅND (nye/brugte) */
.cat-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.cat-card {
    position: relative;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    background: var(--navy-900);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .15s var(--ease);
}
.cat-card:hover { transform: translateY(-2px); color: #fff; }
.cat-card--brugte { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.cat-card--nye { background: linear-gradient(135deg, var(--red-700), var(--red-600)); }
.cat-card h3 { color: #fff; }
.cat-card p { color: rgba(255, 255, 255, .85); margin: 0 0 16px; }

/* HVORFOR OS */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    text-align: left;
}
.why-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(230, 51, 41, .1);
    color: var(--red-600);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}
.why-card h3 { font-size: 18px; margin: 0 0 8px; }
.why-card p { font-size: 15px; color: var(--ink-700); margin: 0; }

/* OPKØB-CTA-BÅND */
.opkoeb-band {
    background: var(--red-600);
    color: #fff;
    padding: clamp(48px, 8vw, 80px) 0;
}
.opkoeb-band__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}
.opkoeb-band h2 { color: #fff; }
.opkoeb-band p { color: rgba(255, 255, 255, .9); }
.opkoeb-band .btn-secondary { background: #fff; color: var(--red-600); }
.opkoeb-band .btn-secondary:hover { background: var(--navy-900); color: #fff; }
.opkoeb-band .btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, .5); }

/* VÆRKSTED */
.vaerksted__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.vaerksted__brands {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 24px;
}
.vaerksted__brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
}
.vaerksted__brand-chip-dot { width: 8px; height: 8px; border-radius: 50%; }

.vaerksted__visual {
    aspect-ratio: 5 / 4;
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    position: relative;
}
.vaerksted__visual::after {
    content: "Billede: Eget værksted · VERIFICERES";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .35);
    font-size: 13px;
    padding: 16px;
    text-align: center;
}

/* REVIEWS */
.reviews__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 15px;
}
.reviews__badge strong { color: var(--navy-900); }
.reviews__stars { color: #FFA500; letter-spacing: 2px; }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}
.review-card__stars { color: #FFA500; letter-spacing: 2px; font-size: 18px; margin-bottom: 12px; }
.review-card__text { color: var(--ink-700); font-size: 15px; margin: 0 0 16px; }
.review-card__author { display: flex; gap: 12px; align-items: center; }
.review-card__author-avatar {
    width: 36px; height: 36px;
    background: var(--navy-800);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 14px;
}
.review-card__author-name { font-weight: 600; font-size: 14px; }
.review-card__author-source { font-size: 12px; color: var(--ink-500); }

/* LOKAL-KONTAKT */
.local-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}
.local-contact__info {
    background: var(--navy-900);
    color: #fff;
    padding: clamp(32px, 5vw, 48px);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.local-contact__info h2 { color: #fff; }
.local-contact__row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.local-contact__row svg { color: var(--red-500); flex: 0 0 auto; margin-top: 4px; }
.local-contact__row strong { display: block; color: #fff; font-weight: 600; }
.local-contact__row span, .local-contact__row a { color: rgba(255, 255, 255, .8); }
.local-contact__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; }
.local-contact__map {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    min-height: 360px;
    display: grid;
    place-items: center;
    color: var(--ink-500);
    font-size: 14px;
    padding: 24px;
    text-align: center;
}

/* FAQ */
.faq {
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 0;
    transition: border-color .15s var(--ease);
}
.faq-item[open] { border-color: var(--navy-800); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--navy-900);
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: var(--red-600);
    font-weight: 400;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
    padding: 0 24px 20px;
    color: var(--ink-700);
}
.faq-item__body p:last-child { margin-bottom: 0; }

/* FINAL-CTA */
.final-cta {
    background: var(--navy-900);
    color: #fff;
    padding: clamp(64px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(230, 51, 41, .2) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta__inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255, 255, 255, .8); font-size: var(--t-lead); margin-bottom: 32px; }
.final-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* FOOTER */
.site-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .8);
    padding: 64px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.site-footer__col h3 { color: #fff; font-size: 16px; font-family: "Inter", sans-serif; font-weight: 600; margin-bottom: 16px; }
.site-footer__brand { font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 16px; display: block; }
.site-footer__about { font-size: 14px; max-width: 320px; }
.site-footer__nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer__legal a { color: rgba(255, 255, 255, .7); margin-right: 16px; }
.site-footer__legal a:hover { color: #fff; }

/* STICKY MOBIL CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px;
    box-shadow: 0 -4px 12px rgba(15, 30, 51, .08);
    z-index: 70;
    gap: 8px;
}
.mobile-cta .btn { flex: 1; padding: 12px; font-size: 14px; min-height: 44px; }

/* FLOATING DESKTOP CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.floating-cta .btn {
    box-shadow: var(--shadow-lg);
}
.floating-cta__write {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 38px;
}
.floating-cta__call {
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    min-height: 52px;
    box-shadow: 0 8px 20px rgba(230, 51, 41, .35), 0 2px 6px rgba(15, 30, 51, .15);
}
.floating-cta__call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 51, 41, .45), 0 4px 8px rgba(15, 30, 51, .2);
}

/* COOKIE-BANNER */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 100;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    max-width: 720px;
    margin: 0 auto;
}
.cookie-banner__title { font-size: 18px; margin: 0 0 8px; }
.cookie-banner__text { font-size: 14px; color: var(--ink-700); margin: 0 0 16px; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 10px 16px; min-height: 40px; font-size: 14px; }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; font-size: 14px; color: var(--ink-500); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "/"; color: var(--ink-300); }
.breadcrumb a:hover { color: var(--red-600); }
.breadcrumb [aria-current="page"] { color: var(--navy-900); font-weight: 500; }

/* FILTER (på kataloghub) */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.filter-chip {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: #fff;
    font-weight: 500;
    font-size: 14px;
    color: var(--navy-900);
    transition: all .15s var(--ease);
}
.filter-chip:hover { border-color: var(--navy-800); }
.filter-chip.is-active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* FORM */
.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 28px);
}
.form__head {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.form__head .eyebrow { display: inline-flex; margin-bottom: 8px; }
.form__head h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--navy-900);
}
.form__head p { font-size: 14px; color: var(--ink-700); margin: 0; }
.form__row { margin-bottom: 10px; }
.form__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.form__row label { display: block; font-weight: 500; font-size: 13px; margin-bottom: 4px; color: var(--navy-900); }
.form__row input,
.form__row select,
.form__row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    background: #fff;
    color: var(--navy-900);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
    outline: none;
    border-color: var(--red-600);
    box-shadow: 0 0 0 3px rgba(230, 51, 41, .12);
}
.form__row textarea { min-height: 96px; resize: vertical; }
.form__row.has-error input,
.form__row.has-error select,
.form__row.has-error textarea { border-color: var(--red-600); }
.form__error { color: var(--red-600); font-size: 13px; margin-top: 4px; }
.form__consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 10px 0;
    font-size: 13px;
    color: var(--ink-700);
}
.form__consent input { width: auto; margin-top: 4px; }
.form__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__success {
    background: rgba(34, 139, 34, .08);
    border: 1px solid rgba(34, 139, 34, .3);
    color: #1B5E20;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

/* MODELSIDE */
.modelpage__hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    padding-bottom: var(--section-y);
}
.modelpage__gallery {
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    position: relative;
}
.modelpage__gallery::after {
    content: attr(data-placeholder);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--ink-300);
    text-align: center;
    padding: 16px;
}
.modelpage__info h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.modelpage__brand { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); margin-bottom: 8px; }
.modelpage__price { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 32px; color: var(--navy-900); margin: 16px 0; }
.modelpage__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.modelpage__meta-chip { padding: 6px 12px; background: var(--bg-soft); border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; }
.modelpage__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.modelpage__specs {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--section-y) 0;
}
.modelpage__specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; max-width: 880px; }
.modelpage__specs-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.modelpage__specs-row dt { color: var(--ink-500); }
.modelpage__specs-row dd { margin: 0; color: var(--navy-900); font-weight: 500; }

/* TYPO/MISC */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.text-accent { color: var(--red-600); }
.text-muted { color: var(--ink-500); }
.divider { height: 1px; background: var(--line); margin: 32px 0; border: 0; }

/* SR-only */
.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;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy-900);
    color: #fff;
    padding: 12px 16px;
    z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }
