/* ==========================================================================
   Do Better Norge — homepage v2  ·  "The Case File"
   --------------------------------------------------------------------------
   The site's strongest asset is evidence: 23 ECHR judgments, real records,
   real testimony. So the visual grammar here is documentary — exhibit stamps,
   hairline rules, ruled record tables, printed-paper grain — rather than the
   rounded-card look of a generic campaign page.

   Everything is namespaced .v2-* so this file cannot collide with
   nordic-global.css or dbn-brand-redesign.css, which still own the shared
   header, footer and the rest of the site.
   ========================================================================== */

.v2-shell {
    /* Norway flag palette, unchanged from Nordic Clarity. */
    --v2-red: #ba0c2f;
    --v2-red-deep: #8e0722;
    --v2-red-wash: rgba(186, 12, 47, 0.08);
    --v2-blue: #00205b;
    --v2-blue-deep: #00112e;
    --v2-night: #070f22;
    --v2-gold: #f4c542;

    --v2-paper: #f6f2ea;
    --v2-ivory: #fffaf3;
    --v2-ink: #16130f;
    --v2-ink-soft: #4a4640;
    --v2-ink-faint: #7d766c;
    --v2-rule: rgba(22, 19, 15, 0.14);
    --v2-rule-light: rgba(255, 255, 255, 0.18);

    --v2-serif: 'Crimson Pro', Georgia, 'Times New Roman', serif;
    --v2-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --v2-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

    --v2-gutter: clamp(1.15rem, 4vw, 2.5rem);
    --v2-band-y: clamp(3.5rem, 8vw, 6.5rem);

    background: var(--v2-paper);
    color: var(--v2-ink);
    font-family: var(--v2-sans);
    /* Printed-stock grain. Inline SVG so the page stays self-contained. */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.v2-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--v2-gutter);
}

.v2-band {
    position: relative;
    padding: var(--v2-band-y) 0;
    border-top: 1px solid var(--v2-rule);
}

.v2-band--dark {
    background: var(--v2-night);
    color: #fff;
    border-top-color: transparent;
}

.v2-band--tight { padding-top: clamp(2.25rem, 5vw, 3.5rem); }

/* Alternate light band. Breaks up the long run of identical paper sections in
   the middle of the page; cards inside it flip to white so they stay readable. */
.v2-band--alt { background: var(--v2-ivory); }
.v2-band--alt .v2-routes,
.v2-band--alt .v2-route,
.v2-band--alt .v2-stat { background: #fff; }
.v2-band--alt .v2-route:hover { background: var(--v2-paper); }

/* --- Exhibit stamp: the mono label used as a record marker ---------------- */
.v2-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.1rem;
    font-family: var(--v2-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v2-red);
}

.v2-mark::before {
    content: '';
    width: 1.9rem;
    height: 2px;
    background: currentColor;
}

.v2-band--dark .v2-mark { color: var(--v2-gold); }

/* --- Type scale ---------------------------------------------------------- */
.v2-display {
    margin: 0 0 1rem;
    font-family: var(--v2-serif);
    font-weight: 600;
    font-size: clamp(2.4rem, 6.2vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.015em;
    color: var(--v2-blue);
    text-wrap: balance;
}

.v2-band--dark .v2-display { color: #fff; }

.v2-title {
    margin: 0 0 0.85rem;
    font-family: var(--v2-serif);
    font-weight: 600;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.01em;
    color: var(--v2-blue);
    text-wrap: balance;
}

.v2-band--dark .v2-title { color: #fff; }

.v2-lede {
    margin: 0;
    max-width: 62ch;
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
    line-height: 1.72;
    color: var(--v2-ink-soft);
    text-wrap: pretty;
}

.v2-band--dark .v2-lede { color: rgba(255, 255, 255, 0.76); }

.v2-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* --- Buttons ------------------------------------------------------------- */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.9rem 1.6rem;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: var(--v2-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease,
                color 180ms ease, transform 180ms ease;
}

.v2-btn:hover { transform: translateY(-2px); }
.v2-btn:focus-visible { outline: 3px solid var(--v2-gold); outline-offset: 3px; }

.v2-btn--primary {
    background: var(--v2-red);
    border-color: var(--v2-red);
    color: #fff;
    /* The one dominant CTA on the page — give it real weight. */
    padding: 1.05rem 2.1rem;
    font-size: 1.06rem;
    box-shadow: 0 10px 30px rgba(186, 12, 47, 0.28);
}

.v2-btn--primary:hover { background: var(--v2-red-deep); border-color: var(--v2-red-deep); }

.v2-btn--ghost {
    background: transparent;
    border-color: var(--v2-rule);
    color: var(--v2-blue);
}

.v2-btn--ghost:hover { border-color: var(--v2-blue); background: rgba(0, 32, 91, 0.04); }

.v2-band--dark .v2-btn--ghost { border-color: var(--v2-rule-light); color: #fff; }
.v2-band--dark .v2-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.v2-btn--light { background: #fff; border-color: #fff; color: var(--v2-blue); }
.v2-btn--light:hover { background: var(--v2-paper); border-color: var(--v2-paper); }

/* Quiet inline link with a hairline that grows on hover. */
.v2-quiet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    font-family: var(--v2-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    opacity: 0.72;
    transition: opacity 180ms ease;
}

.v2-quiet:hover { opacity: 1; }

.v2-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.9rem;
}

/* ==========================================================================
   1 · Hero — the distress signal
   ========================================================================== */
.v2-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
    background: var(--v2-night);
    color: #fff;
}

.v2-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/images/guides/council-of-europe-strasbourg.jpg') center 30% / cover no-repeat;
    filter: grayscale(0.85) brightness(0.3);
    z-index: 0;
}

.v2-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(104deg, rgba(7, 15, 34, 0.95) 0%, rgba(0, 17, 46, 0.86) 52%, rgba(186, 12, 47, 0.32) 100%);
}

.v2-hero .v2-wrap { position: relative; z-index: 2; }

.v2-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.55fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.v2-hero__title {
    max-width: 15ch;
    margin-bottom: 1.4rem;
    color: #fff;
}

.v2-hero__lede { color: rgba(255, 255, 255, 0.78); max-width: 54ch; }

/* Trust line directly under the CTA — this audience's first question is
   "can I be identified?", so answer it before they have to ask. */
.v2-hero__note {
    margin: 1.1rem 0 0;
    font-family: var(--v2-mono);
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.v2-hero__count {
    margin: 1.75rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--v2-rule-light);
    font-family: var(--v2-serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
}

.v2-hero__count strong { color: var(--v2-gold); font-weight: 600; }

/* The inverted flag. A flag flown upside down is a distress signal — it is
   the single most memorable thing on the page, so it gets room and a caption
   that explains it rather than leaving it as decoration. */
.v2-flag { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }

.v2-flag__svg {
    display: block;
    width: min(230px, 60vw);
    height: auto;
    transform: rotate(180deg);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.v2-flag__cap {
    max-width: 24ch;
    font-family: var(--v2-mono);
    font-size: 0.68rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
}

/* ==========================================================================
   2 · Testimony
   ========================================================================== */
.v2-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.v2-story__title { max-width: 11ch; }

/* Rule of record: a red hairline down the left of quoted testimony. */
.v2-quote {
    margin: 0;
    padding-left: clamp(1.25rem, 3vw, 2.25rem);
    border-left: 3px solid var(--v2-red);
}

.v2-quote__text {
    margin: 0 0 1.5rem;
    font-family: var(--v2-serif);
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    font-weight: 400;
    line-height: 1.42;
    color: var(--v2-blue);
    text-wrap: pretty;
}

.v2-quote__by { display: grid; gap: 0.2rem; }

.v2-quote__name {
    font-family: var(--v2-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-red);
}

.v2-quote__role { font-size: 0.95rem; color: var(--v2-ink-faint); }

.v2-story__promise {
    margin: 1rem 0 0;
    max-width: 46ch;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--v2-ink-faint);
}

/* ==========================================================================
   3 · Routes in — three practical starting points
   ========================================================================== */
.v2-routes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--v2-rule);
    background: var(--v2-ivory);
}

.v2-route {
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-right: 1px solid var(--v2-rule);
    transition: background-color 200ms ease;
}

.v2-route:last-child { border-right: 0; }
.v2-route:hover { background: #fff; }

.v2-route__no {
    margin-bottom: 1rem;
    font-family: var(--v2-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--v2-ink-faint);
}

.v2-route__title {
    margin: 0 0 0.6rem;
    font-family: var(--v2-serif);
    font-size: 1.6rem;
    line-height: 1.15;
    color: var(--v2-blue);
}

.v2-route__body {
    margin: 0 0 1.5rem;
    font-size: 0.97rem;
    line-height: 1.68;
    color: var(--v2-ink-soft);
}

.v2-route__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--v2-red);
}

.v2-route__cta::after { content: '→'; transition: transform 180ms ease; }
.v2-route:hover .v2-route__cta::after { transform: translateX(4px); }

/* ==========================================================================
   4 · Guides
   ========================================================================== */
.v2-guides {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.v2-guide {
    display: flex;
    flex-direction: column;
    background: var(--v2-ivory);
    border: 1px solid var(--v2-rule);
    text-decoration: none;
    color: inherit;
    transition: transform 220ms ease, border-color 220ms ease;
}

.v2-guide:hover { transform: translateY(-4px); border-color: var(--v2-blue); }

.v2-guide__img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--v2-blue);
    flex-shrink: 0;
}

.v2-guide__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.4);
    transition: transform 600ms ease, filter 400ms ease;
}

.v2-guide:hover .v2-guide__img img { transform: scale(1.05); filter: grayscale(0); }

.v2-guide__stamp {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0.4rem 0.75rem;
    background: var(--v2-red);
    color: #fff;
    font-family: var(--v2-mono);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-guide__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
    padding: 1.35rem;
}

.v2-guide__title {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.4rem;
    line-height: 1.18;
    color: var(--v2-blue);
}

.v2-guide__desc {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.68;
    color: var(--v2-ink-soft);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.v2-guide__cta {
    margin-top: auto;
    padding-top: 0.4rem;
    font-family: var(--v2-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v2-red);
}

.v2-guide__cta::after { content: ' →'; }

.v2-more { display: flex; justify-content: center; margin-top: clamp(1.75rem, 4vw, 2.75rem); }

/* ==========================================================================
   5 · Voices
   ========================================================================== */
.v2-voices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.v2-voice {
    display: flex;
    flex-direction: column;
    padding: clamp(1.35rem, 2.5vw, 1.9rem);
    background: var(--v2-ivory);
    border: 1px solid var(--v2-rule);
    border-top: 3px solid var(--v2-red);
}

.v2-voice__text {
    margin: 0 0 1.4rem;
    font-family: var(--v2-serif);
    font-size: 1.24rem;
    line-height: 1.5;
    color: var(--v2-blue);
    text-wrap: pretty;
}

.v2-voice__by { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }

.v2-voice__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    flex-shrink: 0;
    background: var(--v2-blue);
    color: #fff;
    font-family: var(--v2-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.v2-voice__name { font-weight: 600; color: var(--v2-blue); font-size: 0.95rem; }
.v2-voice__role { font-size: 0.86rem; color: var(--v2-ink-faint); }

.v2-voice__consent {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid var(--v2-rule);
    font-family: var(--v2-mono);
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v2-ink-faint);
}

/* ==========================================================================
   6 · Evidence — the record
   ========================================================================== */
.v2-evidence__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

/* A big number set as display type: the data IS the headline. */
.v2-figure {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 0 0 1.25rem;
}

.v2-figure__n {
    font-family: var(--v2-serif);
    font-size: clamp(4.5rem, 12vw, 9rem);
    font-weight: 600;
    line-height: 0.82;
    color: var(--v2-red);
}

.v2-figure__cap {
    /* Roomy enough for the Norwegian label, which is the longest of the four. */
    flex: 1;
    min-width: 9rem;
    max-width: 24ch;
    font-family: var(--v2-mono);
    font-size: 0.76rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v2-ink-faint);
}

.v2-record { margin-top: 1.9rem; border-top: 2px solid var(--v2-ink); }

.v2-record__row {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) 4.5rem;
    gap: 1rem;
    align-items: baseline;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--v2-rule);
}

.v2-record__no,
.v2-record__year {
    font-family: var(--v2-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--v2-ink-faint);
}

.v2-record__year { text-align: right; color: var(--v2-red); }

.v2-record__name {
    font-family: var(--v2-serif);
    font-size: 1.12rem;
    line-height: 1.3;
    color: var(--v2-blue);
}

.v2-record__sum {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--v2-sans);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--v2-ink-soft);
}

.v2-record__foot {
    margin: 1rem 0 0;
    font-family: var(--v2-mono);
    font-size: 0.7rem;
    line-height: 1.7;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--v2-ink-faint);
}

.v2-stats { display: grid; gap: 1px; background: var(--v2-rule); border: 1px solid var(--v2-rule); }

.v2-stat { padding: 1.25rem; background: var(--v2-ivory); }

.v2-stat__n {
    display: block;
    font-family: var(--v2-serif);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 600;
    line-height: 1;
    color: var(--v2-blue);
}

.v2-stat__label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--v2-ink-soft);
}

/* ==========================================================================
   7 · Oslo Syndrome
   ========================================================================== */
.v2-oslo { position: relative; overflow: hidden; }

.v2-oslo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(186, 12, 47, 0.28), transparent 48%),
                url('/images/theBlackBox.jpeg') center / cover;
    /* The source image is a dense, text-heavy diagram. Unblurred it competes
       with the headline for the reader's eye and neither one wins. */
    opacity: 0.1;
    filter: grayscale(1) blur(3px);
    pointer-events: none;
}

.v2-oslo .v2-wrap { position: relative; z-index: 1; }

.v2-oslo__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.v2-oslo__title { max-width: 9ch; font-size: clamp(2.8rem, 7vw, 5.4rem); }

.v2-oslo__sub {
    margin: 0 0 1.3rem;
    max-width: 20ch;
    font-family: var(--v2-serif);
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    line-height: 1.12;
    color: #ffd7df;
    text-wrap: balance;
}

.v2-oslo__note {
    margin-top: 1.4rem;
    padding-left: 1rem;
    border-left: 3px solid var(--v2-gold);
    font-family: var(--v2-mono);
    font-size: 0.72rem;
    line-height: 1.75;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.v2-oslo__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 1rem; }

.v2-oslo__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--v2-rule-light);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.62;
}

.v2-oslo__list li:last-child { border-bottom: 0; padding-bottom: 0; }

.v2-oslo__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: 0.5rem;
    background: var(--v2-red);
}

/* ==========================================================================
   8 · Support
   ========================================================================== */
.v2-support { background: var(--v2-blue-deep); color: #fff; }

.v2-support__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.v2-support__cards { display: grid; gap: 1rem; }

.v2-support__card {
    padding: clamp(1.35rem, 2.5vw, 1.9rem);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--v2-rule-light);
}

.v2-support__card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--v2-serif);
    font-size: 1.5rem;
    line-height: 1.15;
    color: #fff;
}

.v2-support__card p {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.72);
}

.v2-support__card--lead { background: rgba(186, 12, 47, 0.18); border-color: rgba(186, 12, 47, 0.5); }

/* ==========================================================================
   9 · Library strip
   ========================================================================== */
.v2-library {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 0;
    border: 1px solid var(--v2-rule);
    background: var(--v2-ivory);
}

.v2-library__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-right: 1px solid var(--v2-rule);
    text-decoration: none;
    color: inherit;
    transition: background-color 200ms ease;
}

.v2-library__item:last-child { border-right: 0; }
.v2-library__item:hover { background: #fff; }

.v2-library__kicker {
    font-family: var(--v2-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-ink-faint);
}

.v2-library__title {
    font-family: var(--v2-serif);
    font-size: 1.3rem;
    line-height: 1.18;
    color: var(--v2-blue);
}

.v2-library__desc { font-size: 0.9rem; line-height: 1.62; color: var(--v2-ink-soft); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
    .v2-hero__grid,
    .v2-story__grid,
    .v2-evidence__grid,
    .v2-oslo__grid,
    .v2-support__grid { grid-template-columns: 1fr; }

    .v2-hero__grid { gap: 2.5rem; }
    .v2-flag { order: -1; align-items: flex-start; }
    .v2-flag__cap { text-align: left; }
    .v2-hero__title, .v2-story__title, .v2-oslo__title, .v2-oslo__sub { max-width: none; }

    .v2-routes,
    .v2-guides { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .v2-route:nth-child(2) { border-right: 0; }
    .v2-route:nth-child(3) { border-top: 1px solid var(--v2-rule); }
}

@media (max-width: 620px) {
    .v2-routes,
    .v2-guides,
    .v2-library { grid-template-columns: 1fr; }

    .v2-route,
    .v2-library__item { border-right: 0; border-bottom: 1px solid var(--v2-rule); }

    .v2-route:last-child,
    .v2-library__item:last-child { border-bottom: 0; }

    .v2-route:nth-child(3) { border-top: 0; }

    .v2-actions { flex-direction: column; align-items: stretch; }
    .v2-actions .v2-btn { width: 100%; }
    .v2-actions .v2-quiet { justify-content: center; }

    .v2-record__row { grid-template-columns: 2.25rem minmax(0, 1fr); }
    .v2-record__year { grid-column: 2; text-align: left; }
}

/* ==========================================================================
   Motion — one orchestrated reveal on the hero, nothing bouncy.
   The subject matter rules out playfulness.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .v2-reveal {
        animation: v2-rise 780ms cubic-bezier(0.16, 0.84, 0.44, 1) both;
    }

    .v2-reveal:nth-child(1) { animation-delay: 60ms; }
    .v2-reveal:nth-child(2) { animation-delay: 150ms; }
    .v2-reveal:nth-child(3) { animation-delay: 240ms; }
    .v2-reveal:nth-child(4) { animation-delay: 330ms; }
    .v2-reveal:nth-child(5) { animation-delay: 420ms; }

    .v2-flag__svg { animation: v2-fade 1400ms ease-out both; }
}

@keyframes v2-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

@keyframes v2-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
