/* =====================================================================
   LIGNA SYSTEMS — Design Tokens
   Source: Brandbook 2024 LIGNA systems (DE/EN/FR/NL)

   Typography — system font policy:
     The brandbook calls out Monsal Gothic (print) and Proxima Nova (web),
     both paid faces. To keep these specimens portable across Windows,
     macOS, Linux and PowerPoint WITHOUT requiring font installs, both
     display and body roles default to **Segoe UI** — the Windows system
     UI font (vorinstalliert seit Vista). On macOS / iOS the stack falls
     back via system-ui to SF Pro; on Android to Roboto.
   ===================================================================== */

:root {
  /* ---------- PRIMARY COLOURS ---------- */
  --ligna-green:        #94B654;   /* brand green — the "I" beam */
  --ligna-dark-grey:    #484848;   /* primary text + logo grey   */
  --ligna-black:        #000000;
  --ligna-white:        #FFFFFF;
  --ligna-light-grey:   #F6F6F6;   /* neutral surface            */

  /* ---------- SECONDARY ACCENTS ---------- */
  --ligna-orange:       #E87F51;
  --ligna-red:          #B24958;
  --ligna-yellow:       #FBAF3F;
  --ligna-blue:         #00A1C5;
  --ligna-bluegrey:     #A6C9D9;

  /* ---------- TIMBER / WARM TONES (derived, for imagery + accents) ---- */
  --ligna-timber-50:    #FBF6EE;
  --ligna-timber-100:   #F2E6CE;
  --ligna-timber-200:   #E6CFA0;
  --ligna-timber-300:   #D6B36C;
  --ligna-timber-400:   #B98A3E;
  --ligna-timber-500:   #8C6628;   /* heartwood */

  /* ---------- NEUTRAL SCALE (derived from dark grey) ----------------- */
  --ligna-grey-50:      #FAFAFA;
  --ligna-grey-100:     #F1F1F1;
  --ligna-grey-200:     #E2E2E2;
  --ligna-grey-300:     #C9C9C9;
  --ligna-grey-400:     #9C9C9C;
  --ligna-grey-500:     #6B6B6B;
  --ligna-grey-600:     #484848;   /* official dark grey */
  --ligna-grey-700:     #303030;
  --ligna-grey-800:     #1C1C1C;
  --ligna-grey-900:     #0E0E0E;

  /* ---------- GREEN SCALE (derived) ---------------------------------- */
  --ligna-green-50:     #F2F6E7;
  --ligna-green-100:    #E1ECC8;
  --ligna-green-200:    #C7DC93;
  --ligna-green-300:    #ADCC65;
  --ligna-green-400:    #94B654;   /* brand green */
  --ligna-green-500:    #7F9F44;
  --ligna-green-600:    #678434;
  --ligna-green-700:    #4C6126;

  /* ---------- SEMANTIC TOKENS ---------- */
  --fg-1:               var(--ligna-grey-600);   /* primary text — brand dark grey #484848 */
  --fg-2:               var(--ligna-grey-500);   /* secondary text */
  --fg-3:               var(--ligna-grey-500);   /* tertiary / meta */
  --fg-on-green:        var(--ligna-white);
  --fg-on-dark:         var(--ligna-white);
  --fg-accent:          var(--ligna-green);

  --bg-1:               var(--ligna-white);
  --bg-2:               var(--ligna-light-grey);
  --bg-3:               var(--ligna-grey-100);
  --bg-inverse:         var(--ligna-grey-600);   /* dark grey, not pure black */
  --bg-accent:          var(--ligna-green);

  --border-1:           var(--ligna-grey-200);
  --border-2:           var(--ligna-grey-300);
  --border-strong:      var(--ligna-grey-600);

  --success:            var(--ligna-green-500);
  --warning:            var(--ligna-yellow);
  --danger:             var(--ligna-red);
  --info:               var(--ligna-blue);

  /* ---------- TYPOGRAPHY ---------- */
  /* System-only font stack — Segoe UI is the Windows system UI font
     (vorinstalliert seit Vista, modern + technisch). system-ui picks
     up SF Pro on macOS / iOS for a native look there, Roboto on
     Android, and Segoe UI Variable on Windows 11.                   */
  --font-display:       'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body:          'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:          ui-monospace, 'SF Mono', 'Consolas', 'Menlo', monospace;

  /* Weights echo the brandbook: Regular, ExtraBold for display; Regular for body */
  --fw-regular:         400;
  --fw-medium:          500;
  --fw-semibold:        600;
  --fw-bold:            700;
  --fw-extrabold:       800;
  --fw-black:           900;

  /* Type scale — built around a 16 px body, generous display sizes */
  --fs-xs:              0.75rem;     /* 12 */
  --fs-sm:              0.875rem;    /* 14 */
  --fs-base:            1rem;        /* 16 */
  --fs-md:              1.125rem;    /* 18 */
  --fs-lg:              1.375rem;    /* 22 */
  --fs-xl:              1.75rem;     /* 28 */
  --fs-2xl:             2.25rem;     /* 36 */
  --fs-3xl:             3rem;        /* 48 */
  --fs-4xl:             4rem;        /* 64 */
  --fs-5xl:             5.5rem;      /* 88 */
  --fs-6xl:             7.5rem;      /* 120 — for big hero numerals */

  --lh-tight:           1.04;
  --lh-snug:            1.18;
  --lh-normal:          1.45;
  --lh-relaxed:         1.6;

  --tracking-tight:     -0.01em;
  --tracking-normal:    0;
  --tracking-wide:      0.04em;
  --tracking-eyebrow:   0.16em;   /* used on small allcaps eyebrows */

  /* ---------- SPACING (8-pt grid) ---------- */
  --space-1:            4px;
  --space-2:            8px;
  --space-3:            12px;
  --space-4:            16px;
  --space-5:            24px;
  --space-6:            32px;
  --space-7:            48px;
  --space-8:            64px;
  --space-9:            96px;
  --space-10:           128px;

  /* ---------- RADII ---------- */
  /* The brand reads architectural and rectilinear — radii stay small.
     Pills are used sparingly on small accent badges only.            */
  --radius-none:        0;
  --radius-xs:          2px;
  --radius-sm:          4px;
  --radius-md:          6px;
  --radius-lg:          10px;
  --radius-pill:        999px;

  /* ---------- BORDERS ---------- */
  --border-w-1:         1px;
  --border-w-2:         2px;
  --border-w-3:         3px;       /* matches icon stroke width */

  /* ---------- SHADOWS — restrained, architectural ---------- */
  --shadow-1:           0 1px 2px rgba(15, 15, 15, 0.06);
  --shadow-2:           0 4px 12px rgba(15, 15, 15, 0.08);
  --shadow-3:           0 12px 32px rgba(15, 15, 15, 0.12);
  --shadow-inset:       inset 0 0 0 1px rgba(15, 15, 15, 0.06);

  /* ---------- MOTION ---------- */
  --ease-standard:      cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out:           cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:      120ms;
  --duration-base:      200ms;
  --duration-slow:      400ms;

  /* ---------- LAYOUT ---------- */
  --container-max:      1280px;
  --gutter:             clamp(16px, 4vw, 48px);
}

/* =====================================================================
   SEMANTIC TYPOGRAPHIC HELPERS
   Names match the brandbook hierarchy: Main title, Subtitle,
   Sub-subtitle, Continuous text. The brandbook also uses an all-caps
   "LOREM IPSUM" eyebrow above main titles — captured as .eyebrow.
   ===================================================================== */

.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

.h-display,
.h1,
.h2,
.h3,
.h4,
.eyebrow,
.body,
.body-lg,
.caption {
  font-family: var(--font-body);
  color: var(--fg-1);
  margin: 0;
}

/* Big editorial display — "MODULAR TIMBER CONSTRUCTION" treatment */
.h-display {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(3rem, 7vw, var(--fs-5xl));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: var(--ligna-grey-700);
}

/* Main title (brandbook "Main title") */
.h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(2rem, 4.2vw, var(--fs-3xl));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: var(--ligna-grey-700);
}

/* Subtitle */
.h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: var(--ligna-grey-700);
}

/* Sub-subtitle — sentence case, mixed family for warmth */
.h3 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  color: var(--ligna-grey-700);
}

.h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
  color: var(--ligna-grey-700);
}

/* All-caps eyebrow — brandbook "LOREM IPSUM" treatment over titles */
.eyebrow {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  line-height: 1;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ligna-green);
}

.body-lg {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--fg-1);
}

.body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--fg-1);
}

.caption {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  letter-spacing: 0.02em;
  color: var(--fg-3);
}

/* Convenience element-level mapping (opt-in) */
.ligna-typo h1, .ligna-typo .h-display { @apply h-display; }


/* ============ COMPONENT STYLES (from one-pager) ============ */

  /* Embed a portable web font so the standalone file renders identically
     on every OS (the LIGNA systems stack defaults to Segoe UI, a Windows-only
     system font). Mulish is a close, freely-licensed match to the
     brandbook's Proxima Nova. */
  :root {
    --font-display: 'Montserrat', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    --font-body:    'Mulish', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  }


  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ligna-white);
    color: var(--fg-1);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── layout primitives ── */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 56px; }

  section { padding: clamp(72px, 9vw, 128px) 0; }

  .eyebrow {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 14px;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: #5E7C2D;
    margin-bottom: 18px;
  }
  .eyebrow::before { content: '— '; }

  .section-head { max-width: 760px; margin-bottom: 64px; }

  h2.section-title {
    font-family: var(--font-display);
    font-weight: var(--fw-extrabold);
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.06;
    letter-spacing: var(--tracking-tight);
    text-transform: uppercase;
    color: var(--ligna-grey-600);
  }

  .section-intro {
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: var(--fg-2);
    max-width: 640px;
    margin-top: 24px;
    text-wrap: pretty;
  }

  .ligna-icon { color: var(--ligna-grey-600); width: 30px; height: 30px; stroke-width: 1.75; }
  .ligna-icon--accent { color: var(--ligna-green); }

  /* ── HEADER (sticky) ── */
  header.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    transition: background var(--duration-base) var(--ease-standard),
                box-shadow var(--duration-base) var(--ease-standard);
  }
  header.nav.scrolled {
    background: rgba(255,255,255,0.94);
    box-shadow: 0 1px 0 var(--ligna-grey-200);
    backdrop-filter: saturate(140%) blur(2px);
  }
  .nav-brand { display: flex; align-items: center; gap: 18px; }
  .nav-brand img { height: 30px; display: block; }
  .nav-brand .logo-on-photo { display: block; }
  .nav-brand .logo-on-light { display: none; }
  header.nav.scrolled .logo-on-photo { display: none; }
  header.nav.scrolled .logo-on-light { display: block; }
  .nav-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.35); }
  header.nav.scrolled .nav-sep { background: var(--ligna-grey-300); }
  .nav-brand .bh-on-photo, .nav-brand .bh-on-light { height: 24px; width: auto; }
  .nav-brand .bh-on-light { display: none; }
  header.nav.scrolled .bh-on-photo { display: none; }
  header.nav.scrolled .bh-on-light { display: block; }
  .nav-cta {
    font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: #fff; background: var(--ligna-green);
    padding: 13px 24px; border-radius: var(--radius-md); text-decoration: none;
    transition: background var(--duration-fast) var(--ease-standard);
  }
  .nav-cta:hover { background: var(--ligna-green-500); }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: flex-end;
    color: #fff; overflow: hidden;
  }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background: transparent;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(28,28,28,0.86) 0%, rgba(28,28,28,0.55) 42%, rgba(28,28,28,0.08) 80%),
                linear-gradient(to top, rgba(28,28,28,0.65) 0%, transparent 45%);
  }
  .hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 72px; padding-top: 140px; }
  .hero-eyebrow {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 14px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
    color: var(--ligna-green-300); margin-bottom: 26px;
  }
  .hero-eyebrow::before { content: '— '; }
  .hero h1 {
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: clamp(40px, 6vw, 82px); line-height: 1.02;
    letter-spacing: var(--tracking-tight); text-transform: uppercase;
    color: #fff; max-width: 16ch;
  }
  .hero h1 .green { color: var(--ligna-green-300); }
  .hero-sub {
    font-size: var(--fs-md); line-height: var(--lh-relaxed);
    color: rgba(255,255,255,0.86); max-width: 620px; margin-top: 30px;
    text-wrap: pretty;
  }
  .hero-stats {
    display: flex; flex-wrap: wrap; gap: 56px; margin-top: 56px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hstat-num {
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: 44px; line-height: 1; color: #fff;
  }
  .hstat-label {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.62); margin-top: 10px; max-width: 16ch;
  }

  /* ── CHALLENGE ── */
  .challenge { background: var(--ligna-light-grey); }
  .challenge-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--ligna-grey-200); border: 1px solid var(--ligna-grey-200);
  }
  .challenge-cell { background: var(--ligna-white); padding: 44px 40px; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; row-gap: 14px; align-items: center; }
  .challenge-cell .ic { margin-bottom: 0; grid-column: 1; grid-row: 1; }
  .challenge-cell h3 {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: var(--fs-lg); line-height: 1.2; color: var(--ligna-grey-700);
    text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 0;
    grid-column: 2; grid-row: 1;
  }
  .challenge-cell p { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--fg-2); grid-column: 1 / -1; grid-row: 2; }

  /* ── BENEFITS ── */
  .benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px;
  }
  .benefit {
    border: 1px solid var(--ligna-grey-200); border-top: 3px solid var(--ligna-green);
    background: var(--ligna-white); padding: 40px 34px;
    display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto 1fr;
    column-gap: 14px; align-items: center;
    transition: box-shadow var(--duration-base) var(--ease-standard),
                border-color var(--duration-base) var(--ease-standard);
  }
  .benefit:hover { box-shadow: var(--shadow-2); }
  .benefit .num {
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: 14px; letter-spacing: 0.14em; color: var(--ligna-green); margin-bottom: 0;
    grid-column: 1; grid-row: 1; align-self: center;
  }
  .benefit h3 {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: var(--fs-lg); line-height: 1.2; color: var(--ligna-grey-700);
    text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 0;
    grid-column: 2; grid-row: 1; align-self: center;
  }
  .benefit p { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--fg-2); grid-column: 1 / -1; grid-row: 2; margin-top: 16px; }
  .benefit .proof {
    padding-top: 22px; margin-top: 22px;
    border-top: 1px solid var(--ligna-grey-200);
    font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: #5E7C2D;
    display: flex; gap: 8px; align-items: flex-start;
    grid-column: 1 / -1; grid-row: 3; align-self: end;
  }
  .benefit .proof::before { content: '→'; color: #5E7C2D; flex-shrink: 0; }

  /* ── SYSTEM (Design & Supply) ── */
  .system { background: var(--ligna-light-grey); color: var(--fg-1); }
  .system .eyebrow { color: #5E7C2D; }
  .system h2.section-title { color: var(--ligna-grey-700); }
  .system .section-intro { color: var(--fg-2); }
  .system-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--ligna-grey-200);
    border: 1px solid var(--ligna-grey-200); margin-top: 8px;
  }
  .system-col { background: var(--ligna-white); padding: 40px 34px; }
  .system-col .col-label {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ligna-green-600); margin-bottom: 24px;
    padding-bottom: 16px; border-bottom: 1px solid var(--ligna-grey-200);
  }
  .system-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .system-col li {
    font-size: var(--fs-base); line-height: 1.4; color: var(--fg-2);
    display: flex; gap: 12px; align-items: flex-start;
  }
  .system-col li::before {
    content: ''; flex-shrink: 0; margin-top: 9px;
    width: 7px; height: 7px; background: var(--ligna-green);
  }
  .system-result {
    margin-top: 56px; padding: 36px 44px;
    background: var(--ligna-green); border-radius: var(--radius-md);
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  }
  .system-result .ricon { flex-shrink: 0; width: 46px; height: 46px; color: #fff; }
  .system-result .ricon svg { width: 46px; height: 46px; stroke-width: 1.6; }
  .system-result .rlabel {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.82); flex-shrink: 0;
  }
  .system-result .rtext {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2; color: #fff;
    text-transform: uppercase; letter-spacing: 0.01em;
  }

  /* ── COMPARISON ── */
  .comparison { background: var(--ligna-light-grey); }
  .compare-table { width: 100%; border-collapse: collapse; margin-top: 8px; background: var(--ligna-white); border: 1px solid var(--ligna-grey-200); }
  .compare-table th, .compare-table td { padding: 20px 24px; text-align: left; vertical-align: top; }
  .compare-table thead th {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fg-3); border-bottom: 2px solid var(--ligna-grey-300);
  }
  .compare-table thead th.hl { color: var(--ligna-green-700); background: var(--ligna-green-50); }
  .compare-table tbody tr { border-bottom: 1px solid var(--ligna-grey-200); }
  .compare-table tbody tr:last-child { border-bottom: none; }
  .compare-table td { font-size: var(--fs-sm); line-height: 1.5; color: var(--fg-2); }
  .compare-table td.row-label { font-weight: var(--fw-semibold); color: var(--ligna-grey-700); font-size: var(--fs-base); width: 24%; }
  .compare-table td.hl { background: var(--ligna-green-50); color: var(--ligna-grey-700); font-weight: var(--fw-medium); }
  .ic-yes { color: var(--ligna-green-600); }
  .ic-warn { color: var(--ligna-yellow); }
  .ic-no { color: var(--ligna-red); }
  .cmark { display: inline-flex; vertical-align: -3px; margin-right: 7px; }
  .cmark svg { width: 17px; height: 17px; stroke-width: 2.4; }

  /* ── PHOTO BAND ── */
  .photo-band {
    position: relative; min-height: 74vh; display: flex; align-items: center;
    background: url('../assets/photo-montage-stuetzen.jpg') center/cover no-repeat;
    color: #fff;
  }
  .photo-band::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(28,28,28,0.78) 0%, rgba(28,28,28,0.35) 55%, transparent 100%);
  }
  .photo-band .wrap { position: relative; z-index: 2; }
  .photo-band .quote {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(26px, 3.2vw, 42px); line-height: 1.2; color: #fff;
    max-width: 20ch; letter-spacing: var(--tracking-tight);
  }
  .photo-band .quote .green { color: var(--ligna-green-300); }
  .photo-band .attrib {
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.62); margin-top: 28px;
  }

  /* gentle scroll parallax — desktop only, off for reduced-motion */
  @media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
    .photo-band, .statement { background-attachment: fixed; }
  }

  /* ── EMOTIONAL STATEMENT BAND ── */
  .statement {
    position: relative; min-height: 86vh; display: flex; align-items: flex-end;
    background-size: cover; background-position: center; color: #fff; overflow: hidden;
  }
  .statement::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(28,28,28,0.82) 0%, rgba(28,28,28,0.30) 48%, rgba(28,28,28,0.10) 100%);
  }
  .statement .wrap { position: relative; z-index: 2; padding-bottom: clamp(56px, 8vw, 110px); padding-top: 120px; }
  .statement .s-eyebrow {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 14px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
    color: #fff; margin-bottom: 22px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  }
  .statement h2 {
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: clamp(34px, 5vw, 68px); line-height: 1.04;
    letter-spacing: var(--tracking-tight); text-transform: uppercase;
    color: #fff; max-width: 18ch; text-wrap: balance;
  }
  .statement h2 .green { color: var(--ligna-green-300); }
  .statement p {
    font-size: var(--fs-md); line-height: var(--lh-relaxed);
    color: rgba(255,255,255,0.86); max-width: 56ch; margin-top: 26px; text-wrap: pretty;
  }

  /* ── BILDWELT GALLERY ── */
  .gallery { background: var(--ligna-white); }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px; gap: 14px; margin-top: 8px;
  }
  .gtile {
    position: relative; overflow: hidden;
  }
  .gtile img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .gtile::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(28,28,28,0.55) 0%, transparent 50%);
    opacity: 0; transition: opacity var(--duration-base) var(--ease-standard);
  }
  .gtile:hover::after { opacity: 1; }
  .gtile .gcap {
    position: absolute; left: 20px; bottom: 18px; z-index: 2;
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
    opacity: 0; transform: translateY(8px);
    transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }
  .gtile:hover .gcap { opacity: 1; transform: translateY(0); }
  .gtile.wide { grid-column: span 2; }
  .gtile.tall { grid-row: span 2; }
  .gtile { cursor: zoom-in; }
  .gtile .gzoom {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: rgba(28,28,28,0.42); color: #fff;
    opacity: 0; transform: scale(0.9);
    transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
  }
  .gtile .gzoom svg { width: 18px; height: 18px; stroke-width: 2; }
  .gtile:hover .gzoom { opacity: 1; transform: scale(1); }
  @media (max-width: 980px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gtile.wide { grid-column: span 2; }
    .gtile.tall { grid-row: span 1; }
  }
  @media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gtile.wide { grid-column: span 1; }
    .gtile .gcap { opacity: 1; transform: none; }
    .statement { min-height: 70vh; }
  }

  /* ── LIGHTBOX ── */
  .lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; background: rgba(20,20,20,0.94); }
  .lightbox.open { display: flex; }
  .lightbox .lb-stage { position: relative; max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
  .lightbox img { max-width: 92vw; max-height: 80vh; object-fit: contain; display: block; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
  .lightbox .lb-cap {
    margin-top: 18px; color: rgba(255,255,255,0.92);
    font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; text-align: center;
  }
  .lightbox .lb-count { display: block; margin-top: 6px; color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.1em; }
  .lb-btn {
    position: absolute; z-index: 2; width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.26); color: #fff;
    cursor: pointer; transition: background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
  }
  .lb-btn:hover { background: var(--ligna-green); border-color: var(--ligna-green); }
  .lb-btn svg { width: 24px; height: 24px; stroke-width: 2; }
  .lb-close { top: 26px; right: 26px; }
  .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
  .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
  @media (max-width: 600px) {
    .lb-prev { left: 12px; } .lb-next { right: 12px; }
    .lb-btn { width: 44px; height: 44px; }
    .lb-close { top: 14px; right: 14px; }
  }

  /* ── EDITORIAL SPLIT ── */
  .split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; overflow: hidden; }
  .split.flip .split-text { order: 2; }
  .split-img { min-height: 460px; background-size: cover; background-position: center; }
  @media (prefers-reduced-motion: no-preference) {
    /* image zoom-on-scroll effect removed per request — split images stay static */
    .split-img { transform: none; }
  }
  .split-text { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 4.5vw, 68px); background: var(--ligna-white); }
  .split.dark .split-text { background: var(--ligna-grey-700); }
  .split.dark .eyebrow { color: var(--ligna-green-300); }
  .split.dark h2.section-title { color: #fff; }
  .split.dark .split-text p { color: rgba(255,255,255,0.8); }
  .split-text p { font-size: var(--fs-md); line-height: var(--lh-relaxed); color: var(--fg-2); margin-top: 22px; max-width: 46ch; text-wrap: pretty; }
  .split-text .h2line { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; letter-spacing: var(--tracking-tight); text-transform: uppercase; color: var(--ligna-grey-600); }
  .split.dark .split-text .h2line { color: #fff; }
  .split-stats { display: flex; gap: 44px; margin-top: 38px; flex-wrap: wrap; }
  .split-stats .n { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 38px; line-height: 1; color: var(--ligna-green-600); }
  .split.dark .split-stats .n { color: var(--ligna-green-300); }
  .split-stats .l { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-3); margin-top: 8px; max-width: 16ch; }
  .split.dark .split-stats .l { color: rgba(255,255,255,0.6); }
  @media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.flip .split-text { order: 0; } .split-img { min-height: 360px; } }

  /* ── SYSTEM RENDER (contained model figure) ── */
  .system-render { margin-top: 56px; display: grid; grid-template-columns: 1.35fr 1fr; border: 1px solid var(--ligna-grey-200); background: var(--ligna-white); overflow: hidden; }
  .system-render .rimg { background-color: #b9babb; background-size: cover; background-position: center; min-height: 360px; }
  .system-render .rmeta { padding: clamp(30px, 3.2vw, 52px); display: flex; flex-direction: column; justify-content: center; }
  .system-render .rmeta .rk { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: #5E7C2D; margin-bottom: 14px; }
  .system-render .rmeta h3 { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; text-transform: uppercase; color: var(--ligna-grey-700); margin-bottom: 14px; }
  .system-render .rmeta p { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--fg-2); }
  @media (max-width: 860px) { .system-render { grid-template-columns: 1fr; } .system-render .rimg { min-height: 260px; } }

  /* ── PROCESS ── */
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 8px; position: relative;
  }
  .pstep { padding: 0 22px; position: relative; }
  .pstep:not(:last-child)::after {
    content: ''; position: absolute; top: 31px; left: 84px; right: -22px; height: 2px;
    background: var(--ligna-grey-200);
  }
  .pdot {
    width: 62px; height: 62px; border: 2px solid var(--ligna-green);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: 22px; color: var(--ligna-green-600); margin-bottom: 24px;
    border-radius: var(--radius-sm);
  }
  .pstep h3 {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: var(--fs-base); line-height: 1.2; color: var(--ligna-grey-700);
    text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px;
  }
  .pstep p { font-size: var(--fs-sm); line-height: 1.55; color: var(--fg-2); }

  /* ── APPLICATIONS ── */
  .applications { background: var(--ligna-light-grey); }
  .app-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--ligna-grey-200); border: 1px solid var(--ligna-grey-200); margin-top: 8px;
  }
  .app { background: var(--ligna-white); padding: 36px 30px; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 12px; align-items: center;
         transition: background var(--duration-base) var(--ease-standard); }
  .app .ligna-icon { grid-column: 1; grid-row: 1; }
  .app:hover { background: var(--ligna-green-50); }
  .app .card-title {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: var(--fs-md); line-height: 1.2; color: var(--ligna-grey-600);
    grid-column: 2; grid-row: 1;
    text-transform: uppercase; letter-spacing: 0.01em;
  }
  .app p { font-size: var(--fs-sm); line-height: 1.55; color: var(--fg-2); grid-column: 1 / -1; grid-row: 2; }

  /* ── PARTNERSHIP ── */
  .partner-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
  .partner-box { border: 1px solid var(--ligna-grey-200); padding: 48px 44px; background: var(--ligna-white); display: flex; flex-direction: column; }
  .partner-box.primary { border-top: 3px solid var(--ligna-green); background: var(--ligna-green-50); }
  .partner-box.secondary { border-top: 3px solid var(--ligna-grey-400); }
  .partner-name {
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: var(--fs-xl); color: var(--ligna-grey-700);
    text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px;
  }
  .partner-name .reg { color: #5E7C2D; font-size: 0.7em; vertical-align: super; }
  .partner-role {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: #5E7C2D; font-weight: var(--fw-semibold); margin-bottom: 30px;
  }
  .partner-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
  .partner-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: var(--fs-base); line-height: 1.45; color: var(--fg-2);
  }
  .partner-list li::before { content: ''; flex-shrink: 0; margin-top: 9px; width: 7px; height: 7px; background: var(--ligna-green); }
  .contact { margin-top: auto; border-top: 1px solid var(--ligna-grey-200); padding-top: 26px; display: flex; gap: 22px; align-items: flex-start; }
  .contact .avatar { width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--ligna-grey-200); background-color: var(--ligna-green-50); background-repeat: no-repeat; background-size: cover; background-position: center; overflow: hidden; }
  .contact .avatar--kevin { background-image: url('../assets/avatar-kevin.jpg'); }
  .contact .avatar--thomas { background-image: url('../assets/avatar-thomas.jpg'); }
  .contact .avatar--placeholder { display: flex; align-items: center; justify-content: center; background-color: var(--ligna-grey-100); color: var(--ligna-grey-400); }
  .contact .avatar--placeholder svg { width: 36px; height: 36px; }
  .contact .cinfo { min-width: 0; }
  .contact .cname { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--ligna-grey-700); margin-bottom: 4px; }
  .contact .ctitle { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 14px; }
  .contact .cdetail { font-size: var(--fs-sm); line-height: 1.9; color: var(--fg-2); overflow-wrap: anywhere; word-break: break-word; }
  .contact .cdetail a { color: var(--ligna-green-700); text-decoration: none; }
  .contact .cdetail a:hover { text-decoration: underline; }
  @media (max-width: 600px) { .contact { flex-direction: column; } }
  .contact .pending { color: var(--ligna-grey-400); font-style: italic; }

  /* ── CTA / FOOTER ── */
  .cta { background: var(--ligna-green); color: #fff; text-align: center; }
  .cta h2 {
    font-family: var(--font-display); font-weight: var(--fw-extrabold);
    font-size: clamp(34px, 4.6vw, 58px); line-height: 1.05;
    text-transform: uppercase; letter-spacing: var(--tracking-tight); margin-bottom: 24px;
  }
  .cta p { font-size: var(--fs-md); line-height: var(--lh-relaxed); color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 44px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn {
    font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 18px 40px; border-radius: var(--radius-md); text-decoration: none; cursor: pointer;
    transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
  }
  .btn-light { background: #fff; color: var(--ligna-green-700); border: none; }
  .btn-light:hover { background: var(--ligna-green-50); }
  .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55); }
  .btn-ghost:hover { background: rgba(255,255,255,0.12); }

  footer.foot { background: var(--ligna-grey-800); color: rgba(255,255,255,0.7); padding: 44px 0; }
  footer.foot .wrap { display: block; }
  footer.foot .foot-brand { display: flex; align-items: center; gap: 18px; }
  footer.foot img { height: 26px; display: block; }
  footer.foot .foot-sep { width: 1px; height: 24px; background: rgba(255,255,255,0.3); }
  footer.foot .foot-bh-logo { height: 17px; width: auto; display: block; }
  footer.foot .foot-row { display: flex; align-items: center; }
  footer.foot .foot-brand { flex: 1; }
  footer.foot .fmeta { flex: 1; text-align: center; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
  footer.foot .foot-legal { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.55); }
  footer.foot .foot-legal a { color: rgba(255,255,255,0.55); text-decoration: none; }
  footer.foot .foot-legal a:hover { color: #fff; }
  footer.foot .foot-legal-sep { opacity: 0.4; }
  @media (max-width: 700px) {
    footer.foot { padding: 32px 0; }
    footer.foot .foot-row { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
    footer.foot .foot-brand { justify-content: center; }
    footer.foot .fmeta { flex: none; }
    footer.foot .foot-legal { flex: none; justify-content: center; }
  }

  /* ── cookie banner ── */
  .cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--ligna-grey-800); color: rgba(255,255,255,0.85); padding: 20px 56px; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.25); flex-wrap: wrap; }
  .cookie-banner.visible { display: flex; }
  .cookie-text { font-size: 14px; line-height: 1.5; margin: 0; max-width: 700px; }
  .cookie-text a { color: var(--ligna-green-300); }
  .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
  .cookie-btn { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 24px; border-radius: 3px; cursor: pointer; border: 1px solid rgba(255,255,255,0.3); transition: all 0.2s; }
  .cookie-decline { background: transparent; color: rgba(255,255,255,0.6); }
  .cookie-decline:hover { color: #fff; border-color: #fff; }
  .cookie-accept { background: var(--ligna-green); color: #fff; border-color: var(--ligna-green); }
  .cookie-accept:hover { background: var(--ligna-green-500); border-color: var(--ligna-green-500); }

  /* ── reveal ── */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  /* ── responsive ── */
  @media (max-width: 980px) {
    .wrap { padding: 0 28px; }
    header.nav { padding: 16px 28px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .system-grid { grid-template-columns: 1fr; }
    .app-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
    .pstep:not(:last-child)::after { display: none; }
    .partner-split { grid-template-columns: 1fr; }
    .compare-table { font-size: 13px; }
    .compare-table th, .compare-table td { padding: 14px 14px; }
  }
  @media (max-width: 600px) {
    .challenge-grid { grid-template-columns: 1fr; }
    .challenge-cell { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 10px; align-items: center; }
    .challenge-cell .ic { grid-column: 1; grid-row: 1; margin-bottom: 0; }
    .challenge-cell h3 { grid-column: 2; grid-row: 1; margin-bottom: 0; }
    .challenge-cell p { grid-column: 1 / -1; grid-row: 2; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 12px; align-items: center; }
    .benefit .num { grid-column: 1; grid-row: 1; margin-bottom: 0; }
    .benefit h3 { grid-column: 2; grid-row: 1; margin-bottom: 0; }
    .benefit p { grid-column: 1 / -1; grid-row: 2; }
    .benefit .proof { grid-column: 1 / -1; grid-row: 3; margin-top: 0; }
    .app-grid { grid-template-columns: 1fr; }
    .app { grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 10px; align-items: center; display: grid; }
    .app i { grid-column: 1; grid-row: 1; }
    .app .card-title { grid-column: 2; grid-row: 1; }
    .app p { grid-column: 1 / -1; grid-row: 2; margin-top: 0; }
    .process-steps { display: block; }
    .pstep { display: grid; grid-template-columns: 62px 1fr; column-gap: 20px; row-gap: 6px; padding: 0 0 34px 0; position: relative; }
    .pstep:last-child { padding-bottom: 0; }
    .pdot { grid-column: 1; grid-row: 1 / span 2; margin-bottom: 0; }
    .pstep h3 { grid-column: 2; grid-row: 1; align-self: center; margin-bottom: 0; }
    .pstep p { grid-column: 2; grid-row: 2; }
    .pstep:not(:last-child)::after { content: ''; display: block; position: absolute; left: 30px; top: 70px; bottom: 2px; width: 2px; background: var(--ligna-grey-200); }
    .nav-cta { display: none; }
    .compare-table { border: none; background: transparent; }
    .compare-table thead { display: none; }
    .compare-table, .compare-table tbody { display: block; width: 100%; }
    .compare-table tr { display: block; border: 1px solid var(--ligna-grey-200); background: var(--ligna-white); margin-bottom: 16px; }
    .compare-table tr:last-child { margin-bottom: 0; }
    .compare-table td { display: block; width: 100%; padding: 13px 18px; border-bottom: 1px solid var(--ligna-grey-100); }
    .compare-table td:last-child { border-bottom: none; }
    .compare-table td.row-label { width: 100%; background: var(--ligna-grey-700); color: #fff; font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; }
    .compare-table td[data-label]::before { content: attr(data-label); display: block; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 5px; }
    .compare-table td.hl[data-label]::before { color: var(--ligna-green-700); }
  }


  .customers { background: var(--ligna-light-grey); }
  .cust-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px;
    background: var(--ligna-grey-200); border: 1px solid var(--ligna-grey-200); margin-top: 8px;
  }
  .cust {
    background: var(--ligna-white); padding: 36px 28px; display: flex; flex-direction: column; gap: 16px;
    transition: background var(--duration-base) var(--ease-standard);
  }
  .cust:hover { background: var(--ligna-green-50); }
  @media (max-width: 600px) { .cust { flex-direction: row; align-items: center; gap: 18px; } }
  .cust .ligna-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .cust .card-title {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: var(--fs-base); line-height: 1.25; color: var(--ligna-grey-600);
    text-transform: uppercase; letter-spacing: 0.01em;
  }
  .gallery .section-title { white-space: nowrap; }
  @media (max-width: 760px) { .gallery .section-title { white-space: normal; } }
  .benefits .section-title { white-space: nowrap; }
  .price-callout {
    display: flex; flex-direction: column; gap: 14px;
    background: var(--ligna-green-50); border-top: 3px solid var(--ligna-green);
    padding: clamp(28px, 3.4vw, 44px) clamp(28px, 4vw, 56px);
    margin: 30px 0 44px;
  }
  .price-callout-label {
    font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ligna-green-600);
  }
  .price-callout-text {
    max-width: 30ch; margin: 0;
    font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: clamp(23px, 2.5vw, 34px); line-height: 1.32; color: var(--ligna-grey-700);
    text-wrap: pretty;
  }
  .price-callout-text em { font-style: italic; }
  .price-callout-text .green { color: #5E7C2D; }
  @media (min-width: 880px) { .price-callout-text { max-width: 44ch; } }
  @media (max-width: 760px) { .benefits .section-title { white-space: normal; } }
  /* brand lockup inside the highlighted comparison header */
  .compare-table thead th.hl .th-brand { display: inline-flex; align-items: center; gap: 11px; text-transform: none; }
  .compare-table thead th.hl { text-align: center; }
  .compare-table thead th.hl .th-logo-ligna { height: 21px; width: auto; display: block; }
  .compare-table thead th.hl .th-logo-bh { height: 15px; width: auto; display: block; }
  .compare-table thead th.hl .th-sep { width: 1px; height: 17px; background: var(--ligna-grey-300); display: inline-block; }
  .partner-box .partner-logo-bh { height: 30px; width: auto; display: block; }
  .gallery-sublabel { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #5E7C2D; display: flex; align-items: center; gap: 14px; margin: 60px 0 22px; }
  .gallery-sublabel::after { content: ''; flex: 1; height: 1px; background: var(--ligna-grey-200); }
  .gallery-sublabel.first { margin-top: 8px; }
  .photo-band.scrim::after { background: linear-gradient(90deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.66) 52%, rgba(20,20,20,0.42) 100%); }
  .photo-band.scrim .attrib { color: rgba(255,255,255,0.78); }
  /* brand logos in partnership box titles */
  .partner-box .partner-name { display: flex; align-items: center; min-height: 42px; }
  .partner-box .partner-logo { height: 38px; width: auto; display: block; }
  .partner-box .partner-bh { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 30px; line-height: 1; letter-spacing: 0.005em; color: var(--ligna-grey-700); text-transform: none; display: inline-flex; align-items: center; gap: 8px; }
  .partner-box .partner-bh i { width: 11px; height: 11px; background: var(--ligna-green); display: inline-block; }


/* ===================================================================
   PRODUCTION ADDITIONS — primary nav, mobile drawer, accessibility
   =================================================================== */

/* anchor scroll offset so sections clear the sticky header */
html { scroll-padding-top: 92px; }

/* skip-to-content link (keyboard / screen-reader) */
.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--ligna-green); color: #fff;
  padding: 12px 22px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: 14px; text-decoration: none;
  transition: top var(--duration-base) var(--ease-standard);
}
.skip-link:focus { top: 16px; }

/* primary nav links (desktop) */
.nav-brand { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.nav-cta) {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: 14px; letter-spacing: 0.01em; white-space: nowrap;
  color: rgba(255,255,255,0.92); text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}
.nav-links a:not(.nav-cta):hover { color: var(--ligna-green-300); }
header.nav.scrolled .nav-links a:not(.nav-cta) { color: var(--ligna-grey-700); }
header.nav.scrolled .nav-links a:not(.nav-cta):hover { color: var(--ligna-green-600); }
.nav-links .nav-cta { white-space: nowrap; }

/* hamburger button */
.nav-toggle {
  display: none; width: 46px; height: 46px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 0; z-index: 60;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: transform var(--duration-base) var(--ease-standard), opacity var(--duration-fast) var(--ease-standard), background var(--duration-base) var(--ease-standard);
}
header.nav.scrolled .nav-toggle span { background: var(--ligna-grey-700); }
.nav-toggle.open span { background: var(--ligna-grey-700); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* backdrop behind the mobile drawer */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(20,20,20,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-standard), visibility var(--duration-base);
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* mobile drawer */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 4px; padding: 100px 34px 40px; background: var(--ligna-white);
    box-shadow: -14px 0 44px rgba(20,20,20,0.18);
    transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease-standard);
    overflow-y: auto; z-index: 55;
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.nav-cta) {
    color: var(--ligna-grey-700) !important; font-size: 18px;
    padding: 15px 0; width: 100%; border-bottom: 1px solid var(--ligna-grey-100);
  }
  .nav-links a:not(.nav-cta):hover { color: var(--ligna-green-600) !important; }
  .nav-links .nav-cta {
    display: inline-block !important; margin-top: 22px;
    width: 100%; text-align: center; box-sizing: border-box;
  }
  body.nav-open { overflow: hidden; }
}

/* respect reduced-motion for the drawer + hamburger */
@media (prefers-reduced-motion: reduce) {
  .nav-links, .nav-toggle span, .nav-backdrop, .skip-link { transition: none; }
}
