:root {
  --canvas: #fcfcfa;
  --surface: #ffffff;
  --text: #20242b;
  --background: var(--canvas);
  --paper: var(--surface);
  --paper-deep: #f3f4f3;
  --white: #ffffff;
  --ink: var(--text);
  --muted: #5b626c;
  --navy: #0b1837;
  --navy-light: #152852;
  --accent: #b28e52;
  --accent-soft: #efe6d7;
  --line: #e2e3df;
  --sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3.5rem;
  --space-xl: 6rem;
  --space-section: clamp(5rem, 7vw, 7rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--background); font-family: var(--sans); font-weight: 400; line-height: 1.65; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: 0; }
a { color: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }
*:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
input:focus-visible, textarea:focus-visible { outline: none; }
.skip-link { position: fixed; top: 0; left: 1rem; z-index: 100; padding: .7rem 1rem; color: var(--white); background: var(--ink); transform: translateY(-120%); }
.skip-link:focus { transform: translateY(0); }
.visually-hidden { width: 1px; height: 1px; position: absolute; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.site-header { min-height: 76px; margin: 0; padding: .9rem clamp(1.25rem, 4vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header-hero { position: relative; z-index: 20; color: var(--white); background: var(--navy); border-bottom-color: rgba(255, 255, 255, .12); }
.header-mobile-actions { display: none; align-items: center; gap: .55rem; }
.menu-toggle { min-height: 38px; padding: .5rem .65rem; display: inline-flex; align-items: center; gap: .35rem; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 4px; font-size: .76rem; font-weight: 650; transition: border-color .16s ease, background .16s ease, box-shadow .16s ease; }
.menu-toggle svg { flex: 0 0 auto; overflow: visible; }
.menu-icon-line { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; transform-box: fill-box; transform-origin: center; transition: opacity .16s ease, transform .18s ease; }
.site-header.is-menu-open .menu-icon-top { transform: translateY(5px) rotate(45deg); }
.site-header.is-menu-open .menu-icon-middle { opacity: 0; transform: scaleX(.35); }
.site-header.is-menu-open .menu-icon-bottom { transform: translateY(-5px) rotate(-45deg); }
.menu-toggle:focus-visible { background: color-mix(in srgb, var(--accent) 10%, transparent); border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 62%, transparent); outline: none; }
.wordmark { display: flex; flex-direction: column; text-decoration: none; line-height: 1.22; }
.wordmark strong { font-size: .96rem; font-weight: 670; letter-spacing: -.01em; }
.wordmark span { color: var(--muted); font-size: .7rem; }
.site-header-hero .wordmark span { color: rgba(255, 255, 255, .62); }
nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }
nav a, .header-link { font-size: .78rem; font-weight: 590; text-decoration: none; }
nav a:hover, .header-link:hover, nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: .3rem; }
.nav-action { padding: .58rem .86rem; color: var(--white); background: var(--navy); border: 1px solid var(--accent); border-radius: 4px; box-shadow: 0 3px 8px rgba(1, 7, 22, .16); transition: color .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.nav-action:visited { color: var(--white); }
.nav-action:hover { color: var(--white); background: var(--navy-light); border-color: var(--accent); box-shadow: 0 5px 11px rgba(1, 7, 22, .22); text-decoration: none; transform: translateY(-1px); }
.nav-action:active { color: var(--white); background: var(--navy); box-shadow: 0 2px 5px rgba(1, 7, 22, .18); transform: translateY(0); }
.nav-action:focus-visible { color: var(--white); background: var(--navy); border-color: var(--accent); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent), 0 3px 8px rgba(1, 7, 22, .18); outline: none; text-decoration: none; }
.site-header-hero .nav-action, .site-header-hero .nav-action:visited { color: var(--white); background: var(--navy); }
.site-header-hero .nav-action:hover { color: var(--white); background: var(--navy-light); }

.overline { margin: 0 0 .85rem; color: var(--accent); font-size: .73rem; font-weight: 680; letter-spacing: .045em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
.hero h1, .page-hero h1, .home-stories-heading h2, .section-heading h2, .followup h2, .story-article > h1, .page-cta p { font-family: var(--display); }

/* Integrert hero */
.hero { min-height: 820px; position: relative; isolation: isolate; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-layout { width: 100%; max-width: 1400px; min-height: 820px; margin: 0 auto; padding: 0 clamp(1.25rem, 3.5vw, 3.5rem); display: grid; grid-template-columns: minmax(420px, .86fr) minmax(650px, 1.14fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: stretch; }
.hero-copy { max-width: 560px; position: relative; z-index: 3; align-self: start; margin-top: 210px; }
.hero-copy .overline { color: var(--accent-soft); }
.hero h1 { max-width: 610px; margin: 0; font-size: clamp(2.75rem, 3.75vw, 4rem); font-weight: 650; letter-spacing: -.047em; line-height: 1.02; text-wrap: balance; }
.hero-lede { max-width: 470px; margin: 1.4rem 0 0; color: rgba(255, 255, 255, .78); font-size: clamp(.96rem, 1.1vw, 1.08rem); line-height: 1.58; }
.hero-lede p { margin: 0; }
.hero-lede p + p { margin-top: .7rem; }
.hero-stage { min-width: 0; min-height: 820px; position: relative; display: flow-root; }
.hero-stage::before { width: 640px; max-width: 86%; height: 520px; position: absolute; z-index: 0; top: 135px; left: -55px; background: radial-gradient(ellipse 50% 50% at center, rgba(240, 230, 211, .14) 0%, rgba(240, 230, 211, .08) 42%, rgba(240, 230, 211, .025) 70%, rgba(240, 230, 211, 0) 100%); content: ""; pointer-events: none; }
.hero-person { width: 600px; max-width: 78%; height: 750px; position: absolute; z-index: 1; right: -35px; bottom: 0; margin: 0; display: flex; align-items: flex-end; justify-content: flex-end; pointer-events: none; }
.hero-person img { width: auto; height: 78.6667%; max-width: none; display: block; object-fit: contain; object-position: right bottom; }
.form-shell { width: min(57%, 520px); min-width: 400px; min-height: 470px; position: relative; z-index: 2; margin: 120px 0 64px; padding: clamp(1.25rem, 2.1vw, 1.9rem); color: var(--ink); background: var(--paper); border: 1px solid rgba(255, 255, 255, .52); border-radius: 10px; box-shadow: 0 18px 44px rgba(1, 7, 22, .23), 0 0 54px rgba(240, 230, 211, .09); }

.panel-tabs { margin: calc(clamp(1.25rem, 2.1vw, 1.9rem) * -1) calc(clamp(1.25rem, 2.1vw, 1.9rem) * -1) 1.35rem; padding: .35rem clamp(1.25rem, 2.1vw, 1.9rem) 0; display: flex; gap: 1.5rem; border-bottom: 1px solid var(--line); }
.panel-tabs button { min-height: 50px; position: relative; padding: .7rem .05rem; color: var(--muted); background: transparent; font-size: .88rem; font-weight: 650; }
.panel-tabs button::after { height: 3px; position: absolute; right: 0; bottom: -1px; left: 0; background: transparent; content: ""; }
.panel-tabs button[aria-selected="true"] { color: var(--navy); }
.panel-tabs button[aria-selected="true"]::after { background: var(--accent); }
.panel-content { animation: panel-enter .22s ease both; }
.panel-introduction { max-width: 460px; margin-bottom: 1rem; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.form-heading p { margin: 0; color: var(--muted); font-size: .74rem; }
.progress { height: 3px; margin: .85rem 0 clamp(1.2rem, 2.5vh, 1.8rem); background: var(--line); overflow: hidden; }
.progress span { display: block; width: 33.333%; height: 100%; background: var(--accent); transition: width .25s ease; }
.form-step, .form-result:not([hidden]) { animation: panel-enter .22s ease both; }
@keyframes panel-enter { from { opacity: 0; transform: translateY(5px); } }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend, .question { display: block; width: 100%; margin: 0 0 1rem; font-size: clamp(1.35rem, 1.8vw, 1.72rem); font-weight: 630; letter-spacing: -.026em; line-height: 1.17; }
.field-intro { max-width: 620px; margin-bottom: .9rem; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.service-choices { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.service-choice { display: block; cursor: pointer; }
.service-choice input { position: absolute; opacity: 0; }
.service-choice span { min-height: 58px; position: relative; padding: .8rem 1rem; display: flex; align-items: center; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 6px; font-weight: 600; transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease; }
.service-choice span::before { width: 17px; height: 17px; flex: 0 0 17px; margin-right: .7rem; border: 1px solid #8c8e94; border-radius: 4px; content: ""; }
.service-choice span::after { width: 5px; height: 9px; position: absolute; top: 50%; left: 1.36rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; content: ""; opacity: 0; transform: translateY(-62%) rotate(45deg) scale(.7); transition: opacity .14s ease, transform .14s ease; }
.service-choice:hover span { border-color: #7d8496; transform: translateY(-1px); }
.service-choice input:focus-visible { outline: none; }
.service-choice input:focus-visible + span { border-color: #7889aa; box-shadow: 0 0 0 4px rgba(120, 137, 170, .16); }
.service-training input:checked + span { color: #172544; background: #e8edf6; border-color: #7889aa; }
.service-nutrition input:checked + span { color: #294331; background: #e8f0e9; border-color: #78917e; }
.service-choice input:checked + span::before { background: rgba(255, 255, 255, .72); border-color: currentColor; }
.service-choice input:checked + span::after { opacity: 1; transform: translateY(-62%) rotate(45deg) scale(1); }
.field-grid input, textarea { width: 100%; padding: .76rem .82rem; color: var(--ink); background: var(--paper); border: 1px solid #b8bdc3; border-radius: 6px; outline: none; }
textarea { resize: vertical; }
.field-grid input:focus-visible, textarea:focus-visible { border-color: #7889aa; box-shadow: 0 0 0 4px rgba(120, 137, 170, .16); outline: none; }
#goal { min-height: 100px; max-height: 170px; }
.goal-deferred-choice { margin-top: .75rem; padding: .68rem .75rem; display: flex; align-items: center; gap: .65rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 6px; cursor: pointer; transition: border-color .16s ease, background .16s ease, box-shadow .16s ease; }
.goal-deferred-choice input { width: 18px; height: 18px; flex: 0 0 18px; margin: 0; accent-color: var(--navy); }
.goal-deferred-choice span { font-size: .84rem; font-weight: 600; line-height: 1.4; }
.goal-deferred-choice:has(input:checked) { color: var(--navy); background: color-mix(in srgb, var(--accent-soft) 72%, var(--paper)); border-color: color-mix(in srgb, var(--accent) 72%, var(--line)); box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 78%, var(--navy)); }
.goal-deferred-choice:has(input:focus-visible) { border-color: #7889aa; box-shadow: 0 0 0 4px rgba(120, 137, 170, .16); }
#goal.is-deferred { color: color-mix(in srgb, var(--muted) 72%, var(--paper)); background: color-mix(in srgb, var(--paper-deep) 88%, var(--line)); border-color: color-mix(in srgb, var(--line) 82%, var(--muted)); box-shadow: none; caret-color: transparent; cursor: not-allowed; opacity: .68; resize: none; }
.collaboration-choices { display: grid; gap: .7rem; }
.collaboration-choice { display: block; cursor: pointer; }
.collaboration-choice input { position: absolute; opacity: 0; }
.collaboration-choice > span { position: relative; padding: .85rem 1rem .85rem 3.1rem; display: grid; align-content: start; gap: .18rem; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease; }
.collaboration-choice > span::before { width: 18px; height: 18px; position: absolute; top: .94rem; left: 1rem; border: 1px solid #8c8e94; border-radius: 50%; content: ""; }
.collaboration-choice > span::after { width: 8px; height: 8px; position: absolute; top: 1.28rem; left: 1.34rem; background: var(--navy); border-radius: 50%; content: ""; opacity: 0; transform: scale(.6); transition: opacity .14s ease, transform .14s ease; }
.collaboration-choice:hover > span { border-color: #7182a6; transform: translateY(-1px); }
.collaboration-choice input:focus-visible { outline: none; }
.collaboration-choice input:focus-visible + span { border-color: #7889aa; box-shadow: 0 0 0 4px rgba(120, 137, 170, .16); }
.collaboration-choice input:checked + span { color: #172544; background: #eef2f7; border-color: #7182a6; }
.collaboration-choice input:checked + span::before { border-color: #172544; }
.collaboration-choice input:checked + span::after { opacity: 1; transform: scale(1); }
.collaboration-choice input:checked + span small { color: #343b46; }
.collaboration-choice strong { font-size: .9rem; font-weight: 700; }
.collaboration-choice small { color: var(--muted); font-size: .76rem; line-height: 1.4; }
.form-nav { margin-top: 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.form-nav-forward { justify-content: flex-end; }
.back-button { padding: .62rem 0; color: var(--muted); background: transparent; text-decoration: underline; text-underline-offset: .25rem; }
.next-button, .submit-button { padding: .78rem 1.15rem; color: var(--white); background: var(--navy); border-radius: 4px; font-weight: 630; transition: background .15s ease, transform .15s ease; }
.next-button:hover, .submit-button:hover { background: var(--navy-light); transform: translateY(-1px); }
.next-button.is-ready-cue { animation: ready-cue .68s ease-out 1; }
@keyframes ready-cue {
  0%, 100% { background: var(--navy); box-shadow: 0 0 0 0 rgba(178, 142, 82, 0); }
  42% { background: color-mix(in srgb, var(--navy) 82%, var(--accent)); box-shadow: 0 0 0 4px rgba(178, 142, 82, .22); }
}
.submit-button:disabled { transform: none; cursor: wait; opacity: .62; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field-grid label { font-size: .78rem; font-weight: 640; }
.field-grid input { margin-top: .28rem; }
.full-field { grid-column: 1 / -1; }
.form-error { margin: .8rem 0 0; color: #9c3327; font-size: .82rem; }
.form-error:focus { outline: 2px solid currentColor; outline-offset: 3px; }
.form-honeypot { width: 1px; height: 1px; position: absolute; left: -10000px; overflow: hidden; }
.form-success { margin-top: .5rem; padding: 1.35rem 1.4rem; color: var(--ink); background: color-mix(in srgb, var(--accent-soft) 42%, var(--paper)); border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line)); border-left: 3px solid var(--accent); border-radius: 6px; }
.form-success:focus { outline: 3px solid color-mix(in srgb, var(--accent) 65%, transparent); outline-offset: 3px; }
.success-check { width: 38px; height: 38px; margin-bottom: .85rem; display: inline-flex; align-items: center; justify-content: center; color: var(--navy); background: color-mix(in srgb, var(--accent) 28%, var(--paper)); border-radius: 50%; }
.success-check svg path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin-bottom: .55rem; font-size: clamp(1.65rem, 3vw, 2.15rem); font-weight: 630; letter-spacing: -.03em; }
.form-success p { max-width: 560px; margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.contact-panel { min-height: 320px; }
.contact-panel .contact-fields { margin-top: 1.3rem; }
.direct-message-field textarea { min-height: 112px; margin-top: .28rem; }
.guide-message-field > span { margin-top: .18rem; display: block; color: var(--muted); font-size: .72rem; font-weight: 430; line-height: 1.45; }
.guide-message-field textarea { min-height: 100px; margin-top: .45rem; }
.direct-submit { margin-top: 1.4rem; }
.form-privacy { margin: .85rem 0 0; color: var(--muted); font-size: .74rem; line-height: 1.48; }
.form-privacy a { font-weight: 620; text-underline-offset: .18rem; }
.form-trust { margin: .75rem 0 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }

.guide-contact-step h2 { margin: 0 0 .9rem; font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 630; letter-spacing: -.035em; line-height: 1.12; }
.form-result .price-result-title { margin: 0 0 .65rem; color: var(--accent); font-size: .73rem; font-weight: 700; letter-spacing: .045em; line-height: 1.4; }
.price-main { display: grid; }
.price-main strong { font-size: clamp(2.8rem, 4.6vw, 3.65rem); font-weight: 650; letter-spacing: -.055em; line-height: 1; }
.price-main small { margin-top: .38rem; color: var(--muted); font-size: .8rem; }
.price-note { margin: 1rem 0 0; display: flex; align-items: flex-start; gap: .65rem; color: var(--navy); font-size: .82rem; line-height: 1.5; }
.price-note svg { flex: 0 0 21px; margin-top: .05rem; color: var(--accent); }
.price-reduction { padding: .72rem .8rem; background: color-mix(in srgb, var(--accent-soft) 38%, var(--paper)); border-left: 2px solid color-mix(in srgb, var(--accent) 62%, var(--line)); border-radius: 3px; }
.price-reduction strong { color: var(--navy); font-weight: 650; }
.startup-fee-line { background: transparent; }
.startup-fee-line strong { color: var(--navy); font-weight: 700; }
.price-method { margin-top: 1.25rem; }
.price-method-toggle { width: fit-content; padding: .5rem 0; display: flex; align-items: center; gap: .4rem; color: var(--navy); text-align: left; background: transparent; font-size: .8rem; font-weight: 650; text-decoration: underline; text-underline-offset: .25rem; }
.price-method-toggle svg { flex: 0 0 auto; transition: transform .18s ease; }
.price-method-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.price-method-toggle:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.price-method-details { max-width: 440px; margin-top: .45rem; padding: .8rem .9rem; color: var(--muted); background: var(--paper-deep); border-left: 2px solid var(--line); font-size: .78rem; line-height: 1.55; }
.price-method-details p { margin: 0; }
.result-actions { margin-top: 1.15rem; padding-top: 1.15rem; border-top: 1px solid var(--line); }
.result-actions .back-button { min-width: 126px; white-space: nowrap; }
.result-actions .next-button { min-width: 158px; white-space: nowrap; }
.form-result.is-updating { animation: price-update .24s ease both; }
@keyframes price-update { from { opacity: .65; transform: translateY(3px); } }

/* Kundehistorier og sekundære innganger */
.home-testimonials { padding-top: var(--space-section); padding-bottom: var(--space-section); }
.home-stories-heading { max-width: 780px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.home-stories-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 640; letter-spacing: -.045em; line-height: 1.04; }
.home-stories-heading > p:last-child { max-width: 640px; margin: 1rem 0 0; color: var(--muted); font-size: 1rem; }
.about-compact { max-width: 1120px; margin: clamp(1.5rem, 3vw, 3rem) auto var(--space-section); padding: clamp(2rem, 4vw, 4rem); display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); background: color-mix(in srgb, var(--accent-soft) 42%, var(--paper)); }
.about-compact-media { aspect-ratio: 4 / 3; min-width: 0; margin: 0; overflow: hidden; background: var(--paper-deep); }
.about-compact-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 24%; }
.about-compact-copy h2 { margin: 0 0 1.2rem; color: var(--navy); font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 640; letter-spacing: -.045em; line-height: 1.05; }
.about-compact-copy > p:not(.overline) { margin-bottom: 1rem; color: var(--ink); line-height: 1.65; }
.about-details-toggle { width: 100%; margin-top: .35rem; padding: .7rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--navy); text-align: left; background: transparent; border-top: 1px solid color-mix(in srgb, var(--accent) 38%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 38%, transparent); font: inherit; font-size: .84rem; font-weight: 650; cursor: pointer; }
.about-details-toggle svg { flex: 0 0 auto; transition: transform .18s ease; }
.about-details-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.about-details { padding-top: .7rem; }
.about-facts { margin: 0; display: grid; }
.about-facts > div { padding: .65rem 0; display: grid; grid-template-columns: minmax(90px, .34fr) minmax(0, 1fr); gap: .75rem; border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.about-facts > div:last-child { border-bottom: 0; }
.about-facts dt { color: var(--navy); font-size: .75rem; font-weight: 700; }
.about-facts dd { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.secondary-section { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 4rem) var(--space-section); }
.secondary-heading { margin-bottom: clamp(1.8rem, 3vw, 2.8rem); }
.secondary-heading h2 { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 640; letter-spacing: -.045em; line-height: 1.05; }
.secondary-entries { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); align-items: stretch; }
.secondary-entry { min-width: 0; height: 100%; display: flex; flex-direction: column; color: var(--ink); background: var(--paper); border: 1px solid var(--line); text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.secondary-entry-media { aspect-ratio: 16 / 10; overflow: hidden; display: block; background: var(--navy); }
.secondary-entry-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.secondary-entry:first-child .secondary-entry-media img { object-position: 58% 48%; }
.secondary-entry:last-child .secondary-entry-media img { object-position: 50% 42%; }
.secondary-entry-copy { min-width: 0; min-height: 190px; padding: 1.35rem; display: flex; flex: 1; flex-direction: column; }
.secondary-entry-copy strong { color: var(--navy); font-size: 1.35rem; font-weight: 680; }
.secondary-entry-copy > span { margin-top: .45rem; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.secondary-entry-copy b { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; gap: .35rem; color: var(--navy); font-size: .78rem; font-weight: 650; }
.secondary-entry-copy svg { transition: transform .2s ease; }
.secondary-entry:focus-visible { border-color: #b8ad9d; }
@media (hover: hover) and (pointer: fine) {
  .secondary-entry:hover { border-color: #b8ad9d; transform: translateY(-1px); }
  .secondary-entry:hover svg { transform: translateX(2px); }
}

/* FAQ og footer */
.section-heading { max-width: 720px; }
.section-heading h2, .followup h2 { margin: 0; font-size: clamp(2.2rem, 3.8vw, 3.75rem); font-weight: 640; letter-spacing: -.042em; line-height: 1.08; }
.faq { max-width: 1120px; margin: auto; padding: var(--space-section) clamp(1.25rem, 4vw, 4rem); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 5vw, 5rem); border-top: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-question { width: 100%; padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: var(--ink); text-align: left; background: transparent; border: 0; cursor: pointer; font: inherit; font-weight: 590; }
.faq-icon { flex: 0 0 auto; color: var(--accent); }
.faq-icon::before { content: "+"; }
.faq-question[aria-expanded="true"] .faq-icon::before { content: "-"; }
.faq-answer p { margin-bottom: 1rem; padding-right: 2rem; color: var(--muted); font-size: .86rem; }
.faq-list a { color: var(--navy); font-weight: 650; text-underline-offset: .25rem; }
.faq-cta { max-width: 1120px; margin: 0 auto var(--space-section); padding: clamp(2rem, 4vw, 3.2rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--paper-deep); }
.faq-cta .overline { margin-bottom: .4rem; }
.faq-cta h2 { max-width: 620px; margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 630; letter-spacing: -.035em; line-height: 1.1; }
.button-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; white-space: nowrap; }
footer { min-height: 130px; margin: 0; padding: 2.5rem clamp(1.25rem, 4vw, 4rem); display: grid; grid-template-columns: 1.1fr 1.7fr auto auto; gap: 2rem; align-items: end; background: var(--paper); border-top: 1px solid var(--line); font-size: .72rem; }
footer p { margin: 0; color: var(--muted); }
.footer-business { display: grid; gap: .2rem; }
.footer-business strong { color: var(--ink); font-size: .72rem; font-weight: 650; }
.footer-business span { display: block; }
.footer-links { justify-content: flex-end; gap: 1rem; }
.footer-links a { color: var(--ink); }
.footer-copy { text-align: right; white-space: nowrap; }

/* Lokale innholdssider */
.content-page { background: var(--background); }
.page-hero { max-width: 1240px; margin: 0 auto; padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem); }
.page-hero h1 { max-width: 900px; margin: 0; color: var(--navy); font-size: clamp(3rem, 6vw, 6.2rem); font-weight: 640; letter-spacing: -.055em; line-height: .98; text-wrap: balance; }
.page-hero > p:last-child { max-width: 660px; margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.privacy-hero { padding-bottom: 2.5rem; }
.privacy-content { max-width: 68ch; margin: 0 auto; padding: 0 1.25rem var(--space-section); color: var(--ink); font-size: 18px; line-height: 1.7; }
.privacy-content h2 { margin: var(--space-lg) 0 var(--space-sm); color: var(--navy); font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.2; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { margin-bottom: var(--space-sm); }
.privacy-content a { color: var(--navy); font-weight: 650; text-underline-offset: .25rem; }
.testimonials { max-width: 1320px; margin: 0 auto; padding: var(--space-section) clamp(1.25rem, 4vw, 4rem); background: var(--paper); }
.testimonials-page { padding-top: 1rem; }
.story-index { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.3rem, 4.2vw, 4.3rem) clamp(1rem, 2.5vw, 2.25rem); }
.story-card { display: block; text-decoration: none; transition: transform .18s ease; }
.story-card-featured { grid-column: 1 / -1; }
.story-card img { width: 100%; height: auto; display: block; border: 1px solid var(--line); transition: border-color .18s ease, filter .18s ease; }
.story-card > span { padding: .8rem 0; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.story-card strong { font-size: .9rem; font-weight: 630; }
.story-card small { color: var(--muted); font-size: .74rem; }
.story-card:focus-visible img { border-color: #a9a49b; }
.story-card:focus-visible small { color: var(--navy); text-decoration: underline; text-underline-offset: .25rem; }
@media (hover: hover) and (pointer: fine) {
  .story-card:hover { transform: translateY(-2px); }
  .story-card:hover small { color: var(--navy); text-decoration: underline; text-underline-offset: .25rem; }
  .story-card:hover img { border-color: #a9a49b; }
}
.page-cta { padding: var(--space-section) 1.25rem; color: var(--white); text-align: center; background: var(--navy); }
.page-cta p { margin-bottom: 1rem; font-size: clamp(1.65rem, 3.5vw, 3.2rem); font-weight: 610; letter-spacing: -.035em; line-height: 1.16; }
.page-cta a { color: var(--white); font-size: .88rem; font-weight: 650; text-underline-offset: .3rem; }

.page-hero-editorial { padding-bottom: 3rem; }
.editorial-photo { max-width: 1240px; aspect-ratio: 16 / 8.5; margin: 0 auto; overflow: hidden; background: var(--navy); }
.editorial-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 48%; }
.editorial-reading { max-width: 68ch; margin: 0 auto; padding: var(--space-section) 1.25rem; color: var(--ink); font-size: 19px; line-height: 1.7; }
.editorial-reading p { margin-bottom: var(--space-md); }
.editorial-lead { margin-bottom: var(--space-lg) !important; color: var(--ink); font-size: 1.16em; line-height: 1.6; }
.editorial-reading blockquote { margin: 2rem 0; padding: .75rem 0 .75rem 1rem; color: var(--navy); border-left: 2px solid var(--accent); font-size: 1em; font-weight: 700; line-height: 1.7; }
.editorial-closing { margin-top: var(--space-lg); color: var(--navy); font-weight: 700; font-style: normal; }

.followup { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr); background: var(--paper); }
#samarbeid-over-tid { scroll-margin-top: 1rem; }
.followup-page-section { margin-bottom: var(--space-section); }
.training-photo { min-width: 0; margin: 0; }
.training-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 42%; }
.followup-content { padding: clamp(2.8rem, 5.5vw, 5.5rem); }
.followup-copy { max-width: 690px; margin-top: var(--space-md); color: var(--ink); }
.followup-copy p { margin-bottom: var(--space-sm); }
.followup-steps { --marker-x: 83.333%; --marker-y: 0px; min-height: 240px; position: relative; margin: 2.8rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 2vw, 1.5rem); list-style: none; }
.followup-steps::after { width: 13px; height: 13px; position: absolute; z-index: 3; top: var(--marker-y); left: var(--marker-x); background: var(--paper); border: 3px solid var(--navy); border-radius: 50%; content: ""; opacity: 1; transform: translate(-50%, -50%); transition: top .26s ease, left .26s ease, background .2s ease, border-color .2s ease; pointer-events: none; }
.followup-steps li { position: relative; padding-top: 1rem; transition: opacity .24s ease, color .2s ease; }
.followup-steps li::before { height: 3px; position: absolute; top: 0; right: 0; left: 0; background: var(--accent); content: ""; transform-origin: left center; transition: background .2s ease, height .2s ease; }
.followup-steps li:nth-child(1) { margin-top: 5rem; }
.followup-steps li:nth-child(2) { margin-top: 2.5rem; }
.followup-steps li:nth-child(3) { margin-top: 0; }
.followup-steps li:hover::before, .followup-steps li:focus-visible::before { height: 4px; background: var(--navy); }
.followup-steps li:hover strong, .followup-steps li:focus-visible strong { color: var(--navy); }
.followup-steps li:hover p, .followup-steps li:focus-visible p { color: var(--ink); }
.followup-steps .step-number { display: block; margin-bottom: .75rem; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.followup-steps strong { display: block; margin-bottom: .55rem; font-size: .92rem; font-weight: 700; line-height: 1.35; transition: color .2s ease; }
.followup-steps p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.followup-steps.is-observed:not(.is-visible)::after { opacity: 0; }
.followup-steps.is-observed:not(.is-visible) li::before { transform: scaleX(0); }
.followup-steps.is-observed.is-visible:not(.is-intro-complete) li:nth-child(1)::before { animation: draw-step-line .3s ease .05s both; }
.followup-steps.is-observed.is-visible:not(.is-intro-complete) li:nth-child(2)::before { animation: draw-step-line .3s ease .32s both; }
.followup-steps.is-observed.is-visible:not(.is-intro-complete) li:nth-child(3)::before { animation: draw-step-line .3s ease .59s both; }
.followup-steps.is-observed.is-visible:not(.is-intro-complete)::after { animation: marker-journey 1.2s cubic-bezier(.4, 0, .2, 1) .05s both; }
.followup-steps.is-intro-complete::after { top: var(--marker-y); left: var(--marker-x); animation: none; opacity: 1; }
.followup-steps.is-intro-complete.is-interacting::after { background: var(--navy); border-color: var(--navy); }
@keyframes draw-step-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes marker-journey {
  0%, 22% { top: 5rem; left: 16.667%; opacity: 1; }
  48%, 64% { top: 2.5rem; left: 50%; opacity: 1; }
  90%, 100% { top: 0; left: 83.333%; opacity: 1; }
}

/* Kundehistorie */
.story-page { background: var(--background); }
.story-article { max-width: 1080px; margin: auto; padding: var(--space-section) clamp(1.25rem, 4vw, 4rem); }
.story-label { margin-bottom: 1rem; color: var(--accent); font-size: .76rem; }
.story-article > h1 { margin: 0 0 clamp(2rem, 5vw, 4rem); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 640; letter-spacing: -.045em; line-height: 1.05; }
.story-article > img { width: 100%; height: auto; display: block; margin-bottom: clamp(4rem, 8vw, 7rem); border: 1px solid var(--line); }
.story-body { max-width: 68ch; margin: auto; color: var(--ink); font-size: 19px; line-height: 1.7; }
.story-body section { margin-bottom: var(--space-section); }
.story-body h2 { margin: 0 0 var(--space-md); color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.2; }
.story-body h3 { margin: var(--space-lg) 0 var(--space-sm); color: var(--navy); font-size: 1.05em; font-weight: 700; }
.story-body p { margin-bottom: var(--space-md); color: var(--ink); }
.story-body blockquote { margin: var(--space-md) 0; padding: 0; border: 0; }
.story-body blockquote p { margin: 0; color: var(--ink); font-size: 1em; line-height: 1.7; }
.story-media { margin: 2.8rem 0; }
.story-media img { width: 100%; height: auto; display: block; background: var(--paper); border: 1px solid var(--line); }
.story-media-wide { width: min(980px, calc(100vw - 2.5rem)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.story-media figcaption { max-width: 740px; margin: .65rem auto 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.story-next { padding: var(--space-section) 1.25rem; text-align: center; background: var(--paper-deep); }
.story-next p { margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 590; }
.story-next a { color: var(--navy); font-weight: 620; text-underline-offset: .3rem; }

@media (max-width: 1260px) {
  .hero-layout { grid-template-columns: minmax(400px, .82fr) minmax(590px, 1.18fr); gap: 1.5rem; }
  .hero-copy { margin-top: 200px; }
  .hero-person { width: 560px; max-width: 80%; height: 720px; right: -40px; }
  .form-shell { width: min(58%, 500px); min-width: 390px; }
  .hero h1 { font-size: clamp(2.65rem, 4vw, 3.7rem); }
}

@media (max-width: 1100px) {
  .hero-layout { padding-inline: 1.5rem; grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr); gap: 1.5rem; }
  .hero-copy { margin-top: 190px; }
  .hero h1 { font-size: clamp(2.5rem, 4.8vw, 3.4rem); }
  .hero-person { width: 540px; max-width: 80%; height: 700px; right: -18px; }
  .form-shell { width: 60%; min-width: 370px; margin-top: 110px; }
  .faq { grid-template-columns: 1fr; }
  .faq .section-heading { max-width: 650px; }
  .followup { grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr); }
  .followup-content { padding: 3rem; }
}

@media (max-width: 900px) {
  .hero, .hero-layout { min-height: 0; }
  .hero-layout { padding: 3rem 1.25rem 2.5rem; grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-copy { max-width: 720px; margin-top: 0; }
  .hero h1 { max-width: 720px; font-size: clamp(3rem, 7vw, 4.8rem); }
  .hero-stage { min-height: 0; display: flex; flex-direction: column; }
  .hero-stage::before { width: 100%; height: 360px; top: 0; left: 50%; transform: translateX(-50%); }
  .hero-person { width: 100%; max-width: none; height: 360px; position: relative; right: auto; bottom: auto; order: 1; justify-content: center; overflow: hidden; }
  .hero-person img { height: 94.4%; object-position: center bottom; }
  .form-shell { width: 100%; max-width: 680px; min-width: 0; min-height: 0; margin: 0 auto; order: 2; }
}

@media (max-width: 820px) {
  :root { --space-section: clamp(3.5rem, 10vw, 5rem); }
  .site-header { min-height: 70px; position: relative; gap: .55rem; }
  .site-header .wordmark strong { white-space: nowrap; }
  .header-mobile-actions { flex: 0 0 auto; display: flex; gap: .4rem; }
  .header-mobile-actions .nav-action, .site-header-hero .header-mobile-actions .nav-action { min-height: 38px; padding: .58rem .7rem; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; color: var(--white); background: var(--navy); border: 1px solid var(--accent); box-shadow: 0 4px 9px rgba(1, 7, 22, .2); text-align: center; text-decoration: none; font-size: .82rem; font-weight: 650; line-height: 1.1; white-space: nowrap; transition: background .16s ease, box-shadow .16s ease, transform .16s ease; }
  .header-mobile-actions .nav-action::after { width: 6px; height: 6px; flex: 0 0 6px; border-top: 1.5px solid var(--accent-soft); border-right: 1.5px solid var(--accent-soft); content: ""; opacity: 1; transform: rotate(45deg); transition: transform .16s ease; }
  .header-mobile-actions .nav-action:hover, .header-mobile-actions .nav-action:visited, .header-mobile-actions .nav-action:active { color: var(--white); text-decoration: none; }
  .header-mobile-actions .nav-action:hover { background: var(--navy-light); box-shadow: 0 6px 12px rgba(1, 7, 22, .24); transform: translateY(-1px); }
  .header-mobile-actions .nav-action:hover::after, .header-mobile-actions .nav-action:focus-visible::after { transform: translateX(2px) rotate(45deg); }
  .header-mobile-actions .nav-action:active { background: var(--navy); box-shadow: 0 2px 5px rgba(1, 7, 22, .2); transform: translateY(0); }
  .header-mobile-actions .nav-action:focus-visible { color: var(--white); background: var(--navy); border-color: var(--accent); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent), 0 4px 9px rgba(1, 7, 22, .2); outline: none; text-decoration: none; }
  .menu-toggle { white-space: nowrap; }
  .site-header > nav { position: absolute; z-index: 40; top: calc(100% + 1px); right: 0; left: 0; isolation: isolate; padding: .9rem 1.25rem 1.1rem; display: flex; align-items: stretch; flex-direction: column; gap: 0; overflow: hidden; color: var(--white); background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%); border-top: 1px solid color-mix(in srgb, var(--accent) 46%, transparent); border-bottom: 2px solid color-mix(in srgb, var(--accent) 58%, var(--navy)); box-shadow: 0 18px 34px rgba(1, 7, 22, .28); opacity: 0; visibility: hidden; transform: translateY(-5px); pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; }
  .site-header.is-menu-open > nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
  .site-header > nav::before { position: absolute; z-index: -1; inset: -65% 25% 20% -20%; background: radial-gradient(ellipse at center, rgba(178, 142, 82, .12) 0%, rgba(178, 142, 82, 0) 72%); content: ""; pointer-events: none; }
  .site-header > nav a { min-height: 46px; padding: .75rem .15rem; display: flex; align-items: center; color: var(--white); border-bottom: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); text-decoration: none; transition: color .16s ease, padding-left .16s ease, border-color .16s ease; }
  .site-header > nav a:not(.nav-action)::after { width: 6px; height: 6px; margin-left: auto; flex: 0 0 6px; border-top: 1.5px solid var(--accent); border-right: 1.5px solid var(--accent); content: ""; opacity: .72; transform: rotate(45deg); transition: opacity .16s ease, transform .16s ease; }
  .site-header > nav a:last-of-type { border-bottom: 0; }
  .site-header > nav a:hover { padding-left: .35rem; color: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 55%, transparent); text-decoration: none; }
  .site-header > nav a:hover::after, .site-header > nav a:focus-visible::after { opacity: 1; transform: translateX(2px) rotate(45deg); }
  .site-header > nav a:focus-visible { color: var(--accent-soft); border-radius: 2px; outline: 2px solid var(--accent); outline-offset: -2px; }
  .site-header > nav a[aria-current="page"] { color: var(--accent-soft); font-weight: 650; text-decoration: none; }
  .site-header > nav .nav-action { display: none; }
  .hero-layout { padding: 2rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(2.45rem, 8.8vw, 3.7rem); }
  .hero-lede { margin-top: 1rem; }
  .about-compact { grid-template-columns: 1fr; }
  .about-compact-media { max-height: 560px; }
  .secondary-entries { grid-template-columns: 1fr; }
  .secondary-entry-copy { min-height: 0; }
  .story-index { grid-template-columns: 1fr; gap: 3rem; }
  .story-card-featured { grid-column: auto; }
  .editorial-photo { aspect-ratio: 4 / 5; margin-inline: 1.25rem; }
  .editorial-photo img { object-position: 54% center; }
  .followup { margin-inline: 1.25rem; display: flex; flex-direction: column; }
  .training-photo { height: min(66svh, 620px); }
  .training-photo img { object-position: 50% 40%; }
  .followup-content { padding: 3rem 1.35rem; }
  .followup-steps { --marker-x: 0px; --marker-y: 83.333%; min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .followup-steps::after { top: var(--marker-y); left: var(--marker-x); }
  .followup-steps li, .followup-steps li:nth-child(1), .followup-steps li:nth-child(2), .followup-steps li:nth-child(3) { min-height: 112px; margin-top: 0; padding: 1rem 0 1.2rem 1.2rem; }
  .followup-steps li::before { width: 3px; height: auto; top: 0; right: auto; bottom: 0; left: 0; transform-origin: center top; }
  .followup-steps li:hover::before, .followup-steps li:focus-visible::before { width: 4px; height: auto; }
  .followup-steps.is-observed:not(.is-visible) li::before { transform: scaleY(0); }
  .followup-steps.is-observed.is-visible:not(.is-intro-complete) li:nth-child(1)::before { animation-name: draw-step-line-mobile; }
  .followup-steps.is-observed.is-visible:not(.is-intro-complete) li:nth-child(2)::before { animation-name: draw-step-line-mobile; }
  .followup-steps.is-observed.is-visible:not(.is-intro-complete) li:nth-child(3)::before { animation-name: draw-step-line-mobile; }
  .followup-steps.is-observed.is-visible:not(.is-intro-complete)::after { animation-name: marker-journey-mobile; }
  .followup-steps .step-number { margin-bottom: .35rem; }
  .editorial-reading, .story-body { font-size: 18px; line-height: 1.65; }
  .editorial-reading blockquote, .story-body blockquote p { line-height: 1.65; }
  .field-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .story-media-wide { width: calc(100vw - 2.5rem); }
  .faq-cta { margin-inline: 1.25rem; align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
  .footer-copy { text-align: left; }
}

@keyframes draw-step-line-mobile { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes marker-journey-mobile {
  0%, 22% { top: 16.667%; left: 0; opacity: 1; }
  48%, 64% { top: 50%; left: 0; opacity: 1; }
  90%, 100% { top: 83.333%; left: 0; opacity: 1; }
}

@media (max-width: 520px) {
  .site-header { padding-inline: 1rem; }
  .wordmark strong { font-size: .85rem; }
  .nav-action { padding: .52rem .7rem; }
  .hero-layout { padding-top: 1.5rem; }
  .hero-copy .overline { max-width: 250px; }
  .hero h1 { font-size: clamp(2.12rem, 10vw, 2.8rem); }
  .hero-lede { font-size: .92rem; line-height: 1.5; }
  .hero-person { height: 290px; }
  .form-shell { padding: 1.1rem; border-radius: 7px; }
  .panel-tabs { margin: -1.1rem -1.1rem 1.2rem; padding-inline: 1.1rem; }
  .service-choices { grid-template-columns: 1fr; }
  legend, .question { font-size: 1.35rem; }
  .form-nav { margin-top: 1.2rem; }
  .result-actions { flex-direction: column-reverse; align-items: stretch; gap: .45rem; }
  .result-actions .back-button, .result-actions .next-button { width: 100%; }
  .collaboration-choice > span { padding-left: 2.85rem; }
  .collaboration-choice > span::before { left: .85rem; }
  .collaboration-choice > span::after { left: 1.19rem; }
  .about-compact { padding: 1.25rem; }
  .about-facts > div { grid-template-columns: 1fr; gap: .2rem; }
  .followup { margin-inline: 0; }
  .story-media-wide { width: 100%; margin-left: 0; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .header-mobile-actions .nav-action:hover, .header-mobile-actions .nav-action:active, .header-mobile-actions .nav-action:hover::after, .header-mobile-actions .nav-action:focus-visible::after, .site-header > nav, .site-header > nav a:hover::after, .site-header > nav a:focus-visible::after { transform: none; }
  .site-header.is-menu-open .menu-icon-middle { opacity: 0; }
  .next-button.is-ready-cue { animation: none; }
  .followup-steps.is-observed li { opacity: 1; transform: none; }
  .followup-steps.is-observed li::before { animation: none !important; transform: none !important; }
  .followup-steps.is-intro-complete::after { top: var(--marker-y); left: var(--marker-x); animation: none !important; opacity: 1; }
}
