/* ==========================================================================
   Viedia Pharmaceuticals — Shared stylesheet
   Tokens follow vieda_website_ui.pen
   ========================================================================== */

:root {
  /* Colour tokens */
  --navy: #001A5C;
  --brand-blue: #0033A1;
  --accent-blue: #3A8DDE;
  --text-primary: #111827;
  --text-muted: #4B5563;
  --text-on-blue: #FFFFFF;
  --cool-grey: #F4F6FA;
  --border-subtle: #E5E7EB;
  --white: #FFFFFF;

  /* Typography */
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale (px) */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Radii */
  --radius-button: 8px;
  --radius-card: 12px;

  /* Layout */
  --max-w: 1440px;
  --gutter: clamp(20px, 5vw, 96px);
  --section-y: clamp(64px, 12vw, 180px);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 220ms;
  --dur-med: 420ms;
  --dur-slow: 720ms;

  /* Navigation — premium drawer */
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-nav-link: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-drawer-shadow: -28px 0 56px -16px rgba(0, 26, 92, 0.14), -8px 0 24px rgba(0, 26, 92, 0.06);
  /* Desktop mega — compact card width (centred under nav, not full container) */
  --nav-mega-panel-max: 720px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

::selection { background: var(--navy); color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.section {
  padding-block: var(--section-y);
}

.section--grey { background: var(--cool-grey); }
.section--navy { background: var(--navy); color: var(--text-on-blue); }
.section--bordered-top { border-top: 1px solid var(--border-subtle); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow::before {
  content: "";
  width: 3px;
  height: 16px;
  background: var(--navy);
  display: inline-block;
}

.section--navy .eyebrow { color: rgba(255,255,255,.7); }
.section--navy .eyebrow::before { background: rgba(255,255,255,.85); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-button);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  will-change: transform;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(0,26,92,.12), 0 8px 24px -12px rgba(0,51,161,.55);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0,26,92,.18), 0 14px 32px -14px rgba(0,51,161,.65);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}
.btn--ghost:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--nav {
  padding: 12px 20px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-button);
  background: transparent;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn--nav:hover { background: var(--navy); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.link-arrow::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease-out);
}
.link-arrow:hover { color: var(--brand-blue); gap: 10px; }
.link-arrow:hover::after { transform: translateX(2px); }

.section--navy .link-arrow { color: var(--white); }
.section--navy .link-arrow:hover { color: rgba(255,255,255,.85); }

/* ==========================================================================
   Top navigation
   ========================================================================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
  /* Utility bar + nav-main — used to anchor desktop product mega panel */
  --top-nav-stack-height: calc(36px + 88px);
}

body.nav-drawer-open .top-nav {
  z-index: 110;
}

.top-nav.is-scrolled {
  box-shadow: 0 1px 0 var(--border-subtle), 0 10px 30px -20px rgba(0, 26, 92, 0.18);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}

.nav-util {
  background: var(--cool-grey);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  height: 36px;
  display: flex;
  align-items: center;
}

.nav-util__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: var(--space-8);
}

.nav-brand img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links li::marker {
  content: none;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-block: 4px;
  transition:
    color 0.28s var(--ease-nav-link),
    transform 0.32s var(--ease-nav-link),
    background-color 0.28s var(--ease-nav-link);
}

.nav-links a:hover {
  color: var(--navy);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    transform: translateY(-1px);
  }
}

.nav-links a[aria-current="page"],
.nav-links a[aria-current="true"] {
  color: var(--navy);
  font-weight: 700;
}

/* Injected by main.js — desktop hides this row */
.nav-links__cta {
  display: none;
}

/* --------------------------------------------------------------------------
   Product mega-menu (desktop hover / focus-within; linear in mobile drawer)
   -------------------------------------------------------------------------- */
.nav-item--mega {
  position: relative;
}

.nav-item--mega__hit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 721px) {
  /* Fill nav row height so hover is not lost in dead space below short links */
  .nav-links {
    align-items: stretch;
  }

  .nav-links > li:not(.nav-links__cta) {
    display: flex;
    align-items: center;
  }

  .nav-item--mega__row {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 100%;
  }

  .nav-mega-expand {
    display: none !important;
  }

  .nav-item--mega__hit::after {
    content: "";
    flex-shrink: 0;
    width: 0;
    height: 0;
    margin-top: 2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.42;
    transition: opacity 0.24s var(--ease-nav-link), transform 0.24s var(--ease-nav-link);
  }

  .nav-item--mega:hover .nav-item--mega__hit::after,
  .nav-item--mega:focus-within .nav-item--mega__hit::after {
    opacity: 0.65;
  }

  /* Overlap header slightly so the pointer path stays within :hover / :focus-within */
  /* Compact centred card — narrower than main content max-width */
  /* Invisible overlap into header — pairs with JS hover delay for fixed-position mega */
  .nav-mega {
    --nav-mega-bridge: 22px;
    position: fixed;
    top: calc(var(--top-nav-stack-height) - var(--nav-mega-bridge));
    left: 50%;
    z-index: 120;
    box-sizing: border-box;
    width: min(var(--nav-mega-panel-max), calc(100vw - 2 * var(--gutter)));
    padding: calc(var(--space-6) + var(--nav-mega-bridge)) var(--space-8) var(--space-6);
    max-height: min(calc(100vh - var(--top-nav-stack-height)), 468px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 231, 239, 0.98);
    border-radius: 14px;
    box-shadow:
      0 4px 7px -4px rgba(0, 26, 92, 0.06),
      0 22px 44px -28px rgba(0, 26, 92, 0.14);
    backdrop-filter: saturate(165%) blur(18px);
    -webkit-backdrop-filter: saturate(165%) blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition:
      opacity 0.32s var(--ease-drawer),
      transform 0.38s var(--ease-drawer),
      visibility 0s linear 0.4s;
  }

  /*
   * Pointer tunnel under nav when mega is active — fixed mega + overflow on panel
   * would clip a ::before on .nav-mega; this sits on the li and matches panel width.
   */
  .nav-item--mega::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(var(--nav-mega-panel-max), calc(100vw - 2 * var(--gutter)));
    height: 48px;
    transform: translate(-50%, 100%);
    pointer-events: none;
    z-index: 119;
  }

  .nav-item--mega:hover::after,
  .nav-item--mega:focus-within::after,
  .nav-item--mega.nav-mega--desktop-open::after {
    pointer-events: auto;
  }

  /* .nav-mega--desktop-open bridges pointer moves where fixed panel leaves the li hit box */
  .nav-item--mega:hover .nav-mega,
  .nav-item--mega:focus-within .nav-mega,
  .nav-item--mega.nav-mega--desktop-open .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition:
      opacity 0.32s var(--ease-drawer),
      transform 0.38s var(--ease-drawer),
      visibility 0s linear 0s;
  }

  .nav-mega__inner {
    width: 100%;
    margin: 0;
    max-width: none;
  }

  .nav-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
    align-items: start;
  }

  .nav-mega__col {
    min-width: 0;
    padding-right: var(--space-3);
  }

  .nav-mega__range-head {
    margin: 0;
  }

  .nav-mega__range-head a {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--navy);
    transition: color 0.24s var(--ease-nav-link);
  }

  .nav-mega__range-head a:hover {
    color: var(--brand-blue);
  }

  .nav-mega__range-meta {
    margin: var(--space-2) 0 var(--space-3);
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--text-muted);
  }

  .nav-mega__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nav-mega__list li {
    list-style: none;
  }

  .nav-mega__list li::marker {
    content: none;
  }

  .nav-mega__list a {
    display: block;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.35;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    margin-inline: -6px;
    padding-inline: 6px;
    transition:
      color 0.24s var(--ease-nav-link),
      background-color 0.24s var(--ease-nav-link);
  }

  .nav-mega__list a:hover {
    color: var(--navy);
    background-color: rgba(0, 26, 92, 0.05);
    transform: none;
  }

  .nav-mega__overview {
    display: inline-flex;
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  @media (hover: hover) and (pointer: fine) {
    .nav-mega__list a:hover {
      transform: none;
    }
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .nav-mega__grid {
    gap: var(--space-6);
  }

  .nav-mega__col {
    padding-right: var(--space-2);
  }
}

/* Hamburger — premium ghost control */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 0;
  background: rgba(0, 26, 92, 0.06);
  color: var(--navy);
  transition:
    background-color 0.32s var(--ease-nav-link),
    transform 0.22s var(--ease-nav-link),
    box-shadow 0.32s var(--ease-nav-link);
}
.nav-toggle:hover {
  background: rgba(0, 26, 92, 0.11);
}
.nav-toggle:active {
  transform: scale(0.94);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  transition:
    transform 0.42s var(--ease-drawer),
    opacity 0.28s var(--ease-nav-link),
    background-color 0.28s var(--ease-nav-link);
}
.nav-toggle__bar::before { position: absolute; top: -7px; left: 0; width: 19px; }
.nav-toggle__bar::after { position: absolute; top: 7px; left: 0; width: 19px; }

.nav-toggle[aria-expanded="true"] {
  background: rgba(0, 51, 161, 0.1);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen scrim (node inserted before body content via JS) */
.nav-overlay {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: clamp(48px, 8vw, 64px) 0;
  background: var(--white);
}

.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: var(--space-16);
  align-items: end;
  min-height: clamp(520px, 60vw, 680px);
}

.hero__left { display: flex; flex-direction: column; gap: var(--space-12); justify-content: flex-end; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--navy);
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 0.18em, 18px);
}

.hero__title-line {
  display: block;
}

@media (max-width: 720px) {
  .hero__title-line {
    white-space: normal;
  }
}

@media (min-width: 721px) {
  .hero__title-line {
    line-height: 0.94;
    white-space: nowrap;
  }
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }

.hero__right {
  position: relative;
  height: clamp(420px, 60vw, 680px);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cool-grey);
  box-shadow: 0 30px 60px -30px rgba(0, 26, 92, 0.35);
}
.hero__right img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 9s var(--ease-out);
  transform: scale(1.03);
}
.hero__right:hover img { transform: scale(1.08); }

/* ==========================================================================
   Intro quote
   ========================================================================== */
.intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
}

.intro .eyebrow { justify-content: center; }

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--navy);
  max-width: 920px;
}

.intro__body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 720px;
}

/* ==========================================================================
   Tagline (Vim Dey)
   ========================================================================== */
.tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(360px, 56vw, 680px);
  gap: 0;
}

.tagline__line {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(56px, 13vw, 132px);
  line-height: 1.14;
  letter-spacing: -0.027em;
  font-weight: 800;
  display: block;
}

/* Subtle floating glow behind text */
.tagline { position: relative; isolation: isolate; overflow: hidden; }
.tagline::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(40% 40% at 30% 40%, rgba(58,141,222,.20), transparent 70%),
    radial-gradient(35% 35% at 70% 60%, rgba(58,141,222,.12), transparent 70%);
  z-index: -1;
  animation: drift 18s var(--ease-in-out) infinite alternate;
}

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.05); }
}

/* ==========================================================================
   Excellence — five commitments
   ========================================================================== */
.excellence__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.excellence__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--navy);
  max-width: 920px;
}

.excellence__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 420px;
}

.excellence__split {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: stretch;
}

.excellence__fig {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 480px;
  background: var(--cool-grey);
}
.excellence__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 8s var(--ease-out);
}
.excellence__fig:hover img { transform: scale(1.05); }

.pillars {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.pillar {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  transition: padding-left var(--dur-med) var(--ease-out);
}
.pillar:last-child { border-bottom: 1px solid var(--border-subtle); }
.pillar:hover { padding-left: 8px; }

.pillar__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: var(--brand-blue);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pillar__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   Products
   ========================================================================== */
.products__head { margin-bottom: var(--space-12); }
.products__head .eyebrow { margin-bottom: var(--space-4); }

.products__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--navy);
  max-width: 880px;
}

.products__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-6);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  box-shadow: 0 1px 0 rgba(0,26,92,0.04), 0 20px 40px -28px rgba(0, 26, 92, 0.18);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(0,26,92,0.06), 0 30px 60px -28px rgba(0, 26, 92, 0.28);
}

.product-card__media {
  overflow: hidden;
  position: relative;
  background: var(--cool-grey);
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }

.product-card__body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.034em;
  font-weight: 800;
  color: var(--navy);
}

.product-card__sub {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Featured (Neuvim) — image on top */
.product-card--featured { grid-row: span 2; }
.product-card--featured .product-card__media { aspect-ratio: 760 / 360; }

/* Side-image variant (Dolpamol/Nerityn) */
.product-card--row { display: grid; grid-template-columns: 1fr 220px; }
.product-card--row.is-flipped { grid-template-columns: 220px 1fr; }
.product-card--row .product-card__body { padding: var(--space-8); justify-content: center; }
.product-card--row .product-card__body p { font-size: 13.5px; line-height: 1.55; }
.product-card--row .product-card__title { font-size: clamp(24px, 2.4vw, 28px); letter-spacing: -0.027em; }
.product-card--row .product-card__media { height: 100%; min-height: 220px; }

/* ==========================================================================
   Impact
   ========================================================================== */
.impact {
  position: relative;
  min-height: clamp(520px, 60vw, 720px);
  background: var(--cool-grey);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.impact__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.impact__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 18s var(--ease-out);
}
.impact:hover .impact__bg img { transform: scale(1.06); }

.impact__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,26,92,0.18) 0%, rgba(0,26,92,0) 60%);
}

.impact .container { position: relative; z-index: 1; width: 100%; }

.impact__panel {
  background: var(--navy);
  color: var(--white);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border-radius: var(--radius-card);
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: 0 30px 60px -30px rgba(0,26,92,0.6);
}

.impact__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--white);
  max-width: 480px;
}

.impact__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
}

.impact .link-arrow {
  font-size: 13px;
  color: var(--white);
}
.impact .link-arrow:hover { color: rgba(255,255,255,0.85); }

/* ==========================================================================
   News
   ========================================================================== */
.news__mast {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
}

.news__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--navy);
}

.news__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 720px;
}

.news__viewall { align-self: flex-start; }

.news__rule {
  height: 1px;
  background: var(--border-subtle);
  width: 100%;
  margin-top: var(--space-4);
}

.news__row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-16);
}

.news__lead { display: flex; flex-direction: column; gap: var(--space-6); }

.news__lead-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 760 / 340;
  background: var(--cool-grey);
}
.news__lead-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.news__lead:hover .news__lead-img img { transform: scale(1.03); }

.news__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
}
.news__meta .dot { width: 4px; height: 4px; background: currentColor; border-radius: 50%; display: inline-block; }

.news__lead-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--navy);
  max-width: 700px;
}

.news__lead-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 660px;
}

.news__sidebar { display: flex; flex-direction: column; }

.news__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-block: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  transition: padding-left var(--dur-med) var(--ease-out);
}
.news__item:hover { padding-left: 6px; }
.news__sidebar .news__item:last-child { border-bottom: 1px solid var(--border-subtle); }

.news__item-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.news__item-meta .dot { width: 4px; height: 4px; background: currentColor; border-radius: 50%; display: inline-block; }

.news__item-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  font-weight: 700;
  color: var(--navy);
}

.news__item .link-arrow { font-size: 13px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--space-20) var(--space-12);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: var(--space-16);
}

.footer__brand img { height: 48px; width: auto; margin-bottom: var(--space-4); }

.footer__tag {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  max-width: 320px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-12);
  justify-content: end;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }

.footer__col a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

.footer__rule { height: 1px; background: rgba(255,255,255,0.13); margin-block: var(--space-12); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  flex-wrap: wrap;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }

/* ==========================================================================
   Inner-page hero patterns
   ========================================================================== */

/* Centred hero with image card (Who We Are) */
.page-hero {
  background: var(--cool-grey);
  padding: clamp(40px, 6vw, 56px) 0 clamp(56px, 9vw, 88px);
}

.page-hero__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 6;
  background: var(--white);
  box-shadow: 0 30px 60px -30px rgba(0,26,92,.25);
}
.page-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 9s var(--ease-out);
  transform: scale(1.02);
}
.page-hero__media:hover img { transform: scale(1.07); }

.page-hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding-top: clamp(28px, 4vw, 44px);
}

.page-hero__content .eyebrow { justify-content: center; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--navy);
  max-width: 720px;
}

.page-hero__lede {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 640px;
}

.page-hero__body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
}

/* Glass-card hero (Impact, Contact) */
.glass-hero {
  padding: clamp(24px, 3vw, 40px) 0 clamp(40px, 6vw, 56px);
  background: var(--white);
}
.glass-hero__inner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.18);
  isolation: isolate;
}
.glass-hero__bg {
  position: relative;
  aspect-ratio: 1328 / 760;
  min-height: 360px;
  max-height: 760px;
}
.glass-hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 12s var(--ease-out);
  transform: scale(1.02);
}
.glass-hero__inner:hover .glass-hero__bg img { transform: scale(1.06); }
.glass-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,.08) 0%, rgba(2,6,23,.28) 62%, rgba(2,6,23,.5) 100%);
}

.glass-hero__panel {
  position: absolute;
  z-index: 1;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 40px 80px -30px rgba(2, 6, 23, 0.55);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Impact-hero panel (left aligned, vertical centre) */
.glass-hero--impact .glass-hero__panel {
  inset: 50% auto auto 5%;
  transform: translateY(-50%);
  width: min(704px, 70%);
}
.glass-hero--impact .glass-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}
.glass-hero--impact .glass-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.55;
}
.glass-hero--impact .glass-hero__body {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

/* Contact-hero panel (centred top half) */
.glass-hero--contact .glass-hero__panel {
  inset: auto auto 8% 50%;
  top: auto;
  transform: translateX(-50%);
  width: min(960px, 84%);
  text-align: center;
  align-items: center;
  gap: 10px;
}
.glass-hero--contact .glass-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: #0F172A;
}
.glass-hero--contact .glass-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  color: #334155;
  line-height: 1.42;
  max-width: 640px;
}
.glass-hero--contact .glass-hero__body {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.5;
  color: #64748B;
  max-width: 600px;
}

.glass-hero--contact .glass-hero__panel .eyebrow { justify-content: center; }

/* ==========================================================================
   Vision · Mission · Purpose grid (Who We Are)
   ========================================================================== */
.vmp { background: var(--cool-grey); }
.vmp__head { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-8); }
.vmp__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--navy);
}

.vmp__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }

.vmp-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.vmp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(0, 26, 92, .22);
}

.vmp-card--wide { grid-template-columns: 1fr 520px; min-height: 360px; }
.vmp-card__body { display: flex; flex-direction: column; justify-content: center; gap: var(--space-4); padding: clamp(24px, 4vw, 48px); }
.vmp-card__media { overflow: hidden; }
.vmp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease-out); }
.vmp-card:hover .vmp-card__media img { transform: scale(1.06); }

.vmp-card__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
}

.vmp-card__body p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 480px;
}

.vmp__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.vmp__row .vmp-card { grid-template-columns: 1fr 268px; min-height: 376px; }

/* ==========================================================================
   Inverted excellence — image left, pillars right (Who We Are reuse)
   ========================================================================== */
.excellence__lede--center { max-width: 560px; }

/* ==========================================================================
   Moment band (Who We Are: full-bleed image)
   ========================================================================== */
.moment {
  position: relative;
  aspect-ratio: 1440 / 560;
  min-height: 320px;
  max-height: 600px;
  overflow: hidden;
}
.moment img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 14s var(--ease-out);
}
.moment:hover img { transform: scale(1.05); }

/* ==========================================================================
   Impact intro (dark navy section with statement card)
   ========================================================================== */
.impact-intro {
  background: #0B1736;
  color: var(--white);
  border-top: 1px solid #1E2A4A;
  border-bottom: 1px solid #1E2A4A;
  padding-block: clamp(72px, 12vw, 132px);
}
.impact-intro .eyebrow { color: #AFC4FF; }
.impact-intro .eyebrow::before { background: #7EA6FF; }

.impact-intro__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
  max-width: 980px;
  margin-block: var(--space-4) var(--space-8);
}

.statement-card {
  background: var(--white);
  border: 1px solid #D9E4FB;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: 0 40px 80px -32px rgba(2, 8, 23, 0.5);
}

.statement-card__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
}

.statement-card__body {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.52;
  color: #1E293B;
}

.status-box {
  background: #EAF1FF;
  border: 1.5px solid #B8CEFF;
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 60px -28px rgba(0, 51, 161, .18);
}

.status-box__bar {
  height: 6px;
  width: 100%;
  border-radius: 999px;
  background: var(--brand-blue);
  background-image: linear-gradient(90deg, var(--brand-blue), var(--accent-blue), var(--brand-blue));
  background-size: 200% 100%;
  animation: status-shimmer 4s var(--ease-in-out) infinite;
}
@keyframes status-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.status-box__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
}

.status-box__title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  color: #0B1F4D;
  line-height: 1.45;
}

.status-box__body {
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.6;
  color: #1E3A66;
}

/* ==========================================================================
   Focus areas grid (Impact)
   ========================================================================== */
.focus { background: var(--white); border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.focus__head { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }
.focus__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}
.focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.focus-card {
  background: var(--white);
  border: 1px solid #DCE5F5;
  border-radius: 22px;
  padding: clamp(24px, 3vw, 30px);
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, .12);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.focus-card:hover {
  transform: translateY(-4px);
  border-color: #B8CEFF;
  box-shadow: 0 40px 80px -28px rgba(0, 51, 161, .25);
}

.focus-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-primary);
}

.focus-card__icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #EAF0FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.focus-card:hover .focus-card__icon { transform: scale(1.08); background: #DBE6FF; }
.focus-card__icon svg { width: 24px; height: 24px; }

.focus__cta { display: flex; justify-content: center; }

/* ==========================================================================
   Contact section
   ========================================================================== */
.contact-section { background: var(--white); border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }

.contact-section__head { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }
.contact-section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid #DCE5F5;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 30px) clamp(22px, 2.4vw, 26px);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, .14);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-card__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--navy);
}
.contact-card__desc {
  font-size: 15px;
  line-height: 1.5;
  color: #475569;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
  font-size: 16px;
  line-height: 1.5;
}
.contact-info__row strong { color: var(--navy); font-weight: 700; min-width: 78px; flex-shrink: 0; }
.contact-info__row a { color: inherit; transition: color var(--dur-fast) var(--ease-out); }
.contact-info__row a:hover { color: var(--brand-blue); }

/* Form */
.contact-form { display: grid; gap: 14px; }
.form-field {
  display: block;
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #DCE5F5;
  border-radius: 12px;
  padding: 14px 16px;
  font: 500 15px/1.4 var(--font-display);
  color: var(--text-primary);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  resize: vertical;
}
.form-field::placeholder { color: #64748B; font-weight: 500; }
.form-field:hover { border-color: #B8CEFF; }
.form-field:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 51, 161, .12);
}

textarea.form-field { min-height: 130px; }

.form-submit {
  margin-top: 4px;
  align-self: flex-start;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-button);
  padding: 14px 24px;
  font: 700 14px/1 var(--font-display);
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  box-shadow: 0 12px 24px -10px rgba(0, 26, 92, .45);
}
.form-submit:hover { background: var(--brand-blue); transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(0, 51, 161, .5); }
.form-submit:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 3px; }

.form-status { font-size: 14px; color: var(--brand-blue); min-height: 1.4em; line-height: 1.4; }
.form-status[data-state="error"] { color: #B91C1C; }

/* ==========================================================================
   Product detail (PDP) — split hero with floating product
   ========================================================================== */
.pdp-hero {
  background: #F8F9FB;
  border-bottom: 1px solid var(--border-subtle);
}
.pdp-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center;
  min-height: clamp(480px, 60vw, 640px);
}
.pdp-hero__copy {
  padding: clamp(48px, 8vw, 96px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.pdp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--navy);
}
.pdp-eyebrow::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--brand-blue);
  display: inline-block;
}
.pdp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--navy);
}
.pdp-hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 540px;
}
.pdp-hero__body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.62;
  color: var(--text-primary);
  max-width: 540px;
}

.pdp-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 56px);
  position: relative;
  isolation: isolate;
}
.pdp-hero__art::before {
  content: "";
  position: absolute;
  inset: 18% 8% 18% 8%;
  background: radial-gradient(closest-side, rgba(0, 51, 161, 0.08), rgba(0, 51, 161, 0));
  z-index: -1;
  filter: blur(12px);
  animation: pdp-glow 8s var(--ease-in-out) infinite alternate;
}
@keyframes pdp-glow {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .85; }
  100% { transform: translate3d(2%, -2%, 0) scale(1.06); opacity: 1; }
}
.pdp-hero__pack {
  width: min(100%, 440px);
  aspect-ratio: 440 / 560;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 60px 100px -32px rgba(15, 23, 42, .22);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-med) var(--ease-out);
  animation: pdp-float 6s var(--ease-in-out) infinite alternate;
}
@keyframes pdp-float {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
.pdp-hero__pack img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}
.pdp-hero__pack:hover { transform: translateY(-8px) scale(1.01); }

.btn--pdp {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: var(--radius-button);
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(0, 51, 161, .45);
}
.btn--pdp:hover {
  transform: translateY(-1px);
  background: var(--navy);
  box-shadow: 0 18px 36px -10px rgba(0, 26, 92, .5);
}

/* ==========================================================================
   Flavour line-up
   ========================================================================== */
.flavours { background: var(--white); border-top: 1px solid #CBD5E1; border-bottom: 1px solid #CBD5E1; }
.flavours__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: var(--space-12);
}
.flavours__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.027em;
  font-weight: 800;
  color: var(--navy);
  max-width: 800px;
}
.flavours__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 680px;
}
.flavours__grid {
  display: grid;
  grid-template-columns: repeat(var(--flavour-cols, 3), minmax(0, 1fr));
  gap: 32px;
  align-items: end;
}
.flavours__grid--solo {
  max-width: 440px;
  margin-inline: auto;
}
.flavour-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.flavour-tile__plate {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px -28px rgba(15, 23, 42, .12);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.flavour-tile__plate img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  transition: transform var(--dur-med) var(--ease-out);
}
.flavour-tile:hover .flavour-tile__plate {
  transform: translateY(-4px);
  border-color: #B8CEFF;
  box-shadow: 0 40px 70px -24px rgba(0, 51, 161, .2);
}
.flavour-tile:hover .flavour-tile__plate img { transform: scale(1.05); }
.flavour-tile__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

/* ==========================================================================
   At-a-glance pillar cards
   ========================================================================== */
.glance {
  background: linear-gradient(180deg, #EEF2FF 0%, #F8FAFC 100%);
  border-top: 1px solid #CBD5E1;
  border-bottom: 1px solid #CBD5E1;
}
.glance__head { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--space-8); }
.glance__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--navy);
}
.glance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.glance-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 46px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.14);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.glance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-med) var(--ease-out);
}
.glance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 80px -28px rgba(0, 51, 161, .22);
}
.glance-card:hover::before { transform: scaleX(1); }
.glance-card__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand-blue);
}
.glance-card__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.42;
  color: var(--text-primary);
}

/* ==========================================================================
   Benefit cards (icon + title)
   ========================================================================== */
.benefits {
  background: linear-gradient(180deg, #DCE8F9 0%, #F4F6FA 100%);
  border-top: 1px solid #CBD5E1;
  border-bottom: 1px solid #CBD5E1;
}
.benefits__head { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--space-8); }
.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.027em;
  font-weight: 800;
  color: var(--navy);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(var(--benefit-cols, 3), minmax(0, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 200px;
  box-shadow: 0 36px 60px -28px rgba(15, 23, 42, 0.16);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 44px 80px -26px rgba(0, 51, 161, 0.24);
}
.benefit-card__icon {
  width: 40px;
  height: 40px;
  color: var(--brand-blue);
}
.benefit-card__icon svg { width: 100%; height: 100%; }
.benefit-card:hover .benefit-card__icon { animation: icon-pop var(--dur-med) var(--ease-out); }
@keyframes icon-pop {
  0%   { transform: scale(1); }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.benefit-card__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.42;
  color: var(--text-primary);
}

/* ==========================================================================
   Who it's for — emphasis card
   ========================================================================== */
.who-for {
  background: linear-gradient(180deg, #E8EEF9 0%, #F4F6FA 100%);
  border-top: 1px solid #CBD5E1;
  border-bottom: 1px solid #CBD5E1;
}
.who-for__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-8); }
.who-for__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--navy);
}
.who-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 36px) clamp(28px, 3.5vw, 44px);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-primary);
  box-shadow: 0 36px 70px -28px rgba(15, 23, 42, 0.16);
}

/* ==========================================================================
   How to use — split (navy promo + steps)
   ========================================================================== */
.how-use {
  background: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
}
.how-use__split {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
}
.how-use__promo {
  background: var(--navy);
  color: var(--white);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.how-use__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  opacity: 0.85;
}
.how-use__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--white);
  max-width: 420px;
}
.how-use__lede {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.9;
  max-width: 400px;
}
.how-use__steps {
  background: var(--white);
  padding: clamp(48px, 8vw, 88px) clamp(28px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

/* ==========================================================================
   PDP CTA band
   ========================================================================== */
.pdp-cta {
  background: linear-gradient(180deg, #E8EDF4 0%, #F8FAFC 100%);
  border-top: 1px solid #CBD5E1;
  border-bottom: 1px solid #CBD5E1;
  text-align: center;
  padding-block: clamp(56px, 8vw, 88px);
}
.pdp-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.pdp-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy);
  max-width: 800px;
}
.pdp-cta__body {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 680px;
}

/* ==========================================================================
   Nutritional facts page
   ========================================================================== */
.nutrition-hero {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--white);
}
.nutrition-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 40px;
  min-height: clamp(480px, 60vw, 720px);
  align-items: stretch;
  padding-inline: clamp(20px, 5vw, 72px);
}
.nutrition-hero__copy {
  background: #F8F9FB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 4vw, 56px);
}
.nutrition-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--navy);
  max-width: 560px;
}
.nutrition-hero__per {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}
.nutrition-hero__rule {
  width: 72px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-blue);
}
.nutrition-hero__hint {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
}
.nutrition-hero__art {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(165deg, #E8EEF6 0%, #F4F7FB 100%);
  border: 1px solid #D8DEE8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nutrition-hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 14s var(--ease-out);
  transform: scale(1.02);
}
.nutrition-hero__art:hover img { transform: scale(1.06); }

.btn--download {
  align-self: flex-start;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: var(--radius-button);
  padding: 18px 36px;
  font: 600 16px/1 var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 36px -10px rgba(0, 51, 161, .42);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn--download:hover {
  transform: translateY(-1px);
  background: var(--navy);
  box-shadow: 0 22px 44px -10px rgba(0, 26, 92, .5);
}
.btn--download svg { width: 22px; height: 22px; }

.facts-section {
  background: #F8F9FB;
  padding-block: clamp(28px, 4vw, 40px);
}
.facts-card {
  background: var(--white);
  border: 1px solid #D8DEE8;
  border-radius: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 880px;
  margin-inline: auto;
  box-shadow: 0 36px 72px -28px rgba(15, 39, 74, .18);
  -webkit-overflow-scrolling: touch;
}
.facts-table {
  width: 100%;
  min-width: min(100%, 520px);
  border-collapse: collapse;
}
.facts-table td:first-child {
  word-break: break-word;
  hyphens: auto;
}
.facts-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 18px 28px;
  text-align: left;
}
.facts-table thead th + th { text-align: right; letter-spacing: 0.025em; }
.facts-table td {
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #E8EDF3;
  transition: background var(--dur-fast) var(--ease-out);
}
.facts-table td + td {
  text-align: right;
  color: var(--text-primary);
  font-weight: 600;
}
.facts-table tbody tr:last-child td { border-bottom: 0; }
.facts-table tbody tr:hover td { background: #F4F7FB; }

.trust-strip {
  background: var(--white);
  border-top: 1px solid #E2E8F0;
  text-align: center;
  padding-block: clamp(40px, 6vw, 72px);
}
.trust-strip__body {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 720px;
  margin-inline: auto;
}
.trust-strip__small {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 680px;
  margin: 12px auto 0;
}

/* ==========================================================================
   Products overview hero (centred title + image card)
   ========================================================================== */
.products-overview-hero {
  background: var(--white);
  padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 72px);
}
.products-overview-hero__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-8);
}
.products-overview-hero__intro .eyebrow { justify-content: center; }
.products-overview-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.027em;
  font-weight: 700;
  color: var(--navy);
  max-width: 720px;
}
.products-overview-hero__sub {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 640px;
}
.products-overview-hero__body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
}
.products-overview-hero__media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  min-height: 220px;
  background: var(--cool-grey);
}
.products-overview-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 12s var(--ease-out);
  transform: scale(1.02);
}
.products-overview-hero__media:hover img { transform: scale(1.07); }

/* ==========================================================================
   Catalogue grid (3 product range cards)
   ========================================================================== */
.catalogue { background: var(--cool-grey); border-top: 1px solid var(--border-subtle); }
.catalogue__head { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-8); }
.catalogue__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.029em;
  font-weight: 700;
  color: var(--navy);
}
.catalogue__sub {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
}

.catalogue__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.range-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.range-card:hover {
  transform: translateY(-4px);
  border-color: #B8CEFF;
  box-shadow: 0 36px 60px -28px rgba(0, 51, 161, 0.22);
}
.range-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cool-grey);
}
.range-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.range-card:hover .range-card__media img { transform: scale(1.05); }

.range-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.range-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: var(--navy);
}
.range-card__body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.range-card__cta { margin-top: auto; padding-top: 4px; }

/* ==========================================================================
   Range page hero (split text + full-bleed image)
   ========================================================================== */
.range-hero {
  background: var(--white);
}
.range-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
  min-height: clamp(420px, 60vw, 720px);
}
.range-hero__text {
  background: var(--cool-grey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 88px);
}
.range-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--navy);
  max-width: 560px;
}
.range-hero__sub {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
}
.range-hero__body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
}
.range-hero__media {
  position: relative;
  overflow: hidden;
  background: var(--cool-grey);
  min-height: 360px;
}
.range-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 14s var(--ease-out);
  transform: scale(1.02);
}
.range-hero__media:hover img { transform: scale(1.06); }

/* ==========================================================================
   Variant showcase (white backed product photos in tinted plates)
   ========================================================================== */
.variants { background: var(--white); border-top: 1px solid var(--border-subtle); }
.variants__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: var(--space-8);
}
.variants__head .eyebrow { justify-content: center; }
.variants__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.027em;
  font-weight: 800;
  color: var(--navy);
  max-width: 780px;
}
.variants__lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 620px;
}

.variants__grid {
  display: grid;
  grid-template-columns: repeat(var(--variant-cols, 3), minmax(0, 1fr));
  gap: 24px;
}

.variant-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.variant-card__plate {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  background: var(--cool-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.variant-card__plate img {
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--dur-med) var(--ease-out);
}
.variant-card:hover .variant-card__plate {
  transform: translateY(-3px);
  border-color: #B8CEFF;
  box-shadow: 0 30px 60px -28px rgba(0, 51, 161, 0.22);
}
.variant-card:hover .variant-card__plate img { transform: scale(1.04); }

.variant-card__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: var(--space-6);
}
.variant-pill {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 12px 22px;
  border-radius: var(--radius-button);
  font: 600 14px/1 var(--font-display);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.variant-pill:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* ==========================================================================
   Why choose <product> — bullet cards
   ========================================================================== */
.why-product {
  background: linear-gradient(180deg, #E8EEF9 0%, #F4F6FA 100%);
  border-top: 1px solid #CBD5E1;
  border-bottom: 1px solid #CBD5E1;
}
.why-product__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-8); }
.why-product__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--navy);
}
.why-product__grid {
  display: grid;
  grid-template-columns: repeat(var(--why-cols, 3), minmax(0, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 32px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 156px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(15, 23, 42, .14);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 6px 0 0 6px;
  background: var(--brand-blue);
  transition: width var(--dur-med) var(--ease-out);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 80px -28px rgba(0, 51, 161, .22);
}
.why-card:hover::before { width: 10px; }
.why-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.42;
  color: var(--text-primary);
  padding-left: 8px;
}

/* ==========================================================================
   How it works — half navy promo + numbered steps
   ========================================================================== */
.how-it-works {
  background: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
}
.how-it-works__split {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
}
.how-it-works__promo {
  background: linear-gradient(195deg, #0B4A9E 0%, var(--navy) 100%);
  color: var(--white);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 4vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
}
.how-it-works__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
}
.how-it-works__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.029em;
  font-weight: 800;
  color: var(--white);
  max-width: 500px;
}
.how-it-works__lede {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  max-width: 470px;
}

.how-steps {
  background: var(--white);
  padding: clamp(56px, 8vw, 88px) clamp(28px, 4vw, 76px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
.how-step {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 20px 40px -28px rgba(15, 23, 42, .18);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.how-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -28px rgba(0, 51, 161, .2);
}
.how-step__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-blue);
  min-width: 44px;
}
.how-step__text {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ==========================================================================
   404 page
   ========================================================================== */
.error-page {
  background: var(--white);
  padding: clamp(24px, 3vw, 36px) 0 clamp(40px, 6vw, 56px);
}
.error-page__inner {
  position: relative;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, .18);
  overflow: hidden;
  min-height: clamp(420px, 55vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 56px);
  isolation: isolate;
}

.error-page__ghost {
  position: absolute;
  inset: auto 0 auto 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 260px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #93C5FD;
  opacity: 0.28;
  text-align: center;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  animation: ghost-float 7s var(--ease-in-out) infinite alternate;
}
@keyframes ghost-float {
  0%   { transform: translate(0, calc(-50% - 4px)); }
  100% { transform: translate(0, calc(-50% + 4px)); }
}

.error-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 36px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: min(960px, 100%);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.22);
}

.error-card__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: #0F172A;
}

.error-card__sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.35;
  font-weight: 400;
  color: #1E293B;
  max-width: 720px;
}

.error-card__body {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.5;
  color: #475569;
  max-width: 660px;
}

.error-card__actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn--small {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-button);
  letter-spacing: 0.2px;
}
.btn--small.btn--primary {
  background: var(--navy);
}
.btn--small.btn--ghost {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

/* ==========================================================================
   Status pages (Coming Soon, Maintenance)
   ========================================================================== */
.status-page {
  background: #020617;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px);
}

.status-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.status-page__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 24s var(--ease-out);
  transform: scale(1.04);
}
.status-page:hover .status-page__bg img,
.status-page .status-page__bg img.is-zooming { transform: scale(1.1); }

.status-page__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2,6,23,0.10) 0%, rgba(2,6,23,0.45) 50%, rgba(2,6,23,0.80) 100%);
}

.status-page__glow,
.status-page__glow--alt {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
  animation: status-glow 9s var(--ease-in-out) infinite alternate;
}
.status-page__glow {
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  top: 6%; right: 6%;
  background: radial-gradient(closest-side, rgba(96,165,250,0.30), rgba(96,165,250,0));
}
.status-page__glow--alt {
  width: clamp(280px, 36vw, 520px);
  height: clamp(160px, 18vw, 220px);
  bottom: 12%; left: 6%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.28), rgba(167,139,250,0));
  animation-duration: 12s;
  animation-delay: -3s;
}
@keyframes status-glow {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.06); }
}

.status-card {
  position: relative;
  z-index: 1;
  background: rgba(2,6,23,0.6);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: min(1280px, 100%);
  box-shadow: 0 60px 120px -40px rgba(2, 6, 23, 0.65);
}

.status-card .eyebrow,
.status-card .eyebrow span,
.status-card .eyebrow strong { color: #BFDBFE; }
.status-card .eyebrow::before { background: #60A5FA; }

.status-card__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
}

.status-card__sub {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: #E2E8F0;
  line-height: 1.42;
  max-width: 760px;
}

.status-card__body {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.5;
  color: #BFDBFE;
  max-width: 760px;
}

.status-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.status-card__brand img { height: 32px; width: auto; }

.status-card__actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.status-card__actions .btn--small.btn--primary { background: var(--white); color: var(--navy); }
.status-card__actions .btn--small.btn--primary:hover { background: #DBE6FF; color: var(--navy); }
.status-card__actions .btn--small.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.6); }
.status-card__actions .btn--small.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-1px); }

.status-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BFDBFE;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 4px;
}
.status-card__tag .pulse-dot {
  width: 8px; height: 8px;
  background: #60A5FA;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.status-card__tag .pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #60A5FA;
  opacity: 0.6;
  animation: pulse-ring 2s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   Stacked image+card hero (R&D)
   ========================================================================== */
.stack-hero {
  background: var(--white);
  padding: clamp(24px, 3vw, 40px) 0 clamp(40px, 6vw, 64px);
}
.stack-hero__inner {
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.18);
}
.stack-hero__media {
  aspect-ratio: 16 / 6;
  background: var(--cool-grey);
  overflow: hidden;
}
.stack-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 12s var(--ease-out);
  transform: scale(1.02);
}
.stack-hero__inner:hover .stack-hero__media img { transform: scale(1.06); }

.stack-hero__content {
  padding: clamp(28px, 5vw, 64px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 980px;
}
.stack-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}
.stack-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  color: #1E293B;
}
.stack-hero__body {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.58;
  color: #334155;
}

/* ==========================================================================
   News dark glass hero
   ========================================================================== */
.glass-hero--news .glass-hero__panel {
  inset: auto auto 8% 5%;
  top: auto;
  width: min(680px, 80%);
  background: rgba(11, 23, 54, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.glass-hero--news .glass-hero__panel .eyebrow { color: #C7D7FF; }
.glass-hero--news .glass-hero__panel .eyebrow::before { background: #7EA6FF; }
.glass-hero--news .glass-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: var(--white);
}
.glass-hero--news .glass-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  color: #E2E8F0;
  line-height: 1.42;
}
.glass-hero--news .glass-hero__body {
  font-size: clamp(13px, 1.1vw, 16px);
  color: #BFDBFE;
  line-height: 1.52;
}

/* ==========================================================================
   News story header (centred panel on rounded image)
   ========================================================================== */
.glass-hero--story .glass-hero__bg { aspect-ratio: 1328 / 520; max-height: 520px; }
.glass-hero--story .glass-hero__bg::after {
  background: linear-gradient(105deg, rgba(15,23,42,.20) 0%, rgba(2,6,23,.54) 52%, rgba(2,6,23,.80) 100%);
}
.glass-hero--story .glass-hero__panel {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 84%);
  text-align: left;
  align-items: stretch;
  gap: 8px;
  padding: clamp(20px, 3vw, 28px);
}
.glass-hero--story .glass-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #0F172A;
}
.glass-hero--story .meta-line {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.45;
  color: #334155;
}
.glass-hero--story .glass-hero__body {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

/* ==========================================================================
   Stories grid (News page)
   ========================================================================== */
.stories { background: var(--white); border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.stories__head { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }
.stories__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}
.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.story-card {
  background: var(--white);
  border: 1px solid #DCE5F5;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.12);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.story-card:hover {
  transform: translateY(-4px);
  border-color: #B8CEFF;
  box-shadow: 0 40px 80px -28px rgba(0, 51, 161, 0.22);
}

.story-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cool-grey);
}
.story-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.story-card:hover .story-card__media img { transform: scale(1.05); }

.story-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.story-card__meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #64748B;
}

.story-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  font-weight: 800;
  color: #0F172A;
}

.story-card__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: #334155;
}

.story-card__cta {
  margin-top: auto;
  padding-top: 4px;
}

/* ==========================================================================
   Article body (News story template)
   ========================================================================== */
.article-section {
  background: var(--white);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.article-section__head { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }
.article-section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}

.article-body {
  background: var(--white);
  border: 1px solid #DCE5F5;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 28px 60px -32px rgba(15, 23, 42, .14);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 880px;
  margin-inline: auto;
}

.article-body .lede {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  color: #1E293B;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--navy);
  margin-top: var(--space-4);
}
.article-body p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.68;
  color: #334155;
}
.article-body__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

/* Tablet adjustments */
@media (max-width: 1080px) {
  .nav-links { gap: var(--space-4); }
  .nav-main { gap: var(--space-6); }

  .vmp-card--wide { grid-template-columns: 1fr; }
  .vmp-card--wide .vmp-card__media { aspect-ratio: 16/9; min-height: 240px; }
  .vmp__row { grid-template-columns: 1fr; }
  .vmp__row .vmp-card { grid-template-columns: 1fr 240px; min-height: 280px; }

  .products__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .products__grid .product-card--featured { grid-row: auto; }
  .product-card--row,
  .product-card--row.is-flipped {
    grid-template-columns: 1fr;
  }
  .product-card--row .product-card__media {
    order: -1;
    aspect-ratio: 16 / 10;
    min-height: 200px;
    height: auto;
  }

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

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

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

  .glass-hero--impact .glass-hero__panel { width: min(640px, 78%); inset: 50% auto auto 5%; }
  .glass-hero--contact .glass-hero__panel { width: min(720px, 90%); }
  .glass-hero--news .glass-hero__panel { width: min(620px, 84%); inset: auto auto 6% 5%; }

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

  .stack-hero__media { aspect-ratio: 16 / 7; }
  .glass-hero--story .glass-hero__panel { width: min(720px, 90%); }

  .catalogue__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalogue__grid > .range-card:last-child { grid-column: 1 / -1; }

  .pdp-hero__row { grid-template-columns: 1fr; }
  .pdp-hero__art { padding: 32px; }
  .pdp-hero__pack { width: min(360px, 80%); aspect-ratio: 4 / 5; }

  .flavours__grid { gap: 20px; }
  .flavours__grid:not(.flavours__grid--solo) { --flavour-cols: 2; }
  .glance__grid { grid-template-columns: 1fr; }
  .benefits__grid { --benefit-cols: 2; }
  .how-use__split { grid-template-columns: 1fr; }

  .nutrition-hero__split { grid-template-columns: 1fr; padding-inline: 0; gap: 0; }
  .nutrition-hero__art { aspect-ratio: 16 / 9; max-height: 420px; }

  .range-hero__split { grid-template-columns: 1fr; }
  .range-hero__media { min-height: 320px; aspect-ratio: 16 / 9; }

  .variants__grid { --variant-cols: 2; }

  .why-product__grid { --why-cols: 2; }

  .how-it-works__split { grid-template-columns: 1fr; }
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .page-hero__media { aspect-ratio: 4 / 3; }
  .vmp__row .vmp-card { grid-template-columns: 1fr; }
  .vmp__row .vmp-card .vmp-card__media { aspect-ratio: 16/10; min-height: 200px; }

  .focus__grid { grid-template-columns: minmax(0, 1fr); }

  .glass-hero__bg { aspect-ratio: 4 / 5; min-height: 460px; }
  .glass-hero--impact .glass-hero__panel,
  .glass-hero--contact .glass-hero__panel {
    inset: auto 5% 5% 5%;
    top: auto;
    width: auto;
    transform: none;
    padding: 24px;
  }
  .glass-hero--contact .glass-hero__panel { text-align: left; align-items: flex-start; }
  .glass-hero--contact .glass-hero__panel .eyebrow { justify-content: flex-start; }
  .glass-hero--news .glass-hero__panel,
  .glass-hero--story .glass-hero__panel {
    inset: auto 5% 5% 5%;
    top: auto;
    width: auto;
    transform: none;
  }
  .glass-hero--story .glass-hero__bg { aspect-ratio: 4 / 5; }

  .stack-hero__media { aspect-ratio: 4 / 3; }
  .stack-hero__content { padding: 24px; }

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

  .article-body { padding: 24px; }
  .article-body__nav { flex-direction: column; align-items: flex-start; }

  .moment { aspect-ratio: 4 / 3; }

  .error-page__inner { padding: 32px 16px; }
  .error-page__ghost { font-size: 36vw; opacity: 0.22; }
  .error-card__actions .btn { flex: 1 1 auto; justify-content: center; }

  .status-page { padding: 16px; }
  .status-card { padding: 24px; }

  .products-overview-hero__media { aspect-ratio: 4 / 3; }
  .catalogue__grid { grid-template-columns: 1fr; }
  .catalogue__grid > .range-card:last-child { grid-column: auto; }

  .range-hero__text { padding: 32px 20px; }
  .range-hero__media { min-height: 240px; aspect-ratio: 4 / 3; }

  .variants__grid { --variant-cols: 1; gap: 16px; }
  .why-product__grid { --why-cols: 1; gap: 16px; }
  .why-card { padding: 22px 22px 22px 26px; min-height: 0; }

  .how-it-works__promo { padding: 40px 24px; }
  .how-steps { padding: 40px 24px; gap: 18px; }
  .how-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px;
  }
  .how-step__num { min-width: 36px; font-size: 24px; }

  .pdp-hero__copy { padding: 36px 20px 8px; }
  .pdp-hero__art { padding: 24px; }
  .pdp-hero__pack { width: min(300px, 80%); }

  .flavours__grid { --flavour-cols: 1; gap: 20px; max-width: 360px; margin-inline: auto; }
  .benefits__grid { --benefit-cols: 1; }
  .benefit-card { padding: 28px 24px; min-height: 0; }

  .how-use__promo { padding: 40px 24px; }
  .how-use__steps { padding: 36px 20px; gap: 16px; }

  .facts-table thead th,
  .facts-table td { padding: 12px 18px; font-size: 13.5px; }
  .nutrition-hero__copy { padding: 36px 20px; }
  .nutrition-hero__art { aspect-ratio: 4 / 3; }
  .btn--download { width: 100%; justify-content: center; padding: 16px 24px; }

  .focus-card { min-height: 0; }

  .nav-brand { flex-shrink: 0; }
  .nav-main { gap: var(--space-4); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive — tablets
   ========================================================================== */
@media (max-width: 1080px) {
  :root {
    --section-y: clamp(56px, 10vw, 120px);
  }

  .hero__split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: stretch;
    min-height: auto;
  }
  .hero__left { justify-content: flex-start; }
  .hero__right {
    order: -1;
    height: clamp(260px, 52vw, 440px);
    min-height: 240px;
    max-height: 480px;
  }

  .excellence__split { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
  /* Single column: size image from aspect ratio (abs-pos img has no in-flow height). */
  .excellence__fig {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: min(420px, 62vw);
  }

  .news__row { grid-template-columns: 1fr; gap: var(--space-12); }

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

/* ==========================================================================
   Responsive — mobile
   ========================================================================== */
@media (max-width: 720px) {
  :root { --gutter: 20px; }

  .top-nav {
    --top-nav-stack-height: 64px;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.45);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    backdrop-filter: blur(14px) saturate(145%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.45s var(--ease-drawer),
      visibility 0s linear 0.48s;
  }

  body.nav-drawer-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.45s var(--ease-drawer),
      visibility 0s linear 0s;
  }

  .nav-util { display: none; }
  .nav-main {
    height: 64px;
    gap: var(--space-4);
    position: relative;
    z-index: 106;
  }
  .nav-brand img { height: 30px; }

  /* Premium right drawer */
  .nav-links {
    display: flex;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100vw - 40px, 372px);
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--space-6);
    min-height: calc(100dvh - 64px);
    min-height: calc(100svh - 64px);
    margin: 0;
    padding:
      var(--space-8)
      max(var(--gutter), env(safe-area-inset-right, 0px))
      max(var(--space-8), env(safe-area-inset-bottom, 0px))
      max(var(--gutter), env(safe-area-inset-left, 0px));
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.98) 100%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    backdrop-filter: blur(22px) saturate(165%);
    border-left: 1px solid rgba(226, 231, 239, 0.95);
    border-radius: 22px 0 0 0;
    box-shadow: var(--nav-drawer-shadow);
    transform: translate3d(105%, 0, 0);
    opacity: 1;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.52s var(--ease-drawer),
      visibility 0s linear 0.52s;
    z-index: 105;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.is-open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    visibility: visible;
    transition:
      transform 0.52s var(--ease-drawer),
      visibility 0s linear 0s;
  }

  /* Fade-only stagger — horizontal translate caused stacking/overlap with the mega block */
  .nav-links > li {
    flex: none;
    opacity: 0;
    transform: none;
    transition: opacity 0.38s var(--ease-drawer);
  }

  .nav-links.is-open > li:nth-child(1) { opacity: 1; transition-delay: 0.06s; }
  .nav-links.is-open > li:nth-child(2) { opacity: 1; transition-delay: 0.1s; }
  .nav-links.is-open > li:nth-child(3) { opacity: 1; transition-delay: 0.14s; }
  .nav-links.is-open > li:nth-child(4) { opacity: 1; transition-delay: 0.18s; }
  .nav-links.is-open > li:nth-child(5) { opacity: 1; transition-delay: 0.22s; }
  .nav-links.is-open > li:nth-child(6) { opacity: 1; transition-delay: 0.26s; }
  .nav-links.is-open > li:nth-child(7) { opacity: 1; transition-delay: 0.3s; }

  .nav-links:not(.is-open) > li {
    transition-delay: 0s;
  }

  .nav-links a {
    box-sizing: border-box;
    width: 100%;
    padding: 16px 22px;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-card);
    border-bottom: none;
    transform: none;
  }

  .nav-links a:hover {
    background-color: rgba(0, 26, 92, 0.06);
    color: var(--navy);
    transform: translateX(2px);
  }

  .nav-links a[aria-current="page"],
  .nav-links a[aria-current="true"] {
    background-color: rgba(0, 51, 161, 0.09);
    color: var(--navy);
    font-weight: 700;
    box-shadow: inset 3px 0 0 0 var(--brand-blue);
  }

  /* Product mega — accordion in drawer (desktop mega CSS does not apply here) */
  .nav-item--mega {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    flex-shrink: 0;
    min-height: 0;
    width: 100%;
  }

  /* Never elevate above sibling nav rows — z-index caused Impact / R&D / News to slide underneath */

  .nav-item--mega__row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
  }

  .nav-item--mega__hit {
    flex: 1;
    min-width: 0;
    align-self: auto;
    display: flex;
    align-items: center;
    width: auto;
    min-height: 52px;
  }

  .nav-mega-expand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-height: 52px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(226, 231, 239, 0.95);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.75);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 26, 92, 0.04);
    transition:
      background-color 0.28s var(--ease-nav-link),
      border-color 0.28s var(--ease-nav-link),
      box-shadow 0.28s var(--ease-nav-link),
      transform 0.22s var(--ease-nav-link);
  }

  .nav-item--mega.is-mega-expanded .nav-mega-expand {
    background: rgba(0, 51, 161, 0.09);
    border-color: rgba(0, 51, 161, 0.14);
    color: var(--navy);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.65),
      0 1px 3px rgba(0, 26, 92, 0.06);
  }

  .nav-mega-expand:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 51, 161, 0.18);
  }

  .nav-item--mega.is-mega-expanded .nav-mega-expand:hover {
    background: rgba(0, 51, 161, 0.11);
  }

  .nav-mega-expand:active {
    transform: scale(0.96);
  }

  .nav-mega-expand:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
  }

  .nav-mega-expand__chev {
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
    color: inherit;
  }

  .nav-mega-expand__chev::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 35%;
    width: 8px;
    height: 8px;
    margin-left: -5px;
    margin-top: -4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.32s var(--ease-drawer);
  }

  .nav-item--mega.is-mega-expanded .nav-mega-expand__chev::after {
    transform: rotate(225deg);
    margin-top: 2px;
  }

  .nav-item--mega__hit::after {
    display: none;
  }

  .nav-item--mega:not(.is-mega-expanded) .nav-mega {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }

  .nav-mega {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
    padding: var(--space-8) var(--space-6);
    margin: 0;
    background:
      linear-gradient(168deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 252, 0.96) 42%, rgba(241, 245, 249, 0.88) 100%);
    border: 1px solid rgba(226, 231, 239, 0.98);
    border-radius: 16px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 2px 4px -2px rgba(0, 26, 92, 0.06),
      0 12px 28px -20px rgba(0, 26, 92, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: auto;
  }

  .nav-mega__inner {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    width: 100%;
    min-width: 0;
  }

  .nav-mega__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
  }

  .nav-mega__col {
    padding: var(--space-6) 0;
    margin: 0;
    border-bottom: 1px solid rgba(226, 231, 239, 0.72);
  }

  .nav-mega__col:first-of-type {
    padding-top: 0;
  }

  .nav-mega__col:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .nav-mega__range-head {
    margin: 0 0 var(--space-3);
  }

  .nav-mega__range-head a {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.035em;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 12px 18px;
    margin: 0;
    border-radius: var(--radius-card);
    background-color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 231, 239, 0.88);
    border-left: 3px solid var(--brand-blue);
    box-shadow:
      0 1px 2px rgba(0, 26, 92, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transform: none;
    line-height: 1.25;
    box-sizing: border-box;
    transition:
      background-color 0.26s var(--ease-nav-link),
      border-color 0.26s var(--ease-nav-link),
      box-shadow 0.26s var(--ease-nav-link),
      color 0.26s var(--ease-nav-link);
  }

  .nav-mega__range-head a:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 51, 161, 0.22);
    border-left-color: var(--accent-blue);
    color: var(--navy);
    transform: none;
  }

  .nav-mega__range-meta {
    margin: 0 0 var(--space-4);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.55;
    letter-spacing: 0.04em;
    padding: 0;
    padding-inline-start: var(--space-3);
    max-width: 34rem;
    opacity: 0.92;
  }

  .nav-mega__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    min-width: 0;
  }

  .nav-mega__list li {
    list-style: none;
    flex: none;
    width: 100%;
    min-width: 0;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav-mega__list li::marker {
    content: none;
  }

  .nav-mega__list a {
    font-size: 15px;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 14px 18px;
    margin: 0;
    border-radius: var(--radius-card);
    background-color: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(226, 231, 239, 0.82);
    transform: none;
    line-height: 1.45;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition:
      background-color 0.26s var(--ease-nav-link),
      border-color 0.26s var(--ease-nav-link),
      transform 0.26s var(--ease-nav-link),
      box-shadow 0.26s var(--ease-nav-link);
  }

  .nav-mega__list a:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 51, 161, 0.18);
    box-shadow: 0 2px 8px -4px rgba(0, 26, 92, 0.08);
    transform: translateX(3px);
  }

  /* Beat .nav-links a padding/width so the footer chip reads as its own control */
  .nav-mega .nav-mega__overview.link-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-2);
    margin-inline: 0;
    padding: 14px 18px;
    border-radius: var(--radius-card);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
    background: rgba(0, 26, 92, 0.07);
    border: 1px solid rgba(0, 26, 92, 0.08);
    color: var(--navy);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition:
      background-color 0.26s var(--ease-nav-link),
      border-color 0.26s var(--ease-nav-link),
      transform 0.26s var(--ease-nav-link),
      color 0.26s var(--ease-nav-link);
  }

  .nav-mega .nav-mega__overview.link-arrow:hover {
    background: rgba(0, 51, 161, 0.1);
    border-color: rgba(0, 51, 161, 0.14);
    color: var(--brand-blue);
    transform: translateX(2px);
  }

  .nav-links__cta {
    display: block;
    margin-top: auto;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(226, 231, 239, 0.95);
  }

  .nav-links .btn--drawer-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px 26px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: 0 16px 34px -14px rgba(0, 26, 92, 0.48);
    transition:
      transform 0.32s var(--ease-nav-link),
      box-shadow 0.32s var(--ease-nav-link),
      background-color 0.32s var(--ease-nav-link);
  }

  .nav-links .btn--drawer-cta:hover {
    background: var(--brand-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 22px 42px -14px rgba(0, 51, 161, 0.42);
  }

  .nav-links .btn--drawer-cta:active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn--nav { display: none; }

  @media (prefers-reduced-motion: reduce) {
    .nav-overlay {
      transition-duration: 0.01ms;
    }

    .nav-links {
      transition-duration: 0.01ms;
    }

    .nav-links > li {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .nav-links.is-open > li {
      transition-delay: 0s !important;
    }
  }

  .hero__split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    min-height: auto;
  }
  .hero__right { order: -1; height: 56vw; min-height: 280px; max-height: 420px; }
  .hero__title {
    font-size: clamp(40px, 11vw, 64px);
    max-width: none;
  }
  .hero__ctas .btn { padding: 14px 24px; font-size: 14px; }

  .excellence__head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
  }
  .excellence__split { gap: var(--space-6); }
  .excellence__fig {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: min(320px, 78vw);
    border-radius: var(--radius-card);
  }
  .pillar {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: var(--space-4);
    padding-block: var(--space-6);
  }
  .pillar:hover { padding-left: 0; }
  .pillar__title { font-size: 20px; }
  .pillar__body { font-size: 15px; }

  .products__grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-row: auto; }
  .product-card--row,
  .product-card--row.is-flipped { grid-template-columns: 1fr; }
  .product-card--row .product-card__media { order: -1; aspect-ratio: 16 / 10; min-height: 0; }

  .impact__panel { max-width: none; }

  .news__lead-title { font-size: 24px; }

  .footer__cols { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
