    :root {
      /* Brand palette — STRICT, 7 colors + white */
      --blue:         #4F86C6;
      --blue-sky:     #A8D0F0;
      --orange:       #FFC933;
      --orange-soft:  #FFF1A8;
      --grey-light:   #F4F4F4;
      --grey:         #DDDDDD;
      --grey-dark:    #2F2F2F;
      --white:        #FFFFFF;

      /* Aliases (no extra hues — only palette colors or opacity tints) */
      --blue-hover:   #2F2F2F;
      --blue-deep:    #2F2F2F;
      --blue-dark:    #2F2F2F;
      --blue-navy:    #2F2F2F;
      --blue-pale:    rgba(79,134,198,0.10);
      --blue-pale2:   rgba(79,134,198,0.20);
      --gold:         #FFC933;
      --text:         #2F2F2F;
      --text-body:    #2F2F2F;
      --text-light:   rgba(47,47,47,0.70);
      --text-mute:    rgba(47,47,47,0.50);
      --bg:           #FFFFFF;
      --surface:      #F4F4F4;
      --surface-2:    #DDDDDD;
      --border:       #DDDDDD;
      --border-soft:  #DDDDDD;

      --shadow-xs:    0 1px 2px rgba(47,47,47,0.05);
      --shadow-sm:    0 2px 8px rgba(47,47,47,0.06);
      --shadow:       0 8px 28px rgba(47,47,47,0.10);
      --shadow-lg:    0 24px 56px rgba(47,47,47,0.18);
      --shadow-glow:  0 18px 44px rgba(79,134,198,0.32);
      --radius:       18px;
      --radius-sm:    10px;
      --radius-xs:    6px;
      --grain: radial-gradient(rgba(47,47,47,0.04) 1px, transparent 1px);

      /* Type — prefer exact brand fonts (local install / Adobe Fonts kit),
         fallback to nearest free subs */
      --font-body:    'Montserrat', 'Outfit', system-ui, sans-serif;
      --font-sub:     'Estenda 30 Deca', 'Estenda', 'Saira Condensed', 'Outfit', sans-serif;
      --font-head:    'Big Shoulders Display', 'Anton', 'Saira Condensed', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body {
      font-family: var(--font-body); background: var(--bg); color: var(--text);
      line-height: 1.6; overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ::selection { background: var(--blue); color: var(--white); }

    /* Scroll progress bar */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; width: 0;
      background: linear-gradient(90deg, var(--blue), var(--blue-sky));
      z-index: 2000; transition: width 0.1s linear;
      box-shadow: 0 0 10px rgba(94,184,255,0.5);
    }

    /* ── SVG ICONS ─────────────────────────────── */
    .icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* ── NAVBAR ─ clear-on-top, floating-on-scroll ─ */
    .navbar {
      position: fixed; top: 0; left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 2rem); max-width: 1280px;
      z-index: 1000;
      padding: 0.8rem 1.5rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 0;
      box-shadow: none;
      transition: top 0.4s cubic-bezier(0.2,0.7,0.2,1),
                  max-width 0.4s cubic-bezier(0.2,0.7,0.2,1),
                  padding 0.4s ease,
                  background 0.35s ease,
                  border-color 0.35s ease,
                  border-radius 0.35s ease,
                  box-shadow 0.35s ease;
    }
    .navbar.scrolled {
      top: 0.85rem;
      max-width: 1080px;
      padding: 0.45rem 1rem;
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      border-color: var(--border);
      border-radius: 14px;
      box-shadow: 0 10px 32px rgba(20,30,50,0.10);
    }
    /* Default (clear over dark hero, e.g. etusivu) — light text */
    .has-dark-hero .navbar .nav-links a { color: rgba(255,255,255,0.95); }
    .has-dark-hero .navbar .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.16); }
    .has-dark-hero .navbar .btn-nav-ghost {
      color: var(--white); border-color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
    }
    .has-dark-hero .navbar .btn-nav-ghost:hover { background: rgba(255,255,255,0.18); border-color: var(--white); color: var(--white); }
    .has-dark-hero .navbar .nav-burger-bars span { background: var(--white); }
    .has-dark-hero .navbar .nav-burger:hover { background: rgba(255,255,255,0.12); }

    /* Default (inner pages — light bg behind transparent nav) — dark text */
    body:not(.has-dark-hero) .navbar .nav-links a { color: var(--text-body); }
    body:not(.has-dark-hero) .navbar .nav-links a:hover { color: var(--blue); background: var(--blue-pale); }
    body:not(.has-dark-hero) .navbar .btn-nav-ghost {
      color: var(--text); border-color: var(--border);
      background: transparent; backdrop-filter: none;
    }
    body:not(.has-dark-hero) .navbar .btn-nav-ghost:hover { border-color: var(--blue); color: var(--blue); }
    body:not(.has-dark-hero) .navbar .nav-burger-bars span { background: var(--text); }
    body:not(.has-dark-hero) .navbar .nav-burger:hover { background: rgba(0,0,0,0.05); }

    /* Scrolled state — dark text on translucent white pill */
    .navbar.scrolled .nav-links a { color: var(--text-body); }
    .navbar.scrolled .nav-links a:hover { color: var(--blue); background: var(--blue-pale); }
    .navbar.scrolled .btn-nav-ghost {
      color: var(--text); border-color: var(--border);
      background: transparent; backdrop-filter: none;
    }
    .navbar.scrolled .btn-nav-ghost:hover { border-color: var(--blue); color: var(--blue); }
    .navbar.scrolled .nav-burger-bars span { background: var(--text); box-shadow: none; }
    .navbar.scrolled .nav-burger:hover { background: rgba(0,0,0,0.05); }
    .navbar .nav-logo-mark { background: var(--blue); }

    .nav-logo-img { display: inline-flex; align-items: center; flex-shrink: 0; min-width: 0; }
    .nav-logo-img img {
      height: 132px; width: auto; max-width: none; display: block;
      object-fit: contain;
      background: transparent;
      transition: opacity 0.22s, height 0.35s;
    }
    .nav-logo-img:hover img { opacity: 0.82; }
    .navbar.scrolled .nav-logo-img img {
      height: 104px;
    }

    .nav-logo { display: flex; align-items: center; gap: 0.75rem; }
    .nav-logo-mark {
      width: 40px; height: 40px; background: rgba(255,255,255,0.15);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
      color: var(--white); flex-shrink: 0; transition: background 0.35s;
    }
    .nav-logo-name {
      font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
      color: var(--white); display: block; line-height: 1.2; transition: color 0.35s;
    }
    .nav-logo-tag { font-size: 0.63rem; color: rgba(255,255,255,0.55); display: block; letter-spacing: 0.02em; transition: color 0.35s; }

    .nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.88); font-size: 0.875rem; font-weight: 500;
      padding: 0.5rem 0.875rem; border-radius: 7px; transition: all 0.2s;
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }

    .nav-actions { display: flex; align-items: center; gap: 0.75rem; }

    /* Hamburger button (mobile only) */
    .nav-burger {
      display: none; width: 44px; height: 44px;
      align-items: center; justify-content: center;
      background: transparent; border: none; cursor: pointer; padding: 0;
      border-radius: 8px; transition: background 0.22s;
      position: relative;
    }
    .nav-burger:hover { background: rgba(0,0,0,0.05); }
    .nav-burger-bars {
      width: 22px; height: 14px; position: relative;
    }
    .nav-burger-bars span {
      position: absolute; left: 0; right: 0; height: 2px;
      background: var(--text); border-radius: 2px;
      transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
    }
    .nav-burger-bars span:nth-child(1) { top: 0; }
    .nav-burger-bars span:nth-child(2) { top: 6px; }
    .nav-burger-bars span:nth-child(3) { top: 12px; }
    .nav-burger.open .nav-burger-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
    .nav-burger.open .nav-burger-bars span:nth-child(2) { opacity: 0; }
    .nav-burger.open .nav-burger-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

    /* Mobile drawer */
    .nav-drawer {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
      background: var(--white);
      padding: 7rem 1.5rem 2rem;
      opacity: 0; visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      display: flex; flex-direction: column;
      overflow-y: auto;
    }
    .nav-drawer.open {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .nav-drawer ul {
      list-style: none; display: flex; flex-direction: column;
      gap: 0.25rem; margin-bottom: 2.5rem;
    }
    .nav-drawer ul a {
      display: block; padding: 1rem 0.5rem;
      font-family: var(--font-head);
      font-size: 1.7rem; font-weight: 600; color: var(--text);
      border-bottom: 1px solid var(--border);
      transition: color 0.22s, padding-left 0.22s;
    }
    .nav-drawer ul a:hover, .nav-drawer ul a:focus { color: var(--blue); padding-left: 1rem; }
    .nav-drawer-cta {
      display: flex; flex-direction: column; gap: 0.7rem;
      margin-top: auto; padding-top: 1.5rem;
    }
    .nav-drawer-cta .btn { width: 100%; justify-content: center; padding: 1rem; }
    body.nav-open { overflow: hidden; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
           font-weight: 600; font-size: 0.875rem; padding: 0.625rem 1.35rem;
           border-radius: var(--radius-sm); transition: all 0.22s; cursor: pointer; border: none; white-space: nowrap; }
    .btn-lg { padding: 0.875rem 2rem; font-size: 0.975rem; border-radius: 10px; }
    .btn-blue  { background: var(--blue); color: var(--white); }
    .btn-blue:hover  { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(1,112,185,0.35); }
    .btn-nav-ghost {
      color: rgba(255,255,255,0.88); border: 1.5px solid rgba(255,255,255,0.38);
      background: transparent; font-size: 0.875rem; font-weight: 600;
      padding: 0.55rem 1.2rem; border-radius: var(--radius-sm); transition: all 0.22s;
    }
    .btn-nav-ghost:hover { border-color: rgba(255,255,255,0.75); color: var(--white); }
    .btn-outline-blue {
      color: var(--blue); border: 1.5px solid var(--blue); background: transparent;
    }
    .btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
    .btn-white-outline {
      color: var(--white); border: 1.5px solid rgba(255,255,255,0.42); background: transparent;
    }
    .btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

    /* ── HERO ─ cinematic full-bleed ───────────────── */
    #hero {
      position: relative; width: 100%;
      min-height: 115vh; height: auto;
      overflow: hidden;
      display: flex; align-items: flex-end;
      color: var(--white);
      padding-top: 7rem;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: url('hero.jpg') center/cover no-repeat;
      animation: heroKenBurns 22s ease-in-out infinite alternate;
    }
    @keyframes heroKenBurns {
      0%   { transform: scale(1.04) translate(0,0); }
      100% { transform: scale(1.10) translate(-1.5%, -1%); }
    }
    .hero-scrim {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(180deg, rgba(6,18,34,0.22) 0%, rgba(6,18,34,0.0) 25%, rgba(6,18,34,0.08) 55%, rgba(6,18,34,0.88) 100%),
        linear-gradient(90deg, rgba(6,18,34,0.35) 0%, rgba(6,18,34,0.0) 65%);
      pointer-events: none;
    }
    .hero-vignette {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: radial-gradient(ellipse 120% 90% at 50% 60%, transparent 65%, rgba(0,0,0,0.32) 100%);
    }

    .hero-content {
      position: relative; z-index: 2;
      width: 100%; max-width: 1280px;
      margin: 0 auto; padding: 0 3rem 0.85rem;
      display: block;
    }
    .hero-text { max-width: 880px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.7rem;
      padding: 0.45rem 0.95rem; margin-bottom: 1.75rem;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 100px; backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.95);
    }
    .hero-eyebrow-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--blue-sky);
      box-shadow: 0 0 12px var(--blue-sky);
    }

    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5.5vw, 4.6rem);
      font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
      color: var(--white);
      padding-bottom: 0.15em;
    }
    .hero-title em {
      display: inline-block;
      font-family: var(--font-sub);
      font-style: italic;
      font-weight: 700;
      font-size: 1.12em;
      letter-spacing: 0.005em;
      line-height: 1.12;
      padding: 0.05em 0.08em 0.18em;
      white-space: nowrap;
      overflow-wrap: normal;
      word-break: keep-all;
      max-width: 100%;
      background: linear-gradient(120deg, var(--orange) 0%, var(--orange-soft) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-sub {
      max-width: 560px; margin: 1.5rem 0 2.5rem;
      font-size: 1.1rem; line-height: 1.7;
      color: rgba(255,255,255,0.92); font-weight: 400;
    }
    .hero-cta {
      display: flex; gap: 0.875rem; flex-wrap: wrap;
    }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--blue), var(--blue-sky));
      color: var(--white);
      padding: 1rem 2.1rem; border-radius: 100px;
      font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
      border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.55rem;
      box-shadow: 0 14px 32px rgba(1,112,185,0.45), 0 2px 0 rgba(255,255,255,0.18) inset;
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(1,112,185,0.55), 0 2px 0 rgba(255,255,255,0.22) inset;
    }
    .btn-hero-ghost {
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.35);
      color: var(--white); padding: 1rem 2.1rem; border-radius: 100px;
      font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      cursor: pointer; display: inline-flex; align-items: center; gap: 0.55rem;
      transition: background 0.22s, border-color 0.22s, transform 0.22s;
    }
    .btn-hero-ghost:hover {
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.7);
      transform: translateY(-2px);
    }

    /* Side stat rail right */
    .hero-rail {
      display: flex; flex-direction: column; gap: 1.25rem;
      padding: 1.75rem 1.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 20px;
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      box-shadow: 0 20px 50px rgba(0,0,0,0.30), 0 1px 0 rgba(255,255,255,0.18) inset;
      min-width: 220px;
    }
    .hero-rail-stat { display: flex; flex-direction: column; }
    .hero-rail-stat + .hero-rail-stat { padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.13); }
    .hero-rail-num {
      font-family: var(--font-head); font-size: 1.85rem;
      font-weight: 700; color: var(--white); line-height: 1;
      letter-spacing: -0.02em;
    }
    .hero-rail-lbl {
      font-size: 0.7rem; color: rgba(255,255,255,0.7);
      letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
      margin-top: 0.45rem;
    }

    /* Scroll cue */
    .hero-scroll {
      position: absolute; left: 50%; bottom: 2.25rem;
      transform: translateX(-50%); z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
      color: rgba(255,255,255,0.65); pointer-events: none;
    }
    .hero-scroll-line {
      width: 1px; height: 38px; position: relative; overflow: hidden;
      background: rgba(255,255,255,0.18);
    }
    .hero-scroll-line::after {
      content: ''; position: absolute; left: 0; top: -50%;
      width: 1px; height: 50%; background: var(--white);
      animation: heroScrollLine 2s ease-in-out infinite;
    }
    @keyframes heroScrollLine {
      0%   { top: -50%; }
      100% { top: 100%; }
    }
    .hero-scroll-lbl {
      font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
      writing-mode: horizontal-tb;
    }

    /* Stagger fade-in */
    .hero-anim { opacity: 0; transform: translateY(24px); animation: heroItemIn 0.7s cubic-bezier(0.2,0.7,0.2,1) forwards; }
    .hero-anim.h1 { animation-delay: 0.30s; }
    .hero-anim.h2 { animation-delay: 0.45s; }
    .hero-anim.h3 { animation-delay: 0.60s; }
    .hero-anim.h4 { animation-delay: 0.75s; }
    .hero-anim.h5 { animation-delay: 0.90s; }
    .hero-anim.h6 { animation-delay: 1.10s; }
    @keyframes heroItemIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── STATS BAR ─────────────────────────────── */
    .stats-bar {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-dark) 100%);
    }
    .stats-bar::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 90% at 0% 50%, rgba(1,112,185,0.22), transparent 60%),
        radial-gradient(ellipse 50% 90% at 100% 50%, rgba(94,184,255,0.10), transparent 60%);
      pointer-events: none;
    }
    .stats-inner {
      position: relative;
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat-cell {
      text-align: center; padding: 2.75rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }
    .stat-cell:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-head);
      font-size: 2.75rem; font-weight: 700; color: var(--white);
      display: block; line-height: 1.05; margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
      background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.78) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-lbl {
      font-size: 0.78rem; color: rgba(255,255,255,0.68);
      font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* ── SECTIONS ────────────────────────────────── */
    section { padding: 7rem 2rem; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
    .eyebrow {
      font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.18em; color: var(--blue); display: inline-flex; align-items: center;
      gap: 0.6rem; margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: ''; width: 24px; height: 1.5px; background: var(--blue);
    }
    .sec-title {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; color: var(--text); line-height: 1.18;
      letter-spacing: -0.02em; margin-bottom: 1.1rem;
    }
    .sec-title em {
      display: inline-block;
      font-family: var(--font-sub);
      font-style: italic;
      font-weight: 700;
      letter-spacing: 0.005em;
      line-height: 1.18;
      padding: 0.05em 0.1em 0.18em;
      background: linear-gradient(120deg, var(--blue) 0%, var(--blue-sky) 55%, var(--blue-sky) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .sec-lead { font-size: 1.05rem; color: var(--text-body); line-height: 1.78; }
    .divider {
      width: 56px; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--blue-sky));
      border-radius: 2px; margin: 1rem 0 1.75rem;
    }
    .divider-center { margin: 1rem auto 1.75rem; }

    /* ── FADE ─────────────────────────────────────── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* ── ABOUT ────────────────────────────────────── */
    #esittely { background: var(--bg); position: relative; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5.5rem; align-items: center;
    }
    .about-text p {
      color: var(--text-body); margin-bottom: 1.15rem;
      line-height: 1.82; font-size: 1.015rem;
    }
    .about-text p:last-of-type { margin-bottom: 2.25rem; }
    .about-welcome {
      font-size: 1.12rem !important; font-weight: 600;
      color: var(--text) !important;
    }
    .about-quote {
      position: relative;
      border-left: 3px solid var(--blue);
      padding: 1rem 0 1rem 1.75rem; margin: 2rem 0;
      background: linear-gradient(90deg, var(--blue-pale) 0%, transparent 100%);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .about-quote::before {
      content: '“'; position: absolute; left: 1rem; top: -0.5rem;
      font-family: var(--font-head); font-size: 3rem;
      color: var(--blue); opacity: 0.25; line-height: 1;
    }
    .about-quote blockquote {
      font-family: var(--font-head);
      font-size: 1.15rem; font-style: italic;
      color: var(--text); line-height: 1.55; margin-bottom: 0.45rem;
    }
    .about-quote cite { font-size: 0.82rem; color: var(--text-light); font-style: normal; letter-spacing: 0.05em; }
    .about-img-wrap {
      position: relative; border-radius: var(--radius); overflow: hidden;
      aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
    }
    .about-img-wrap::after {
      content: ''; position: absolute; top: -18px; right: -18px;
      width: 110px; height: 110px; border: 2px solid var(--blue);
      border-radius: var(--radius); z-index: -1;
    }
    .about-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.9s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.04); }
    .img-badge {
      position: absolute; bottom: 1.5rem; left: 1.5rem;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
      padding: 1rem 1.25rem;
      border-radius: 14px; box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.6);
      display: flex; align-items: center; gap: 0.85rem;
    }
    .badge-icon-wrap {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, var(--blue), var(--blue-sky));
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 14px rgba(1,112,185,0.30);
    }
    .badge-icon-wrap svg { color: var(--white); }
    .badge-strong { display: block; font-size: 0.92rem; color: var(--text); font-weight: 700; }
    .badge-span { font-size: 0.76rem; color: var(--text-light); letter-spacing: 0.03em; }

    /* ── PILLARS ──────────────────────────────────── */
    #pillars {
      position: relative;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(1,112,185,0.06), transparent 60%),
        var(--surface);
    }
    .pillars-hd { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
    .pillars-hd .eyebrow { justify-content: center; display: inline-flex; }
    .pillars-hd .sec-lead { margin: 0 auto; }
    .pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    @media (max-width: 1100px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
    .pillar-card {
      background: var(--white); border-radius: var(--radius);
      padding: 2.75rem 2rem 2.25rem; position: relative; overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s, border-color 0.35s;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-xs);
    }
    .pillar-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--blue-sky));
      transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
    }
    .pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .pillar-card:hover::before { transform: scaleX(1); }
    .pillar-num {
      position: absolute; top: 1.75rem; right: 1.75rem;
      font-family: var(--font-head); font-size: 1rem;
      font-weight: 600; color: var(--text-mute); letter-spacing: 0.05em;
    }
    .pillar-icon-bg {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--blue-pale2), var(--blue-pale));
      border: 1px solid var(--blue-pale2);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.75rem; transition: all 0.35s;
    }
    .pillar-card:hover .pillar-icon-bg {
      background: linear-gradient(135deg, var(--blue), var(--blue-sky));
      border-color: transparent;
      box-shadow: 0 10px 24px rgba(1,112,185,0.30);
    }
    .pillar-icon-bg svg { color: var(--blue); transition: color 0.35s; }
    .pillar-card:hover .pillar-icon-bg svg { color: var(--white); }
    .pillar-title {
      font-family: var(--font-head); font-size: 1.45rem;
      font-weight: 700; color: var(--text); margin-bottom: 0.875rem;
      letter-spacing: -0.01em;
    }
    .pillar-text { color: var(--text-body); line-height: 1.6; font-size: 0.95rem; margin-bottom: 1rem; }
    .pillar-principles {
      font-size: 0.85rem; line-height: 1.55;
      color: var(--text-light);
      padding-top: 1rem; margin-top: auto;
      border-top: 1px solid var(--border);
    }
    .pillar-principles strong { color: var(--blue); font-weight: 700; }
    .pillar-card { display: flex; flex-direction: column; }

    /* ── LOCATIONS ────────────────────────────────── */
    #toimintayksiköt { background: var(--bg); }
    .locs-hd { margin-bottom: 3.75rem; max-width: 720px; }
    .locs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
    .loc-card {
      border-radius: var(--radius); overflow: hidden; background: var(--white);
      transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s, border-color 0.35s;
      box-shadow: var(--shadow-xs);
      border: 1px solid var(--border-soft);
    }
    .loc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .loc-img { height: 230px; overflow: hidden; position: relative; }
    .loc-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(6,18,34,0.18) 100%);
      pointer-events: none;
    }
    .loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
    .loc-card:hover .loc-img img { transform: scale(1.07); }
    .loc-body { padding: 1.85rem; }
    .loc-tag {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--blue-pale); color: var(--blue);
      font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.11em; padding: 0.28rem 0.8rem;
      border-radius: 100px; margin-bottom: 0.85rem;
      border: 1px solid rgba(1,112,185,0.18);
    }
    .loc-tag::before {
      content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%;
    }
    .loc-name {
      font-family: var(--font-head); font-size: 1.45rem;
      font-weight: 700; color: var(--text); margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }
    .loc-desc { color: var(--text-body); font-size: 0.93rem; line-height: 1.72; margin-bottom: 1.5rem; }
    .loc-link {
      color: var(--blue); font-weight: 700; font-size: 0.82rem;
      display: inline-flex; align-items: center; gap: 0.4rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      transition: gap 0.2s, color 0.2s;
    }
    .loc-link:hover { gap: 0.7rem; color: var(--blue-hover); }

    /* ── NEWS ─────────────────────────────────────── */
    #ajankohtaista { background: var(--surface); }
    .news-hd-row {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
    }
    .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .news-card {
      background: var(--white); border-radius: var(--radius); overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s, border-color 0.35s;
      box-shadow: var(--shadow-xs);
      border: 1px solid var(--border-soft);
    }
    .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .news-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.15fr 1fr; }
    .news-img { height: 240px; overflow: hidden; position: relative; }
    .news-card.featured .news-img { height: auto; }
    .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
    .news-card:hover .news-img img { transform: scale(1.05); }
    .news-body { padding: 2.25rem; }
    .news-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
    .news-tag {
      background: var(--blue-pale); color: var(--blue);
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; padding: 0.28rem 0.75rem; border-radius: 100px;
      border: 1px solid rgba(1,112,185,0.18);
    }
    .news-date { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.04em; }
    .news-title {
      font-family: var(--font-head); font-size: 1.35rem;
      font-weight: 700; color: var(--text); margin-bottom: 0.875rem;
      line-height: 1.32; letter-spacing: -0.01em;
    }
    .news-excerpt { color: var(--text-body); font-size: 0.93rem; line-height: 1.76; margin-bottom: 1.5rem; }
    .news-link {
      color: var(--blue); font-weight: 700; font-size: 0.82rem;
      display: inline-flex; align-items: center; gap: 0.4rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      transition: gap 0.2s;
    }
    .news-link:hover { gap: 0.7rem; }

    /* ── DONATE CTA ───────────────────────────────── */
    #lahjoita, #lahjoita-cta, #lahjoita-body {
      background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-dark) 100%);
      padding: 8.5rem 2rem; position: relative; overflow: hidden;
    }
    #lahjoita::before, #lahjoita-cta::before, #lahjoita-body::before {
      content: ''; position: absolute;
      top: -40%; right: -15%; width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(94,184,255,0.22) 0%, transparent 65%);
      pointer-events: none; filter: blur(20px);
    }
    #lahjoita::after, #lahjoita-cta::after, #lahjoita-body::after {
      content: ''; position: absolute;
      bottom: -40%; left: -20%; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(1,112,185,0.22) 0%, transparent 65%);
      pointer-events: none; filter: blur(20px);
    }
    .donate-wrap {
      max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
    }
    .donate-wrap .eyebrow { color: var(--blue-sky); justify-content: center; display: inline-flex; }
    .donate-wrap .eyebrow::before { background: var(--blue-sky); }
    .donate-title {
      font-family: var(--font-head);
      font-size: clamp(2.25rem, 5vw, 3.4rem);
      font-weight: 700; color: var(--white);
      line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em;
    }
    .donate-title em {
      display: inline-block;
      font-family: var(--font-sub);
      font-style: italic;
      font-weight: 700;
      letter-spacing: 0.005em;
      line-height: 1.15;
      padding: 0.05em 0.1em 0.18em;
      background: linear-gradient(120deg, var(--blue-sky), var(--orange-soft));
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .donate-lead {
      color: rgba(255,255,255,0.72); font-size: 1.08rem;
      line-height: 1.78; margin-bottom: 3rem; font-weight: 400;
      max-width: 620px; margin-left: auto; margin-right: auto;
    }
    .donate-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .trust-row {
      display: flex; align-items: center; justify-content: center;
      gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap;
      padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,0.55); font-size: 0.78rem;
      letter-spacing: 0.04em;
    }
    .trust-item svg { color: var(--blue-sky); opacity: 0.8; }

    /* ── FOOTER ───────────────────────────────────── */
    footer {
      background: var(--blue-navy); padding: 6rem 2rem 0; position: relative;
    }
    footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(94,184,255,0.35), transparent);
    }
    .footer-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 2.1fr 1fr 1fr 1.2fr; gap: 4rem;
    }
    .f-desc { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.76; margin: 1.5rem 0 2rem; }
    .f-contact { display: flex; flex-direction: column; gap: 0.75rem; }
    .f-contact a, .f-contact-item {
      color: rgba(255,255,255,0.72); font-size: 0.88rem;
      display: flex; align-items: flex-start; gap: 0.6rem; transition: color 0.2s;
    }
    .f-contact a:hover { color: var(--blue-sky); }
    .f-contact-icon { margin-top: 0.07rem; flex-shrink: 0; color: var(--blue-sky); opacity: 0.85; }
    .f-ytunnus { padding-left: 1.35rem; color: rgba(255,255,255,0.5); font-size: 0.8rem; }
    .f-col-title {
      font-family: var(--font-head); font-size: 1.05rem;
      font-weight: 700; color: var(--white); margin-bottom: 1.5rem;
      position: relative; padding-bottom: 0.75rem;
    }
    .f-col-title::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 28px; height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--blue-sky));
      border-radius: 2px;
    }
    .f-links { list-style: none; }
    .f-links li { margin-bottom: 0.7rem; }
    .f-links a {
      color: rgba(255,255,255,0.62); font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s;
      position: relative; display: inline-block;
    }
    .f-links a:hover { color: var(--blue-sky); padding-left: 0.35rem; }
    .f-sub { color: rgba(255,255,255,0.38); font-size: 0.76rem; display: block; margin-bottom: 0.4rem; letter-spacing: 0.03em; }
    .f-social { display: flex; gap: 0.65rem; margin-top: 1rem; }
    .f-social a {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); transition: all 0.25s;
    }
    .f-social a:hover {
      background: var(--blue); color: var(--white); border-color: transparent;
      transform: translateY(-2px); box-shadow: 0 8px 20px rgba(1,112,185,0.4);
    }
    .footer-badges {
      margin: 0 0 1.5rem;
      display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
    }
    .footer-badge-logo {
      height: 56px; width: auto;
      border-radius: 10px;
      background: var(--white);
      padding: 6px 10px;
    }
    .footer-badge-lk {
      height: 50px; width: auto;
      border-radius: 8px;
    }
    .footer-bottom {
      max-width: 1180px; margin: 3rem auto 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.85rem 0 2.25rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; letter-spacing: 0.02em; }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { color: rgba(255,255,255,0.38); font-size: 0.78rem; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--blue-sky); }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    }
    @media (max-width: 900px) {
      .navbar { padding: 0.6rem 1rem; width: calc(100% - 1rem); }
      .navbar.scrolled { padding: 0.4rem 0.85rem; top: 0.5rem; max-width: calc(100% - 1.5rem); }
      .nav-logo-img img { height: 108px; }
      .navbar.scrolled .nav-logo-img img { height: 88px; }
      .nav-actions { gap: 0.5rem; }
      .nav-actions .btn-nav-ghost { display: none; }
      .nav-actions .btn-blue { padding: 0.6rem 1.05rem; font-size: 0.82rem; }
      .nav-burger { display: inline-flex; }

      #hero { min-height: 90vh; height: auto; padding-top: 6rem; }
      .hero-content { padding: 2rem 1.25rem 1rem; max-width: 100%; }
      .hero-text { max-width: 100%; }
      .hero-title { font-size: clamp(2.4rem, 8vw, 3.6rem); }
      .hero-sub { font-size: 1rem; }
      .hero-cta { width: 100%; gap: 0.6rem; }
      .hero-cta .btn-hero-primary, .hero-cta .btn-hero-ghost {
        flex: 1 1 auto; justify-content: center; padding: 0.85rem 1.2rem; font-size: 0.88rem;
      }
      .hero-rail { flex-direction: row; min-width: 0; padding: 1rem; gap: 0.75rem; }
      .hero-rail-stat { flex: 1; min-width: 0; }
      .hero-rail-stat + .hero-rail-stat { padding-top: 0; padding-left: 0.75rem; border-top: none; border-left: 1px solid rgba(255,255,255,0.13); }
      .hero-rail-num { font-size: 1.25rem; }
      .hero-rail-lbl { font-size: 0.62rem; letter-spacing: 0.08em; }
      .hero-scroll { display: none; }
      .nav-links { display: none; }

      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-img-wrap { aspect-ratio: 16/9; }
      .about-img-wrap::after { display: none; }
      .pillars-grid { grid-template-columns: 1fr; }
      .locs-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .news-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
      .news-card.featured .news-img,
      .news-card.featured .news-portrait { height: 400px; min-height: 400px; }
      .news-img { height: 280px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-cell { padding: 1.6rem 1rem; }
      .stat-num { font-size: 1.85rem; }
      .stat-lbl { font-size: 0.7rem; }
      .stat-cell:nth-child(2) { border-right: none; }
      .stat-cell:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    @media (max-width: 600px) {
      .navbar { padding: 0.5rem 0.85rem; }
      .navbar.scrolled { padding: 0.4rem 0.75rem; }
      .nav-logo-img img { height: 96px; }
      .navbar.scrolled .nav-logo-img img { height: 80px; }
      .nav-actions .btn-blue { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
      .nav-actions { gap: 0.4rem; }

      section { padding: 4rem 1.25rem; }
      .container { padding: 0; }

      #hero { padding-top: 5rem; min-height: 86vh; }
      .hero-content { padding: 1rem 1rem 3rem; }
      .hero-eyebrow { padding: 0.35rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.14em; }
      .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.05; }
      .hero-title em { font-size: 1.06em; white-space: normal; }
      .hero-sub { font-size: 0.95rem; margin: 1rem 0 1.75rem; }
      .hero-cta { flex-direction: column; align-items: stretch; }
      .hero-cta .btn-hero-primary, .hero-cta .btn-hero-ghost { width: 100%; }
      .hero-rail { padding: 0.85rem; }
      .hero-rail-num { font-size: 1.1rem; }
      .hero-rail-lbl { font-size: 0.58rem; }

      .donate-cta, .news-hd-row { flex-direction: column; align-items: flex-start; }
      .donate-cta a, .news-hd-row a { width: 100%; justify-content: center; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .stat-cell { padding: 1.25rem 0.75rem; }
      .stat-num { font-size: 1.5rem; margin-bottom: 0.2rem; }
      .stat-lbl { font-size: 0.62rem; letter-spacing: 0.06em; }
    }
    @media (max-width: 380px) {
      .nav-logo-img img { height: 84px; }
      .hero-title { font-size: 1.85rem; }
      .hero-rail { flex-direction: column; }
      .hero-rail-stat + .hero-rail-stat { padding-left: 0; padding-top: 0.85rem; border-left: none; border-top: 1px solid rgba(255,255,255,0.13); }
    }

    /* ── PAGE HERO (inner pages) ──────────────── */
    .page-hero {
      position: relative;
      padding: 11rem 0 5rem;
      background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(1,112,185,0.08), transparent 70%),
        var(--bg);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: var(--grain);
      background-size: 22px 22px;
      opacity: 0.5;
      pointer-events: none;
    }
    .page-hero-inner {
      position: relative; z-index: 1; max-width: 880px;
    }
    .breadcrumb {
      font-size: 0.78rem; color: var(--text-light);
      letter-spacing: 0.04em; margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap;
    }
    .breadcrumb a { color: var(--blue); transition: color 0.2s; font-weight: 500; }
    .breadcrumb a:hover { color: var(--blue-hover); }
    .breadcrumb span { color: var(--text-mute); }
    .page-hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5.5vw, 4.4rem);
      font-weight: 700; color: var(--text);
      line-height: 1.15; letter-spacing: -0.015em;
      margin-bottom: 1.5rem; padding-bottom: 0.1em;
    }
    .page-hero-title em {
      display: inline-block;
      font-family: var(--font-sub);
      font-style: italic;
      font-weight: 700;
      letter-spacing: 0.005em;
      line-height: 1.15;
      padding: 0.05em 0.1em 0.18em;
      background: linear-gradient(120deg, var(--blue) 0%, var(--blue-sky) 55%, var(--blue-sky) 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .page-hero-lead {
      font-size: 1.1rem; color: var(--text-body);
      line-height: 1.72; max-width: 60ch;
    }

    /* ── CONTACT CARDS ──────────────────────── */
    .contact-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
      margin-bottom: 6rem;
    }
    .contact-card {
      background: var(--white); border: 1px solid var(--border-soft);
      border-radius: var(--radius); padding: 2.5rem 2rem;
      box-shadow: var(--shadow-xs);
      transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s, border-color 0.35s;
      display: flex; flex-direction: column; align-items: flex-start;
    }
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .contact-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, var(--blue), var(--blue-sky));
      display: flex; align-items: center; justify-content: center;
      color: var(--white); margin-bottom: 1.75rem;
      box-shadow: 0 10px 24px rgba(1,112,185,0.30);
    }
    .contact-card-title {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-light); margin-bottom: 0.75rem;
    }
    .contact-card-val {
      font-family: var(--font-head);
      font-size: 1.5rem; font-weight: 700; color: var(--text);
      letter-spacing: -0.01em; line-height: 1.2;
      transition: color 0.2s;
    }
    a.contact-card-val:hover { color: var(--blue); }
    .contact-card-sub {
      font-size: 0.85rem; color: var(--text-light);
      margin-top: 0.65rem;
    }

    /* ── LEADERS ────────────────────────────── */
    .leaders { padding-top: 3rem; }
    .leaders-hd { margin-bottom: 3.5rem; max-width: 640px; }
    .leaders-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    }
    .leader-card {
      background: var(--surface); padding: 2rem;
      border-radius: var(--radius);
      border: 1px solid var(--border-soft);
      transition: transform 0.3s, border-color 0.3s, background 0.3s;
    }
    .leader-card:hover {
      transform: translateY(-3px);
      border-color: var(--blue);
      background: var(--white);
    }
    .leader-name {
      font-family: var(--font-head); font-size: 1.35rem;
      font-weight: 700; color: var(--text);
      margin-bottom: 0.35rem; letter-spacing: -0.01em;
    }
    .leader-role {
      font-size: 0.85rem; color: var(--text-light);
      margin-bottom: 1rem; letter-spacing: 0.02em;
    }
    .leader-card a {
      display: block; font-size: 0.92rem;
      color: var(--blue); font-weight: 500;
      padding: 0.25rem 0;
      transition: color 0.2s;
    }
    .leader-card a:hover { color: var(--blue-hover); }

    @media (max-width: 900px) {
      .page-hero { padding: 8rem 0 4rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
      .leaders-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .page-hero { padding: 6.5rem 0 3rem; }
    }

    /* ── MISSION + PDF DOWNLOAD STRIP ───────────── */
    #mission {
      padding: 2.25rem 2rem;
      background: var(--surface);
      border-bottom: 1px solid var(--border-soft);
    }
    .mission-wrap {
      max-width: 1120px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      gap: 1.75rem; flex-wrap: wrap; text-align: center;
    }
    .mission-text {
      font-family: var(--font-body);
      font-size: 0.95rem; font-weight: 400; line-height: 1.55;
      color: var(--text-body); margin: 0;
      max-width: 70ch;
    }
    .mission-text em { font-style: normal; color: var(--blue); font-weight: 600; }
    .pdf-link {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-size: 0.85rem; font-weight: 600;
      color: var(--blue); white-space: nowrap;
      padding: 0.45rem 0.85rem; border-radius: 100px;
      border: 1px solid rgba(1,112,185,0.25);
      background: var(--white);
      transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
    }
    .pdf-link:hover {
      background: var(--blue); color: var(--white);
      border-color: var(--blue); transform: translateY(-1px);
    }
    .pdf-link svg { width: 14px; height: 14px; }
    @media (max-width: 600px) {
      #mission { padding: 1.75rem 1.25rem; }
      .mission-wrap { gap: 1rem; }
      .mission-text { font-size: 0.9rem; }
    }

    /* ── LOCATION ACCORDION ─────────────────────── */
    .loc-accordion {
      display: flex; flex-direction: column; gap: 1rem;
      max-width: 980px; margin: 0 auto;
    }
    .loc-item {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s;
      box-shadow: var(--shadow-xs);
    }
    .loc-item.open, .loc-item:hover { border-color: var(--blue); box-shadow: var(--shadow); }
    .loc-head {
      width: 100%; display: grid;
      grid-template-columns: 210px 1fr;
      align-items: stretch; gap: 0;
      padding: 0;
      background: transparent; border: none; cursor: pointer;
      text-align: left; font: inherit; color: inherit;
      min-height: 170px;
    }
    .loc-head:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

    /* Thumbnail image inside accordion header */
    .loc-head-thumb {
      position: relative; overflow: hidden;
      background: var(--grey-light); flex-shrink: 0;
    }
    .loc-head-thumb img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform 0.7s ease; display: block;
    }
    .loc-item:hover .loc-head-thumb img,
    .loc-item.open .loc-head-thumb img { transform: scale(1.07); }

    /* Wrapper for the text meta columns (num / name / tag / toggle) */
    .loc-head-meta {
      display: grid;
      grid-template-columns: 48px 1fr auto auto;
      align-items: center; gap: 1.25rem;
      padding: 1.5rem 1.75rem;
    }
    .loc-head-num {
      font-family: var(--font-head);
      font-size: 1.05rem; font-weight: 600;
      color: var(--text-mute); letter-spacing: 0.02em;
    }
    .loc-head-name {
      font-family: var(--font-head);
      font-size: 1.35rem; font-weight: 700; color: var(--text);
      letter-spacing: -0.01em; line-height: 1.2;
    }
    .loc-head-tag {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--blue-pale); color: var(--blue);
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; padding: 0.28rem 0.75rem;
      border-radius: 100px; border: 1px solid rgba(1,112,185,0.18);
      white-space: nowrap;
    }
    .loc-head-tag::before {
      content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%;
    }
    .loc-head-toggle {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--surface); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s, color 0.25s, transform 0.35s ease;
      flex-shrink: 0;
    }
    .loc-item.open .loc-head-toggle {
      background: var(--blue); color: var(--white);
      transform: rotate(45deg);
    }
    .loc-panel {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows 0.4s ease;
    }
    .loc-item.open .loc-panel { grid-template-rows: 1fr; }
    .loc-panel-inner {
      overflow: hidden; min-height: 0;
    }
    .loc-panel-body {
      padding: 1.75rem 1.75rem 1.75rem;
      display: flex; flex-direction: column; gap: 1.5rem;
      border-top: 1px solid var(--border-soft);
      margin-top: 0.25rem;
    }
    .loc-panel-desc p {
      color: var(--text-body); font-size: 0.965rem;
      line-height: 1.72; margin-bottom: 1rem;
    }
    .loc-panel-desc p:last-child { margin-bottom: 0; }
    .loc-panel-desc h5 {
      font-family: var(--font-body);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--blue);
      margin: 1.75rem 0 0.65rem;
      display: inline-flex; align-items: center; gap: 0.55rem;
    }
    .loc-panel-desc h5::before {
      content: ''; width: 20px; height: 1.5px; background: var(--blue);
    }
    .loc-panel-desc h5:first-child { margin-top: 0; }
    .loc-panel-desc > p:first-child {
      font-size: 1.05rem; color: var(--text); font-weight: 500;
    }
    .loc-panel-desc ul {
      list-style: none; padding: 0; margin: 0.5rem 0 1rem;
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 0.5rem 1.25rem;
    }
    .loc-panel-desc ul li {
      position: relative; padding-left: 1.1rem;
      font-size: 0.95rem; color: var(--text-body); line-height: 1.55;
    }
    .loc-panel-desc ul li::before {
      content: ''; position: absolute; left: 0; top: 0.55rem;
      width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
    }
    .loc-panel-meta {
      display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
      padding: 1rem 1.25rem; background: var(--surface);
      border-radius: var(--radius-sm);
      order: -1;
    }
    .loc-meta-row { display: flex; flex-direction: column; gap: 0.2rem; flex: 1 1 160px; min-width: 0; }
    .loc-meta-lbl {
      font-size: 0.66rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-mute);
    }
    .loc-meta-val {
      font-size: 0.95rem; color: var(--text); font-weight: 500;
      line-height: 1.45; word-break: break-word;
    }
    .loc-meta-val a { color: var(--blue); transition: color 0.2s; }
    .loc-meta-val a:hover { color: var(--blue-hover); }
    .loc-doc-link {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-size: 0.82rem; font-weight: 600;
      color: var(--blue); padding: 0.5rem 0.85rem;
      border: 1px solid rgba(1,112,185,0.25);
      background: var(--white); border-radius: 100px;
      transition: all 0.22s; align-self: flex-start;
    }
    .loc-doc-link:hover {
      background: var(--blue); color: var(--white);
      border-color: var(--blue); transform: translateY(-1px);
    }
    .loc-doc-link svg { width: 14px; height: 14px; }

    /* Omavalvontaohjelma variant — different accent */
    .loc-item.doc-item .loc-head-tag {
      background: rgba(217,168,108,0.16);
      color: var(--gold);
      border-color: rgba(217,168,108,0.32);
    }
    .loc-item.doc-item .loc-head-tag::before { background: var(--gold); }
    .loc-item.doc-item.open .loc-head-toggle { background: var(--gold); }
    .loc-item.doc-item .loc-doc-list {
      list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
    }
    .loc-item.doc-item .loc-doc-list li { margin: 0; }

    @media (max-width: 900px) {
      .loc-head { grid-template-columns: 130px 1fr; min-height: 130px; }
      .loc-head-meta { grid-template-columns: 36px 1fr auto; gap: 1rem; padding: 1.15rem 1.25rem; }
      .loc-head-tag { display: none; }
      .loc-head-name { font-size: 1.15rem; }
      .loc-panel-body { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.25rem 1.5rem; }
    }

    /* ── TOIMINTAYKSIKOT BG IMAGE ────────────────── */
    #toimintayksikot-body {
      position: relative; isolation: isolate;
      padding: 3.5rem 2rem 6rem;
      background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(168,208,240,0.18) 0%, transparent 55%),
        var(--surface);
      overflow: hidden;
    }
    #toimintayksikot-body::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background-image:
        radial-gradient(rgba(47,47,47,0.04) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255,201,51,0.06), transparent 45%);
      background-size: 22px 22px, auto;
      pointer-events: none;
    }
    @media (max-width: 900px) {
      #toimintayksikot-body { padding: 2.5rem 1.25rem 4rem; }
    }

    /* ── QUICK-JUMP LOCATION INDEX ───────────────── */
    .loc-index {
      position: sticky; top: 84px; z-index: 20;
      display: flex; align-items: center; gap: 0.4rem;
      flex-wrap: wrap;
      padding: 0.55rem 0.7rem;
      margin: 0 0 3.5rem;
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 100px;
      box-shadow: 0 8px 24px rgba(47,47,47,0.07);
    }
    .loc-index-lbl {
      font-family: var(--font-sub);
      font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-mute); font-weight: 700;
      padding: 0 0.5rem 0 0.6rem;
    }
    .loc-index a {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-family: var(--font-sub);
      font-size: 0.84rem; font-weight: 600; letter-spacing: 0.01em;
      color: var(--text); text-decoration: none; white-space: nowrap;
      padding: 0.4rem 0.95rem; border-radius: 100px;
      transition: background 0.2s, color 0.2s;
    }
    .loc-index a:hover { background: var(--blue-pale); color: var(--blue); }
    .loc-index-num {
      font-family: var(--font-head); font-weight: 800;
      color: var(--blue); font-size: 0.92rem; line-height: 1;
    }

    /* ── EDITORIAL FEATURE ROWS ──────────────────── */
    .loc-features { display: flex; flex-direction: column; gap: 4.5rem; }
    .loc-feature {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 3rem; align-items: center;
      scroll-margin-top: 160px;
    }
    .loc-feature:nth-child(even) .lf-media { order: 2; }
    .lf-media {
      position: relative; border-radius: var(--radius); overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--surface-2);
      box-shadow: 0 26px 52px rgba(47,47,47,0.13);
    }
    .lf-media img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.9s ease;
    }
    .loc-feature:hover .lf-media img { transform: scale(1.05); }
    .lf-num {
      position: absolute; top: 0.5rem; left: 1.1rem; z-index: 2;
      font-family: var(--font-head); font-weight: 900;
      font-size: 4.75rem; line-height: 1; letter-spacing: -0.02em;
      color: var(--white); opacity: 0.95;
      text-shadow: 0 6px 22px rgba(0,0,0,0.4);
    }
    .lf-body { display: flex; flex-direction: column; gap: 0.85rem; min-width: 0; }
    .lf-tag {
      align-self: flex-start;
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--font-sub);
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 700; color: var(--blue);
    }
    .lf-tag::before { content: ''; width: 28px; height: 2px; background: var(--blue); }
    .lf-title {
      font-family: var(--font-head);
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      line-height: 1.04; letter-spacing: 0.01em; text-transform: uppercase;
      color: var(--text); margin: 0;
    }
    .lf-lead {
      font-size: 1.06rem; line-height: 1.6; color: var(--text);
      font-weight: 500; margin: 0;
    }
    .lf-text {
      font-size: 0.95rem; line-height: 1.65; color: var(--text-light); margin: 0;
    }
    .lf-meta {
      display: flex; flex-direction: column; gap: 0.65rem;
      margin-top: 0.5rem; padding: 1.15rem 1.3rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
    }
    .lf-meta-row {
      display: flex; align-items: flex-start; gap: 0.7rem;
      font-size: 0.92rem; line-height: 1.45; color: var(--text);
    }
    .lf-meta-row svg {
      width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px;
      stroke: var(--blue);
    }
    .lf-meta-row a { color: var(--blue); font-weight: 600; text-decoration: none; }
    .lf-meta-row a:hover { color: var(--blue-hover); }
    .lf-docs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.55rem; }

    @media (max-width: 900px) {
      .loc-index { top: 72px; flex-wrap: nowrap; overflow-x: auto; border-radius: 16px; margin-bottom: 2.5rem; }
      .loc-index::-webkit-scrollbar { display: none; }
      .loc-index { scrollbar-width: none; }
      .loc-features { gap: 3rem; }
      .loc-feature { grid-template-columns: 1fr; gap: 1.4rem; }
      .loc-feature:nth-child(even) .lf-media { order: 0; }
      .lf-num { font-size: 3.4rem; }
    }

    /* Omavalvontaohjelma flat box (5th item) */
    .toim-ova-box {
      max-width: 100%;
      margin: 4.5rem 0 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem 2rem;
      box-shadow: var(--shadow-xs);
    }
    .toim-ova-title {
      font-family: var(--font-head);
      font-size: 1.05rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--text); margin: 0 0 1rem;
    }
    .toim-ova-box .loc-doc-list {
      list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
      margin: 0; padding: 0;
    }
    .toim-ova-box .loc-doc-list li { margin: 0; }
    @media (max-width: 900px) {
      .toim-ova-box { max-width: 100%; }
    }

    /* ── TOIMINTAYKSIKOT GRID ──────────────────── */
    .toim-grid {
      display: grid; grid-template-columns: 1.4fr 1fr;
      gap: 3.5rem; align-items: start;
    }
    .toim-grid .loc-accordion { max-width: none; }
    .toim-aside {
      position: sticky; top: 9rem;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      padding: 2.25rem 2rem;
      box-shadow: var(--shadow-sm);
    }
    .toim-aside-title {
      font-family: var(--font-body);
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 1.25rem;
      display: inline-flex; align-items: center; gap: 0.7rem;
    }
    .toim-aside-title::before {
      content: ''; width: 24px; height: 1.5px; background: var(--blue);
    }
    .toim-aside-intro {
      font-size: 1rem; line-height: 1.7;
      color: var(--text-body); margin-bottom: 2rem;
    }
    .toim-aside-block { margin-bottom: 1.75rem; }
    .toim-aside-block:last-child { margin-bottom: 0; }
    .toim-aside-block h4 {
      font-family: var(--font-head);
      font-size: 1.15rem; font-weight: 700;
      color: var(--text); margin-bottom: 0.65rem;
      letter-spacing: -0.01em;
    }
    .toim-aside-block p {
      font-size: 0.93rem; line-height: 1.68;
      color: var(--text-body);
    }
    .toim-aside-block a {
      color: var(--blue); font-weight: 600;
      transition: color 0.2s;
    }
    .toim-aside-block a:hover { color: var(--blue-hover); }

    @media (max-width: 1000px) {
      .toim-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .toim-aside { position: static; }
    }

    /* ── NEWS GALLERY (dual image) ──────────────── */
    .news-gallery {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4px; height: 100%; min-height: 360px;
    }
    .news-gallery img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform 0.8s ease;
    }
    .news-card:hover .news-gallery img { transform: scale(1.04); }
    @media (max-width: 900px) {
      .news-gallery { grid-template-columns: 1fr 1fr; min-height: 280px; }
    }
    @media (max-width: 540px) {
      .news-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; min-height: 0; }
    }

    /* ── LOCATION DOC BUTTON ROW ────────────────── */
    .loc-doc-row {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      margin-top: 1.75rem;
    }
    .loc-doc-btn {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-size: 0.82rem; font-weight: 600;
      color: var(--text); background: var(--white);
      padding: 0.7rem 1.1rem; border-radius: 100px;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.22s;
    }
    .loc-doc-btn:hover {
      background: var(--blue); color: var(--white);
      border-color: var(--blue);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(1,112,185,0.22);
    }
    .loc-doc-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── FOOTER LOGO IMAGE ─────────────────────── */
    .footer-logo-img {
      display: inline-flex; align-items: center;
      margin-bottom: 1rem;
      transition: opacity 0.22s;
    }
    .footer-logo-img:hover { opacity: 0.82; }
    .footer-logo-img img {
      height: 72px; width: auto; max-width: none; display: block;
      background: transparent;
    }
    @media (max-width: 600px) {
      .footer-logo-img img { height: 58px; }
    }

    /* ── LAHJOITA REWRITE ───────────────────────── */
    #lahjoita-info { padding: 4rem 2rem 6rem; background: var(--bg); }
    .lahjoita-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem;
      align-items: start;
    }
    .lahjoita-h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 2.8rem);
      line-height: 1.05; letter-spacing: 0.01em;
      text-transform: uppercase; color: var(--text);
      margin-bottom: 1rem;
    }
    .lahjoita-lead {
      font-size: 1.05rem; color: var(--text-body);
      max-width: 50ch; line-height: 1.65; margin-bottom: 2rem;
    }
    .amount-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem; margin-bottom: 1.25rem;
    }
    .amount-btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 1.1rem 0.5rem; border-radius: 14px;
      font-family: var(--font-head);
      font-size: 1.4rem; letter-spacing: 0.02em;
      background: var(--surface); color: var(--text);
      border: 2px solid transparent;
      transition: all 0.22s;
    }
    .amount-btn:hover {
      background: var(--orange); color: var(--grey-dark);
      border-color: var(--orange); transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(255,201,51,0.35);
    }
    .amount-custom { width: 100%; justify-content: center; }
    .lahjoita-small {
      margin-top: 0.85rem; font-size: 0.82rem;
      color: var(--text-light);
    }

    .lahjoita-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem 1.75rem;
      box-shadow: var(--shadow-sm);
    }
    .card-h3 {
      font-family: var(--font-sub);
      font-size: 0.92rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 0.85rem;
      display: inline-flex; align-items: center; gap: 0.55rem;
    }
    .card-h3::before { content: ''; width: 22px; height: 1.5px; background: var(--blue); }
    .card-h3-mt { margin-top: 1.75rem; }
    .card-list {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 0.4rem 1rem; font-size: 0.92rem;
    }
    .card-list dt { color: var(--text-light); }
    .card-list dd { color: var(--text); font-weight: 600; }
    .card-list code {
      font-family: ui-monospace, 'JetBrains Mono', monospace;
      font-size: 0.92rem; letter-spacing: 0.02em;
      background: var(--white);
      padding: 0.15rem 0.5rem; border-radius: 6px;
      border: 1px solid var(--border);
    }

    .lahjoita-trust {
      max-width: 1180px; margin: 3rem auto 0;
      padding: 1.5rem 1.75rem; background: var(--surface);
      border: 1px solid var(--border-soft); border-radius: 14px;
      font-size: 0.92rem; color: var(--text-body); line-height: 1.65;
    }
    .lahjoita-trust strong { color: var(--grey-dark); }

    @media (max-width: 900px) {
      #lahjoita-info { padding: 3rem 1.25rem 4rem; }
      .lahjoita-grid { grid-template-columns: 1fr; gap: 2rem; }
      .amount-grid { grid-template-columns: repeat(2, 1fr); }
      .lahjoita-card { padding: 1.5rem 1.25rem; }
      .card-list { grid-template-columns: 1fr; gap: 0.1rem 0; }
      .card-list dt { margin-top: 0.4rem; }
    }
    @media (max-width: 420px) {
      .amount-grid { grid-template-columns: 1fr; }
      .amount-btn { padding: 0.95rem; }
    }

    /* ── MEMBERSHIP FORM ────────────────────────── */
    #liity-form-section { padding: 5rem 2rem; background: var(--surface); }
    .form-wrap {
      max-width: 560px; margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 2.25rem;
      box-shadow: 0 18px 48px rgba(47,47,47,0.08);
    }
    .form-eyebrow {
      font-family: var(--font-sub);
      font-size: 0.74rem; font-weight: 600;
      letter-spacing: 0.20em; text-transform: uppercase;
      color: var(--blue); display: inline-flex; align-items: center; gap: 0.6rem;
      margin-bottom: 0.85rem;
    }
    .form-eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--blue); }
    .form-h2 {
      font-family: var(--font-head);
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      line-height: 1.05; letter-spacing: 0.02em;
      text-transform: uppercase; color: var(--text);
      margin-bottom: 0.5rem;
    }
    .form-lead {
      color: var(--text-light); font-size: 0.95rem; line-height: 1.6;
      margin-bottom: 1.75rem;
    }
    .form-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.95rem 1rem;
    }
    .form-field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label {
      font-size: 0.74rem; font-weight: 600;
      letter-spacing: 0.06em; color: var(--text-body);
    }
    .form-field input,
    .form-field textarea {
      font: inherit; font-size: 0.95rem;
      padding: 0.85rem 0.95rem; border-radius: 10px;
      border: 1px solid var(--border); background: var(--white);
      color: var(--text); width: 100%;
      transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
    }
    .form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-mute); }
    .form-field textarea { resize: vertical; min-height: 100px; }
    .form-field input:hover,
    .form-field textarea:hover { border-color: var(--text-mute); }
    .form-field input:focus,
    .form-field textarea:focus {
      outline: none; border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(79,134,198,0.18);
    }
    .form-consent {
      grid-column: 1 / -1;
      display: flex; align-items: flex-start; gap: 0.65rem;
      font-size: 0.84rem; color: var(--text-body); line-height: 1.5;
      padding: 0.85rem 0.95rem; background: var(--grey-light);
      border-radius: 10px;
      margin-top: 0.25rem;
    }
    .form-consent input { margin-top: 0.18rem; accent-color: var(--blue); flex-shrink: 0; }
    .form-submit {
      grid-column: 1 / -1;
      display: inline-flex; align-items: center; justify-content: center;
      gap: 0.55rem; padding: 1.05rem 1.5rem; margin-top: 0.75rem;
      font-family: var(--font-sub);
      font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      background: var(--blue); color: var(--white);
      border: none; border-radius: 12px;
      cursor: pointer; transition: all 0.22s;
      width: 100%;
    }
    .form-submit:hover { background: var(--grey-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(79,134,198,0.30); }
    .form-fee {
      grid-column: 1 / -1; margin-top: 0.5rem;
      font-size: 0.84rem; color: var(--text-light);
      text-align: center; padding: 0.75rem;
      background: var(--orange-soft); border-radius: 10px;
    }
    .form-fee strong { color: var(--grey-dark); font-weight: 700; }
    .form-status {
      grid-column: 1 / -1; margin-top: 0.25rem;
      font-size: 0.88rem; line-height: 1.5;
      padding: 0.85rem 1rem; border-radius: 10px;
    }
    .form-status--ok {
      background: rgba(46,160,90,0.12); color: #1d7a44;
      border: 1px solid rgba(46,160,90,0.3);
    }
    .form-status--error {
      background: rgba(200,60,60,0.1); color: #b23b3b;
      border: 1px solid rgba(200,60,60,0.28);
    }

    /* Within combined 2-col layout the form column is narrow — keep fields stacked */
    #liity-combined .form-grid { grid-template-columns: 1fr; }

    @media (max-width: 1000px) {
      .form-wrap { max-width: 640px; }
      #liity-combined .form-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      #liity-form-section { padding: 3rem 1rem; }
      .form-wrap { padding: 1.75rem 1.25rem; border-radius: 16px; }
      .form-grid, #liity-combined .form-grid { grid-template-columns: 1fr; gap: 0.85rem; }
      .form-submit { padding: 0.95rem 1.25rem; font-size: 0.88rem; }
    }

    /* ── TOIM INTRO STRIP ────────────────────────── */
    #toim-intro {
      padding: 3.5rem 2rem;
      background: var(--bg);
    }
    .toim-info-grid {
      max-width: 1080px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    }
    .toim-info-card {
      padding: 2rem 2rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow-xs);
      position: relative;
      display: flex; flex-direction: column;
      justify-content: flex-start; gap: 1rem;
      min-height: 220px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .toim-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
    .toim-info-card .toim-info-tag { margin-bottom: 0; }
    .toim-info-card p { flex: 1; }
    .toim-info-card.alt {
      background: var(--white);
      border-color: var(--border);
    }
    .toim-info-tag {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--font-sub);
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 0.85rem;
    }
    .toim-info-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--blue); }
    .toim-info-card.alt .toim-info-tag { color: var(--blue); }
    .toim-info-card.alt .toim-info-tag::before { background: var(--blue); }
    .toim-info-card p {
      font-size: 0.96rem; line-height: 1.6;
      color: var(--text-body);
    }
    .toim-info-card a { color: var(--blue); font-weight: 600; }
    .toim-info-card.alt a { color: var(--blue); text-decoration: none; }
    @media (max-width: 800px) {
      #toim-intro { padding: 2.5rem 1.25rem; }
      .toim-info-grid { grid-template-columns: 1fr; gap: 1rem; }
      .toim-info-card { padding: 1.4rem 1.4rem; }
    }


    /* ── GLOBAL TEXT OVERFLOW SAFETY ─────────────── */
    body { overflow-wrap: break-word; word-wrap: break-word; }
    h1, h2, h3, h4, h5, h6, p, li, dt, dd, span, a, label, blockquote, cite {
      overflow-wrap: anywhere; word-break: break-word;
    }
    /* Long codes (IBAN, BIC, MobilePay) — allow wrap on small screens */
    .card-list code {
      overflow-wrap: anywhere; word-break: break-all;
      display: inline-block; max-width: 100%;
    }
    /* Forms — keep inputs from overflowing */
    .form-field input, .form-field textarea { max-width: 100%; min-width: 0; }
    /* Grid + flex children that hold text — allow shrinking */
    .hero-text, .hero-rail, .hero-rail-stat,
    .news-body, .news-title, .news-excerpt,
    .loc-panel-desc, .loc-meta-row, .loc-meta-val,
    .toim-info-card, .lahjoita-card, .form-wrap,
    .contact-card, .leader-card, .pillar-card,
    .stat-cell { min-width: 0; }
    /* Long email + phone links never overflow */
    .loc-meta-val a, .contact-card-val, .leader-card a, .f-contact a {
      overflow-wrap: anywhere; word-break: break-word;
    }
    /* Mobile: drop nowrap on buttons that hold long labels */
    @media (max-width: 600px) {
      .btn, .btn-nav-ghost, .nav-cta { white-space: normal; }
      .nav-actions .btn-blue, .btn-hero-primary, .btn-hero-ghost { white-space: nowrap; }
    }
    /* Tag pills that are nice-to-have nowrap but truncate on tiny screens */
    @media (max-width: 380px) {
      .loc-head-tag, .news-tag, .loc-tag { white-space: normal; }
    }

    /* ── PAGE HERO IMAGE VARIANTS ──────────────── */

    /* Toimintayksikot — split: text left, diagonal-clipped image right */
    .page-hero.ph-toim {
      padding: 10rem 0 5rem; position: relative; overflow: hidden;
      min-height: 460px;
    }
    .ph-toim .container { position: relative; z-index: 2; display: flex; align-items: center; min-height: 320px; }
    .ph-toim .page-hero-inner { max-width: 560px; }
    .ph-toim-img {
      position: absolute; top: 0; right: 0; bottom: 0;
      width: 45%; z-index: 1;
      background: url('img-embrace.jpg') center/cover no-repeat;
      clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    }
    .ph-toim-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(110deg, rgba(244,244,244,0.85) 0%, rgba(244,244,244,0.0) 45%);
    }

    /* Ajankohtaista — full-bleed image w/ dark overlay, light text */
    .page-hero.ph-news {
      padding: 11rem 0 5rem; position: relative; overflow: hidden;
      background: none; border-bottom: 0;
    }
    .ph-news-bg {
      position: absolute; inset: 0; z-index: 0;
      background: url('img-hand-mountains.jpg') center/cover no-repeat;
      filter: brightness(0.6);
    }
    .ph-news-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(20,41,65,0.45) 0%, rgba(20,41,65,0.65) 100%);
    }
    .ph-news .container { position: relative; z-index: 1; }
    .ph-news .page-hero-title { color: var(--white); }
    .ph-news .page-hero-title em { color: transparent; }
    .ph-news .page-hero-lead { color: rgba(255,255,255,0.92); }
    .ph-news .breadcrumb { color: rgba(255,255,255,0.75); }
    .ph-news .breadcrumb a { color: var(--orange); }
    .ph-news .breadcrumb span { color: rgba(255,255,255,0.4); }

    /* Yhteystiedot — small rounded inset image bottom-right */
    .page-hero.ph-yht {
      padding: 9rem 0 5rem; position: relative;
    }
    .ph-yht .container { position: relative; }
    .ph-yht-img {
      position: absolute; right: 2rem; bottom: -3rem;
      width: 320px; aspect-ratio: 4/5;
      border-radius: 24px; overflow: hidden;
      box-shadow: var(--shadow-lg);
      transform: rotate(2deg);
      z-index: 1;
    }
    .ph-yht-img img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .ph-yht-img::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
      border-radius: 24px; pointer-events: none;
    }

    /* Lahjoita — left strip image w/ orange wash */
    .page-hero.ph-don {
      padding: 9rem 0 5rem; position: relative; overflow: hidden;
    }
    .ph-don-strip {
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 38%; z-index: 0;
      background: url('img-beach-sunset.jpg') center/cover no-repeat;
      clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    }
    .ph-don-strip::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(79,134,198,0.25) 0%, rgba(255,255,255,0.85) 100%);
    }
    .ph-don .container { position: relative; z-index: 2; }
    .ph-don .page-hero-inner { margin-left: auto; max-width: 560px; }

    /* Liity jäseneksi — soft-blurred image bg + warm gradient overlay */
    .page-hero.ph-liit {
      padding: 11rem 0 6rem; position: relative; overflow: hidden;
    }
    .ph-liit-bg {
      position: absolute; inset: 0; z-index: 0;
      background: url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?w=1800&q=85&auto=format&fit=crop') center/cover no-repeat;
      filter: blur(14px) saturate(110%) brightness(0.95);
      transform: scale(1.1);
    }
    .ph-liit-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,241,168,0.5) 0%, rgba(168,208,240,0.55) 100%);
    }
    .ph-liit .container { position: relative; z-index: 1; }
    .ph-liit .page-hero-inner {
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.6);
      border-radius: 22px;
      padding: 2.5rem 2.25rem;
      box-shadow: 0 20px 50px rgba(20,41,65,0.18);
    }
    .ph-liit .breadcrumb { margin-bottom: 1rem; }

    /* Responsive */
    @media (max-width: 900px) {
      .ph-toim { padding: 7rem 0 3rem; }
      .ph-toim-img { width: 100%; opacity: 0.35; clip-path: none; }
      .ph-toim-img::after { background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.95) 100%); }

      .ph-news { padding: 8rem 0 4rem; }

      .ph-yht { padding: 7rem 0 4rem; }
      .ph-yht-img { display: none; }

      .ph-don { padding: 7rem 0 4rem; }
      .ph-don-strip { width: 100%; opacity: 0.4; clip-path: none; }
      .ph-don-strip::after { background: linear-gradient(180deg, rgba(79,134,198,0.18) 0%, rgba(255,255,255,0.92) 100%); }
      .ph-don .page-hero-inner { margin-left: 0; }

      .ph-liit { padding: 8rem 0 4rem; }
      .ph-liit .page-hero-inner { padding: 1.75rem 1.5rem; }
    }
    @media (max-width: 600px) {
      .ph-toim, .ph-news, .ph-yht, .ph-don, .ph-liit { padding-left: 1.25rem; padding-right: 1.25rem; }
      .ph-liit-bg { filter: blur(20px) brightness(0.95); }
    }

    /* ── LIITY INTRO PROSE ──────────────────────── */
    #liity-intro {
      padding: 4.5rem 2rem 1rem;
      background: var(--bg);
    }
    .liity-intro-wrap {
      max-width: 720px; margin: 0 auto;
    }
    .liity-intro-wrap p {
      font-size: 1.05rem; line-height: 1.78;
      color: var(--text-body); margin-bottom: 1.25rem;
    }
    .liity-intro-wrap .liity-lead {
      font-size: 1.18rem; line-height: 1.65;
      color: var(--text); font-weight: 500;
      margin-bottom: 1.75rem;
    }
    .liity-list {
      list-style: none; padding: 0;
      margin: 0.5rem 0 1.75rem;
      display: flex; flex-direction: column; gap: 0.6rem;
    }
    .liity-list li {
      position: relative; padding-left: 1.5rem;
      font-size: 1.02rem; line-height: 1.55;
      color: var(--text-body);
    }
    .liity-list li::before {
      content: ''; position: absolute; left: 0; top: 0.7rem;
      width: 8px; height: 2px; background: var(--blue);
    }
    .liity-emphasis {
      font-family: var(--font-sub);
      font-style: italic;
      font-size: 1.2rem !important;
      line-height: 1.55 !important;
      color: var(--blue) !important;
      padding: 1.5rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin: 2rem 0 !important;
      text-align: center;
    }
    .liity-cta-line {
      background: var(--orange-soft);
      border: 1px solid var(--orange);
      border-radius: 14px;
      padding: 1.25rem 1.5rem;
      font-size: 0.98rem !important;
      color: var(--grey-dark) !important;
      margin-top: 2rem !important;
      margin-bottom: 0 !important;
    }
    .liity-cta-line strong { color: var(--grey-dark); }

    @media (max-width: 700px) {
      #liity-intro { padding: 3rem 1.25rem 0.5rem; }
      .liity-intro-wrap p { font-size: 1rem; }
      .liity-intro-wrap .liity-lead { font-size: 1.08rem; }
      .liity-emphasis { font-size: 1.05rem !important; padding: 1.25rem 0; }
    }

    /* ── LIITY COMBINED 2-COL SECTION ───────────── */
    #liity-combined {
      padding: 5rem 2rem 6rem;
      background: var(--surface);
    }
    .liity-combined-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
    }
    #liity-combined .liity-intro-wrap {
      max-width: none; text-align: left;
    }
    #liity-combined .liity-intro-wrap p { text-align: left; }
    #liity-combined .liity-emphasis { text-align: left; padding: 1.25rem 0; }
    #liity-combined .form-wrap {
      margin: 0; max-width: none;
      position: sticky; top: 8rem;
    }
    @media (max-width: 1000px) {
      .liity-combined-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      #liity-combined .form-wrap { position: static; }
    }
    @media (max-width: 600px) {
      #liity-combined { padding: 3rem 1.25rem 4rem; }
    }

    /* ── MOBILEPAY BLOCK (refined) ─────────────── */
    .lahjoita-mobilepay {
      display: flex; flex-direction: column; gap: 1.75rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 2.25rem 2rem;
      box-shadow: 0 18px 48px rgba(47,47,47,0.06);
    }
    .mp-head {
      display: flex; align-items: center; gap: 1.25rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }
    .mp-logo-tight {
      width: 72px; height: 72px; flex-shrink: 0;
      overflow: hidden; border-radius: 18px;
      background: var(--grey-light);
      display: flex; align-items: center; justify-content: center;
    }
    .mp-logo-tight img {
      width: 200%; height: 200%;
      object-fit: contain; object-position: center;
      display: block;
    }
    .mp-head-text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
    .mp-eyebrow {
      font-family: var(--font-sub);
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--blue);
    }
    .mp-title {
      font-family: var(--font-head);
      font-size: clamp(1.5rem, 2.6vw, 1.9rem);
      line-height: 1.05; letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--text);
      margin: 0;
    }
    .mp-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
    }
    .mp-card {
      position: relative;
      background: var(--grey-light);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem 1.25rem 1.25rem;
      display: flex; flex-direction: column; align-items: flex-start;
      gap: 0.4rem; min-width: 0;
      transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s, background 0.22s;
    }
    .mp-card:hover {
      transform: translateY(-3px); border-color: var(--blue);
      box-shadow: 0 14px 28px rgba(79,134,198,0.18);
      background: var(--white);
    }
    .mp-card--alt {
      background: var(--blue-pale); border-color: var(--blue);
    }
    .mp-card--alt:hover { border-color: var(--blue); background: var(--blue-pale2); box-shadow: 0 14px 28px rgba(79,134,198,0.22); }
    .mp-card-tag {
      font-family: var(--font-sub);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-light);
    }
    .mp-card--alt .mp-card-tag { color: var(--grey-dark); }
    .mp-card-code {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1; letter-spacing: 0.03em;
      color: var(--text);
    }
    .mp-card-hint {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.06em; color: var(--text-mute);
      text-transform: uppercase;
      margin-top: 0.1rem;
    }
    .mp-card--alt .mp-card-hint { color: rgba(47,47,47,0.55); }
    .mp-helper {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-size: 0.88rem; color: var(--text-light);
      line-height: 1.5; margin: 0;
    }
    .mp-helper svg { color: var(--blue); flex-shrink: 0; }
    .mp-helper em { font-style: normal; font-weight: 700; color: var(--text); }

    @media (max-width: 600px) {
      .lahjoita-mobilepay { padding: 1.75rem 1.25rem; gap: 1.25rem; }
      .mp-head { gap: 1rem; padding-bottom: 1.1rem; }
      .mp-logo-tight { width: 58px; height: 58px; border-radius: 14px; }
      .mp-grid { grid-template-columns: 1fr; gap: 0.7rem; }
      .mp-card { padding: 1.25rem 1.1rem 1rem; }
      .mp-helper { font-size: 0.82rem; }
    }

    /* Featured news portrait — tight head+shoulders crop, minimal dead space */
    .news-portrait {
      height: 100%; min-height: 0; overflow: hidden;
      background: var(--surface);
      align-self: stretch;
    }
    .news-portrait img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 18%;
      transform: scale(1.45);
      transform-origin: 50% 22%;
      transition: transform 0.8s ease;
    }
    .news-card.featured:hover .news-portrait img { transform: scale(1.5); }
    @media (max-width: 900px) {
      .news-portrait { min-height: 400px; height: 400px; }
      .news-portrait img { object-position: center 14%; transform: scale(1.3); transform-origin: 50% 18%; }
    }
    @media (max-width: 540px) {
      .news-portrait { min-height: 360px; height: 360px; }
      .news-portrait img { transform: scale(1.22); transform-origin: 50% 20%; }
    }

    /* ── LEADER PHOTOS (round) ─────────────────── */
    .leader-photo {
      width: 96px; height: 96px;
      border-radius: 50%; overflow: hidden;
      margin-bottom: 1rem;
      background: var(--surface);
      border: 1px solid var(--border);
    }
    .leader-photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 60%;
      display: block;
    }
    .leader-photo img[src*="valtteri"] { object-position: center 42%; }
    .leader-photo img[src*="marjut"]   { object-position: center 50%; }
    .leader-card--featured { padding-top: 1.5rem; }
    @media (max-width: 600px) {
      .leader-photo { width: 80px; height: 80px; }
    }

    /* ── LASKUTUSOSOITE CARD ───────────────────── */
    .laskutus-card {
      grid-column: 1 / -1;
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
      display: flex; flex-direction: column; gap: 0.45rem;
    }
    .laskutus-tag {
      font-family: var(--font-sub);
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--grey-dark);
      display: inline-flex; align-items: center; gap: 0.6rem;
      margin-bottom: 0.35rem;
    }
    .laskutus-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--grey-dark); }
    .laskutus-card p {
      font-size: 0.95rem; color: var(--grey-dark); line-height: 1.5;
      margin: 0;
    }
    .laskutus-card strong { color: var(--grey-dark); font-weight: 700; }
    @media (max-width: 600px) {
      .laskutus-card { padding: 1.25rem 1.25rem; }
    }

    /* ── UNIT CARDS (per-home contact) ─────────── */
    .unit-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
      margin-bottom: 3.5rem;
    }
    .unit-card {
      background: var(--white); border: 1px solid var(--border-soft);
      border-radius: var(--radius); padding: 1.75rem;
      box-shadow: var(--shadow-xs);
      display: flex; flex-direction: column; gap: 1rem;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .unit-card:hover {
      transform: translateY(-4px); border-color: var(--blue);
      box-shadow: var(--shadow);
    }
    .unit-card-head { display: flex; flex-direction: column; gap: 0.25rem; }
    .unit-tag {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--blue);
    }
    .unit-name {
      font-family: var(--font-head); font-size: 1.25rem;
      font-weight: 700; color: var(--text); margin: 0;
      text-transform: uppercase; letter-spacing: 0.01em;
    }
    .unit-meta { display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid var(--border-soft); padding-top: 1rem; }
    .unit-row {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.92rem; color: var(--text-body); line-height: 1.45;
    }
    .unit-row svg { flex-shrink: 0; margin-top: 2px; color: var(--text-mute); }
    .unit-row a { color: var(--blue); font-weight: 500; transition: color 0.2s; }
    .unit-row a:hover { color: var(--blue-hover); }
    .unit-vastaava {
      margin-top: 0.25rem; padding-top: 0.75rem;
      border-top: 1px solid var(--border-soft);
      font-size: 0.85rem; color: var(--text-light);
    }
    .unit-vastaava strong { color: var(--text); font-weight: 600; }
    .unit-more {
      display: inline-flex; align-items: center; gap: 0.35rem;
      margin-top: auto; padding-top: 0.75rem;
      font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      color: var(--blue); text-transform: uppercase;
      transition: gap 0.2s;
    }
    .unit-more:hover { gap: 0.55rem; color: var(--blue-hover); }
    .unit-more-text {
      margin: auto 0 0; padding-top: 0.85rem;
      border-top: 1px solid var(--border-soft);
      font-size: 0.85rem; color: var(--text-light); line-height: 1.5;
    }
    .unit-more-text a { color: var(--blue); font-weight: 600; transition: color 0.2s; }
    .unit-more-text a:hover { color: var(--blue-hover); }
    @media (max-width: 700px) { .unit-grid { grid-template-columns: 1fr; } }

    /* ── HALLITUS LIST ───────────────────────── */
    .hallitus-section { margin-top: 3rem; }
    .hallitus-hd {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-mute); margin-bottom: 1.25rem;
    }
    .hallitus-list {
      list-style: none; padding: 0; margin: 0;
      display: grid; gap: 0.75rem;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .hallitus-item {
      background: var(--surface); border: 1px solid var(--border-soft);
      border-radius: 12px; padding: 1rem 1.25rem;
    }
    .hallitus-item-name { font-weight: 700; font-size: 0.97rem; color: var(--text); display: block; }
    .hallitus-item-role { font-size: 0.8rem; color: var(--text-light); margin: 0.15rem 0 0.6rem; display: block; }
    .hallitus-item a { display: block; font-size: 0.85rem; color: var(--blue); padding: 0.15rem 0; }
    .hallitus-item a:hover { color: var(--blue-hover); }

    /* ── DONATE NOTICE ───────────────────────── */
    .donate-notice {
      display: flex; align-items: center; gap: 0.75rem;
      background: rgba(1,112,185,0.05);
      border: 1px solid rgba(1,112,185,0.18);
      border-radius: 12px; padding: 0.9rem 1.25rem;
      font-size: 0.93rem; color: var(--text);
      margin-bottom: 3.5rem;
    }
    .donate-notice svg { flex-shrink: 0; color: var(--blue); }
    .donate-notice a { color: var(--blue); font-weight: 600; }
    .donate-notice a:hover { color: var(--blue-hover); }

    /* ── MOBILE + DESKTOP POLISH SWEEP ────────── */
    /* Universal: keep paddings sane on small viewports */
    @media (max-width: 900px) {
      section, .sec { padding-left: 0; padding-right: 0; }
      .container { padding: 0 1.5rem; }
      .page-hero, .ph-news, .ph-toim, .ph-don, .ph-yht, .ph-liit { padding-left: 1.5rem; padding-right: 1.5rem; }
      .sec-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); line-height: 1.12; }
      .page-hero-title { font-size: clamp(1.9rem, 6.5vw, 3.2rem); line-height: 1.1; }
      .page-hero-lead { font-size: 1rem; }
      .sec-lead { font-size: 0.98rem; }
      .breadcrumb { font-size: 0.72rem; margin-bottom: 1rem; }
      .divider { width: 44px; }

      /* About grid stays stacked + image tighter */
      .about-img-wrap { aspect-ratio: 4/3; }
      .about-quote { padding: 0.8rem 0 0.8rem 1.25rem; }
      .about-quote blockquote { font-size: 1.05rem; }

      /* Pillars / loc + news cards */
      .pillar-card, .loc-card, .news-card { padding: 1.5rem 1.25rem; }
      .pillar-title, .loc-name, .news-title { font-size: 1.2rem; }

      /* Contact + leaders */
      .contact-card { padding: 1.5rem 1.25rem; }
      .leader-card { padding: 1.35rem 1.2rem; }
      .leader-name { font-size: 1.05rem; }

      /* Lahjoita layout */
      .lahjoita-trust { padding: 1.25rem 1.25rem; font-size: 0.88rem; }

      /* Loc accordion meta wraps cleanly */
      .loc-meta-row { flex: 1 1 140px; }
      .loc-doc-btn { font-size: 0.78rem; padding: 0.6rem 0.95rem; }
    }
    @media (max-width: 600px) {
      h1, .hero-title, .page-hero-title { letter-spacing: -0.015em; }
      .container { padding: 0 1.25rem; max-width: 100%; }
      section, .sec { padding-left: 0; padding-right: 0; }
      .page-hero { padding: 6rem 1.25rem 2.5rem; }
      .ph-news, .ph-toim, .ph-don, .ph-yht, .ph-liit { padding: 6rem 1.25rem 2.5rem; }
      .ph-toim .container { min-height: 0; }
      .ph-yht-img, .ph-don-strip { display: none; }
      .ph-toim-img {
        display: block; width: 100%; opacity: 0.55;
        clip-path: none;
        filter: saturate(0.9);
      }
      .ph-toim-img::after {
        background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.85) 75%, rgba(255,255,255,1) 100%);
      }
      .ph-toim, .ph-don { padding-bottom: 3rem; }
      .ph-liit .page-hero-inner { padding: 1.5rem 1.25rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      footer { padding: 4rem 1.25rem 0; }
      .footer-grid { gap: 2rem; }
    }

    /* Desktop polish — consistent max-widths and section rhythm */
    @media (min-width: 1280px) {
      .container { max-width: 1180px; }
      section.sec { padding-top: 7rem; padding-bottom: 7rem; }
    }

    /* Prevent any horizontal scroll on any screen */
    html, body { overflow-x: hidden; }

    /* ── ANCHOR OFFSET (floating navbar covers deep-linked sections) ── */
    section[id], [id^="lahjoita"], #esittely, #pillars, #toimintayksikot-body, #stats, #mission { scroll-margin-top: 100px; }

    /* ── SKIP TO CONTENT (a11y) ── */
    .skip-link {
      position: absolute; top: -100px; left: 1rem;
      background: var(--grey-dark); color: var(--white);
      padding: 0.75rem 1.25rem; border-radius: 8px;
      z-index: 9999; font-weight: 700; font-size: 0.9rem;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 1rem; outline: 2px solid var(--orange); }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1500;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 16px; padding: 1.25rem 1.5rem;
      box-shadow: 0 18px 48px rgba(47,47,47,0.18);
      display: none; align-items: center; gap: 1rem; flex-wrap: wrap;
      max-width: 720px; margin: 0 auto;
    }
    #cookie-banner.show { display: flex; }
    #cookie-banner p { margin: 0; font-size: 0.88rem; color: var(--text-body); flex: 1 1 280px; }
    #cookie-banner button {
      padding: 0.7rem 1.2rem; border-radius: 100px;
      font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
      text-transform: uppercase; cursor: pointer;
      background: var(--blue); color: var(--white); border: none;
      transition: background 0.22s;
    }
    #cookie-banner button:hover { background: var(--grey-dark); }

    /* ── LEGAL PAGES (Tietosuoja + Evästeet) ───── */
    .legal { padding: 4rem 2rem 5rem; background: var(--bg); }
    .legal-wrap {
      max-width: 760px; margin: 0 auto;
      font-size: 1rem; line-height: 1.72; color: var(--text-body);
    }
    .legal-wrap h2 {
      font-family: var(--font-head);
      font-size: clamp(1.3rem, 2.6vw, 1.7rem);
      font-weight: 700; letter-spacing: 0.02em;
      text-transform: uppercase; color: var(--text);
      margin: 2.5rem 0 0.85rem;
    }
    .legal-wrap h3 {
      font-family: var(--font-sub);
      font-size: 1rem; font-weight: 700;
      letter-spacing: 0.04em; color: var(--text);
      margin: 1.75rem 0 0.6rem;
    }
    .legal-wrap p { margin-bottom: 1rem; }
    .legal-wrap ul {
      list-style: none; padding: 0; margin: 0.5rem 0 1.25rem;
      display: flex; flex-direction: column; gap: 0.5rem;
    }
    .legal-wrap ul li {
      position: relative; padding-left: 1.25rem;
      font-size: 0.98rem; line-height: 1.6;
    }
    .legal-wrap ul li::before {
      content: ''; position: absolute; left: 0; top: 0.7rem;
      width: 6px; height: 2px; background: var(--blue);
    }
    .legal-wrap a { color: var(--blue); text-decoration: underline; }
    .legal-wrap a:hover { color: var(--grey-dark); }
    .legal-meta {
      font-size: 0.9rem; color: var(--text-light);
      padding: 1rem 1.25rem; background: var(--grey-light);
      border-radius: 10px; margin-bottom: 2rem;
    }
    @media (max-width: 600px) {
      .legal { padding: 2.5rem 1.25rem 4rem; }
      .legal-wrap { font-size: 0.96rem; }
    }

    /* Featured news card — tighter vertical rhythm on desktop */
    @media (min-width: 901px) {
      .news-card.featured { align-items: stretch; }
      .news-card.featured .news-body { padding: 1.5rem 2.25rem; display: flex; flex-direction: column; justify-content: center; }
      .news-card.featured .news-meta { margin-bottom: 0.6rem; }
      .news-card.featured .news-title { font-size: 1.25rem; margin-bottom: 0.6rem; }
      .news-card.featured .news-excerpt { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.65rem; }
      .news-card.featured .news-excerpt:last-of-type { margin-bottom: 0; }
      .news-card.featured .news-portrait {
        height: 100%; min-height: 0; max-height: 100%;
        overflow: hidden;
        align-self: stretch;
      }
      .news-card.featured .news-portrait img {
        object-position: center top;
        transform: scale(1.5);
        transform-origin: 50% 18%;
      }
    }

    /* ── AJANKOHTAISTA — refined magazine layout ── */
    #ajankohtaista-body { padding: 4rem 2rem 6rem; background: var(--bg); }
    #ajankohtaista-body .container { display: flex; flex-direction: column; gap: 3rem; }

    /* ── STRATEGIA BLOCKS ────────────────────── */
    .strat-sections { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.35rem; }
    .strat-block {
      padding: 0.9rem 1.1rem; background: var(--surface);
      border-radius: 10px; border-left: 3px solid var(--blue);
    }
    .strat-label {
      display: block; font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 0.45rem;
    }
    .strat-block p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; margin: 0; }
    .strat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.3rem; }
    .strat-list li {
      font-size: 0.87rem; color: var(--text-body); line-height: 1.6;
      padding-left: 1rem; position: relative;
    }
    .strat-list li::before { content: '–'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

    /* Featured editorial card */
    .njs-featured {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; align-items: stretch;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px; overflow: hidden;
      box-shadow: 0 18px 48px rgba(47,47,47,0.06);
      transition: box-shadow 0.35s, transform 0.35s;
    }
    .njs-featured:hover { box-shadow: 0 24px 60px rgba(47,47,47,0.12); transform: translateY(-2px); }
    .njs-featured-media {
      position: relative; overflow: hidden;
      min-height: 380px;
      background: var(--grey-light);
    }
    .njs-featured-media img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 18%;
      transform: scale(1.25);
      transform-origin: 50% 18%;
      transition: transform 0.9s ease;
    }
    .njs-featured:hover .njs-featured-media img { transform: scale(1.3); }
    .njs-featured-body {
      padding: 2.5rem 2.5rem;
      display: flex; flex-direction: column; justify-content: center; gap: 0.85rem;
    }
    .njs-meta {
      display: flex; align-items: center; gap: 0.75rem;
      font-family: var(--font-sub);
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    }
    .njs-tag {
      background: var(--orange-soft); color: var(--grey-dark);
      padding: 0.32rem 0.8rem; border-radius: 100px;
      font-weight: 700;
    }
    .njs-date { color: var(--text-light); font-weight: 600; }

    .njs-headline {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 2.6vw, 2.2rem);
      line-height: 1.08; letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--text); margin: 0;
    }
    .njs-lead {
      font-size: 1.05rem; line-height: 1.6; color: var(--text);
      font-weight: 500; margin: 0;
    }
    .njs-body {
      font-size: 0.95rem; line-height: 1.65; color: var(--text-light);
      margin: 0;
    }
    .njs-byline {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--font-sub);
      font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-mute); font-weight: 600;
      margin-top: 0.5rem;
    }
    .njs-byline-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

    /* ── PAIRED MID CARDS (ajankohtaista) ──────── */
    .njs-pair {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
    }
    .njs-mid {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    }
    .njs-mid:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 18px 36px rgba(47,47,47,0.10); }
    .njs-mid-media { aspect-ratio: 16/9; overflow: hidden; }
    .njs-mid-media img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 18%;
      transition: transform 0.9s ease;
    }
    .njs-mid:hover .njs-mid-media img { transform: scale(1.05); }
    .njs-mid-body {
      padding: 1.5rem 1.5rem 1.75rem;
      display: flex; flex-direction: column; gap: 0.6rem; flex: 1;
    }
    .njs-mid-collapsible {
      position: relative;
      max-height: 7.5rem;
      overflow: hidden;
      transition: max-height 0.45s ease;
    }
    .njs-mid-collapsible::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2.5rem;
      background: linear-gradient(transparent, var(--white));
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .njs-mid-collapsible.expanded { max-height: 160rem; }
    .njs-mid-collapsible.expanded::after { opacity: 0; }
    .njs-expand-btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: none; border: 1px solid var(--blue); color: var(--blue);
      font-family: var(--font-sub);
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
      padding: 0.45rem 1.1rem; border-radius: 100px;
      cursor: pointer; align-self: flex-start;
      transition: all 0.2s; margin-top: 0.1rem;
    }
    .njs-expand-btn:hover { background: var(--blue); color: var(--white); }
    /* loc-panel-meta inside njs-mid-body: reset order so it doesn't jump to top */
    .njs-mid-body .loc-panel-meta {
      order: 0;
      margin-top: 0.25rem;
      border: 1px solid var(--border-soft);
    }
    @media (max-width: 900px) {
      .njs-pair { grid-template-columns: 1fr; gap: 1.25rem; }
    }

    /* Secondary cards row */
    .njs-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.75rem;
    }
    .njs-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    }
    .njs-card:hover {
      transform: translateY(-4px); border-color: var(--blue);
      box-shadow: 0 18px 36px rgba(47,47,47,0.10);
    }
    .njs-card-media {
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }
    .njs-card-media img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 35%;
      transition: transform 0.9s ease;
    }
    .njs-card:hover .njs-card-media img { transform: scale(1.05); }
    .njs-card-body {
      padding: 1.75rem 1.75rem 2rem;
      display: flex; flex-direction: column; gap: 0.75rem;
      flex: 1;
    }
    .njs-card-title {
      font-family: var(--font-head);
      font-size: 1.3rem; line-height: 1.18; letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--text); margin: 0;
    }
    .njs-card-text {
      font-size: 0.93rem; line-height: 1.6;
      color: var(--text-light); margin: 0;
    }

    /* Mobile */
    @media (max-width: 900px) {
      #ajankohtaista-body { padding: 3rem 1.25rem 4rem; gap: 2rem; }
      #ajankohtaista-body .container { gap: 2rem; }
      .njs-featured { grid-template-columns: 1fr; }
      .njs-featured-media { min-height: 0; aspect-ratio: 4/3; }
      .njs-featured-body { padding: 1.75rem 1.5rem 2rem; }
      .njs-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    }
    @media (max-width: 540px) {
      .njs-featured-body { padding: 1.5rem 1.25rem 1.75rem; }
      .njs-headline { font-size: 1.4rem; }
      .njs-card-body { padding: 1.4rem 1.25rem 1.6rem; }
      .njs-card-title { font-size: 1.15rem; }
    }

    /* ── NEWSLETTER FEEL UPGRADES ────────────── */
    /* Serif italic accent (à la "NIIN MAAILMA PARANI") */
    .accent-italic, .about-quote blockquote, .liity-emphasis {
      font-family: 'Lora', Georgia, serif;
      font-style: italic;
      letter-spacing: 0;
    }

    /* Editorial uppercase headlines — tighter tracking, heavier weight */
    .sec-title, .page-hero-title, .hero-title,
    .pillar-title, .loc-head-name, .news-title,
    .leader-name, .contact-card-title,
    .lahjoita-h2, .mp-title, .form-h2,
    .njs-headline, .njs-card-title {
      text-transform: uppercase;
      letter-spacing: 0.005em;
    }
    .pillar-title { letter-spacing: 0.01em; }

    /* Tag pills — solid blue with white text (newsletter style) */
    .njs-tag, .news-tag, .loc-tag,
    .pillar-num, .stat-lbl {
      letter-spacing: 0.16em;
    }

    /* Yellow CTA variant */
    .btn-yellow {
      background: var(--orange); color: var(--grey-dark);
      padding: 0.95rem 1.6rem; border-radius: 100px;
      font-family: var(--font-sub);
      font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; font-size: 0.85rem;
      display: inline-flex; align-items: center; gap: 0.55rem;
      transition: transform 0.22s, background 0.22s, box-shadow 0.22s;
      border: none; cursor: pointer;
    }
    .btn-yellow:hover {
      background: var(--grey-dark); color: var(--orange);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(255,201,51,0.45);
    }

    /* Section number/eyebrow stronger contrast */
    .eyebrow {
      color: var(--blue); font-family: var(--font-sub);
      font-weight: 700; letter-spacing: 0.22em;
    }

    /* Tighter heading line-height for uppercase blocks */
    .sec-title, .page-hero-title { line-height: 1.05; }

    /* Italic pull quote special: bigger + blue */
    .about-quote blockquote {
      color: var(--blue);
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      line-height: 1.4;
    }
