:root {
      --cream: #f4efe7;
      --cream-2: #eae0cd;
      --ink: #3b2a20;
      --ink-soft: rgba(59, 42, 32, 0.68);
      --ink-line: rgba(59, 42, 32, 0.14);
      --cream-soft: rgba(244, 239, 231, 0.72);
      --cream-line: rgba(244, 239, 231, 0.18);
      --burnt: #b25c2e;
      --olive: #7a6e3f;
      --sage: #7a8a6c;
      --gold: #c89a3a;
      --pale-gold: #d9c893;
      --accent: #b25c2e;
      --serif: "DM Serif Display", Georgia, serif;
      --sans: "Space Grotesk", system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body {
      margin: 0;
      padding: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: clip;
    }
    a { color: inherit; text-decoration: none; }

    [data-reveal] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    [data-reveal].is-in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      [data-reveal] { opacity: 1; transform: none; transition: none; }
    }

    /* ---------- NAV ---------- */
    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(59, 42, 32, 0.96);
      color: var(--cream);
      backdrop-filter: saturate(140%) blur(10px);
      -webkit-backdrop-filter: saturate(140%) blur(10px);
      border-bottom: 1px solid rgba(244, 239, 231, 0.14);
    }
    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 18px 48px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 48px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      background: var(--cream);
      padding: 6px 14px;
      border-radius: 10px;
    }
    .brand img { height: 46px; width: auto; mix-blend-mode: multiply; filter: contrast(1.02); }
    .nav-links {
      display: flex;
      justify-content: center;
      gap: 34px;
      font-size: 14px;
      font-weight: 500;
    }
    .nav-links a { position: relative; padding: 6px 0; color: var(--cream); opacity: 0.82; transition: opacity 0.2s ease; }
    .nav-links a:hover { opacity: 1; }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border: 1px solid var(--cream);
      border-radius: 999px;
      color: var(--cream);
      font-size: 14px;
      font-weight: 500;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .nav-cta:hover { background: var(--cream); color: var(--ink); }
    .arrow { display: inline-block; transition: transform 0.25s ease; }
    a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

    /* ---------- CTA buttons ---------- */
    .cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }
    .cta-primary {
      padding: 14px 26px;
      background: var(--ink);
      color: var(--cream);
      border: none;
      border-radius: 999px;
    }
    .cta-primary:hover { transform: translateY(-1px); background: #2a1e17; }
    .cta-light {
      padding: 14px 26px;
      background: var(--cream);
      color: var(--ink);
      border: none;
      border-radius: 999px;
    }
    .cta-light:hover { transform: translateY(-1px); }

    /* ============================================================
       1 · BANNER SLIDER — 5 rotating slides, corporate mechanic
       ============================================================ */
    .slider {
      position: relative;
      height: 580px;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.85s ease;
      pointer-events: none;
      display: flex;
      align-items: center;
      background:
        radial-gradient(ellipse at 50% 20%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%),
        var(--sbg);
      color: var(--stx, var(--cream));
    }
    .slide.is-on { opacity: 1; pointer-events: auto; z-index: 1; }
    .slide-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 56px;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      gap: 60px;
      align-items: center;
    }
    .slide-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      opacity: 0.8;
      margin: 0 0 24px;
    }
    .slide-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.5; }
    .slide h2 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(38px, 4.8vw, 72px);
      line-height: 1.04;
      letter-spacing: -0.02em;
      margin: 0 0 22px;
      max-width: 15ch;
    }
    .slide h2 em { font-style: italic; color: var(--sem, var(--gold)); }
    .slide p {
      font-size: 17px;
      line-height: 1.6;
      max-width: 460px;
      opacity: 0.85;
      margin: 0 0 32px;
    }
    .slide-stage {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: relative;
      height: 380px;
    }
    .slide-stage::before {
      content: "";
      position: absolute;
      left: 26%; right: 26%; bottom: 6px;
      height: 16px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 70%);
      filter: blur(3px);
    }

    /* CSS pouch (shared component) */
    .pouch {
      width: 190px;
      height: 258px;
      background:
        linear-gradient(112deg,
          rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 32%,
          rgba(255,255,255,0) 55%, rgba(255,255,255,0.06) 82%,
          rgba(255,255,255,0.12) 100%),
        linear-gradient(to right,
          rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 10%,
          rgba(0,0,0,0) 90%, rgba(0,0,0,0.24) 100%),
        var(--body);
      border-radius: 22px 22px 9px 9px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
      z-index: 1;
      box-shadow:
        0 26px 40px -16px rgba(0, 0, 0, 0.45),
        0 2px 4px -1px rgba(0, 0, 0, 0.15),
        inset 0 -5px 0 rgba(0, 0, 0, 0.18);
    }
    .cap {
      height: 24px;
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%),
        var(--cap);
      position: relative;
      box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25);
      flex-shrink: 0;
    }
    .cap::before {
      content: "";
      position: absolute;
      left: 12px; right: 12px; bottom: 6px;
      height: 3px;
      border-radius: 2px;
      background:
        repeating-linear-gradient(90deg,
          rgba(255,255,255,0.28) 0px, rgba(255,255,255,0.28) 2px,
          transparent 2px, transparent 4px),
        rgba(0,0,0,0.35);
    }
    .band {
      margin: auto 0 18px;
      padding: 9px 6px;
      background: var(--bandc);
      color: var(--band-text);
      text-align: center;
      font-family: var(--serif);
      font-size: 14px;
      line-height: 1;
      letter-spacing: 0.4px;
      box-shadow:
        inset 0 1px 2px rgba(0,0,0,0.18),
        inset 0 -1px 0 rgba(255,255,255,0.08);
      z-index: 2;
    }

    /* slider controls */
    .slider-controls {
      position: absolute;
      left: 0; right: 0; bottom: 26px;
      z-index: 5;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dots { display: flex; gap: 10px; }
    .dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      border: none;
      background: currentColor;
      opacity: 0.32;
      cursor: pointer;
      padding: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      color: inherit;
    }
    .dot.is-on { opacity: 1; transform: scale(1.3); }
    .slider-arrows { display: flex; gap: 10px; }
    .s-arrow {
      width: 44px; height: 44px;
      border-radius: 999px;
      border: 1px solid currentColor;
      background: transparent;
      color: inherit;
      font-size: 16px;
      cursor: pointer;
      opacity: 0.75;
      transition: opacity 0.2s ease;
    }
    .s-arrow:hover { opacity: 1; }
    /* controls inherit slide text colour via JS class */
    .slider-controls.on-dark { color: var(--cream); }
    .slider-controls.on-light { color: var(--ink); }

    /* ============================================================
       SHARED SECTION CHROME — centered corporate headers
       ============================================================ */
    .sec {
      max-width: 1440px;
      margin: 0 auto;
      padding: 96px 56px 100px;
    }
    .sec-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 56px;
    }
    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin: 0 0 20px;
    }
    .sec-eyebrow::before,
    .sec-eyebrow::after {
      content: "";
      width: 28px; height: 1px;
      background: rgba(59, 42, 32, 0.32);
    }
    .sec-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(32px, 3.6vw, 52px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
    }
    .sec-title em { font-style: italic; color: var(--accent); }
    .sec-lead {
      font-size: 16.5px;
      line-height: 1.65;
      color: var(--ink-soft);
      margin: 0;
    }

    /* ============================================================
       2 · WELCOME
       ============================================================ */
    .welcome { padding-bottom: 40px; }
    .welcome .sec-head { margin-bottom: 0; max-width: 860px; }
    .welcome .sec-lead { font-size: 18px; }

    /* ============================================================
       3 · VISION & MISSION — two symmetric panels
       ============================================================ */
    .vm { padding-top: 56px; }
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .values-grid .vm-panel { padding: 30px 26px; }
    @media (max-width: 900px) {
      .values-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .values-grid { grid-template-columns: 1fr; }
    }
    .vm-panel {
      border: 1px solid var(--ink-line);
      border-radius: 12px;
      background: var(--cream);
      padding: 48px 46px 44px;
      text-align: center;
      position: relative;
    }
    .vm-panel::before {
      content: "";
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 56px; height: 4px;
      background: var(--vc, var(--burnt));
      border-radius: 0 0 4px 4px;
    }
    .vm-label {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink-soft);
      display: block;
      margin-bottom: 18px;
    }
    .vm-quote {
      font-family: var(--serif);
      font-size: clamp(20px, 1.9vw, 26px);
      line-height: 1.4;
      margin: 0;
    }
    .vm-quote em { font-style: italic; color: var(--vc, var(--burnt)); }

    /* ============================================================
       4 · EXCELLENCE — stat counters on brown (GLS pattern)
       ============================================================ */
    .excellence {
      background: var(--ink);
      color: var(--cream);
    }
    .excellence .sec { padding: 90px 56px; }
    .excellence .sec-head { margin-bottom: 48px; }
    .excellence .sec-eyebrow { color: var(--cream-soft); }
    .excellence .sec-eyebrow::before,
    .excellence .sec-eyebrow::after { background: rgba(244, 239, 231, 0.35); }
    .excellence .sec-title em { color: var(--gold); }
    .counters {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
      text-align: center;
    }
    .counter { padding: 10px 6px; }
    .counter-num {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(38px, 3.6vw, 58px);
      line-height: 1;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
      white-space: nowrap;
    }
    .counter-label {
      font-size: 13.5px;
      letter-spacing: 0.06em;
      color: var(--cream-soft);
      line-height: 1.45;
    }

    /* ============================================================
       5 · OUR PRODUCTS — grid of 13
       ============================================================ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .prod-tile {
      border: 1px solid var(--ink-line);
      border-radius: 10px;
      background: var(--cream);
      padding: 24px 16px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), border-color 0.3s ease, background 0.3s ease;
    }
    .prod-tile:hover {
      transform: translateY(-5px);
      border-color: rgba(178, 92, 46, 0.45);
      background: #fbf8f2;
    }
    .prod-tile .p-fig {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 8px;
      background:
        radial-gradient(ellipse at 50% 26%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 62%),
        var(--tbg);
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 16px;
      position: relative;
      overflow: hidden;
    }
    .prod-tile .p-fig::before {
      content: "";
      position: absolute;
      left: 26%; right: 26%; bottom: 9px;
      height: 9px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 70%);
      filter: blur(2px);
    }
    .prod-tile .pouch {
      width: 74px;
      height: 102px;
      border-radius: 10px 10px 4px 4px;
      box-shadow: 0 12px 18px -9px rgba(0,0,0,0.4), inset 0 -3px 0 rgba(0,0,0,0.16);
    }
    .prod-tile .cap { height: 13px; }
    .prod-tile .cap::before { left: 7px; right: 7px; bottom: 3px; height: 2px; }
    .prod-tile .band { font-size: 9px; padding: 5px 3px; margin-bottom: 10px; }
    /* real product photo fills the figure box (images ship with their own solid bg) */
    .prod-tile .p-fig img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    .prod-tile:hover .p-fig img { transform: scale(1.05); }
    .prod-name {
      font-family: var(--serif);
      font-size: 17.5px;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    .prod-link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: auto;
    }
    /* roll figure for poly film rolls */
    .p-roll {
      position: relative;
      width: 66px;
      height: 98px;
      z-index: 1;
    }
    .p-roll-body {
      position: absolute;
      inset: 7px 0 0;
      border-radius: 8px;
      background:
        linear-gradient(to right,
          rgba(0,0,0,0.3) 0%, rgba(255,255,255,0.16) 12%,
          rgba(255,255,255,0.02) 45%, rgba(0,0,0,0.12) 78%,
          rgba(0,0,0,0.34) 100%),
        #eae0cd;
      box-shadow: 0 12px 18px -9px rgba(0,0,0,0.4);
    }
    .p-roll-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 15px;
      border-radius: 50%;
      background:
        radial-gradient(ellipse at 50% 50%, #3b2a20 0%, #3b2a20 24%, transparent 25%),
        linear-gradient(to bottom, rgba(255,255,255,0.28), rgba(0,0,0,0.08)),
        #d8cfc0;
      z-index: 2;
    }

    /* ============================================================
       6 · INDUSTRIES — 7 centered cards
       ============================================================ */
    .industries { background: var(--cream-2); }
    .ind-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 14px;
    }
    .ind-card {
      background: var(--cream);
      border: 1px solid var(--ink-line);
      border-radius: 10px;
      padding: 0 14px 24px;
      text-align: center;
      overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    .ind-card:hover { transform: translateY(-4px); }
    .ind-tick { height: 5px; background: var(--ic); margin: 0 -14px 20px; }
    .ind-num {
      font-family: var(--serif);
      font-style: italic;
      font-size: 17px;
      color: var(--accent);
      display: block;
      margin-bottom: 8px;
    }
    .ind-name {
      font-family: var(--serif);
      font-size: 18.5px;
      line-height: 1.2;
      letter-spacing: -0.01em;
      display: block;
      margin-bottom: 10px;
    }
    .ind-apps {
      font-size: 12px;
      line-height: 1.55;
      color: var(--ink-soft);
    }

    /* ============================================================
       7 · INFRASTRUCTURE
       ============================================================ */
    .infra-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
      gap: 64px;
      align-items: start;
    }
    .infra-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .infra-photo {
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 5 / 3.4;
      position: relative;
      background: var(--cream-2);
    }
    .infra-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: sepia(0.16) saturate(1.06) contrast(1.02);
    }
    .infra-photo figcaption {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      padding: 22px 12px 9px;
      background: linear-gradient(to top, rgba(59,42,32,0.72), rgba(59,42,32,0));
      color: var(--cream);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-align: center;
    }
    .photo-soon {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px dashed rgba(59, 42, 32, 0.28);
      border-radius: 10px;
      background: repeating-linear-gradient(
        -45deg,
        rgba(59, 42, 32, 0.02) 0 14px,
        rgba(59, 42, 32, 0.05) 14px 28px
      );
      color: var(--ink-soft);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-align: center;
      padding: 12px;
    }
    .infra-list {
      list-style: none;
      margin: 26px 0 0;
      padding: 0;
      border-top: 1px solid var(--ink-line);
    }
    .infra-row {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 18px;
      align-items: baseline;
      padding: 17px 4px;
      border-bottom: 1px solid var(--ink-line);
    }
    .infra-no {
      font-family: var(--serif);
      font-style: italic;
      font-size: 16px;
      color: var(--accent);
    }
    .infra-row h4 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 19px;
      margin: 0 0 4px;
    }
    .infra-row p {
      font-size: 13.5px;
      line-height: 1.55;
      color: var(--ink-soft);
      margin: 0;
    }
    .infra-side h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(24px, 2.2vw, 32px);
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin: 0 0 16px;
    }
    .infra-side h3 em { font-style: italic; color: var(--accent); }
    .infra-side > p {
      font-size: 15.5px;
      line-height: 1.65;
      color: var(--ink-soft);
      margin: 0 0 26px;
    }
    .plant-facts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 26px;
      border-top: 1px solid var(--ink-line);
    }
    .plant-fact {
      padding: 15px 2px;
      border-bottom: 1px solid var(--ink-line);
      font-size: 13.5px;
      color: var(--ink-soft);
    }
    .plant-fact b {
      display: block;
      font-family: var(--serif);
      font-weight: 400;
      font-size: 19px;
      color: var(--ink);
      margin-bottom: 2px;
    }

    /* ============================================================
       8 · CLIENTELE — running marquee (anonymous badges for now)
       ============================================================ */
    .clientele { background: var(--cream-2); }
    .clientele .sec { padding: 96px 56px; }
    .client-marquee {
      overflow: hidden;
      position: relative;
      padding: 6px 0;
    }
    .client-marquee::before,
    .client-marquee::after {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 90px;
      z-index: 2;
      pointer-events: none;
    }
    .client-marquee::before { left: 0; background: linear-gradient(to right, var(--cream-2), rgba(234,224,205,0)); }
    .client-marquee::after { right: 0; background: linear-gradient(to left, var(--cream-2), rgba(234,224,205,0)); }
    .client-track {
      display: flex;
      width: max-content;
      animation: clients-scroll 38s linear infinite;
    }
    .client-marquee:hover .client-track { animation-play-state: paused; }
    @keyframes clients-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .client-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
    }
    .client-set { display: flex; align-items: center; flex-shrink: 0; }
    /* Real client logo tiles */
    .client-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: 128px;
      margin: 0 24px;
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 0;
      overflow: visible;
      flex-shrink: 0;
    }
    /* Logos ship on white tiles; multiply blends those tiles into the cream
       background so only the mark shows — no visible box, no asset edits. */
    .client-badge img { width: auto; height: 100%; max-width: 300px; object-fit: contain; mix-blend-mode: multiply; }
    .client-badge b {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.25;
      text-align: center;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .client-badge span {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .client-note {
      text-align: center;
      font-size: 12.5px;
      color: var(--ink-soft);
      margin: 26px 0 0;
    }

    /* ------------------------------------------------------------
       TESTIMONIALS — 3 quote cards
       ------------------------------------------------------------ */
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
    .testi-card { background: var(--cream); border: 1px solid var(--ink-line); border-radius: 14px; padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
    .testi-quote { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--ink); margin: 0; }
    .testi-quote::before { content: "\201C"; color: var(--accent); font-size: 28px; line-height: 0; display: inline-block; margin-right: 2px; vertical-align: -6px; }
    .testi-who { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); margin: 0; }
    .testi-who b { color: var(--ink); font-weight: 600; }
    @media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

    /* ============================================================
       9 · WHY US — 6 value cards
       ============================================================ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .why-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(59, 42, 32, 0.10);
      border-radius: 12px;
      background:
        radial-gradient(120% 90% at 0% 0%, color-mix(in srgb, var(--wc, var(--burnt)) 9%, transparent) 0%, rgba(0, 0, 0, 0) 55%),
        #fbf8f2;
      padding: 34px 30px 30px;
      box-shadow: 0 12px 28px -18px rgba(59, 42, 32, 0.30), 0 2px 5px -3px rgba(59, 42, 32, 0.10);
      transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .why-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--wc, var(--burnt));
      opacity: 0.9;
    }
    .why-card:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--wc, var(--burnt)) 45%, transparent);
      box-shadow: 0 22px 36px -20px rgba(59, 42, 32, 0.42), 0 3px 8px -4px rgba(59, 42, 32, 0.14);
    }
    .why-glyph {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--wc, var(--burnt)) 28%, transparent);
      background: color-mix(in srgb, var(--wc, var(--burnt)) 12%, transparent);
      color: var(--wc, var(--burnt));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-style: normal;
      font-size: 21px;
      margin-bottom: 18px;
    }
    .why-glyph svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .why-card h4 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 22px;
      letter-spacing: -0.01em;
      margin: 0 0 8px;
    }
    .why-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--ink-soft);
      margin: 0;
    }

    /* ============================================================
       10 · INQUIRY — corporate form + contact side
       ============================================================ */
    .inquiry { background: var(--ink); color: var(--cream); }
    .inquiry .sec { padding: 96px 56px 80px; }
    .inquiry .sec-eyebrow { color: var(--cream-soft); }
    .inquiry .sec-eyebrow::before,
    .inquiry .sec-eyebrow::after { background: rgba(244, 239, 231, 0.35); }
    .inquiry .sec-title em { color: var(--gold); }
    .inquiry .sec-lead { color: var(--cream-soft); }
    .inq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
      gap: 70px;
      align-items: stretch;
    }
    .inq-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto 1fr auto;
      gap: 18px 16px;
    }
    .inq-form .fg-full { min-height: 0; }
    .inq-form .fg-full textarea { flex: 1 1 auto; }
    .fg { display: flex; flex-direction: column; gap: 7px; }
    .fg-full { grid-column: 1 / -1; }
    .fg label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-soft);
    }
    .fg input, .fg select, .fg textarea {
      font-family: var(--sans);
      font-size: 15px;
      color: var(--cream);
      background: rgba(244, 239, 231, 0.07);
      border: 1px solid rgba(244, 239, 231, 0.24);
      border-radius: 8px;
      padding: 13px 14px;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .fg input::placeholder, .fg textarea::placeholder { color: rgba(244, 239, 231, 0.4); }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--gold);
      background: rgba(244, 239, 231, 0.1);
    }
    .fg select { appearance: none; }
    .fg select option { color: var(--ink); background: var(--cream); }
    .fg textarea { min-height: 110px; resize: vertical; }
    .inq-submit { grid-column: 1 / -1; }
    .inq-side { display: flex; flex-direction: column; }
    .inq-side h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(22px, 2vw, 28px);
      line-height: 1.2;
      margin: 0 0 22px;
    }
    .inq-side h3 em { font-style: italic; color: var(--gold); }
    .inq-rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--cream-line); }
    .inq-rows li {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr);
      gap: 16px;
      padding: 15px 2px;
      border-bottom: 1px solid var(--cream-line);
      font-size: 14.5px;
      line-height: 1.55;
    }
    .inq-rows .k {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-soft);
      padding-top: 2px;
    }
    .inq-rows a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(244,239,231,0.4); }
    .inq-map { flex: 1 1 auto; margin-top: 22px; min-height: 220px; }
    .inq-map iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; display: block; }

    /* ============================================================
       11 · CERTIFICATION — emblem row
       ============================================================ */
    .certs .sec { padding: 84px 56px 96px; }
    .cert-row {
      display: flex;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
    }
    .cert-emblem {
      width: 250px;
      border: 1px solid var(--ink-line);
      border-radius: 12px;
      background: var(--cream);
      padding: 32px 26px 28px;
      text-align: center;
      position: relative;
    }
    .cert-emblem::before {
      content: "";
      position: absolute;
      top: 14px; left: 14px; right: 14px; bottom: 14px;
      border: 1px solid rgba(200, 154, 58, 0.4);
      border-radius: 7px;
      pointer-events: none;
    }
    .cert-mark {
      font-family: var(--serif);
      font-style: italic;
      font-size: 26px;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }
    .cert-emblem h4 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 20px;
      letter-spacing: -0.01em;
      margin: 0 0 6px;
    }
    .cert-emblem p {
      font-size: 12.5px;
      line-height: 1.55;
      color: var(--ink-soft);
      margin: 0;
    }

    /* ---------- FOOTER ---------- */
    .site-footer { background: var(--ink); color: var(--cream); }
    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 74px 56px 56px;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
      gap: 56px;
    }
    .footer-brand img {
      height: 46px;
      width: auto;
      filter: brightness(1.9) contrast(1.05);
      margin-bottom: 18px;
    }
    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--cream-soft);
      margin: 0;
      max-width: 300px;
    }
    .footer-col h5 {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream-soft);
      margin: 0 0 18px;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 14.5px;
    }
    .footer-col a { opacity: 0.9; transition: opacity 0.2s ease; }
    .footer-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
    .footer-col address {
      font-style: normal;
      font-size: 14.5px;
      line-height: 1.75;
      color: var(--cream-soft);
    }
    .footer-col address a { color: var(--cream); }
    .footer-bottom {
      border-top: 1px solid var(--cream-line);
      max-width: 1440px;
      margin: 0 auto;
      padding: 26px 56px 36px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12.5px;
      color: var(--cream-soft);
    }

    .option-badge {
      position: fixed;
      bottom: 18px;
      left: 18px;
      z-index: 40;
      background: var(--ink);
      color: var(--cream);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.08em;
      padding: 8px 14px;
      border-radius: 999px;
      opacity: 0.85;
      pointer-events: none;
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 1180px) {
      .products-grid { grid-template-columns: repeat(4, 1fr); }
      .ind-grid { grid-template-columns: repeat(4, 1fr); }
      .counters { grid-template-columns: repeat(3, 1fr); gap: 34px 22px; }
      .infra-grid { grid-template-columns: 1fr; gap: 44px; }
      .inq-grid { grid-template-columns: 1fr; gap: 54px; }
      .inq-form { grid-template-rows: none; }
    }
    @media (max-width: 900px) {
      .nav-inner { grid-template-columns: auto auto; padding: 14px 20px; gap: 16px; }
      .nav-links { display: none; }
      .nav-cta-secondary { display: none; }

      .slider { height: 640px; }
      .slide-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
        align-content: center;
      }
      .slide h2 { font-size: 38px; }
      .slide p { font-size: 15.5px; margin-bottom: 24px; }
      .slide-stage { height: 210px; order: -1; margin-top: 8px; }
      .slide .pouch { width: 128px; height: 172px; }
      .slide .cap { height: 17px; }
      .slide .band { font-size: 11px; padding: 7px 4px; margin-bottom: 12px; }
      .slider-controls { padding: 0 20px; bottom: 18px; }

      .sec { padding: 64px 20px 68px; }
      .sec-head { margin-bottom: 36px; }

      .vm-grid { grid-template-columns: 1fr; }
      .vm-panel { padding: 38px 26px 34px; }

      .excellence .sec { padding: 60px 20px; }
      .counters { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; }

      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .ind-grid { grid-template-columns: repeat(2, 1fr); }

      .infra-photos { grid-template-columns: 1fr 1fr; gap: 10px; }

      .clientele .sec { padding: 64px 20px; }
      .client-badge { width: auto; height: 80px; padding: 0; margin: 0 16px; }
      .client-badge img { max-width: 190px; }

      .why-grid { grid-template-columns: 1fr; }

      .inquiry .sec { padding: 64px 20px; }
      .inq-form { grid-template-columns: 1fr; }

      .cert-row { gap: 14px; }
      .cert-emblem { width: 100%; max-width: 340px; }

      .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 20px 40px; }
      .footer-bottom { padding: 20px 20px 28px; }
    }
    /* ============================================================
       ADDED MOTION LAYER — ported from the editorial index build,
       mobile-tuned (lean). Grouped here to keep base styles intact.
       ============================================================ */

    /* nav scroll-progress bar */
    .nav-progress {
      position: absolute;
      left: 0;
      bottom: -1px;
      height: 2px;
      width: 0%;
      background: var(--accent);
      z-index: 31;
      transition: width 0.1s linear;
    }

    /* staggered reveal — children cascade in when parent enters */
    [data-reveal].stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    [data-reveal].stagger.is-in > * { opacity: 1; transform: none; }
    [data-reveal].stagger.is-in > *:nth-child(1) { transition-delay: 0.04s; }
    [data-reveal].stagger.is-in > *:nth-child(2) { transition-delay: 0.09s; }
    [data-reveal].stagger.is-in > *:nth-child(3) { transition-delay: 0.14s; }
    [data-reveal].stagger.is-in > *:nth-child(4) { transition-delay: 0.19s; }
    [data-reveal].stagger.is-in > *:nth-child(5) { transition-delay: 0.24s; }
    [data-reveal].stagger.is-in > *:nth-child(6) { transition-delay: 0.29s; }
    @media (prefers-reduced-motion: reduce) {
      [data-reveal].stagger > * { opacity: 1; transform: none; transition: none; }
    }

    /* ---------- TICKER BAND (slim brown strip on cream) ---------- */
    .ticker {
      background: var(--ink);
      color: var(--cream);
      overflow: hidden;
      padding: 26px 0;
      margin: 44px 0 0;
      position: relative;
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker-scroll 46s linear infinite;
    }
    .ticker:hover .ticker-track { animation-play-state: paused; }
    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
    .ticker-set { display: flex; align-items: center; flex-shrink: 0; }
    .ticker-item {
      font-family: var(--serif);
      font-size: 23px;
      white-space: nowrap;
      padding: 0 14px;
    }
    .ticker-item em { font-style: italic; color: var(--gold); }
    .ticker-star { color: var(--burnt); font-size: 17px; padding: 0 16px; }

    /* ---------- FORMATS RAIL (drag-scroll, scrubber, counter) ---------- */
    .rail-wrap { position: relative; }
    .rail {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 8px 56px 30px calc(max((100vw - 1440px) / 2, 0px) + 56px);
      scrollbar-width: none;
      cursor: grab;
    }
    .rail::-webkit-scrollbar { display: none; }
    .rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
    .r-card {
      scroll-snap-align: start;
      flex: 0 0 auto;
      width: 300px;
      border: 1px solid var(--ink-line);
      border-radius: 12px;
      background: var(--cream);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), border-color 0.3s ease;
    }
    .r-card:hover { transform: translateY(-6px); border-color: rgba(178, 92, 46, 0.45); }
    .r-fig {
      aspect-ratio: 4 / 5;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse at 50% 26%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 62%),
        var(--tbg);
    }
    .r-fig img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    .r-card:hover .r-fig img { transform: scale(1.06); }
    .r-body {
      padding: 18px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .r-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; line-height: 1.15; }
    .r-link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 6px;
    }
    .rail-nav {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .rail-hint {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .rail-progress { flex: 1; display: flex; align-items: center; gap: 18px; max-width: 420px; }
    .rail-track {
      flex: 1;
      height: 2px;
      background: var(--ink-line);
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }
    .rail-fill {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 8%;
      background: var(--accent);
      border-radius: 2px;
      transition: width 0.15s linear;
    }
    .rail-count {
      font-family: var(--serif);
      font-style: italic;
      font-size: 18px;
      white-space: nowrap;
      min-width: 74px;
      text-align: right;
    }
    .rail-count em { color: var(--accent); font-style: italic; }
    .rail-btn {
      position: absolute;
      top: 44%;
      transform: translateY(-50%);
      z-index: 5;
      width: 52px; height: 52px;
      border-radius: 999px;
      border: none;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
      transition: background 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    }
    .rail-btn svg { width: 22px; height: 22px; display: block; }
    .rail-btn:hover { background: #e5e5e5; }
    .rail-btn:disabled { opacity: 0; visibility: hidden; cursor: default; }
    #railPrev { left: 28px; }
    #railNext { right: 28px; }

    /* ---------- ACCORDION SHELF (industries) ---------- */
    .acc { display: flex; gap: 12px; height: 440px; }
    .acc-panel {
      flex: 1;
      min-width: 0;
      background: var(--cream);
      border: 1px solid var(--ink-line);
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: flex 0.6s cubic-bezier(0.25, 0.7, 0.2, 1), background-color 0.5s ease, border-color 0.5s ease;
      display: flex;
      flex-direction: column;
    }
    .acc-panel::before { content: ""; height: 5px; background: var(--ic); flex-shrink: 0; }
    .acc-panel.is-open {
      flex: 3.1;
      background: color-mix(in srgb, var(--ic) 7%, var(--cream));
      border-color: color-mix(in srgb, var(--ic) 36%, transparent);
    }
    .acc-closed {
      position: absolute;
      inset: 5px 0 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 22px 10px 26px;
      opacity: 1;
      transition: opacity 0.3s ease 0.15s;
    }
    .acc-panel.is-open .acc-closed { opacity: 0; transition-delay: 0s; pointer-events: none; }
    .acc-closed .acc-num { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--accent); }
    .acc-closed .acc-name-v {
      flex: 1;
      display: flex;
      align-items: center;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-family: var(--serif);
      font-size: clamp(19px, 1.8vw, 26px);
      letter-spacing: 0.01em;
      white-space: nowrap;
      text-align: center;
    }
    .acc-open {
      position: absolute;
      inset: 5px 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px 32px 34px;
      opacity: 0;
      transition: opacity 0.35s ease 0.2s;
      pointer-events: none;
      min-width: 300px;
    }
    .acc-panel.is-open .acc-open { opacity: 1; pointer-events: auto; }
    .acc-open .acc-num { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--accent); margin-bottom: 8px; }
    .acc-open h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(26px, 2.4vw, 36px);
      letter-spacing: -0.01em;
      line-height: 1.05;
      margin: 0 0 14px;
    }
    .acc-open p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 340px; }
    /* sector photo backs the panel once it opens */
    .acc-closed, .acc-open { z-index: 1; }
    .acc-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .acc-photo-scrim {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
      background: linear-gradient(to top,
        rgba(28, 19, 13, 0.94) 0%,
        rgba(28, 19, 13, 0.6) 34%,
        rgba(28, 19, 13, 0.18) 68%,
        rgba(28, 19, 13, 0.05) 100%);
    }
    .acc-panel.is-open .acc-photo,
    .acc-panel.is-open .acc-photo-scrim { opacity: 1; }
    .acc-panel.is-open .acc-open .acc-num { color: var(--pale-gold); }
    .acc-panel.is-open .acc-open h3 { color: var(--cream); }
    .acc-panel.is-open .acc-open p { color: rgba(244, 239, 231, 0.86); }
    .shelf-hint {
      margin: 20px 0 0;
      font-size: 12.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }

    /* ---------- SCROLLYTELLING (infrastructure) ---------- */
    /* Infrastructure — single image + overview, two columns */
    .infra-split {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 64px;
      align-items: center;
    }
    .infra-photo { margin: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 5 / 3.6; background: var(--cream-2); }
    .infra-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(0.16) saturate(1.06) contrast(1.02); }
    .infra-copy { max-width: 480px; }
    .infra-lead {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(20px, 2vw, 27px);
      line-height: 1.42;
      letter-spacing: -0.01em;
      margin: 0 0 22px;
    }
    .infra-caps {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin: 0 0 20px;
    }
    .infra-caps .sep { margin: 0 9px; color: var(--accent); }
    .infra-link { display: inline-block; }
    /* Clickable plant image → /infrastructure/ with overlay caption */
    .infra-photo-link { display: block; position: relative; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; }
    .infra-photo-link .infra-photo { border-radius: 0; }
    .infra-photo-link img { transition: transform 0.6s cubic-bezier(0.25, 0.7, 0.2, 1); }
    .infra-photo-link:hover img { transform: scale(1.045); }
    .infra-photo-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
    .infra-photo-cap {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 40px 20px 16px;
      background: linear-gradient(to top, rgba(59, 42, 32, 0.85), rgba(59, 42, 32, 0.15) 60%, rgba(59, 42, 32, 0));
      color: var(--cream);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }
    .infra-photo-cap .arrow { display: inline-block; font-size: 15px; transition: transform 0.3s ease; }
    .infra-photo-link:hover .infra-photo-cap .arrow { transform: translateX(5px); }

    .hint-mobile { display: none; }

    /* ---------- MOBILE-TUNED OVERRIDES for the motion layer ---------- */
    @media (max-width: 900px) {
      .hint-desktop { display: none; }
      .hint-mobile { display: inline; }

      .ticker { padding: 18px 0; }
      .ticker-item { font-size: 18px; }

      /* rail: native swipe, drop redundant arrows, cards ~ viewport width */
      .rail { padding: 8px 20px 26px; gap: 14px; }
      .r-card { width: 78vw; max-width: 320px; }
      .r-name { font-size: 20px; }
      .rail-nav { padding: 0 20px; }
      .rail-btns { display: none; }
      .rail-progress { max-width: none; }

      /* accordion flips to a vertical tap-stack */
      .acc { flex-direction: column; height: auto; gap: 10px; }
      .acc-panel { flex: none !important; }
      .acc-closed {
        position: relative;
        inset: auto;
        opacity: 1 !important;
        pointer-events: auto !important;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
      }
      .acc-closed .acc-name-v {
        writing-mode: horizontal-tb;
        transform: none;
        flex: 0 1 auto;
        font-size: 20px;
      }
      .acc-open {
        position: relative;
        inset: auto;
        min-width: 0;
        opacity: 1;
        pointer-events: auto;
        overflow: hidden;
        max-height: 0;
        padding: 0 20px;
        transition: max-height 0.4s ease, padding 0.4s ease;
      }
      .acc-panel.is-open .acc-open { max-height: 360px; padding: 0 20px 22px; }
      .acc-panel.is-open .acc-closed { color: var(--cream); }
      .acc-panel.is-open .acc-closed .acc-num { color: var(--pale-gold); }
      .acc-panel.is-open .acc-closed .acc-name-v { color: var(--cream); }
      .acc-open .acc-num { display: none; }

      /* infrastructure stacks: image on top, overview below */
      .infra-split { grid-template-columns: minmax(0, 1fr); gap: 24px; }
      .infra-photo { aspect-ratio: 5 / 3.4; }
      .infra-copy { max-width: none; }
    }

    /* ============================================================
       NEW HERO — text left, vertical marquee right (from hero.html)
       Everything below is namespaced under "hh-" so it can't collide
       with .pouch / .cap / .band / .tile / .cta already used by the
       banner slider, product rail and elsewhere on this page.
       ============================================================ */
    .hh-hero { padding: 40px 0 0; }
    .hh-hero-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 56px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 80px;
      align-items: center;
      min-height: 620px;
    }
    .hh-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin: 0 0 32px;
    }
    .hh-eyebrow::before { content: ""; width: 28px; height: 1px; background: rgba(59, 42, 32, 0.32); }
    .hh-hero-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(44px, 6vw, 86px);
      line-height: 1.02;
      letter-spacing: -0.02em;
      margin: 0 0 28px;
      max-width: 12ch;
    }
    .hh-hero-title em { font-style: italic; color: var(--accent); }
    .hh-hero-sub {
      font-family: var(--sans);
      font-size: 18px;
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 480px;
      margin: 0 0 36px;
    }
    .hh-hero-ctas { display: flex; align-items: center; gap: 24px; }
    .hh-cta-ghost {
      padding: 14px 4px;
      color: var(--ink);
      background: transparent;
      border: none;
      border-radius: 0;
      position: relative;
    }
    .hh-cta-ghost::after {
      content: "";
      position: absolute;
      left: 4px; right: 4px;
      bottom: 8px;
      height: 1px;
      background: var(--ink);
      transform: scaleX(0.35);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
    .hh-cta-ghost:hover { background: transparent; color: var(--ink); }
    .hh-cta-ghost:hover::after { transform: scaleX(1); }

    /* vertical marquee — two columns, opposite directions */
    .hh-marquee {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      height: 660px;
      position: relative;
      --hh-tile-h: 200px;
      --hh-tile-gap: 14px;
    }
    .hh-col { overflow: hidden; position: relative; border-radius: 8px; }
    .hh-col::before, .hh-col::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      height: 60px;
      z-index: 3;
      pointer-events: none;
    }
    .hh-col::before { top: 0; background: linear-gradient(to bottom, var(--cream), rgba(244,239,231,0)); }
    .hh-col::after { bottom: 0; background: linear-gradient(to top, var(--cream), rgba(244,239,231,0)); }
    .hh-track {
      display: flex;
      flex-direction: column;
      gap: var(--hh-tile-gap);
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }
    .hh-track.hh-down { animation-name: hh-scroll-down; animation-duration: 108s; }
    .hh-track.hh-up { animation-name: hh-scroll-up; animation-duration: 55s; }
    @keyframes hh-scroll-down {
      from { transform: translateY(calc((var(--hh-tile-h) + var(--hh-tile-gap)) * -13)); }
      to   { transform: translateY(0); }
    }
    @keyframes hh-scroll-up {
      from { transform: translateY(0); }
      to   { transform: translateY(calc((var(--hh-tile-h) + var(--hh-tile-gap)) * -6)); }
    }
    .hh-marquee:hover .hh-track { animation-play-state: paused; }
    @media (prefers-reduced-motion: reduce) { .hh-track { animation: none !important; } }

    .hh-tile {
      width: 100%;
      height: var(--hh-tile-h);
      flex-shrink: 0;
      background:
        radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 60%),
        var(--bg);
      border-radius: 6px;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding: 28px 30px 40px;
      position: relative;
      overflow: hidden;
    }
    .hh-tile::before {
      content: "";
      position: absolute;
      left: 18%; right: 18%; bottom: 26px;
      height: 14px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 70%);
      filter: blur(2px);
      z-index: 0;
    }
    .hh-pouch {
      width: 115px;
      height: 155px;
      background:
        linear-gradient(112deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 32%, rgba(255,255,255,0) 55%, rgba(255,255,255,0.06) 82%, rgba(255,255,255,0.12) 100%),
        linear-gradient(to right, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0) 90%, rgba(0,0,0,0.24) 100%),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.08) 100%),
        var(--body);
      border-radius: 16px 16px 6px 6px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
      z-index: 1;
      box-shadow: 0 22px 34px -14px rgba(0, 0, 0, 0.45), 0 2px 4px -1px rgba(0, 0, 0, 0.15), inset 0 -4px 0 rgba(0, 0, 0, 0.18);
    }
    .hh-pouch::after {
      content: "";
      position: absolute;
      left: 50%; top: 34px; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 60%, rgba(0,0,0,0.06) 100%);
      pointer-events: none;
    }
    .hh-cap {
      height: 20px;
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%),
        var(--cap);
      position: relative;
      box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25);
    }
    .hh-cap::before {
      content: "";
      position: absolute;
      left: 10px; right: 10px; bottom: 5px;
      height: 2.5px;
      border-radius: 1.5px;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0px, rgba(255,255,255,0.28) 1.5px, transparent 1.5px, transparent 3px),
        rgba(0,0,0,0.35);
      box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    }
    .hh-cap::after {
      content: "";
      position: absolute;
      right: 16px; top: 3px; width: 5px; height: 5px;
      background: rgba(0,0,0,0.3);
      transform: rotate(45deg);
      border-radius: 1px;
    }
    .hh-band {
      margin: auto 0 14px;
      padding: 8px 5px;
      background: var(--bandc);
      color: var(--band-text);
      text-align: center;
      font-family: var(--serif);
      font-size: 12px;
      white-space: nowrap;
      line-height: 1;
      letter-spacing: 0.4px;
      position: relative;
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.18), inset 0 -1px 0 rgba(255,255,255,0.08), 0 1px 0 rgba(255,255,255,0.06);
      z-index: 2;
    }
    .hh-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .hh-tile .hh-tag {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      background: var(--bandc);
      color: var(--band-text);
      font-family: var(--serif);
      font-size: 12px;
      line-height: 1;
      letter-spacing: 0.4px;
      white-space: nowrap;
      padding: 7px 14px;
      border-radius: 4px;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    /* meta strip under the hero */
    .hh-meta {
      max-width: 1440px;
      margin: 0 auto;
      padding: 24px 56px 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      border-bottom: 1px solid var(--ink-line);
    }
    .hh-meta > div { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
    .hh-meta strong {
      display: block;
      color: var(--ink);
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }
    .hh-meta em { color: var(--accent); font-style: italic; }

    @media (max-width: 900px) {
      .hh-hero { padding: 32px 0 0; }
      .hh-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; min-height: auto; }
      .hh-hero-title { font-size: 44px; max-width: none; }
      .hh-hero-sub { max-width: none; }
      .hh-marquee { height: 440px; gap: 12px; --hh-tile-h: 200px; --hh-tile-gap: 12px; }
      .hh-col::before, .hh-col::after { height: 50px; }
      .hh-pouch { width: 108px; height: 148px; }
      .hh-cap { height: 18px; }
      .hh-band { font-size: 11px; padding: 7px 4px; margin-bottom: 12px; }
      .hh-meta { grid-template-columns: 1fr; gap: 20px; padding: 20px 20px 32px; }
      .hh-meta strong { font-size: 18px; }
    }

/* ============================================================
   PORTED SECTIONS — "Inside the Film" (anatomy) + "The Lab"
   Adapted from index.html to sit on the /quality/ page.
   ============================================================ */

/* ---- Inside the film (anatomy scrollytelling) ---- */
.anatomy-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
}
.anatomy-sticky {
  position: sticky;
  top: 120px;
  height: 560px;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.film-stack { position: relative; width: 380px; height: 460px; }
.sheet {
  position: absolute;
  left: 30px;
  width: 320px;
  height: 128px;
  border-radius: 12px;
  transform: rotate(-6deg) skewX(-14deg) translateY(30px);
  opacity: 0;
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.6, 0.2, 1),
    top 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: 0 24px 40px -18px rgba(59, 42, 32, 0.4);
}
.sheet-label {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) skewX(14deg) translateX(100%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-left: 18px;
}
.sheet-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: rgba(59, 42, 32, 0.4);
}
.sheet-print {
  top: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(244,239,231,0.16) 0px, rgba(244,239,231,0.16) 3px, transparent 3px, transparent 26px),
    linear-gradient(112deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 55%, rgba(255,255,255,0.08) 100%),
    var(--burnt);
}
.sheet-barrier {
  top: 176px;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.08) 30%, rgba(59,42,32,0.12) 55%, rgba(255,255,255,0.34) 82%, rgba(255,255,255,0.5) 100%),
    var(--pale-gold);
}
.sheet-seal {
  top: 322px;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.3) 100%),
    var(--cream);
  border: 1px solid rgba(59, 42, 32, 0.12);
}
.film-stack[data-step="1"] .sheet-print { opacity: 1; transform: rotate(-6deg) skewX(-14deg) translateY(0); }
.film-stack[data-step="2"] .sheet-print,
.film-stack[data-step="2"] .sheet-barrier { opacity: 1; transform: rotate(-6deg) skewX(-14deg) translateY(0); }
.film-stack[data-step="3"] .sheet-print,
.film-stack[data-step="3"] .sheet-barrier,
.film-stack[data-step="3"] .sheet-seal { opacity: 1; transform: rotate(-6deg) skewX(-14deg) translateY(0); }
.film-stack[data-step="4"] .sheet { opacity: 1; transform: rotate(-6deg) skewX(-14deg) translateY(0); }
.film-stack[data-step="4"] .sheet-print   { top: 130px; }
.film-stack[data-step="4"] .sheet-barrier { top: 168px; }
.film-stack[data-step="4"] .sheet-seal    { top: 206px; }
.film-stack[data-step="4"] .sheet-label { opacity: 0; transition: opacity 0.3s ease; }
.stack-caption {
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.film-stack[data-step="4"] .stack-caption { opacity: 1; transform: none; }
.stack-caption em { color: var(--accent); }
.anatomy-steps { padding: 40px 0 80px; }
.a-step {
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.28;
  transition: opacity 0.45s ease;
}
.a-step.is-active { opacity: 1; }
.a-step-num { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--accent); margin: 0 0 10px; }
.a-step h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 16px; }
.a-step p { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); max-width: 460px; margin: 0; }
.laminate-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; max-width: 480px; }
.laminate-chip { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; padding: 8px 14px; border: 1px solid rgba(59, 42, 32, 0.3); border-radius: 999px; background: transparent; }
.laminate-chip.is-reel { border-color: var(--olive); color: var(--olive); }

/* ---- The lab (eight tests) ---- */
.lab { background: var(--cream-2); }
.lab .sec { padding-bottom: 40px; }
.lab-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
  padding: 0 56px 90px;
}
.test-sheet { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink-line); }
.test-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: baseline;
  padding: 17px 6px;
  border-bottom: 1px solid var(--ink-line);
}
.test-no { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--accent); }
.test-name { font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em; }
.test-proof { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.lab-side .quality-quote { font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); font-style: italic; line-height: 1.35; margin: 0 0 12px; max-width: 420px; }
.lab-side .quality-quote em { color: var(--accent); }
.lab-side .quality-src { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 36px; }
.lab-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.lab-photo { border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 4.6; position: relative; }
.lab-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(0.16) saturate(1.06) contrast(1.02); }
.lab-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(to top, rgba(59,42,32,0.72), rgba(59,42,32,0));
  color: var(--cream); font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-align: center;
}
.cert-line { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-chip { font-size: 13px; font-weight: 500; padding: 9px 16px; border: 1px solid rgba(59, 42, 32, 0.3); border-radius: 999px; color: var(--ink); }

@media (max-width: 1100px) {
  .lab-grid { grid-template-columns: 1fr; gap: 56px; }
  .anatomy-grid { display: block; }
  .anatomy-sticky {
    position: sticky; top: 89px; z-index: 6; height: 230px; padding: 10px 0 0;
    background: var(--cream-2); display: flex; align-items: flex-start; justify-content: center;
  }
  .anatomy-sticky::after {
    content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 26px;
    background: linear-gradient(to bottom, var(--cream-2), rgba(234, 224, 205, 0)); pointer-events: none;
  }
  .film-stack { width: 300px; height: 210px; transform: scale(0.46); transform-origin: top center; }
  .stack-caption { display: none; }
  .a-step { min-height: 0; padding: 40px 0; opacity: 0.45; }
  .a-step.is-active { opacity: 1; }
}
@media (max-width: 900px) {
  .anatomy-grid { padding: 0 20px 40px; }
  .anatomy-sticky { top: 79px; height: 200px; }
  .film-stack { width: 250px; height: 190px; transform: scale(0.42); }
  .sheet-label { display: none; }
  .anatomy-steps { padding: 0 0 40px; }
  .a-step { padding: 34px 0; }
  .a-step:first-child { padding-top: 16px; }
  .lab-grid { padding: 0 20px 40px; }
  .test-row { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .test-proof { grid-column: 2; }
}

/* ============================================================
   PRODUCT + INDUSTRY PAGES
   ============================================================ */
/* ===== Industry split-glance hero ===== */
.ih { display: grid; grid-template-columns: 46% 54%; min-height: calc(100vh - 66px); }
.ih-left { padding: 40px 60px 44px; display: flex; flex-direction: column; background: var(--cream); }
.ih-crumbs { font-size: 13px; color: var(--ink-soft); margin: 0; }
.ih-crumbs a { color: var(--ink-soft); }
.ih-crumbs a:hover { color: var(--ink); }
.ih-crumbs b { color: var(--ink); font-weight: 500; }
.ih-mid { margin: auto 0; }
.ih-eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 18px; }
.ih-title { font-family: var(--serif); font-weight: 400; font-size: clamp(44px,4.6vw,66px); line-height: 1.0; letter-spacing: -0.005em; margin: 0; max-width: 9ch; color: var(--ink); }
.ih-title .p { color: var(--accent); }
.ih-lead { font-size: 16px; line-height: 1.62; color: var(--ink-soft); margin: 22px 0 0; max-width: 410px; }
.ih-rule { height: 1px; background: var(--ink-line); margin: 30px 0 20px; max-width: 410px; }
.ih-packs-l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 10px; }
.ih-packs { font-size: 15px; line-height: 1.7; color: var(--ink); max-width: 440px; margin: 0; }
.ih-packs .sep { color: var(--ink-line); padding: 0 7px; }
.ih-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ih-right { position: relative; background: #4a5741; overflow: hidden; }
.ih-right::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 46px 46px; background-position: center; }
.ih-pouch { position: absolute; left: 50%; top: 49%; transform: translate(-50%,-50%); filter: drop-shadow(0 40px 46px rgba(0,0,0,0.4)); }
.ih-fdot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cream); transform: translate(-50%,-50%); z-index: 5; box-shadow: 0 0 0 4px rgba(74,87,65,0.5); }
.ih-conn { position: absolute; height: 1px; background: rgba(244,239,231,0.28); z-index: 4; transform: translateY(-50%); }
.ih-lbl { position: absolute; width: 176px; transform: translateY(-50%); z-index: 5; }
.ih-lbl .l { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--cream); margin: 0 0 5px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.ih-lbl .l i { font-style: normal; font-size: 9px; letter-spacing: 0.1em; border: 1px solid rgba(244,239,231,0.28); border-radius: 999px; padding: 2px 7px; color: rgba(244,239,231,0.7); }
.ih-lbl .d { font-size: 12.5px; line-height: 1.45; color: rgba(244,239,231,0.7); margin: 0; }
.ih-lbl.r { right: 34px; text-align: left; }
.ih-lbl.l { left: 34px; text-align: right; }
.ih-lbl.l .l { justify-content: flex-end; }
.ih-dim { position: absolute; left: 8%; right: 8%; bottom: 34px; display: flex; align-items: center; justify-content: center; gap: 14px; z-index: 5; }
.ih-dim .bar { flex: 1; height: 1px; background: rgba(244,239,231,0.28); position: relative; }
.ih-dim .bar::before { content: ""; position: absolute; height: 9px; width: 1px; background: rgba(244,239,231,0.28); top: -4px; }
.ih-dim .bar.l::before { left: 0; }
.ih-dim .bar.r::before { right: 0; }
.ih-dim .txt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); background: rgba(217,200,147,0.28); padding: 3px 9px; border-radius: 2px; white-space: nowrap; }
@media (max-width: 900px) {
  .ih { grid-template-columns: 1fr; min-height: 0; }
  .ih-left { padding: 32px 24px 40px; }
  .ih-right { min-height: 68vh; }
  .ih-fdot, .ih-conn, .ih-lbl { display: none; }
}

.pp-hero { max-width: 1440px; margin: 0 auto; padding: 44px 56px 64px; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 64px; align-items: center; }
.pp-crumbs { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); margin: 0 0 24px; }
.pp-crumbs a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(59,42,32,0.3); }
.pp-crumbs a:hover { color: var(--ink); }
.pp-crumbs span { padding: 0 8px; opacity: 0.5; }
.pp-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(38px,4.4vw,62px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 20px; }
.pp-hero h1 em { font-style: italic; color: var(--accent); }
.pp-intro { font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 540px; margin: 0 0 30px; }
.pp-hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.pp-photo { background: radial-gradient(ellipse at 50% 24%, rgba(255,255,255,0.55) 0%, rgba(0,0,0,0) 62%), var(--cream-2); border-radius: 14px; aspect-ratio: 4 / 4.3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pp-photo img { width: 76%; height: auto; filter: drop-shadow(0 24px 40px rgba(59,42,32,0.28)); }

.pp-glance { border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.pp-glance-inner { max-width: 1440px; margin: 0 auto; padding: 24px 56px; display: flex; justify-content: space-between; align-items: baseline; gap: 18px 40px; flex-wrap: wrap; }
.pp-g-item { display: flex; flex-direction: column; gap: 4px; }
.pp-g-k { font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.pp-g-v { font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em; white-space: nowrap; }
.pp-g-v i { font-style: italic; color: var(--accent); }

.pp-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.pp-feature { border: 1px solid var(--ink-line); border-radius: 12px; background: var(--cream); padding: 30px 28px; }
.pp-feature b { display: block; font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 8px; }
.pp-feature span { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.pp-feat-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--wc, var(--burnt)); color: var(--wc, var(--burnt)); margin-bottom: 16px; }
.pp-feat-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.pp-dark { background: var(--ink); color: var(--cream); }
.pp-dark .sec-eyebrow { color: var(--cream-soft); }
.pp-dark .sec-eyebrow::before, .pp-dark .sec-eyebrow::after { background: rgba(244,239,231,0.35); }
.pp-dark .sec-title em { color: var(--gold); }
.pp-dark .sec-lead { color: var(--cream-soft); }
.pp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.pp-chip { font-size: 14px; font-weight: 500; padding: 11px 18px; border: 1px solid rgba(244,239,231,0.32); border-radius: 999px; white-space: nowrap; }
.pp-chip.is-rec { border-color: var(--pale-gold); color: var(--pale-gold); }
.pp-chip.is-qc { background: var(--accent); border-color: var(--accent); color: var(--cream); font-weight: 600; transition: background 0.2s ease, border-color 0.2s ease; }
.pp-chip.is-qc:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* machinery two-column rows */
.mach-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; max-width: 1300px; margin: 0 auto; }
.mach-row-rev { grid-template-columns: 1.1fr 0.9fr; }
.mach-row-rev .mach-photo { order: 2; }
.mach-row-rev .mach-text { order: 1; }
.mach-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3.3; background: var(--cream-2); padding: 10px; }
.mach-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.pp-dark .mach-photo { background: rgba(244,239,231,0.06); }

.pp-apps { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.pp-app { font-size: 14.5px; padding: 11px 18px; border: 1px solid var(--ink-line); border-radius: 999px; background: var(--cream); color: var(--ink); }

.pp-band { background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 55%), var(--burnt); color: var(--cream); text-align: center; }
.pp-band .sec { padding: 80px 56px 88px; }
.pp-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px,4vw,54px); line-height: 1.05; margin: 0 0 18px; }
.pp-band h2 em { font-style: italic; color: #f7e2b8; }
.pp-band p { font-size: 16px; line-height: 1.6; color: rgba(244,239,231,0.85); max-width: 520px; margin: 0 auto 30px; }
.pp-terms { font-family: var(--serif); font-size: clamp(16px,1.8vw,21px); margin: 38px 0 0; color: rgba(244,239,231,0.9); }
.pp-terms em { font-style: italic; color: #f7e2b8; }
.pp-terms .dot { padding: 0 14px; opacity: 0.5; font-family: var(--sans); font-size: 12px; }

/* index/listing grids */
.pp-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; padding: 0 56px; }
.pp-card { border: 1px solid var(--ink-line); border-radius: 14px; overflow: hidden; background: var(--cream); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pp-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -22px rgba(59,42,32,0.4); }
.pp-card-fig { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; background: var(--tbg, var(--cream-2)); overflow: hidden; }
.pp-card-fig img { width: 62%; height: auto; filter: drop-shadow(0 16px 26px rgba(0,0,0,0.28)); }
.pp-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pp-card-body h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; margin: 0; }
.pp-card-body p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; flex: 1; }
.pp-card-link { font-size: 13px; font-weight: 500; color: var(--accent); margin-top: 6px; }

.pp-related { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pp-related a { font-size: 14.5px; padding: 12px 20px; border: 1px solid var(--ink-line); border-radius: 999px; transition: background 0.2s ease, color 0.2s ease; }
.pp-related a:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 1100px) {
  .pp-features { grid-template-columns: 1fr 1fr; }
  .pp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .pp-hero { grid-template-columns: 1fr; padding: 28px 20px 44px; gap: 30px; }
  .pp-glance-inner { padding: 18px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
  .mach-row, .mach-row-rev { grid-template-columns: 1fr; gap: 28px; }
  .mach-row-rev .mach-photo, .mach-row-rev .mach-text { order: initial; }
  .pp-g-v { white-space: normal; font-size: 18px; }
  .pp-features { grid-template-columns: 1fr; }
  .pp-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .pp-band .sec { padding: 56px 20px 64px; }
}

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--ink-line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; font-family: var(--serif); font-size: clamp(18px,2vw,21px); letter-spacing: -0.01em; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--sans); font-size: 22px; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 22px; color: var(--ink-soft); line-height: 1.65; font-size: 15px; max-width: 720px; }

/* ============================================================
   PRODUCT PAGE — SHELF SCENE (one-glance)
   ============================================================ */
.pp-sheet { position: relative; height: calc(100vh - 95px); min-height: 640px; overflow: hidden;
  --pfloor-1: #483426; --pfloor-2: #2e2015; --pfloor-h: 22%; --pbfg: #f8f1e6; }
.pp-floor { position: absolute; left: 0; right: 0; bottom: 0; height: var(--pfloor-h); z-index: 0;
  background: linear-gradient(180deg, var(--pfloor-1), var(--pfloor-2)); border-top: 1px solid rgba(30,18,8,0.4); }
.pp-floor::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0, rgba(255,205,160,0.12), transparent 58%); }
.pp-wglow { position: absolute; left: 0; right: 0; top: 0; bottom: var(--pfloor-h); z-index: 0; pointer-events: none;
  background: radial-gradient(34% 66% at 50% 62%, color-mix(in srgb, var(--pglow, #d88c54) 28%, transparent), color-mix(in srgb, var(--pglow, #d88c54) 10%, transparent) 55%, transparent 78%); }
.pp-crumbs--sheet { position: absolute; top: 18px; left: clamp(26px,3vw,48px); z-index: 3; margin: 0; }

.pp-sgrid { position: relative; z-index: 1; height: 100%; display: grid; grid-template-columns: 1fr clamp(430px, calc(37.5vw * var(--pgirth, 1)), 46vw) 1fr; align-items: stretch; }

/* centre — product on the shelf */
.pp-smid { display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 0; padding-top: clamp(20px,3.4vh,34px); }
.pp-smid h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px,3.2vw,50px); line-height: 1; letter-spacing: -0.01em; margin: 0; }
.pp-smid h1 em { font-style: italic; color: var(--accent); }
.pp-slede { margin: 9px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); text-wrap: balance; max-width: 52ch; }
.pp-pod { position: relative; flex: 1; min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; width: 100%; margin-top: 6px; }
.pp-pod img { position: relative; z-index: 2; height: calc((100% - 34px) * var(--pscale, 1)); width: auto; max-width: 100%; object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 18px 22px rgba(40,15,4,0.35)); animation: ppFloat 6.5s ease-in-out infinite; }
.pp-pod img.is-card { height: calc((100% - 56px) * var(--pscale, 1)); border-radius: 14px; filter: none;
  box-shadow: 0 26px 40px -14px rgba(30,12,3,0.45), 0 0 0 1px rgba(248,241,230,0.12) inset; }
@keyframes ppFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.pp-pod::after { content: ""; position: absolute; z-index: 1; bottom: -15px; left: 50%; width: 64%; height: 30px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20,6,1,0.66), rgba(20,6,1,0.28) 45%, transparent 74%);
  transform: translateX(-50%); animation: ppShadowSync 6.5s ease-in-out infinite; }
@keyframes ppShadowSync { 0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 1; } 50% { transform: translateX(-50%) scaleX(0.9); opacity: 0.7; } }
.pp-underlip { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(22px,4vh,36px) 0 clamp(22px,3.6vh,34px); width: 100%; }
.pp-sctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pp-soline { padding: 13px 25px; border-radius: 999px; border: 1px solid rgba(248,241,230,0.45); color: var(--pbfg, #f8f1e6); background: transparent; }
.pp-soline:hover { transform: translateY(-1px); background: var(--cream); color: var(--ink); border-color: transparent; }

/* flanks — spec clusters on the wall */
.pp-sflank { display: flex; flex-direction: column; gap: clamp(16px,3vh,28px); justify-content: center; min-height: 0;
  padding: clamp(56px,9vh,84px) clamp(30px,3.2vw,58px) calc(var(--pfloor-h) + 3vh); }
.pp-sfl-l { align-items: flex-end; text-align: right; padding-right: 16px; }
.pp-sfl-r { align-items: flex-start; text-align: left; padding-left: 16px; }
.pp-sclu { width: min(100%, 330px); }
.pp-sclu-h { display: flex; align-items: baseline; gap: 10px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 7px; border-bottom: 2px solid var(--ink); margin-bottom: 7px; }
.pp-sfl-l .pp-sclu-h { justify-content: flex-end; }
.pp-sclu ul { list-style: none; margin: 0; padding: 0; }
.pp-sclu li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 5.5px 0; border-bottom: 1px solid var(--ink-line); font-size: 13px; }
.pp-sfl-l .pp-sclu li { padding: 7.5px 0; flex-direction: row-reverse; }
.pp-sfl-l .pp-sclu li .pp-st { width: 106px; text-align: left; flex: none; }
.pp-sclu li b { font-weight: 500; }
.pp-st { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(59,42,32,0.4); white-space: nowrap; }
.pp-sclu li.rec .pp-st { color: var(--sage); }
.pp-sopt { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.pp-sfin { margin: 8px 0 0; font-size: 12.5px; color: var(--ink-soft); }
.pp-sfin b { font-weight: 600; color: var(--ink); }
.pp-sfin i { font-style: normal; margin: 0 6px; color: var(--accent); opacity: 0.6; }

/* arc — rows bow away from the product's widest point */
.pp-sfl-l li { transform: translateX(calc(-1 * var(--arc, 0px))); }
.pp-sfl-r li, .pp-sfl-r .pp-sclu-h, .pp-sfl-r .pp-sfin { transform: translateX(var(--arc, 0px)); }
.pp-sfl-r .pp-sclu:first-child .pp-sclu-h { transform: none; }

@media (max-width: 1120px) {
  .pp-sheet { height: auto; min-height: 0; overflow: visible; }
  .pp-floor { display: none; }
  .pp-wglow { display: none; }
  .pp-sgrid { grid-template-columns: 1fr; height: auto; display: flex; flex-direction: column; }
  .pp-crumbs--sheet { position: static; padding: 18px 24px 0; }
  .pp-smid { order: -1; padding-top: 20px; }
  .pp-slede { white-space: normal; max-width: 60ch; padding: 0 20px; }
  .pp-pod { flex: none; }
  .pp-pod img { height: auto; width: min(62vw, 300px); }
  .pp-pod img.is-card { height: auto; width: min(70vw, 340px); }
  .pp-pod::after { display: none; }
  .pp-underlip { background: linear-gradient(180deg, var(--pfloor-1), var(--pfloor-2)); margin-top: -40px; padding-top: 60px; }
  .pp-sflank { justify-content: flex-start; padding: 28px 24px; }
  .pp-sfl-l { align-items: flex-start; text-align: left; padding-right: 24px; }
  .pp-sfl-l .pp-sclu-h { justify-content: flex-start; }
  .pp-sfl-l .pp-sclu li { flex-direction: row; }
  .pp-sfl-l li, .pp-sfl-r li, .pp-sfl-r .pp-sclu-h, .pp-sfl-r .pp-sfin { transform: none; }
  .pp-sclu { width: min(100%, 460px); }
}
@media (prefers-reduced-motion: reduce) {
  .pp-pod img, .pp-pod::after { animation: none; }
}

/* SPA overrides: views + always-visible reveal (IO won't fire in hidden views) */
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .view { display: none; }
    .view.is-active { display: block; }
    .nav-links a.is-current { opacity: 1; }
    .nav-links a.is-current::after { transform: scaleX(1); }
