/* Single artikkeli page styles — VERBATIM from design-source GI - Article.html. */


        @font-face { font-family: 'NORD'; src: url('fonts/NORD-Thin.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
        @font-face { font-family: 'NORD'; src: url('fonts/NORD-Book.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
        @font-face { font-family: 'NORD'; src: url('fonts/NORD-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
        @font-face { font-family: 'NORD'; src: url('fonts/NORD-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        /* :root → tokens.css */
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--bg);
            color: var(--ink);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'NORD', sans-serif; font-weight: 400; text-transform: uppercase; }
        a { color: inherit; }
        img { max-width: 100%; display: block; }

        /* ---------------- HEADER ---------------- */
        .header {
            position: absolute;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 300ms ease;
        }
        .header::after {
            content: ""; position: absolute;
            left: 2rem; right: 2rem; bottom: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.25);
            transition: background 300ms ease;
        }
        .header.scrolled {
            position: fixed;
            background: white;
        }
        .header.scrolled::after { background: var(--border); }
        .header.scrolled .nav-link { color: var(--ink-soft); }
        .header.scrolled .nav-link:hover { color: var(--accent); }
        .header.scrolled .logo .logo-white { display: none; }
        .header.scrolled .logo .logo-dark { display: block; }
        .logo { display: flex; align-items: center; text-decoration: none; }
        .logo img { display: block; height: 35.2px; width: auto; }
        .logo .logo-dark { display: none; }
        .nav { display: flex; gap: 2rem; align-items: center; }
        .nav-item { position: relative; font-size: var(--text-small); line-height: 1.7; }
        .nav-trigger {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: none; border: none; padding: 0; margin: 0; cursor: pointer;
            font: inherit; color: inherit; line-height: 1.7;
            letter-spacing: inherit; text-transform: inherit;
            vertical-align: middle; height: auto;
        }
        .nav-trigger .chev {
            width: 8px; height: 8px;
            border-right: 1px solid currentColor;
            border-bottom: 1px solid currentColor;
            transform: translateY(-2px) rotate(45deg);
            transition: transform 200ms ease;
        }
        .nav-item.open .nav-trigger .chev { transform: translateY(1px) rotate(-135deg); }
        .nav-dropdown {
            position: absolute; top: 100%; left: 50%;
            transform: translateX(-50%) translateY(-4px);
            margin-top: 0.5rem; min-width: 180px;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(20px) saturate(140%);
            -webkit-backdrop-filter: blur(20px) saturate(140%);
            padding: 0.6rem 0;
            display: flex; flex-direction: column; align-items: flex-start;
            opacity: 0; visibility: hidden; pointer-events: none;
            transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
            z-index: 110;
        }
        .nav-dropdown::before {
            content: ""; position: absolute;
            top: -0.6rem; left: 0; right: 0; height: 0.6rem;
        }
        .nav-item.open .nav-dropdown {
            opacity: 1; visibility: visible; pointer-events: auto;
            transform: translateX(-50%) translateY(0);
            transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 0s;
        }
        .nav-dropdown a {
            display: inline-block; position: relative;
            margin: 0 1.5rem; padding: 0.7rem 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--text-meta); font-weight: 400;
            text-transform: uppercase; letter-spacing: 0.08em;
            text-decoration: none;
            transition: color 200ms ease;
            white-space: nowrap;
        }
        .nav-dropdown a.active { color: white; }
        .nav-dropdown a::after {
            content: ''; position: absolute;
            left: 0; bottom: 0.4rem; width: 100%; height: 1px;
            background: white;
            transform: scaleX(0); transform-origin: left;
            transition: transform 300ms ease;
        }
        .nav-dropdown a:hover { color: white; }
        .nav-dropdown a:hover::after, .nav-dropdown a.active::after { transform: scaleX(1); }
        .header.scrolled .nav-dropdown {
            background: white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
        }
        .header.scrolled .nav-dropdown a { color: var(--ink-soft); }
        .header.scrolled .nav-dropdown a.active { color: var(--accent); }
        .header.scrolled .nav-dropdown a::after { background: var(--accent); }
        .header.scrolled .nav-dropdown a:hover { color: var(--accent); }
        .nav-trigger.is-section-active::after {
            content: '';
            position: absolute;
            left: 0; bottom: 0; width: 100%; height: 1px;
            background: currentColor;
        }
        .nav-link {
            font-weight: 400; font-size: var(--text-small);
            text-transform: uppercase; letter-spacing: 0.08em;
            color: white; text-decoration: none;
            transition: color 200ms ease;
            position: relative; padding-bottom: 4px;
        }
        .nav-link::after {
            content: ''; position: absolute;
            left: 0; bottom: 0; width: 100%; height: 1px;
            background: currentColor;
            transform: scaleX(0); transform-origin: left center;
            transition: transform 300ms ease;
        }
        .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
        .lang-switcher {
            display: flex; align-items: center; gap: 0.5rem;
            margin-left: 2rem; padding-left: 2rem;
            border-left: 1px solid rgba(255, 255, 255, 0.25);
            font-size: var(--text-meta); text-transform: uppercase;
            letter-spacing: 0.15em; font-weight: 400;
        }
        .lang-switcher a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 200ms ease;
        }
        .lang-switcher a.active { color: white; }
        .lang-switcher .divider { color: rgba(255, 255, 255, 0.35); }
        .header.scrolled .lang-switcher { border-left-color: var(--border); }
        .header.scrolled .lang-switcher a { color: var(--ink-soft); opacity: 0.5; }
        .header.scrolled .lang-switcher a.active { color: var(--ink); opacity: 1; }
        .header.scrolled .lang-switcher .divider { color: var(--border); }

        /* ---------------- READING PROGRESS ---------------- */
        .reading-progress {
            position: fixed;
            top: 0; left: 0;
            height: 2px;
            background: var(--accent);
            z-index: 200;
            width: 0;
            transition: width 100ms linear;
        }

        /* HERO ENTRANCE — shared site-wide pattern */
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .hero-anim {
            opacity: 0;
            animation: heroFadeUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
            animation-delay: calc(250ms + var(--i, 0) * 140ms);
            will-change: opacity, transform;
        }
        .hero-defer .hero-anim { animation: none; opacity: 0; transform: translateY(22px); }
        .hero-defer.is-ready .hero-anim {
            animation: heroFadeUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
            animation-delay: calc(120ms + var(--i, 0) * 140ms);
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-anim, .hero-defer.is-ready .hero-anim {
                animation: none; opacity: 1; transform: none;
            }
        }

        /* ---------------- HERO ---------------- */
        .article-hero {
            position: relative;
            min-height: 78vh;
            max-height: 880px;
            overflow: hidden;
            background: #1a1a1a;
            color: white;
            display: flex;
            align-items: flex-end;
            padding: 9rem 2rem 4rem;
        }
        .article-hero-bg {
            position: absolute; inset: 0;
            background-size: cover; background-position: center;
            transform: scale(1.05);
            animation: hero-zoom 16s ease-out forwards;
            opacity: 0.92;
        }
        @keyframes hero-zoom {
            from { transform: scale(1.1); }
            to { transform: scale(1.0); }
        }
        .article-hero::after {
            content: ""; position: absolute; inset: 0;
            background:
                linear-gradient(45deg,
                    rgba(0,0,0,0.7) 0%,
                    rgba(0,0,0,0.3) 45%,
                    rgba(0,0,0,0) 75%),
                linear-gradient(180deg,
                    rgba(0,0,0,0.4) 0%,
                    rgba(0,0,0,0.15) 30%,
                    rgba(0,0,0,0.15) 60%,
                    rgba(0,0,0,0.75) 100%);
        }
        .article-hero-inner {
            position: relative; z-index: 2;
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
        }
        .article-hero-breadcrumb {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-small);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
        }
        .article-hero-breadcrumb a {
            color: inherit;
            text-decoration: none;
            transition: color 200ms ease;
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
        }
        .article-hero-breadcrumb a:hover { color: white; }
        .article-hero-breadcrumb .sep { width: 24px; height: 1px; background: rgba(255,255,255,0.55); }
        .article-hero-tag {
            display: inline-block;
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            padding: 0.45rem 0.85rem;
            background: var(--accent);
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1;
        }
        .article-hero-tag[hidden] { display: none; }
        .article-hero-title {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            font-size: clamp(1.7rem, 2.9vw, 2.6rem);
            line-height: 1.22;
            letter-spacing: -0.01em;
            text-transform: none;
            text-shadow: 0 2px 18px rgba(0,0,0,0.4);
            margin: 0 0 2rem;
            text-wrap: balance;
            max-width: 28ch;
        }
        .article-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-small);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 12px rgba(0,0,0,0.45);
        }
        .article-hero-meta .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
        }
        .article-hero-meta .meta-item .dot {
            width: 3px; height: 3px;
            background: currentColor;
            border-radius: 50%;
            opacity: 0.6;
        }

        /* ---------------- LOADING ---------------- */
        .page-loading {
            position: fixed; inset: 0;
            background: white;
            display: flex; align-items: center; justify-content: center;
            z-index: 9999;
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-micro);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--muted);
            transition: opacity 400ms ease, visibility 0s linear 400ms;
        }
        .page-loading.hidden { opacity: 0; visibility: hidden; }

        /* ---------------- ARTICLE BODY ---------------- */
        .article-body-wrap {
            padding: 6rem 2rem 5rem;
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 5rem;
            align-items: start;
        }
        .article-body-eyebrow {
            position: sticky;
            top: 7rem;
            font-family: 'NORD', sans-serif;
            font-size: var(--text-h2);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            font-weight: 400;
            line-height: 1.1;
            color: var(--ink);
        }
        .article-body-eyebrow::before {
            content: "";
            display: block;
            width: 40px; height: 2px;
            background: var(--accent);
            margin-bottom: 1.1rem;
        }
        .article-body-col { min-width: 0; }
        /* Narrow the reading measure; let images run the full column width */
        .article-body > p,
        .article-body > .lede,
        .article-body > h2,
        .article-body > h3,
        .article-body > h4,
        .article-body > ul,
        .article-body > ol,
        .article-body > blockquote {
            max-width: 680px;
        }
        .article-body > figure,
        .article-body > img,
        .article-body > p > img {
            width: 100%;
            max-width: 100%;
        }
        .article-body {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-body);
            line-height: 1.75;
            color: var(--ink-soft);
        }
        .article-body > .lede {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-body);
            line-height: 1.75;
            color: var(--ink-soft);
            font-weight: 400;
            margin: 0 0 1.5rem;
            padding: 0;
            letter-spacing: 0;
            text-wrap: pretty;
        }
        .article-body > .lede::before {
            content: none;
        }
        .article-body p {
            margin: 0 0 1.5rem;
            padding: 0;
            text-wrap: pretty;
        }
        .article-body p:empty { display: none; }
        .article-body h2 {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            text-transform: none;
            font-size: var(--text-h2);
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: var(--ink);
            margin: 3rem 0 1.25rem;
            padding: 0;
        }
        .article-body h3, .article-body h4 {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            text-transform: none;
            font-size: var(--text-lede);
            line-height: 1.35;
            letter-spacing: -0.005em;
            color: var(--ink);
            margin: 2.5rem 0 1rem;
            padding: 0;
        }
        .article-body strong { color: var(--ink); font-weight: 700; }
        .article-body em { font-style: normal; }
        .article-body a {
            color: var(--accent);
            text-decoration: none;
            background: linear-gradient(currentColor, currentColor) bottom left/0% 1px no-repeat;
            transition: background-size 300ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease;
        }
        .article-body a:not(.no-underline) {
            background: linear-gradient(currentColor, currentColor) bottom left/100% 1px no-repeat;
        }
        .article-body a:hover {
            color: var(--accent-hover);
            background-size: 0% 1px;
        }
        .article-body ul, .article-body ol {
            margin: 1.5rem 0 1.5rem 1.5rem;
            padding-left: 0.5rem;
        }
        .article-body li { margin-bottom: 0.5rem; }
        .article-body li::marker { color: var(--accent); }
        .article-body blockquote {
            margin: 3rem 0;
            padding: 0;
            font-family: 'Open Sans', sans-serif;
            font-size: var(--fluid-h3);
            line-height: 1.4;
            letter-spacing: -0.01em;
            text-transform: none;
            color: var(--ink);
            font-weight: 700;
            text-align: center;
            text-wrap: balance;
        }
        .article-body blockquote::before {
            content: "";
            display: block;
            width: 48px;
            height: 1px;
            background: var(--accent);
            margin: 0 auto 2rem;
        }
        .article-body blockquote::after {
            content: "";
            display: block;
            width: 48px;
            height: 1px;
            background: var(--accent);
            margin: 2rem auto 0;
        }

        /* Images — force every image (anywhere in body) to fill the column */
        .article-body figure,
        .article-body > img,
        .article-body p {
            margin: 0 0 1.5rem;
        }
        .article-body figure {
            margin: 3rem 0;
        }
        .article-body img {
            display: block;
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            margin: 0;
        }
        /* Standalone img directly inside a paragraph: convert paragraph into a flex
           wrapper so the image fills the full column width. */
        .article-body p:has(> img) {
            margin: 3rem 0;
        }
        .article-body figure img,
        .article-body > img {
            display: block;
            width: 100%;
            height: auto;
            margin: 0;
        }
        .article-body figure {
            display: block;
        }
        .article-body figcaption {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            color: var(--muted);
            line-height: 1.55;
            margin-top: 0.85rem;
            text-align: center;
            font-style: normal;
        }
        /* Images inside paragraphs also fill full width */
        .article-body p img {
            display: block;
            margin: 0;
            width: 100%;
            max-width: 100%;
            height: auto;
        }
        /* Tail / disclaimer / em-wrapped footnote text */
        .article-body > em,
        .article-body > p > em:only-child {
            display: block;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            line-height: 1.7;
            color: var(--muted);
            font-style: normal;
        }

        /* ---------------- ARTICLE SIDEBAR (sticky meta) ---------------- */
        .article-meta-bar {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin: 4rem 0 0;
            padding: 1.75rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .article-meta-bar-text {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            text-transform: uppercase;
            letter-spacing: 0.13em;
            color: var(--muted);
            font-weight: 700;
        }
        .article-meta-bar-text strong { color: var(--ink); font-weight: 700; }
        .article-share {
            display: flex;
            gap: 0.6rem;
            align-items: center;
        }
        .article-share-label {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 700;
            color: var(--muted);
            margin-right: 0.4rem;
        }
        .share-btn {
            width: 36px; height: 36px;
            border: 1px solid var(--border);
            background: white;
            color: var(--ink-soft);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 200ms ease;
            text-decoration: none;
        }
        .share-btn:hover {
            background: var(--ink);
            border-color: var(--ink);
            color: white;
        }
        .share-btn svg {
            width: 15px; height: 15px;
            fill: currentColor;
        }
        .share-btn.copied {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        /* ---------------- PREV/NEXT NAV ---------------- */
        .article-nav {
            border-top: 1px solid var(--border);
            background: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 200px;
        }
        .article-nav-side {
            position: relative;
            display: flex;
            align-items: center;
            padding: 2rem;
            text-decoration: none;
            color: var(--ink);
            overflow: hidden;
            transition: color 200ms ease;
        }
        .article-nav-side.is-prev { padding-right: 4rem; }
        .article-nav-side.is-next {
            justify-content: flex-end;
            text-align: right;
            border-left: 1px solid var(--border);
            padding-left: 4rem;
        }
        .article-nav-side:hover { color: white; }
        .article-nav-side-content {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            position: relative;
            z-index: 2;
        }
        .article-nav-side-arrow {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-micro);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 700;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 0.85rem;
            transition: color 200ms ease;
        }
        .article-nav-side.is-next .article-nav-side-arrow { justify-content: flex-end; }
        .article-nav-side-arrow .line {
            display: block;
            width: 24px; height: 1px;
            background: currentColor;
            flex-shrink: 0;
            transition: width 300ms cubic-bezier(0.22, 1, 0.36, 1);
        }
        .article-nav-side:hover .article-nav-side-arrow .line { width: 40px; }
        .article-nav-side-title {
            font-family: 'NORD', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            font-size: var(--fluid-lede);
            line-height: 1.2;
            letter-spacing: 0.01em;
        }
        .article-nav-side-meta {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            text-transform: uppercase;
            letter-spacing: 0.13em;
            color: var(--muted);
            font-weight: 700;
        }
        .article-nav-side-thumb {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.05);
            transition: opacity 500ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 0;
        }
        .article-nav-side-thumb::after {
            content: "";
            position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 100%);
        }
        .article-nav-side:hover .article-nav-side-thumb { opacity: 1; transform: scale(1); }
        .article-nav-side:hover .article-nav-side-arrow,
        .article-nav-side:hover .article-nav-side-meta { color: rgba(255,255,255,0.85); }

        /* ---------------- RELATED ---------------- */
        .related {
            padding: 6rem 2rem;
            background: var(--bg-subtle);
        }
        .related-inner { max-width: 1600px; margin: 0 auto; }
        .related-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
            margin-bottom: 3rem;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .related-header h2 {
            font-family: 'NORD', sans-serif;
            font-weight: 400;
            font-size: var(--fluid-h2);
            text-transform: uppercase;
            letter-spacing: 0.01em;
            margin: 0;
        }
        .related-header .all-link {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid var(--accent);
            transition: color 200ms ease, border-color 200ms ease;
        }
        .related-header .all-link:hover { color: var(--accent-hover); border-color: var(--accent-hover); }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem 2rem;
        }
        .related-card {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }
        .related-card-img {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #111;
            margin-bottom: 1.25rem;
        }
        .related-card-img img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 500ms ease, transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
        }
        .related-card-img img.loaded { opacity: 1; }
        .related-card:hover .related-card-img img { transform: scale(1.04); }
        .related-card-date {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--ink-soft);
            margin-bottom: 0.5rem;
        }
        .related-card-title {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            text-transform: none;
            font-size: var(--text-body);
            line-height: 1.4;
            letter-spacing: -0.005em;
            margin: 0 0 0.75rem;
            color: var(--ink);
            text-wrap: balance;
            transition: color 200ms ease;
        }
        .related-card:hover .related-card-title { color: var(--accent); }
        .related-card-cta {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-meta);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
            padding-top: 0.25rem;
        }
        .related-card-cta .arrow { transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1); }
        .related-card:hover .related-card-cta .arrow { transform: translateX(4px); }

        /* ---------------- CTA + FOOTER ---------------- */
        .cta-section {
            position: relative;
            background: var(--ink) url('assets/helsinki-harbor.jpg') center/cover no-repeat fixed;
            color: white;
            padding: 7rem 2rem;
            text-align: center;
            overflow: hidden;
            isolation: isolate;
        }
        .cta-section::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
            z-index: -1;
        }
        .cta-inner { max-width: 720px; margin: 0 auto; }
        .cta-title {
            font-size: var(--fluid-h2);
            font-family: 'NORD', sans-serif;
            font-weight: 400; text-transform: uppercase;
            margin-bottom: 1rem; line-height: 1.2;
        }
        .cta-lede {
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-body); line-height: 1.65;
            color: rgba(255,255,255,0.85);
            margin: 0 auto 2.25rem; max-width: 540px;
        }
        .cta-button {
            display: inline-block;
            font-family: 'Open Sans', sans-serif;
            color: white; text-decoration: none;
            text-transform: uppercase; letter-spacing: 0.1em;
            font-size: var(--text-meta); font-weight: 700;
            border: 1px solid white;
            padding: 1rem 2.5rem;
            transition: all 200ms ease;
        }
        .cta-button:hover { background: white; color: var(--ink); }

        .footer {
            background: white;
            padding: 3rem 2rem 2rem;
            border-top: 1px solid var(--border);
        }
        .footer-content { margin: 0 auto; display: flex; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
        .footer-section h4 {
            text-transform: uppercase;
            font-family: 'Open Sans', sans-serif;
            font-size: var(--text-lede); letter-spacing: 0;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .footer-section p, .footer-section a {
            font-size: var(--text-small); line-height: 1.8;
            color: var(--ink-soft); text-decoration: none;
        }
        .footer-section a:hover { color: var(--accent); }
        .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
        .footer-logo { display: block; height: 32px; width: auto; margin-bottom: 1.25rem; }
        .footer-bottom {
            text-align: center; padding-top: 2rem;
            border-top: 1px solid var(--border);
            font-size: var(--text-meta); color: var(--ink-soft);
        }

        /* ---------------- RESPONSIVE ---------------- */
        @media (max-width: 1024px) {
            .article-hero { min-height: 65vh; padding: 8rem 1.5rem 3rem; }
            .article-body-wrap { padding: 4rem 1.5rem 3rem; grid-template-columns: 1fr; gap: 2rem; }
            .article-body-eyebrow { position: static; }
            .article-body figure,
            .article-body > img {
                margin: 2.5rem 0;
                width: 100%;
            }
            .article-nav { grid-template-columns: 1fr; min-height: auto; }
            .article-nav-side { padding: 2.25rem 1.5rem; min-height: 150px; }
            .article-nav-side.is-next { border-left: none; border-top: 1px solid var(--border); padding-left: 1.5rem; padding-right: 1.5rem; }
            .related { padding: 4rem 1.5rem; }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 720px) {
            .nav, .lang-switcher { display: none; }
            .article-hero { min-height: 60vh; padding: 6.5rem 1.25rem 2.5rem; }
            .article-body { font-size: var(--text-body); line-height: 1.7; }
            .article-body-wrap { padding: 3rem 1.25rem 2rem; }
            .article-body blockquote { font-size: var(--text-lede); margin: 2.5rem 0; }
            .article-meta-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .article-hero-meta { gap: 1rem; font-size: var(--text-small); }
            .related-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 2rem; }
            .cta-section { padding: 4.5rem 1.25rem; background-attachment: scroll; }
        }
        /* Button emphasis + arrow size (brief) */
        .cta-button, .form-submit, .load-more, .hero-btn, .btn-square { font-weight: 700; }
        .arrow, .btn-square-arrow { font-size: 1.35em; line-height: 1; display: inline-block; vertical-align: middle; }
    

/* ===== Article.html style block 2 ===== */

    /* Header fit fix: estä vaakavieritys kapeilla desktop-leveyksillä (ei hampurilaisvalikkoa tällä sivulla) */
    @media (max-width: 1000px) { .lang-switcher { display: none; } }
    @media (max-width: 880px) { .nav { gap: 1rem; } .nav-link, .nav-item { font-size: var(--text-meta); } }
    

/* ===== Article.html style block 3 ===== */

    /* === Typografian yhtenäistys (palaverin kohta 6) ===
       Yksi tyyli per rooli koko sivustolle. Sijoitettu bodyn loppuun jotta
       voittaa aiemmat hajanaiset säännöt samalla spesifisyydellä. */
    /* Hero-eyebrow: identtinen koko, paino ja viiva kaikilla sivuilla */
    .page-banner-eyebrow { font-weight: 400; color: rgba(255,255,255,0.95); margin-bottom: 1rem; }
    .page-banner-eyebrow::before { width: 28px; height: 1px; background: rgba(255,255,255,0.7); }
    /* Tuntomerkit-osio: ei viivaa ylimmän rivin yläpuolelle */
    .feature-row:nth-child(1), .feature-row:nth-child(2) { border-top: none; padding-top: 0; }
    @media (max-width: 760px) { .feature-row:nth-child(2) { border-top: 1px solid var(--border); padding-top: 1.75rem; } }
    /* Suunnitteluprosessi: ei yläviivaa askeleissa desktopilla */
    @media (min-width: 901px) { .service-process .process-step { border-top: none; padding-top: 0; } }
    /* Sisältökorttien otsikot: yhtenäinen uppercase Open Sans (sama kaikkialla) */
    .value-card h3, .feature-row h3, .process-step h3 {
        font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: var(--text-lede);
        text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.3;
    }
    /* Referenssi-/projektikorttien otsikot yhtenäiseksi */
    .related-card-title {
        font-family: 'NORD', sans-serif; font-weight: 400; font-size: var(--text-h3);
        text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1;
    }
    /* Painikkeet: yksi paino */
    .cta-button { font-weight: 700; }
    /* Navigaatio: yksi koko/paino kaikilla sivuilla */
    .nav-link, .nav-item { font-size: var(--text-small); font-weight: 400; }
    
