/* ============================================================
   PURPLE REN · purpleren.dk
   Design system: committed purple on Scandinavian light paper.
   Type: Bricolage Grotesque (display) / Schibsted Grotesk (body)
   ============================================================ */

:root {
  /* color */
  --paper: oklch(97.5% 0.008 320);
  --paper-2: oklch(94.8% 0.018 320);
  --ink: oklch(25% 0.035 322);
  --ink-soft: oklch(42% 0.03 322);
  --purple: #6f1586;                       /* exact brand */
  --purple-oklch: oklch(41% 0.19 322);
  --purple-deep: oklch(31% 0.135 322);
  --purple-dusk: oklch(21% 0.075 322);
  --purple-bright: oklch(56% 0.22 322);
  --lilac: oklch(78% 0.10 320);
  --lilac-soft: oklch(87% 0.055 320);
  --lilac-faint: oklch(93% 0.03 320);
  --white-warm: oklch(98.8% 0.004 320);

  /* type */
  --font-display: "Bricolage Grotesque", "Schibsted Grotesk", sans-serif;
  --font-body: "Schibsted Grotesk", system-ui, sans-serif;
  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.4vw, 2.3rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.8vw, 3.6rem);
  --text-hero: clamp(3rem, 1.6rem + 8vw, 8.2rem);

  /* rhythm */
  --space-section: clamp(4rem, 3rem + 4.5vw, 6.5rem);
  --wrap: 1200px;
  --radius: 12px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.wrap--narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--purple); color: var(--white-warm);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--purple-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--purple); color: var(--white-warm); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.75rem; border-radius: 999px;
  text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease-out), background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.45s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--light { background: var(--white-warm); color: var(--purple); }
.btn--light:hover { box-shadow: 0 10px 30px oklch(15% 0.06 322 / 0.45); }

.btn--ghost { background: transparent; color: var(--white-warm); border-color: oklch(100% 0 0 / 0.35); }
.btn--ghost:hover { border-color: oklch(100% 0 0 / 0.8); background: oklch(100% 0 0 / 0.06); }

.btn--purple { background: var(--purple); color: var(--white-warm); }
.btn--purple:hover { background: var(--purple-deep); box-shadow: 0 12px 32px oklch(41% 0.19 322 / 0.35); }

.btn--nav { padding: 0.6rem 1.3rem; font-size: 0.92rem; background: var(--white-warm); color: var(--purple); }
.nav--solid .btn--nav { background: var(--purple); color: var(--white-warm); }

/* ============ NAV ============ */

.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background-color 0.4s, box-shadow 0.4s, transform 0.45s var(--ease-out);
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo { margin-right: auto; display: grid; }
.nav__logo-img { grid-area: 1 / 1; width: clamp(130px, 14vw, 176px); height: auto; transition: opacity 0.35s; }
.nav__logo-img--purple { opacity: 0; }
.nav--solid { background: oklch(97.5% 0.008 320 / 0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 oklch(41% 0.19 322 / 0.12); }
.nav--solid .nav__logo-img--white, .nav--open .nav__logo-img--white { opacity: 0; }
.nav--solid .nav__logo-img--purple, .nav--open .nav__logo-img--purple { opacity: 1; }
.nav--hidden { transform: translateY(-100%); }

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  text-decoration: none; font-size: 0.94rem; font-weight: 500;
  color: var(--white-warm); position: relative; padding-block: 0.25rem;
}
.nav--solid .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 7px;
}
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--white-warm); transition: transform 0.35s var(--ease-out), background-color 0.3s; }
.nav--solid .nav__burger span, .nav--open .nav__burger span { background: var(--ink); }
.nav--open .nav__burger span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav--open .nav__burger span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3rem); font-weight: 600;
  text-decoration: none; color: var(--ink); padding-block: 0.3rem;
}
.mobile-menu nav a:hover { color: var(--purple); }
.mobile-menu__cta { color: var(--purple) !important; }
.mobile-menu__meta { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__meta a { color: var(--ink-soft); text-decoration: none; }

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

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(120% 90% at 70% 20%, var(--purple-deep), var(--purple-dusk) 70%);
  color: var(--white-warm); overflow: hidden;
  padding: clamp(6rem, 12vh, 9rem) 0 4rem;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.55; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); width: 100%; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lilac);
}
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 12px var(--purple-bright); }

.hero__title {
  font-size: clamp(2.3rem, 1.1rem + 5.4vw, 5.9rem); font-weight: 700; letter-spacing: -0.03em;
  margin: 1.2rem 0 1.6rem; max-width: 22ch; line-height: 1.04;
}
.hero__line { display: block; overflow: hidden; }
.hero__word { display: inline-block; }
.hero__line--em { color: var(--white-warm); font-style: italic; font-weight: 800; }
.hero__brand { color: var(--lilac); }

.hero__sub { font-size: var(--text-lg); max-width: 46ch; color: oklch(90% 0.03 320); line-height: 1.65; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero__trust { margin-top: 2.6rem; font-size: var(--text-sm); color: oklch(75% 0.05 320); }
.hero__trust i { font-style: normal; margin-inline: 0.5rem; color: oklch(55% 0.1 320); }

.hero__scroll {
  position: absolute; bottom: 2rem; right: clamp(1.25rem, 4vw, 3rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
}
.hero__scroll-track { width: 2px; height: 56px; background: oklch(100% 0 0 / 0.18); border-radius: 2px; overflow: hidden; }
.hero__scroll-thumb { display: block; width: 100%; height: 40%; background: var(--lilac); animation: scrollcue 2.2s var(--ease-out) infinite; }
@keyframes scrollcue { 0% { transform: translateY(-110%); } 60%, 100% { transform: translateY(260%); } }
.hero__scroll-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: oklch(75% 0.05 320); writing-mode: vertical-rl; }

/* ============ STATEMENT ============ */

.statement { padding: var(--space-section) 0 0; }
.statement__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-2xl); line-height: 1.18; letter-spacing: -0.015em;
  max-width: 24ch;
}
.statement__text .line { display: block; overflow: hidden; }
.statement__meta {
  margin-top: 2.5rem; margin-left: auto; max-width: 56ch;
  display: grid; gap: 1.2rem; color: var(--ink-soft);
}
.statement__da { font-style: italic; color: var(--purple); font-weight: 500; }

.ticker { margin-top: clamp(3rem, 6vw, 5rem); border-block: 1px solid oklch(41% 0.19 322 / 0.18); overflow: hidden; padding-block: 0.9rem; }
.ticker__track { display: flex; gap: 2.5rem; width: max-content; animation: ticker 28s linear infinite; }
.ticker__track span {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  color: var(--purple); white-space: nowrap;
}
.ticker__track em { color: var(--lilac); font-style: normal; }
@keyframes ticker { to { transform: translateX(-33.333%); } }

/* ============ SECTION HEADS ============ */

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); max-width: 720px; }
.section-head__label {
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 0.9rem;
}
.section-head__label--onpurple { color: var(--lilac); }
.section-head__title { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; }
.section-head__sub { margin-top: 1.1rem; color: var(--ink-soft); max-width: 58ch; }

/* ============ SERVICES ============ */

.services { padding: var(--space-section) 0; }
.service {
  display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid oklch(41% 0.19 322 / 0.15);
}
.service--flip .service__intro { order: 2; }
.service--flip .service__list { order: 1; }

.service__no {
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700;
  color: var(--purple); letter-spacing: 0.1em;
}
.service__name { font-size: var(--text-xl); font-weight: 700; margin-top: 0.6rem; letter-spacing: -0.015em; }
.service__da { font-style: italic; color: var(--purple); margin-top: 0.2rem; font-size: var(--text-lg); font-family: var(--font-display); }
.service__desc { margin-top: 1.2rem; color: var(--ink-soft); max-width: 44ch; }

.service__list { list-style: none; display: grid; gap: 0; align-content: start; }
.service__list li {
  position: relative; padding: 0.85rem 0 0.85rem 2.1rem;
  border-bottom: 1px dashed oklch(41% 0.19 322 / 0.18);
  line-height: 1.5;
}
.service__list li:last-child { border-bottom: 0; }
.service__list li { transition: padding-left 0.4s var(--ease-out); }
.service__list li:hover { padding-left: 2.5rem; }
.service__list li::before { transition: transform 0.4s var(--ease-out), left 0.4s var(--ease-out); }
.service__list li:hover::before { left: 0.4rem; transform: scale(1.15); }
.service__list li::before {
  content: ""; position: absolute; left: 0; top: 1.15rem;
  width: 12px; height: 15px; background: var(--purple);
  clip-path: path("M6 0 C6 4 12 7 12 10.5 A6 4.9 0 1 1 0 10.5 C0 7 6 4 6 0 Z");
}

/* ============ SERVICE DUO (03 + 04) ============ */

.service-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid oklch(41% 0.19 322 / 0.15);
}
.service-mini { max-width: 46ch; }
.service__name--sm { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.service-mini .service__da { font-size: var(--text-base); }
.service-mini .service__desc { margin-top: 0.9rem; }
.service-mini__link {
  display: inline-block; margin-top: 1.1rem;
  font-weight: 600; color: var(--purple); text-decoration: none;
  border-bottom: 2px solid oklch(41% 0.19 322 / 0.3);
  padding-bottom: 0.15rem;
  transition: border-color 0.25s, padding-left 0.35s var(--ease-out);
}
.service-mini__link:hover { border-color: var(--purple); padding-left: 0.4rem; }
.service-mini__link::after { content: " →"; }

/* ============ DETAIL ============ */

.detail { padding: var(--space-section) 0; background: linear-gradient(180deg, var(--paper) 0%, var(--lilac-faint) 18%, var(--lilac-faint) 82%, var(--paper) 100%); }
.detail__stage { position: relative; max-width: 980px; margin-inline: auto; }
.detail__svg { width: 100%; height: auto; display: block; }
.stair-wall { stroke: oklch(41% 0.19 322 / 0.4); stroke-width: 2.5; }
.stair-steps { stroke: var(--purple); stroke-width: 3.5; }
.stair-rail { stroke: oklch(41% 0.19 322 / 0.6); stroke-width: 3; }
.stair-rail-posts { stroke: oklch(41% 0.19 322 / 0.35); stroke-width: 2; }
.stair-door { stroke: oklch(41% 0.19 322 / 0.55); stroke-width: 2.5; }
.stair-door-handle { fill: var(--purple); stroke: none; }
.stair-switch { stroke: oklch(41% 0.19 322 / 0.55); stroke-width: 2; fill: oklch(41% 0.19 322 / 0.08); }
.stair-mailboxes { stroke: oklch(41% 0.19 322 / 0.55); stroke-width: 2.5; }
.stair-mail-slots { stroke: oklch(41% 0.19 322 / 0.35); stroke-width: 2; }
.stair-lamp { stroke: oklch(41% 0.19 322 / 0.5); stroke-width: 2.5; }
.stair-cobweb { stroke: oklch(41% 0.19 322 / 0.35); stroke-width: 1.8; }

.hotspot { cursor: pointer; }
.hotspot__ring { fill: none; stroke: var(--purple-bright); stroke-width: 1.5; opacity: 0.7; }
.hotspot__core { fill: var(--purple); transition: fill 0.25s, r 0.25s; }
.hotspot:hover .hotspot__core, .hotspot--active .hotspot__core { fill: var(--purple-bright); }

.detail__card {
  position: absolute; top: 4%; right: 20%;
  max-width: 300px; background: var(--white-warm);
  border: 1px solid oklch(41% 0.19 322 / 0.15);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 44px oklch(41% 0.15 322 / 0.14);
}
.detail__card-label { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--purple); }
.detail__card-text { margin-top: 0.4rem; font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.55; }

.detail__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; justify-content: center; }
.detail__chips button {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  border: 1.5px solid oklch(41% 0.19 322 / 0.3); background: transparent; color: var(--ink);
  border-radius: 999px; padding: 0.5rem 1.1rem; cursor: pointer;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.detail__chips button:hover { border-color: var(--purple); color: var(--purple); }
.detail__chips button[aria-pressed="true"] { background: var(--purple); border-color: var(--purple); color: var(--white-warm); }

/* ============ METHOD ============ */

.method { padding: var(--space-section) 0; }
.method__grid { display: grid; grid-template-columns: minmax(0, 640px) 1fr; gap: clamp(2rem, 5vw, 5rem); }
.method__display { position: relative; }
.method__numeral {
  position: sticky; top: 22vh; display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(10rem, 24vw, 22rem); line-height: 0.9;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px oklch(41% 0.19 322 / 0.22);
  user-select: none;
}
.method__steps {
  list-style: none; position: relative;
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  padding-left: clamp(3rem, 6vw, 4.5rem);
}
.method__steps::before {
  content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px;
  background: oklch(41% 0.19 322 / 0.15);
}
.method__steps::after {
  content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px;
  background: var(--purple); transform-origin: top; transform: scaleY(var(--method-progress, 0));
}
.method__step { position: relative; max-width: 60ch; }
.method__step::before {
  content: ""; position: absolute; left: calc(-1 * clamp(3rem, 6vw, 4.5rem) + 6px); top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--purple); z-index: 1;
}
.method__no {
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 800;
  color: var(--purple); letter-spacing: 0.12em;
}
.method__no::after { content: " / 6"; color: var(--lilac); font-weight: 500; }
.method__step h3 { font-size: var(--text-xl); margin-top: 0.3rem; letter-spacing: -0.01em; }
.method__step p { margin-top: 0.7rem; color: var(--ink-soft); }

/* ============ WHY ============ */

.why {
  position: relative; padding: var(--space-section) 0;
  background: linear-gradient(160deg, var(--purple-deep), var(--purple-dusk));
  color: var(--white-warm); overflow: hidden;
}
.why__rain { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.why .wrap { position: relative; z-index: 2; }
.why__grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.why__title { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; max-width: 16ch; }
.why__text { margin-top: 1.4rem; color: oklch(88% 0.04 320); max-width: 52ch; line-height: 1.7; }
.why__points { list-style: none; margin-top: 2rem; display: grid; gap: 0.7rem; }
.why__points li { position: relative; padding-left: 1.8rem; color: oklch(92% 0.03 320); }
.why__points li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 10px; height: 12.5px; background: var(--lilac);
  clip-path: path("M5 0 C5 3.3 10 5.8 10 8.75 A5 4.1 0 1 1 0 8.75 C0 5.8 5 3.3 5 0 Z");
}

.why__facts { display: grid; gap: 1.2rem; }
.why__fact {
  border: 1px solid oklch(100% 0 0 / 0.14); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; background: oklch(100% 0 0 / 0.045);
}
.why__fact-figure { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; line-height: 1; color: var(--lilac); }
.why__fact-text { margin-top: 0.6rem; color: oklch(87% 0.04 320); font-size: var(--text-sm); line-height: 1.6; }
.why__fact--quote p { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; font-style: italic; line-height: 1.3; }
.why__fact--quote cite { display: block; margin-top: 0.8rem; font-style: normal; font-size: var(--text-sm); color: var(--lilac); }

/* ============ AREAS ============ */

.areas { padding: var(--space-section) 0; }
.areas__list { list-style: none; counter-reset: area; border-top: 1px solid oklch(41% 0.19 322 / 0.15); }
.areas__list li {
  counter-increment: area; position: relative; overflow: hidden;
  border-bottom: 1px solid oklch(41% 0.19 322 / 0.15);
  cursor: default;
}
.areas__list li::before {
  content: ""; position: absolute; inset: 0; background: var(--purple);
  transform: translateY(101%); transition: transform 0.5s var(--ease-out);
}
.areas__list li:hover::before { transform: translateY(0); }
.areas__list li span {
  position: relative; z-index: 1; display: flex; align-items: baseline; gap: 1.5rem;
  font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3.4rem); font-weight: 600;
  padding: clamp(0.8rem, 1.6vw, 1.3rem) 0.5rem;
  letter-spacing: -0.015em;
  transition: color 0.35s, transform 0.5s var(--ease-out);
}
.areas__list li span::before {
  content: counter(area, decimal-leading-zero);
  font-size: var(--text-sm); font-weight: 500; color: var(--purple);
  transition: color 0.35s;
}
.areas__list li:hover span { color: var(--white-warm); transform: translateX(1rem); }
.areas__list li:hover span::before { color: var(--lilac); }
.areas__note { margin-top: 2rem; color: var(--ink-soft); max-width: 60ch; }
.areas__note a { color: var(--purple); font-weight: 600; }

/* ============ FAQ ============ */

.faq { padding: var(--space-section) 0; background: var(--paper-2); }
.faq__list { display: grid; gap: 0; border-top: 1px solid oklch(41% 0.19 322 / 0.18); }
.faq__item { border-bottom: 1px solid oklch(41% 0.19 322 / 0.18); }
.faq__item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  padding: 1.4rem 0.25rem; cursor: pointer;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--purple); }
.faq__icon { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--purple);
  transition: transform 0.35s var(--ease-out);
}
.faq__icon::before { width: 16px; height: 2px; }
.faq__icon::after { width: 2px; height: 16px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__body { overflow: hidden; }
.faq__body p { padding: 0 3rem 1.5rem 0.25rem; color: var(--ink-soft); max-width: 65ch; }

/* ============ QUOTE ============ */

.quote { padding: var(--space-section) 0; }
.quote__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.quote__title { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; }
.quote__text { margin-top: 1.2rem; color: var(--ink-soft); max-width: 46ch; }
.quote__contact { margin: 2.2rem 0 0; display: grid; gap: 1rem; }
.quote__contact div { display: grid; grid-template-columns: 5rem 1fr; align-items: baseline; }
.quote__contact dt { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); }
.quote__contact dd { margin: 0; font-size: var(--text-lg); font-weight: 500; }
.quote__contact dd a { text-decoration: none; }
.quote__contact dd a:hover { color: var(--purple); }

.quote__form {
  background: var(--white-warm); border: 1px solid oklch(41% 0.19 322 / 0.14);
  border-radius: calc(var(--radius) * 1.5); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 24px 60px oklch(41% 0.15 322 / 0.10);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.field { display: grid; gap: 0.45rem; grid-column: 1 / -1; }
.field--half { grid-column: auto; }
.field label, .field legend { font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid oklch(41% 0.19 322 / 0.18);
  border-radius: 10px; padding: 0.8rem 1rem; width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: oklch(60% 0.02 320); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 4px oklch(41% 0.19 322 / 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }

.field__optional { font-weight: 400; color: var(--ink-soft); font-size: 0.85em; }
.field__hint { font-size: var(--text-xs); color: var(--ink-soft); }
.field__file {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1.5px dashed oklch(41% 0.19 322 / 0.35);
  border-radius: 10px; padding: 0.8rem 1rem; width: 100%; cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s;
}
.field__file:hover { border-color: var(--purple); background: var(--lilac-faint); }
.field__file::file-selector-button {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  color: var(--purple); background: oklch(41% 0.19 322 / 0.1);
  border: 0; border-radius: 999px; padding: 0.45rem 1.1rem; margin-right: 0.9rem;
  cursor: pointer; transition: background-color 0.25s, color 0.25s;
}
.field__file::file-selector-button:hover { background: var(--purple); color: var(--white-warm); }

.field--services { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.field--services legend { margin-bottom: 0.6rem; padding: 0; }
.check { position: relative; }
.check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.check span {
  display: inline-block; padding: 0.55rem 1.1rem; border-radius: 999px;
  border: 1.5px solid oklch(41% 0.19 322 / 0.3); font-size: var(--text-sm); font-weight: 500;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.check input:checked + span { background: var(--purple); border-color: var(--purple); color: var(--white-warm); }
.check input:focus-visible + span { outline: 3px solid var(--purple-bright); outline-offset: 2px; }

.btn--submit { grid-column: 1 / -1; justify-self: start; padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn__drop {
  display: inline-block; width: 11px; height: 14px; background: currentColor;
  clip-path: path("M5.5 0 C5.5 3.7 11 6.4 11 9.6 A5.5 4.5 0 1 1 0 9.6 C0 6.4 5.5 3.7 5.5 0 Z");
}
.btn--submit:hover .btn__drop { animation: drip 0.7s var(--ease-out); }
@keyframes drip {
  0% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(14px) scaleY(1.25); opacity: 0; }
  56% { transform: translateY(-10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.quote__fine { grid-column: 1 / -1; font-size: var(--text-xs); color: var(--ink-soft); }

/* ============ FOOTER ============ */

.footer { background: var(--purple-dusk); color: oklch(88% 0.04 320); padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); }
.footer__brand img { width: 200px; }
.footer__brand p { margin-top: 1.2rem; max-width: 34ch; font-size: var(--text-sm); line-height: 1.65; color: oklch(75% 0.05 320); }
.footer__nav { display: grid; gap: 0.55rem; align-content: start; }
.footer__nav a { text-decoration: none; font-size: var(--text-sm); color: oklch(85% 0.04 320); }
.footer__nav a:hover { color: var(--white-warm); }
.footer__contact { display: grid; gap: 0.55rem; align-content: start; font-size: var(--text-sm); }
.footer__contact a { text-decoration: none; font-weight: 600; color: var(--white-warm); font-size: var(--text-base); }
.footer__contact a:hover { color: var(--lilac); }
.footer__contact p { color: oklch(75% 0.05 320); }
.footer__base {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: var(--text-xs); color: oklch(68% 0.06 320);
}
.footer__base a { color: inherit; }
.footer__base p[lang="da"] { font-style: italic; }

/* ============ REVEAL / MOTION ============ */

.reveal { opacity: 0; transform: translateY(24px); }
.no-js .reveal, .no-motion .reveal { opacity: 1; transform: none; }
html.no-motion { scroll-behavior: auto; }

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .service, .service--flip { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-duo { grid-template-columns: 1fr; gap: 2.2rem; }
  .service--flip .service__intro { order: 1; }
  .service--flip .service__list { order: 2; }
  .why__grid, .quote__grid { grid-template-columns: 1fr; }
  .method__grid { grid-template-columns: 1fr; }
  .method__display { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .detail__card { position: static; max-width: none; margin-top: 1.2rem; }
  .statement__meta { margin-left: 0; }
}

@media (max-width: 560px) {
  .quote__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .hero__scroll { display: none; }
  .quote__contact div { grid-template-columns: 1fr; gap: 0.15rem; }
}

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