/* ============================================================
   YASH METALLICS — Light Industrial Design System
   Dominant: Brand blue #322F5A (body UI)
   Heroes: Near-black #0c0c0e + Red-Orange #EF4C36
   Accent: Red-Orange #EF4C36 (CTAs, chrome). Green #00A859 reserved.
   ============================================================ */

:root {
  /* Brand */
  --ink:        #322F5A;   /* brand blue — headings & strong text */
  --navy:       #322F5A;
  --navy-deep:  #28254A;   /* darker brand blue (btn-dark hover) */
  --navy-deeper:#1F1D3A;
  --blue:       #4A4680;   /* lifted brand blue for secondary highlights */
  --blue-soft:  #EEEFF4;
  --green:      #00A859;   /* brand green — reserved, unused in UI for now */
  --green-deep: #008F4B;
  --green-soft: #E6F7EE;
  --amber:      #EF4C36;   /* brand red-orange — CTAs, hero accents */
  --amber-deep: #D33E2B;   /* darker red-orange for button hover */
  --amber-soft: #FDEDEA;

  /* Surfaces (light) */
  --bg:         #f6f8fc;
  --surface:    #ffffff;
  --tint:       #eceff5;   /* alternating section */
  --tint2:      #f1f4f9;
  --line:       rgba(50,47,90,0.10);
  --line-strong:rgba(50,47,90,0.18);
  --photo-bg:   #e6e6e6;   /* studio backdrop in product photography */

  /* Text */
  --text:       #45506b;
  --text-dim:   #5c6884;
  --text-faint: #8a93ab;
  --on-dark:    #e9edf6;
  --on-dark-dim:#a9b2c9;

  /* Type */
  --display: 'Archivo', system-ui, sans-serif;
  --body:    'Barlow', system-ui, sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 6px;
  --page-hero-h: 560px;

  /* Light hero backdrop */
  --hero-bg: linear-gradient(180deg, #ffffff 0%, #eef2f9 100%);

  /* Hero dark surfaces — near-black (not indigo) */
  --hero-ink:       #0c0c0e;
  --hero-ink-soft:  #161618;
  --hero-scrim:     rgba(8, 8, 10, 0.94);
  --hero-scrim-mid: rgba(12, 12, 14, 0.72);
  --hero-scrim-soft:rgba(12, 12, 14, 0.38);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(50,47,90,0.06), 0 2px 8px rgba(50,47,90,0.05);
  --shadow-md: 0 6px 24px -8px rgba(50,47,90,0.14);
  --shadow-lg: 0 20px 50px -20px rgba(50,47,90,0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 8vw, 116px); position: relative; }
.section-sm { padding-block: clamp(44px, 6vw, 76px); }
.section--tint { background: var(--tint); border-block: 1px solid var(--line); }
.section--tint-top { background: var(--tint); border-top: 1px solid var(--line); }
.section--surface { background: var(--surface); }
.section--overflow { overflow: hidden; }

.split--text-first { grid-template-columns: 1.1fr 0.9fr; }
.split--media-first { grid-template-columns: 0.9fr 1.1fr; }
.split--balanced { grid-template-columns: 1.05fr 0.95fr; }
.split-copy .eyebrow + .h2 { margin-top: 18px; }
.split-copy .h2 + .lead { margin-top: 20px; }
.split-copy .lead + .lead,
.split-copy .lead + p { margin-top: 16px; }
.split-copy .check-list { margin-top: 24px; }
.split-copy .split-actions { margin-top: 30px; }

.card--pad { padding: 32px 30px; }
.card--pad-sm { padding: 30px 26px; }
.card--pad-md { padding: 30px; }
.card--pad-lg { padding: 34px 32px; }
.card--pad-body { padding: 28px 30px; }
.card--pad-link { padding: 24px 28px; }

.shead + .grid,
.shead + .cap-block,
.shead + .timeline,
.shead + .lead-profiles,
.shead + .ideology,
.shead + .roles,
.shead + .plant-grid,
.shead + .contact-map-wrap,
.shead + .csr-coverflow,
.shead + .award-orbit,
.shead + .revenue { margin-top: clamp(40px, 5vw, 48px); }
.grid--tight-top { margin-top: 46px; }

.stat-row { text-align: center; }

.revenue-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.revenue-switch__btn {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.revenue-switch__btn:hover {
  border-color: var(--ink);
}
.revenue-switch__btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.revenue-frame {
  padding: clamp(16px, 2.4vw, 28px);
}
.ph-chart.has-img {
  background: #fff;
  border: 0;
}
.ph-chart.has-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quote-banner-wrap {
  margin: 0;
}
.quote-banner-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--text-dim);
}
.quote-banner {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: none;
}
.quote-banner-wrap .quote-banner-title + .quote-banner { margin-top: 16px; }
.quote-banner-wrap .quote-banner + .quote-banner { margin-top: 10px; }
.quote-banner-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35em;
  line-height: 0;
  color: var(--amber);
  vertical-align: -0.12em;
}
.quote-banner-mark--close { margin-left: 0.04em; }
.quote-banner-wrap--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-banner-cite {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.quote-banner-cite::before {
  content: "— ";
  color: var(--amber);
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.enq-form-card { padding: clamp(26px, 4vw, 40px); }
.btn--full { width: 100%; justify-content: center; }
.btn--full-mt { width: 100%; justify-content: center; margin-top: 6px; }

.link-card-body { padding: 28px 30px; }
.link-card-body .h3 { margin-top: 14px; }
.link-card-body .text-dim { margin-top: 10px; }
.link-card-body .link-arrow { margin-top: 18px; }

/* Product cards */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.3,.7,.4,1);
  z-index: 2;
}
.product-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.product-card__media {
  position: relative;
  background: var(--photo-bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-card__media .ph {
  border: 0;
  background: var(--photo-bg);
}
.product-card__media .ph.has-img img {
  object-fit: contain;
  object-position: center;
  padding: 4%;
  transition: transform .5s cubic-bezier(.3,.7,.4,1);
}
.product-card:hover .product-card__media .ph.has-img img {
  transform: scale(1.04);
}
.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}
.product-card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__body .h3 { margin-top: 0; }
.product-card__body .text-dim {
  margin-top: 8px;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
}
.product-card__cta { margin-top: 20px; }
.product-card:hover .product-card__cta svg { transform: translateX(5px); }

/* Cards on tinted sections — solid white surface so they don't blend into --tint */
.section--tint .card,
.section--tint .product-card {
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(50,47,90,0.08), 0 8px 28px -6px rgba(50,47,90,0.14);
  border-color: var(--line-strong);
}
.section--tint .product-card__media {
  background: var(--photo-bg);
}
.section--tint .product-card__body {
  background: var(--surface);
}
.section--tint .card-hover:hover,
.section--tint .product-card:hover {
  box-shadow: 0 4px 12px rgba(50,47,90,0.10), 0 16px 40px -8px rgba(50,47,90,0.18);
}

/* Homepage product mosaic */
.product-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.product-mosaic > .product-card,
.product-mosaic > .product-mosaic__more {
  min-height: 0;
  height: 100%;
}
.product-mosaic__feature {
  grid-column: span 2;
  grid-row: span 2;
}
.product-mosaic__feature .product-card__media {
  flex: 1 1 auto;
  min-height: 0;
}
.product-mosaic__feature .product-card__media .ph {
  aspect-ratio: unset !important;
  height: 100%;
  min-height: 240px;
}
.product-mosaic__feature .product-card__media .ph.has-img img {
  height: 100%;
  width: 100%;
}
.product-mosaic__feature .product-card__body .h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.product-mosaic .product-card:not(.product-mosaic__feature) .product-card__body {
  padding: 16px 18px 18px;
  flex: 1 1 auto;
}
.product-mosaic .product-card:not(.product-mosaic__feature) .h3 {
  font-size: 1.05rem;
}
.product-mosaic .product-card:not(.product-mosaic__feature) .text-dim {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 6px;
}
.product-mosaic .product-card:not(.product-mosaic__feature) .product-card__cta {
  margin-top: auto;
  padding-top: 12px;
}
.product-mosaic__more {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-mosaic__more-visual {
  flex: 1 1 auto;
  min-height: 160px;
  background: var(--photo-bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
}
.product-mosaic__more-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.product-mosaic__more-list span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 5px 10px;
  border-radius: 100px;
}
.product-mosaic__more .product-card__body .tag {
  margin-bottom: 10px;
}
.product-mosaic__more:hover .product-card__cta svg {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-sun__core,
  .page-hero-sun__halo,
  .solar-atmosphere__ray,
  .solar-mote {
    animation: none;
  }
  .solar-atmosphere,
  .solar-mote { display: none; }
  .product-card::before { transition: none; }
  .product-card__media .ph.has-img img { transition: none; }
  .product-card:hover .product-card__media .ph.has-img img { transform: none; }
  .lead-profile__photo .ph.has-img img,
  .ph-team.has-img img {
    transition: none;
    transform: none;
  }
  .lead-profile.in .lead-profile__photo .ph.has-img img,
  .lead-profile:hover .lead-profile__photo .ph.has-img img,
  .reveal.in .ph-team.has-img img,
  .reveal.in:hover .ph-team.has-img img,
  .ph-team.has-img:hover img,
  .csr-tile .ph.has-img img,
  .csr-tile:hover .ph.has-img img,
  .csr-tile:focus-visible .ph.has-img img {
    transform: none;
  }
  .csr-tile::after,
  .csr-tile .ph.has-img img,
  .csr-tile__more,
  .csr-tile__scrim { transition: none; }
  .csr-tile__more {
    max-height: 8em;
    opacity: 1;
    transform: none;
  }
  .csr-coverflow.is-ready .csr-slide {
    transition: none;
  }
  .award-orbit__ring {
    transition: none;
  }
}

/* ---------- Typography (lighter) ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.018em; color: var(--ink); }
.h-display { font-size: clamp(2.3rem, 5.2vw, 4.4rem); font-weight: 600; letter-spacing: -0.028em; line-height: 1.03; }
.h1 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); font-weight: 700; }
.h2 { font-size: clamp(1.55rem, 2.8vw, 2.4rem); font-weight: 700; }
.h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; letter-spacing: -0.008em; }
p { text-wrap: pretty; }
.lead,
.split-copy p,
.who-copy p,
.shead p {
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1.62;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
}
.eyebrow::before {
  content: "\00BB";
  color: var(--amber);
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
}
.eyebrow.center { justify-content: center; }

.text-amber { color: var(--amber); }  /* red-orange highlight */
.text-blue  { color: var(--blue); }
.text-green { color: var(--green-deep); }
.text-dim   { color: var(--text-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em; white-space: nowrap;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.22s cubic-bezier(.3,.7,.4,1);
  position: relative;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.22s; }
.btn:hover svg { transform: translateX(4px); }
/* primary = red-orange */
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-deep); box-shadow: 0 10px 26px -10px rgba(239,76,54,0.55); transform: translateY(-2px); }
/* secondary = navy outline */
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
/* dark = navy solid */
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.link-arrow {
  font-family: var(--mono); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep);
  display: inline-flex; align-items: center; gap: 0.55em;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.25s; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Top bar (DARK — sparing) ---------- */
.topbar { background: var(--hero-ink); color: var(--on-dark-dim); font-size: 0.8rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; flex-wrap: wrap; }
.topbar-certs { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--on-dark-dim); }
.topbar-certs span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-certs span::before { content:""; width:5px; height:5px; background: var(--amber); border-radius:50%; }
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-right a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; white-space: nowrap; color: var(--on-dark); }
.topbar-right a:hover { color: var(--amber); }
.topbar-right svg { width: 14px; height: 14px; color: var(--amber); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a svg { width: 15px; height: 15px; color: var(--on-dark-dim); }
.topbar-social a:hover svg { color: var(--amber); }

/* ---------- Nav (LIGHT) ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links > li > a:hover { color: var(--amber-deep); }
.nav-links > li > a.active { color: var(--amber-deep); font-weight: 600; }
.nav-links > li > a.active::after { content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px; background: var(--amber); }
.nav-links .caret { width: 11px; height: 11px; opacity: 0.55; }
.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 252px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s; box-shadow: var(--shadow-lg);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 4px; font-size: 0.9rem; color: var(--ink); font-weight: 500; transition: all .16s; }
.dropdown a:hover { background: var(--amber-soft); color: var(--amber-deep); padding-left: 18px; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-quote {
  padding: 11px 18px;
  font-size: 0.88rem;
  min-height: 44px;
}
.nav-quote-short { display: none; }
.nav-quote svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }
.nav-toggle .icon-close { display: none; }
body.menu-open .nav-toggle .icon-menu { display: none; }
body.menu-open .nav-toggle .icon-close { display: block; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .lt-name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.logo-text .lt-sub { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.3em; color: var(--amber-deep); text-transform: uppercase; margin-top: 4px; }

/* ---------- Footer (DARK — sparing) ---------- */
.footer { background: var(--hero-ink); border-top: 3px solid var(--amber); padding-top: clamp(54px, 7vw, 86px); color: var(--on-dark-dim); }
.footer .logo-chip { background: #fff; padding: 12px 16px; border-radius: var(--radius); display: inline-block; }
.footer .logo-chip img { height: 42px; width: auto; }
.footer h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 1.65fr) minmax(0, 1.15fr); gap: 48px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--on-dark-dim); font-size: 0.95rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--amber); padding-left: 5px; }
.footer-links--products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(16px, 2.2vw, 28px);
  align-content: start;
}
.footer-links--products li { margin-bottom: 10px; }
.footer-links--products a {
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}
.footer p.fdesc { color: var(--on-dark-dim); font-size: 0.95rem; margin: 20px 0; max-width: 36ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.footer-social a:hover { background: var(--amber); border-color: var(--amber); }
.footer-social a:hover svg { color: #fff; }
.footer-social svg { width: 17px; height: 17px; color: var(--on-dark-dim); }
.footer-contact li { display: flex; gap: 12px; color: var(--on-dark-dim); font-size: 0.95rem; margin-bottom: 16px; align-items: flex-start; }
.footer-contact a:hover { color: var(--amber); }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: clamp(40px,6vw,64px); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--on-dark-dim); font-family: var(--mono); letter-spacing: 0.04em; }
.footer-dev a { color: var(--on-dark-dim); transition: color .2s; }
.footer-dev a:hover { color: var(--amber); }

.dnb-seal { display: flex; align-items: center; }
.dnb-seal--footer { margin-top: 22px; justify-content: flex-start; }
.dnb-seal-form { margin: 0; padding: 0; border: 0; }
.dnb-seal-stack {
  position: relative;
  width: 114px;
  height: 97px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  transition: opacity .2s;
}
.dnb-seal-stack:hover { opacity: 0.88; }
.dnb-seal-stack:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.dnb-seal-stack img {
  position: absolute;
  left: 0;
  top: 0;
  width: 114px;
  height: 97px;
  border: 0;
  display: block;
  pointer-events: none;
}

/* ---------- Cards & components (light) ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.card .tag + .h3 { margin-top: 14px; }
.card-hover { transition: transform .3s cubic-bezier(.3,.7,.4,1), box-shadow .3s, border-color .3s; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-deep); border: 1px solid rgba(239,76,54,0.35); background: var(--amber-soft); padding: 5px 11px; border-radius: 100px; display: inline-block; }
.tag--eco {
  color: var(--green-deep);
  border-color: rgba(0,168,89,0.35);
  background: var(--green-soft);
}

/* photo placeholder (light) */
.ph {
  background:
    linear-gradient(135deg, rgba(42,85,184,0.05), transparent 60%),
    repeating-linear-gradient(45deg, #e8ecf4 0 14px, #eef1f7 14px 28px);
  position: relative; display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); border: 1px solid var(--line); overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint); padding: 0 16px; text-align: center;
}
.ph-icon { position:absolute; opacity: 0.16; width: 44%; height: 44%; }
.ph.has-img { background: #e8ecf4; border-color: var(--line); }
.ph.has-img::after { display: none; }
.ph.has-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-focus-left.has-img img { object-position: 18% center; }
.ph-focus-drone.has-img img { object-position: center 42%; }
.ph-product.has-img {
  background: var(--photo-bg);
}
.ph-product.has-img img {
  object-fit: contain;
  object-position: center;
  padding: 4%;
}
.ph-product.has-img,
.ph-zoom.has-img {
  background: var(--photo-bg);
  border-color: var(--line);
}
/* Product detail — overview image in split layout */
.r-2col:not(.grid) .ph-product.has-img {
  background: var(--photo-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.section--tint .r-2col:not(.grid) .ph-product.has-img {
  background: var(--photo-bg);
  border-color: var(--line);
}
.r-2col:not(.grid) .ph-product.has-img img {
  object-fit: contain;
  object-position: center;
  padding: 6%;
}
.comp-grid .ph.has-img {
  background: var(--photo-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.comp-grid .ph.has-img img {
  object-fit: contain;
  object-position: center;
  padding: 4%;
}
.ph-product.has-img,
.ph-zoom.has-img,
[data-zoom-card] {
  cursor: zoom-in;
}
.ph-product.has-img img,
.ph-zoom.has-img img {
  object-fit: contain;
  object-position: center;
  padding: 4%;
  transition: transform .45s cubic-bezier(.3,.7,.4,1);
}
.ph-product.has-img:hover img,
.ph-zoom.has-img:hover img { transform: scale(1.04); }
[data-zoom-card]:hover .ph-product.has-img img,
[data-zoom-card]:hover .has-img img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .ph-product.has-img img,
  .ph-zoom.has-img img,
  .cert-card .ph.has-img img { transition: none; }
  .ph-product.has-img:hover img,
  .ph-zoom.has-img:hover img,
  [data-zoom-card]:hover .has-img img { transform: none; }
}

/* Image zoom modal */
body.zoom-open { overflow: hidden; }
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
}
.img-modal[hidden] { display: none; }
.img-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 74, 0.82);
  backdrop-filter: blur(4px);
}
.img-modal__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: img-modal-in .28s cubic-bezier(.3,.7,.4,1);
}
@keyframes img-modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.img-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.img-modal__close svg { width: 18px; height: 18px; }
.img-modal__close:hover {
  background: var(--amber-soft);
  transform: scale(1.05);
}
.img-modal__img {
  width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  background: var(--photo-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 4%;
}
.img-modal__caption {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 60ch;
}
@media (prefers-reduced-motion: reduce) {
  .img-modal__panel { animation: none; }
}
.lead-card .ph.has-img {
  min-height: 280px;
  background: linear-gradient(180deg, #eef1f6 0%, #e2e7ef 100%);
}
.lead-card .ph.has-img img {
  object-fit: contain;
  object-position: center bottom;
}
.cert-card .ph.has-img {
  min-height: 200px;
  background: #fff;
}
.cert-card .ph.has-img img {
  object-fit: contain;
  object-position: center top;
  transition: transform .45s cubic-bezier(.3,.7,.4,1);
}

/* stat */
.stat-num { font-family: var(--display); font-weight: 700; font-size: clamp(2.1rem, 3.8vw, 3rem); line-height: 0.98; color: var(--ink); letter-spacing: -0.025em; white-space: nowrap; }
.stat-num .suffix { color: var(--amber); font-size: 0.5em; font-weight: 700; letter-spacing: 0; margin-left: 0.04em; }
.stat-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-top: 12px; }

/* section heading block */
.shead { max-width: 720px; }
.shead.center { margin-inline: auto; text-align: center; }
.shead h2 { margin-top: 16px; }
.shead p { margin-top: 16px; }

/* dividers / texture */
.hairline { height: 1px; background: var(--line); border: 0; }
.grid-bg { background-image: linear-gradient(rgba(50,47,90,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(50,47,90,0.04) 1px, transparent 1px); background-size: 64px 64px; }
.glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.glow-amber { background: rgba(239,76,54,0.14); }
.glow-green { background: rgba(0,168,89,0.10); }
.glow-navy  { background: rgba(50,47,90,0.10); }
.glow-black { background: rgba(0,0,0,0.35); }

/* page hero (inner pages) — split: copy left, image right */
.page-hero {
  background: var(--hero-ink);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  height: var(--page-hero-h);
}
.page-hero-copy {
  position: relative;
  background: var(--hero-ink);
  display: flex;
  align-items: center;
  min-height: 0;
  padding-block: clamp(48px, 5vw, 64px);
  padding-inline: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter))) clamp(32px, 4vw, 48px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.page-hero-visual {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-hero-visual-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--hero-ink) 0%, rgba(12,12,14,0.62) 16%, transparent 36%);
  pointer-events: none;
}
.page-hero--fade-early .page-hero-visual-fade {
  background: linear-gradient(90deg, var(--hero-ink) 0%, rgba(12,12,14,0.68) 24%, transparent 48%);
}
.page-hero-visual .glow {
  z-index: 2;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}
.page-hero-inner .h1 { color: #fff; margin-top: 18px; }
.page-hero--title-oneline .page-hero-inner { max-width: min(760px, 100%); }
.page-hero--title-oneline .h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.35rem, 2.35vw, 2.35rem);
}
.page-hero-inner .lead { color: var(--on-dark-dim); margin-top: 20px; }
.page-hero .eyebrow { color: var(--amber); }
.page-hero .breadcrumb { color: var(--on-dark-dim); margin-bottom: 24px; }
.page-hero .breadcrumb a { color: var(--on-dark-dim); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero .breadcrumb-item:not(:last-child)::after { color: rgba(255,255,255,0.22); }
.page-hero .glow-amber { background: rgba(239,76,54,0.28); }
.page-hero .glow-black { background: rgba(0,0,0,0.45); }
.page-hero-sun {
  position: absolute;
  top: 9%;
  right: 14%;
  z-index: 3;
  width: clamp(56px, 7vw, 84px);
  height: clamp(56px, 7vw, 84px);
  pointer-events: none;
}
.page-hero-sun__core,
.page-hero-sun__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.page-hero-sun__core {
  inset: 28%;
  background: radial-gradient(circle at 38% 34%, #fffaf0 0%, #ffe08a 58%, #f0b429 100%);
  box-shadow: 0 0 18px 6px rgba(255, 214, 120, 0.45);
  animation: solar-pulse 8s ease-in-out infinite;
}
.page-hero-sun__halo {
  background: radial-gradient(circle, rgba(255, 220, 140, 0.5) 0%, transparent 68%);
  animation: solar-halo 9s ease-in-out infinite;
}
.page-hero-caption {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.breadcrumb { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 24px; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; list-style: none; margin: 0; padding: 0; }
.breadcrumb-item { display: flex; align-items: center; gap: 10px; }
.breadcrumb-item:not(:last-child)::after { content: '/'; color: var(--line-strong); }
.breadcrumb a:hover { color: var(--amber-deep); }
.breadcrumb .sep { color: var(--line-strong); }
.contact-map-wrap { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.contact-map { display: block; width: 100%; height: clamp(380px, 55vw, 540px); border: 0; }
.contact-map.leaflet-container { font-family: var(--body); background: var(--tint); }
.contact-map .leaflet-tile-pane img,
.contact-map .leaflet-marker-pane img { max-width: none; }
.contact-map-pin {
  width: 32px;
  height: 42px;
  margin-left: -16px;
  margin-top: -42px;
}
.contact-map-pin svg { display: block; width: 32px; height: 42px; filter: drop-shadow(0 4px 8px rgba(50,47,90,0.28)); }
.contact-map .leaflet-tooltip.contact-map-label {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
  padding: 5px 9px;
  white-space: nowrap;
}
.contact-map .leaflet-tooltip.contact-map-label::before { display: none; }
.contact-map .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 0;
}
.contact-map .leaflet-popup-content {
  margin: 14px 16px 12px;
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-dim);
  min-width: 180px;
}
.contact-map .leaflet-popup-content strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}
.contact-map .leaflet-popup-content strong + strong { margin-top: 4px; }
.contact-map .leaflet-popup-content p { margin: 8px 0 0; }
.contact-map .leaflet-popup-content a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
}
.contact-map .leaflet-popup-tip { box-shadow: none; }
.contact-map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255,255,255,0.85);
}

/* ---------- DARK section helper (sparing) ---------- */
.s-dark { background: var(--hero-ink); color: var(--on-dark); position: relative; }
.s-dark h1, .s-dark h2, .s-dark h3, .s-dark h4 { color: #fff; }
.s-dark .lead, .s-dark p { color: var(--on-dark-dim); }
.s-dark .text-dim { color: var(--on-dark-dim); }
.s-dark .eyebrow { color: var(--amber); }
.s-dark .stat-num { color: #fff; }
.s-dark .stat-label { color: var(--on-dark-dim); }
.s-dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.s-dark .ph { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.s-dark .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.28); color: #fff; }
.s-dark .btn-ghost:hover { background: #fff; color: var(--hero-ink); border-color:#fff; }

/* ---------- CTA band ---------- */
.cta-band {
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 96px);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 85% 75% at 42% 50%, #000 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 42% 50%, #000 15%, transparent 100%);
  pointer-events: none;
}
.cta-band-glow {
  width: 520px;
  height: 520px;
  pointer-events: none;
}
.cta-band-glow--amber { top: -200px; right: -140px; }
.cta-band-glow--black { bottom: -260px; left: -160px; }
.cta-band .glow-amber { background: rgba(239,76,54,0.22); }
.cta-band .glow-black { background: rgba(0,0,0,0.45); }
.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.cta-band-title {
  margin-top: 16px;
  max-width: 16ch;
}
.cta-band-lead {
  margin-top: 18px;
  max-width: 48ch;
}
.cta-band-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cta-band-pill {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 7px 14px;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.cta-band-panel {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.cta-band-panel-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}
.cta-band-contact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s;
}
.cta-band-contact:last-of-type { border-bottom: 0; }
a.cta-band-contact:hover { color: #fff; }
a.cta-band-contact:hover .cta-band-contact-val { color: var(--amber); }
a.cta-band-contact-val { text-decoration: none; color: #fff; }
a.cta-band-contact-val:hover { color: var(--amber); }
.cta-band-contact--static { cursor: default; }
.cta-band-contact-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(239,76,54,0.28);
  background: rgba(239,76,54,0.1);
  color: var(--amber);
}
.cta-band-contact-ico svg { width: 18px; height: 18px; display: block; }
.cta-band-contact-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cta-band-contact-key {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}
.cta-band-contact-val {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  transition: color .2s;
  word-break: break-word;
}
.cta-band-panel-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  color: var(--on-dark-dim);
  line-height: 1.5;
}

/* Why / feature icon boxes */
.why-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid rgba(239, 76, 54, 0.35);
  background: var(--amber-soft);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-ico svg {
  width: 26px;
  height: 26px;
  display: block;
}
.s-dark .why-ico {
  background: rgba(239, 76, 54, 0.12);
  border-color: rgba(239, 76, 54, 0.28);
}
.why-grid .card .h3 { margin-top: 0; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* utility */
.grid { display: grid; gap: 28px; }
.relative { position: relative; }
.z1 { position: relative; z-index: 1; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }

/* ---------- Concept switcher ---------- */
.concept-switch {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 500; display: flex; align-items: center; gap: 4px;
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; padding: 7px 8px 7px 16px;
  box-shadow: var(--shadow-lg);
}
.concept-switch .cs-label { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-dim); margin-right: 8px; }
.concept-switch a { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 0.82rem; color: var(--on-dark-dim); border: 1px solid transparent; transition: all .2s; }
.concept-switch a:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.concept-switch a.active { background: var(--amber); color: #fff; }

/* ---------- Client logos ---------- */
.clients-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 28px;
}
.clients-dark .clients-label { color: var(--on-dark-dim); }

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 45s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.clients-set {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-inline: clamp(18px, 3vw, 36px);
}
.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 100px;
}
.client-logo img {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .25s;
}
.client-logo:hover img {
  transform: scale(1.06);
}
.client-logo--wide {
  min-width: 200px;
}
.client-logo--wide img {
  max-height: 40px;
  max-width: 240px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 46px;
}
.clients-grid .client-logo {
  background: var(--surface);
  height: 88px;
  min-width: 0;
  padding: 18px 22px;
}
.clients-grid .client-logo img { max-height: 56px; max-width: 140px; }
.clients-grid .client-logo.client-logo--wide {
  padding-inline: 10px;
}
.clients-grid .client-logo.client-logo--wide img {
  max-height: 52px;
  max-width: none;
  width: 100%;
}
.s-dark .clients-grid {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.12);
}
.s-dark .clients-grid .client-logo { background: rgba(255,255,255,0.04); }

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Home hero (black + amber slider) ---------- */
.home-hero {
  --hero-autoplay: 3000ms;
  position: relative;
  background: var(--hero-ink);
  color: var(--on-dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: clamp(520px, 72vh, 720px);
}
.home-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-slide {
  --hero-zoom-from: 1.04;
  --hero-zoom-to: 1.12;
  --hero-focus: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
  overflow: hidden;
}
.home-hero-slide--pullback {
  --hero-zoom-from: 1;
  --hero-zoom-to: 1.04;
}
.home-hero-slide.is-active { opacity: 1; }
.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus);
  transform: scale(var(--hero-zoom-from));
  transition: transform 7s ease-out;
}
.home-hero-slide.is-active img {
  transform: scale(var(--hero-zoom-to));
}
.home-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    var(--hero-scrim) 0%,
    rgba(12, 12, 14, 0.90) 32%,
    var(--hero-scrim-mid) 58%,
    var(--hero-scrim-soft) 100%
  );
  pointer-events: none;
}
.home-hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber) 42%, rgba(239,76,54,0.35) 72%, transparent 100%);
  opacity: 1;
  z-index: 3;
}
/* Soft amber light sweep — continuous atmosphere */
.home-hero-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(239,76,54,0.07) 50%,
    transparent 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: home-hero-scan 9s ease-in-out infinite;
}
/* Precision corner marks — draw in on each slide */
.home-hero-marks {
  position: absolute;
  inset: clamp(28px, 4vw, 48px);
  z-index: 2;
  pointer-events: none;
}
.home-hero-mark {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  border-color: var(--amber);
  border-style: solid;
  border-width: 0;
}
.home-hero-mark--tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; transform: translate(-8px, -8px); }
.home-hero-mark--tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; transform: translate(8px, -8px); }
.home-hero-mark--bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; transform: translate(-8px, 8px); }
.home-hero-mark--br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; transform: translate(8px, 8px); }
.home-hero-marks.is-animating .home-hero-mark {
  opacity: 0.85;
  transform: translate(0, 0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.home-hero-marks.is-animating .home-hero-mark--tl { transition-delay: 0.05s; }
.home-hero-marks.is-animating .home-hero-mark--tr { transition-delay: 0.14s; }
.home-hero-marks.is-animating .home-hero-mark--bl { transition-delay: 0.22s; }
.home-hero-marks.is-animating .home-hero-mark--br { transition-delay: 0.30s; }
.home-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 10vw, 132px) clamp(36px, 5vw, 56px);
}
.home-hero-copy {
  width: 100%;
  position: relative;
}
.home-hero-copy-slides {
  position: relative;
}
.home-hero-copy-panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.home-hero-copy-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-hero-copy-panel .eyebrow,
.home-hero-copy-panel .lead,
.home-hero-copy-panel .home-hero-list,
.home-hero-copy-panel .home-hero-groups {
  opacity: 0;
  transform: translateY(18px);
}
.home-hero-copy-panel.is-active .eyebrow,
.home-hero-copy-panel.is-active .lead,
.home-hero-copy-panel.is-active .home-hero-list,
.home-hero-copy-panel.is-active .home-hero-groups {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.home-hero-copy-panel.is-active .eyebrow { transition-delay: 0.05s; }
.home-hero-copy-panel.is-active .lead { transition-delay: 0.26s; }
.home-hero-copy-panel.is-active .home-hero-list,
.home-hero-copy-panel.is-active .home-hero-groups { transition-delay: 0.34s; }
.home-hero-heading {
  min-height: 1.15em;
}
.home-hero-heading-text .home-hero-caret {
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  margin-left: 0.08em;
  background: var(--amber);
  vertical-align: -0.05em;
  animation: home-hero-caret 0.7s steps(1) infinite;
}
.home-hero-heading.is-typed .home-hero-caret { display: none; }
.home-hero p.home-hero-heading {
  /* Match h1 display metrics when non-primary slides use <p> */
  margin: 0;
}
.home-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: home-hero-rise 0.6s ease 0.45s forwards;
}
.home-hero-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  max-width: 40ch;
  display: grid;
  gap: clamp(16px, 1.6vw, 22px);
}
.home-hero-list--cols {
  max-width: min(54rem, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px) clamp(40px, 5vw, 72px);
}
.home-hero-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--on-dark);
}
.home-hero-list li::before {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-top: 0.48em;
  background: var(--amber);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.home-hero-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px) clamp(48px, 6vw, 80px);
  margin-top: 28px;
  max-width: min(56rem, 100%);
}
.home-hero-groups__label {
  font-family: var(--mono);
  font-size: clamp(0.72rem, 0.85vw, 0.84rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.home-hero-groups .home-hero-list {
  margin-top: 0;
  max-width: none;
}
.home-hero .h-display,
.home-hero .h1 { color: #fff; }
.home-hero .lead { color: var(--on-dark-dim); }
.home-hero .eyebrow { color: var(--amber); }
.home-hero .glow-amber { background: rgba(239,76,54,0.22); }
.home-hero .glow-green { background: rgba(0,168,89,0.22); }
.home-hero .glow-black { background: rgba(0,0,0,0.40); }
.home-hero .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.home-hero .btn-ghost:hover {
  background: #fff;
  color: var(--hero-ink);
  border-color: #fff;
}
.home-hero-dots {
  display: flex;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 40px);
}
.home-hero-dot {
  position: relative;
  width: 36px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,0.22);
  overflow: hidden;
  transition: background .25s, transform .25s;
}
.home-hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.home-hero-dot:hover,
.home-hero-dot:focus-visible {
  background: rgba(255,255,255,0.5);
  outline: none;
}
.home-hero-dot.is-active {
  background: rgba(255,255,255,0.22);
  transform: scaleX(1.08);
}
.home-hero-dot.is-active.is-progressing::after {
  animation: home-hero-dot-progress var(--hero-autoplay) linear forwards;
}
.home-hero:hover .home-hero-dot.is-active.is-progressing::after,
.home-hero:focus-within .home-hero-dot.is-active.is-progressing::after {
  animation-play-state: paused;
}
@keyframes home-hero-dot-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes home-hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes home-hero-scan {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}
@keyframes home-hero-caret {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-slide,
  .home-hero-copy-panel,
  .home-hero-slide img,
  .home-hero-mark,
  .home-hero-scan,
  .home-hero-copy-panel .eyebrow,
  .home-hero-copy-panel .lead,
  .home-hero-copy-panel .home-hero-list,
  .home-hero-copy-panel .home-hero-groups,
  .home-hero-actions { transition: none !important; animation: none !important; transform: none !important; opacity: 1 !important; }
  .home-hero-copy-panel:not(.is-active) { opacity: 0 !important; }
  .home-hero-mark { opacity: 0.7; }
  .home-hero-scan { display: none; }
  .home-hero-heading-text .home-hero-caret { display: none; }
  .home-hero-dot.is-active.is-progressing::after { animation: none; transform: scaleX(1); }
  .home-hero-slide img { transform: none; }
}

@media (max-width: 760px) {
  .home-hero-scrim {
    background: linear-gradient(
      180deg,
      var(--hero-scrim) 0%,
      rgba(12, 12, 14, 0.88) 42%,
      rgba(12, 12, 14, 0.78) 100%
    );
  }
  .home-hero { min-height: auto; }
  .home-hero-list--cols,
  .home-hero-groups { grid-template-columns: 1fr; max-width: 40ch; }
  .home-hero-marks { inset: 18px; }
  .home-hero-mark { width: 20px; height: 20px; }
}

/* ---------- Grid layouts ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-stats > div {
  background: var(--surface);
  padding: clamp(20px, 4vw, 28px) clamp(18px, 3vw, 26px);
}
.home-hero-stats {
  margin-top: clamp(36px, 5vw, 60px);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -10px;
  padding: clamp(16px, 3vw, 22px) clamp(18px, 3vw, 26px);
  background: var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  color: #fff;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

.cap-grid { grid-template-columns: repeat(4, 1fr); }
.cap-block + .cap-block { margin-top: 56px; }
.cap-block .h3 { margin: 0; }
.cap-block .grid { margin-top: 22px; }
.comp-grid { grid-template-columns: repeat(4, 1fr); }
.cert-grid { grid-template-columns: repeat(4, 1fr); }
.div-grid { grid-template-columns: 1fr 1fr; }
.group-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.group-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.group-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 24px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.group-card__logo img {
  max-width: min(100%, 280px);
  max-height: 108px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.group-card__body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: linear-gradient(180deg, var(--bg) 0%, var(--tint2) 100%);
}
.group-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.group-card__since {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.group-card__sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue, #4A4680);
  margin-top: -2px;
}
.group-card .link-arrow {
  margin-top: auto;
  padding-top: 8px;
}
.why-grid {
  grid-template-columns: repeat(12, 1fr) !important;
}
.why-grid > :nth-child(-n+4) { grid-column: span 3; }
.why-grid > :nth-child(n+5) { grid-column: span 4; }
.lead-grid { grid-template-columns: repeat(3, 1fr); }
.proc-grid { grid-template-columns: repeat(3, 1fr); }
.life-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, 34vw);
  grid-auto-flow: dense;
  gap: 12px;
}
.life-mosaic > .ph {
  min-height: 0;
  height: 100%;
  border-radius: var(--radius);
}
.life-mosaic .ph.has-img {
  display: block;
}
.life-mosaic .ph.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.life-mosaic .is-tall { grid-row: span 2; }
.life-mosaic .is-wide {
  grid-column: span 2;
  min-height: 52vw;
}
@media (min-width: 761px) {
  .life-mosaic {
    grid-auto-rows: minmax(200px, 26vw);
    gap: 16px;
  }
  .life-mosaic .is-wide { min-height: 36vw; }
}
@media (min-width: 981px) {
  .life-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(280px, 26vw);
    gap: 20px;
  }
  .life-mosaic > .ph { grid-column: span 2; grid-row: auto; }
  .life-mosaic > .ph:nth-child(n+4),
  .life-mosaic .is-wide {
    grid-column: span 3;
    min-height: 0;
  }
}

.r-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.r-2col.start { align-items: start; }
.r-3col { grid-template-columns: repeat(3, 1fr); }
.r-4col { grid-template-columns: repeat(4, 1fr); }

.cap-v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink);
  margin-top: 14px;
  line-height: 1.35;
}
.cap-note,
.cap-v .cap-note {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 10px;
  line-height: 1.45;
}
.cap-v .cap-note--inline {
  display: inline;
  margin-top: 0;
  margin-left: 0.35em;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: baseline;
}
.spec-v {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--ink);
  margin-top: 18px;
  line-height: 1.15;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-grid > div {
  background: var(--surface);
  padding: clamp(16px, 3vw, 22px) clamp(18px, 3vw, 24px);
}

/* Timeline — alternating journey */
.timeline {
  --tl-node: 72px;
  --tl-gap: 28px;
  position: relative;
  padding-block: 8px;
}
.tl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.tl-spine {
  position: absolute;
  left: 50%;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: var(--line-strong);
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 0;
  overflow: hidden;
}
.tl-spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}
.tl-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--tl-node) minmax(0, 1fr);
  column-gap: var(--tl-gap);
  align-items: start;
  position: relative;
  z-index: 1;
}
.tl-node {
  grid-column: 2;
  grid-row: 1;
  width: var(--tl-node);
  height: var(--tl-node);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  background: var(--surface);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 6px var(--bg), var(--shadow-sm);
  color: var(--amber-deep);
  position: relative;
  z-index: 2;
  transform: scale(0.72);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), opacity .45s ease, background .35s ease, color .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tl-node::before {
  content: '';
  position: absolute;
  top: 50%;
  width: var(--tl-gap);
  height: 2px;
  background: var(--line-strong);
  margin-top: -1px;
  z-index: 0;
}
.tl-item:nth-child(odd) .tl-node::before { right: 100%; }
.tl-item:nth-child(even) .tl-node::before { left: 100%; }
.tl-item.is-in .tl-node::before { background: var(--amber); }
.tl-node::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}
.tl-year {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.tl-card {
  position: relative;
  grid-row: 1;
  max-width: 440px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px 22px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.tl-card h3 { margin-bottom: 8px; }
.tl-item:nth-child(odd) .tl-card {
  grid-column: 1;
  justify-self: end;
  transform: translateX(-36px);
}
.tl-item:nth-child(even) .tl-card {
  grid-column: 3;
  justify-self: start;
  transform: translateX(36px);
}
.tl-card::before {
  content: '';
  position: absolute;
  top: calc(var(--tl-node) / 2 - 6px);
  width: 12px;
  height: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  transform: rotate(45deg);
  z-index: 1;
}
.tl-item:nth-child(odd) .tl-card::before {
  right: -7px;
  border-left: 0;
  border-bottom: 0;
}
.tl-item:nth-child(even) .tl-card::before {
  left: -7px;
  border-right: 0;
  border-top: 0;
}
.tl-item.is-in .tl-card,
.tl-item.is-in:nth-child(odd) .tl-card,
.tl-item.is-in:nth-child(even) .tl-card {
  opacity: 1;
  transform: none;
  border-color: rgba(50, 47, 90, 0.14);
}
.tl-item.is-in .tl-node {
  opacity: 1;
  transform: scale(1);
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  box-shadow: 0 0 0 6px var(--bg), 0 8px 18px -8px rgba(239, 76, 54, 0.55);
}
.tl-item.is-in .tl-node::after {
  animation: tl-pulse 1.15s ease-out 1;
}
.tl-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(50, 47, 90, 0.18);
}
.tl-close {
  margin-top: 40px;
  max-width: 720px;
}

@keyframes tl-pulse {
  0% { opacity: 0.55; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.35); }
}

@media (prefers-reduced-motion: reduce) {
  .tl-spine-fill {
    transform: none;
    will-change: auto;
  }
  .tl-node,
  .tl-card,
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tl-item.is-in .tl-node::after { animation: none; }
}

.group-lockup {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.group-lockup__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.group-lockup__mark img {
  width: min(100%, 260px);
  height: auto;
}
.group-lockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.group-lockup__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 22px 18px;
  background: var(--tint2);
}
.group-lockup__cell img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.who {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.who-copy .eyebrow + .h2 { margin-top: 18px; }
.who-copy .h2 + p { margin-top: 20px; }
.who-copy p + p { margin-top: 14px; }
.who-aside {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.who-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.who-metrics li {
  background: var(--tint2);
  padding: 18px 16px;
}
.who-metrics strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.who-metrics span {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.4;
}

.ideology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ideology-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  min-height: 240px;
  box-shadow: var(--shadow-sm);
}
.ideology-panel p {
  margin-top: 18px;
  max-width: 38ch;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.ideology-mark {
  position: absolute;
  right: -6px;
  bottom: -14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.06;
  pointer-events: none;
}
.ideology-values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.ideology-values li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* About page components */
.value-list li {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.value-list li:first-child { border-top: 0; }
.value-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.lead-card { overflow: hidden; }
.award-card-body { padding: 22px 24px 26px; }
.award-card-body .text-dim { margin-top: 12px; font-size: 0.95rem; }
.award-card-visual {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 80% at 80% 20%, rgba(0,168,89,0.18), transparent 55%),
    linear-gradient(160deg, #e8f6ee 0%, #d3ecdd 100%);
}
.award-eco-mark {
  text-align: center;
  color: var(--green-deep);
}
.award-eco-mark__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.award-eco-mark__title {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.award-orbit {
  outline: none;
  padding-top: 24px;
  scroll-margin-top: 96px;
}
.award-orbit:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}
.award-orbit__scene {
  position: relative;
  z-index: 0;
  height: clamp(440px, 58vw, 560px);
  perspective: 1800px;
  perspective-origin: 50% 50%;
  touch-action: pan-y;
}
.award-orbit__scene::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: min(420px, 70%);
  height: 28px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(50,47,90,0.16), transparent 70%);
  pointer-events: none;
}
.award-orbit__ring {
  position: relative;
  width: min(280px, 72%);
  height: 100%;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateY(var(--turn, 0deg));
  transition: transform .85s cubic-bezier(.2,.7,.3,1);
}
.award-orbit:not(.is-ready):not(.is-flat) .award-orbit__ring {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  width: auto;
  transform: none;
  scrollbar-width: none;
}
.award-orbit:not(.is-ready) .award-orbit__plaque {
  position: relative;
  flex: 0 0 min(280px, 78%);
  inset: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
}
.award-orbit.is-dragging .award-orbit__ring {
  transition-duration: .18s;
}
.award-orbit.is-ready .award-orbit__plaque {
  position: absolute;
  inset: auto 0 88px;
  top: 72px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  box-shadow:
    0 0 0 1px rgba(50,47,90,0.08),
    0 16px 36px -18px rgba(50,47,90,0.28);
  transform: rotateY(calc(var(--i) * var(--step, 60deg))) translateZ(var(--radius, 340px));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  cursor: pointer;
}
.award-orbit__plaque.is-active {
  box-shadow:
    0 0 0 1px rgba(50,47,90,0.12),
    0 22px 48px -16px rgba(50,47,90,0.36);
}
.award-orbit__plaque .ph,
.award-orbit__plaque .award-card-visual {
  flex: 1;
  min-height: 0;
  border: 0;
  border-radius: 0;
}
.award-orbit__plaque .ph.has-img {
  background: linear-gradient(180deg, #eef1f6 0%, #e2e7ef 100%);
}
.award-orbit__plaque .ph.has-img img {
  object-fit: contain;
  object-position: center;
  padding: 16px 18px 8px;
}
.award-orbit__plaque--badge .ph.has-img {
  background: linear-gradient(180deg, #f4f6f8 0%, #e8edf3 100%);
}
.award-orbit__plaque--badge .ph.has-img img {
  padding: 22px 28px 10px;
}
.award-orbit__plaque-copy {
  padding: 14px 16px 18px;
  text-align: center;
}
.award-orbit__plaque-title {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
  text-align: center;
}
.award-orbit__plaque-text {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-dim);
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.award-orbit__ui {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.award-orbit.is-ready .award-orbit__ui {
  display: flex;
}
.award-orbit.is-flat .award-orbit__scene {
  height: auto;
  perspective: none;
}
.award-orbit.is-flat .award-orbit__scene::after { display: none; }
.award-orbit.is-flat .award-orbit__ring {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: auto;
  height: auto;
  transform: none;
  transition: none;
}
.award-orbit.is-flat .award-orbit__plaque {
  position: relative;
  inset: auto;
  top: auto;
  transform: none;
  backface-visibility: visible;
}
.award-orbit.is-flat .award-orbit__ui { display: none; }

/* Sustainability */
.solar-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.solar-atmosphere__ray {
  position: absolute;
  width: min(52vw, 640px);
  height: 160%;
  left: 18%;
  top: -30%;
  background: linear-gradient(108deg, transparent 0%, rgba(255, 208, 96, 0.09) 46%, transparent 72%);
  animation: solar-ray-drift 32s ease-in-out infinite;
}
.solar-mote {
  position: absolute;
  bottom: -8px;
  left: calc(6% + var(--i) * 6.4%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 196, 70, 0.55);
  box-shadow: 0 0 8px 2px rgba(255, 210, 110, 0.28);
  animation: solar-mote-rise calc(16s + var(--i) * 1.1s) linear infinite;
  animation-delay: calc(var(--i) * -1.8s);
  opacity: 0;
}
.solar-mote:nth-child(odd) { width: 3px; height: 3px; }
.solar-band-copy .lead {
  max-width: 46ch;
  margin-top: 18px;
}
.solar-band-figure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
  color: var(--ink);
  line-height: 0.9;
}
.solar-band-figure__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  letter-spacing: -0.05em;
}
.solar-band-figure__unit {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.03em;
  color: var(--green-deep);
}
.solar-sites {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.solar-site {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-sm);
}
.solar-site__cap {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.solar-site__code {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 8px;
}
.solar-site__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.solar-site__meta,
.solar-site__note {
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-top: 6px;
}
.eco-stat .stat-num { color: var(--green-deep); }
.eco-card .text-dim { margin-top: 10px; }
@keyframes solar-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes solar-halo {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes solar-ray-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(12vw, 8vh, 0) rotate(6deg); }
}
@keyframes solar-mote-rise {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  12% { opacity: 0.7; }
  100% { transform: translate3d(18px, calc(-100vh - 40px), 0); opacity: 0; }
}

a.csr-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.csr-card .ph.has-img img,
.csr-gallery .ph.has-img img {
  object-fit: cover;
  object-position: center;
}

.csr-coverflow {
  outline: none;
  overflow: hidden;
}
.csr-coverflow:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}
.csr-coverflow__viewport {
  position: relative;
  height: clamp(340px, 48vw, 500px);
  overflow: hidden;
  touch-action: pan-y;
}
.csr-coverflow.is-ready .csr-coverflow__viewport {
  perspective: 1600px;
  perspective-origin: 50% 48%;
}
.csr-coverflow__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  height: 100%;
}
.csr-coverflow__track::-webkit-scrollbar { display: none; }
.csr-slide {
  flex: 0 0 min(560px, 82%);
  height: 100%;
  scroll-snap-align: center;
}
.csr-coverflow.is-ready .csr-coverflow__track {
  display: block;
  overflow: visible;
  transform-style: preserve-3d;
  position: relative;
  height: 100%;
}
.csr-coverflow.is-ready .csr-slide {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  flex: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform .7s cubic-bezier(.2,.7,.3,1), opacity .5s ease;
}
.csr-coverflow.is-ready .csr-coverflow__viewport.is-dragging .csr-slide {
  transition-duration: .18s;
}
.csr-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 0;
  background: var(--hero-ink);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.16),
    0 10px 28px -12px rgba(12,12,14,0.28);
}
.csr-slide.is-active .csr-tile {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.22),
    0 18px 44px -16px rgba(12,12,14,0.38);
}
.csr-tile .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: var(--hero-ink);
}
.csr-tile .ph.has-img img {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  transform-origin: center;
  transition: transform 1.15s cubic-bezier(.2,.7,.3,1);
}
.csr-slide.is-active .csr-tile:hover .ph.has-img img,
.csr-slide.is-active .csr-tile:focus-visible .ph.has-img img {
  transform: scale(1.12);
}
.csr-tile__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 28%, rgba(12,12,14,0.42) 68%, rgba(12,12,14,0.88) 100%);
  transition: background .45s ease;
  pointer-events: none;
}
.csr-slide.is-active .csr-tile:hover .csr-tile__scrim,
.csr-slide.is-active .csr-tile:focus-visible .csr-tile__scrim {
  background: linear-gradient(180deg, rgba(12,12,14,0.14) 12%, rgba(12,12,14,0.55) 58%, rgba(12,12,14,0.94) 100%);
}
.csr-tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.csr-tile__body .h3 {
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.csr-slide.is-active .csr-tile__body {
  padding: 28px 30px 30px;
}
.csr-slide.is-active .h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}
.csr-tile__more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: max-height .45s cubic-bezier(.2,.7,.3,1), opacity .35s ease, transform .45s cubic-bezier(.2,.7,.3,1);
}
.csr-slide.is-active .csr-tile__more {
  max-height: 8em;
  opacity: 1;
  transform: none;
}
.csr-tile__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
  color: var(--on-dark);
  font-size: 0.95rem;
  line-height: 1.45;
}
.csr-slide.is-active .csr-tile__desc {
  -webkit-line-clamp: 3;
  font-size: 1.02rem;
  max-width: 42ch;
}
.csr-tile .link-arrow {
  color: #fff;
  margin-top: 2px;
}
.csr-tile .link-arrow svg {
  color: var(--amber);
}
.csr-tile::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.3,.7,.4,1);
  z-index: 3;
}
.csr-slide.is-active .csr-tile::after {
  transform: scaleX(1);
}
.csr-tile:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.csr-coverflow__ui {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 28px;
}
.csr-coverflow.is-ready .csr-coverflow__ui {
  display: flex;
}
.csr-coverflow__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.csr-coverflow__nav svg {
  width: 18px;
  height: 18px;
}
.csr-coverflow__nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.csr-coverflow__nav:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.csr-coverflow__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.csr-coverflow__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(50,47,90,0.22);
  transition: transform .25s, background .25s, width .25s;
}
.csr-coverflow__dot.is-active {
  width: 22px;
  border-radius: 99px;
  background: var(--amber);
}
.csr-coverflow__dot:hover,
.csr-coverflow__dot:focus-visible {
  background: var(--ink);
}
.csr-coverflow__dot:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.csr-coverflow__count {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
  min-width: 4.5em;
}
@media (hover: none) {
  .csr-slide.is-active .csr-tile__more {
    max-height: 8em;
    opacity: 1;
    transform: none;
  }
}
.lead-role {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-top: 8px;
}
.lead-profiles {
  display: grid;
  gap: 20px;
}
.lead-profile {
  display: grid;
  grid-template-columns: minmax(240px, 32%) 1fr;
  align-items: stretch;
  overflow: hidden;
}
.lead-profile--reverse {
  grid-template-columns: 1fr minmax(240px, 32%);
}
.lead-profile--reverse .lead-profile__photo { order: 2; }
.lead-profile__photo {
  min-width: 0;
}
.lead-profile__photo .ph {
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.lead-profile__photo .ph.has-img img {
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.045);
  transform-origin: center 20%;
  transition: transform 1.15s cubic-bezier(.2,.7,.3,1);
}
.lead-profile.in .lead-profile__photo .ph.has-img img {
  transform: scale(1);
}
.lead-profile:hover .lead-profile__photo .ph.has-img img {
  transform: scale(1.04);
}
.lead-profile__photo--cutout .ph.has-img {
  background: #fff;
}
.lead-profile__photo--cutout .ph.has-img img {
  object-fit: contain;
  object-position: center 70%;
  transform-origin: center bottom;
}
.ph-team.has-img {
  overflow: hidden;
}
.ph-team.has-img img {
  transform: scale(1.03);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.reveal.in .ph-team.has-img img {
  transform: scale(1);
}
.reveal.in:hover .ph-team.has-img img,
.ph-team.has-img:hover img {
  transform: scale(1.035);
}
.lead-profile__copy {
  padding: clamp(24px, 3.2vw, 40px) clamp(24px, 3.6vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-profile__copy .lead-role { margin-top: 10px; }
.lead-profile__copy .text-dim { margin-top: 14px; font-size: 0.98rem; }
.lead-profile__copy .text-dim + .text-dim { margin-top: 10px; }
.cert-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.cert-co {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
}
.cert-card .cert-meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  color: var(--ink);
}
.cert-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cert-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
}
.cert-name {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-dim);
}
.cert-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-badge svg { width: 13px; height: 13px; }

/* Foundry / forms */
.proc-no {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--amber-deep);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(239,76,54,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23EF4C36' stroke-width='3'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Career / contact */
.role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 4vw, 26px) clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 14px;
  transition: border-color .25s, transform .25s;
}
.role-row:hover {
  border-color: rgba(239,76,54,0.45);
  transform: translateX(4px);
}
.role-row svg {
  width: 24px;
  height: 24px;
  color: var(--amber-deep);
  flex-shrink: 0;
}
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.plant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.plant-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.plant-card.is-active {
  border-color: rgba(239,76,54,0.55);
  box-shadow: var(--shadow-md);
}
.plant-card__name { font-size: 1.12rem; }
.plant-card__addr { margin-top: 2px; }
.plant-card__maps { margin-top: 8px; }
.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.c-ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239,76,54,0.06);
  color: var(--amber);
}
.c-ico svg { width: 22px; height: 22px; }

section[id] { scroll-margin-top: 88px; }

/* Enquiry form */
.enq-steps { margin-top: 22px; display: flex; flex-direction: column; gap: 22px; }
.enq-steps li { display: flex; gap: 16px; align-items: flex-start; }
.enq-steps li span {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(239,76,54,0.12);
  color: var(--amber-deep);
  font-family: var(--display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enq-steps strong { color: var(--ink); font-family: var(--display); }
.enq-steps p { margin-top: 3px; font-size: 0.94rem; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber-deep);
  box-shadow: 0 0 0 3px rgba(239,76,54,0.14);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--amber); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a6aec5' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.form-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(239,76,54,0.4);
  background: rgba(239,76,54,0.1);
  color: var(--amber);
  border-radius: var(--radius);
}
.form-success svg { width: 26px; height: 26px; flex-shrink: 0; }
.form-success.show { display: flex; }
.form-success strong { color: var(--ink); font-family: var(--display); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .contact-map .leaflet-tooltip.contact-map-label { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-col--products { grid-column: 1 / -1; }
  .footer-links--products { max-width: 36rem; }
  .nav-links, .topbar-certs { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .nav-quote { padding: 10px 16px; font-size: 0.84rem; }
  .nav-quote-long { display: none; }
  .nav-quote-short { display: inline; }
  .lead-profile {
    grid-template-columns: minmax(200px, 36%) 1fr;
  }
  .lead-profile--reverse {
    grid-template-columns: 1fr minmax(200px, 36%);
  }
  .clients-grid { grid-template-columns: repeat(5, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid > * { grid-column: auto; }
  .why-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 28px) / 2);
    justify-self: center;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 320px;
    height: auto;
  }
  .page-hero-copy {
    padding-inline: var(--gutter);
    padding-block: clamp(40px, 8vw, 56px);
  }
  .page-hero-inner { max-width: none; }
  .page-hero-visual-fade {
    background: linear-gradient(180deg, var(--hero-ink) 0%, rgba(12,12,14,0.40) 18%, transparent 36%);
  }
  .page-hero--fade-early .page-hero-visual-fade {
    background: linear-gradient(180deg, var(--hero-ink) 0%, rgba(12,12,14,0.48) 26%, transparent 48%);
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .who { grid-template-columns: 1fr; }
  .who-aside { max-width: 520px; }
  .cap-grid, .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .product-mosaic { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .product-mosaic__feature {
    grid-column: span 2;
    grid-row: auto;
  }
  .product-mosaic__feature .product-card__media .ph {
    aspect-ratio: 16 / 9 !important;
    height: auto;
    min-height: 220px;
  }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .div-grid { grid-template-columns: 1fr; }
  .group-grid { grid-template-columns: 1fr; }
  .contact-meta { grid-template-columns: 1fr; }
  .r-4col { grid-template-columns: repeat(2, 1fr); }
  .lead-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .r-3col { grid-template-columns: repeat(2, 1fr); }
  .award-orbit__scene {
    height: clamp(400px, 62vw, 500px);
  }
  .award-orbit.is-ready .award-orbit__plaque {
    top: 60px;
    bottom: 72px;
  }
  .award-orbit.is-flat .award-orbit__ring {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-title { max-width: none; }
}
@media (max-width: 760px) {
  .page-hero--title-oneline .h1 {
    white-space: normal;
    font-size: clamp(1.7rem, 6.4vw, 2.2rem);
  }
  .plant-grid { grid-template-columns: 1fr; }
  .r-2col { grid-template-columns: 1fr !important; align-items: stretch; }
  .r-3col { grid-template-columns: 1fr !important; }
  .csr-coverflow__viewport {
    height: clamp(280px, 72vw, 380px);
  }
  .csr-slide.is-active .csr-tile__body {
    padding: 18px 20px 20px;
  }
  .award-orbit__scene {
    height: clamp(380px, 96vw, 460px);
  }
  .award-orbit.is-ready .award-orbit__plaque {
    top: 56px;
    bottom: 64px;
  }
  .award-orbit__plaque-copy {
    padding: 12px 12px 14px;
  }
  .award-orbit__plaque-title {
    font-size: 0.9rem;
  }
  .award-orbit__plaque-text {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
  }
  .award-orbit__ui {
    margin-top: 4px;
  }
  .award-orbit.is-flat .award-orbit__ring {
    grid-template-columns: 1fr;
  }
  .why-grid > :last-child {
    grid-column: auto;
    width: auto;
  }
  .timeline {
    --tl-node: 56px;
    --tl-gap: 18px;
  }
  .tl-item {
    grid-template-columns: var(--tl-node) minmax(0, 1fr);
    column-gap: var(--tl-gap);
  }
  .tl-spine {
    left: calc(var(--tl-node) / 2);
    transform: none;
  }
  .tl-node {
    grid-column: 1;
  }
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card {
    grid-column: 2;
    justify-self: stretch;
    max-width: none;
    text-align: left;
    transform: translateY(24px);
  }
  .tl-item:nth-child(odd) .tl-node::before,
  .tl-item:nth-child(even) .tl-node::before {
    left: 100%;
    right: auto;
  }
  .tl-item:nth-child(odd) .tl-card::before,
  .tl-item:nth-child(even) .tl-card::before {
    left: -7px;
    right: auto;
    border-right: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .tl-year { font-size: 0.78rem; }
  .tl-item.is-in .tl-card,
  .tl-item.is-in:nth-child(odd) .tl-card,
  .tl-item.is-in:nth-child(even) .tl-card {
    transform: none;
  }
  .ideology { grid-template-columns: 1fr; }
  .ideology-values { grid-template-columns: repeat(2, 1fr); }
  .solar-sites { grid-template-columns: 1fr; }
  .lead-profile,
  .lead-profile--reverse { grid-template-columns: 1fr; }
  .lead-profile--reverse .lead-profile__photo { order: -1; }
  .lead-profile__photo .ph {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 360px;
  }
  .lead-profile__photo--cutout .ph.has-img img {
    object-fit: cover;
    object-position: center 12%;
  }
  .lead-profile__copy {
    padding: 22px 20px 26px;
  }
  .about-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }
  .fgrid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--products { grid-column: auto; }
  .footer-links--products { max-width: none; }
  body { font-size: 16px; }
  .topbar .wrap { justify-content: center; }
  .topbar-right a[href^="mailto"] { display: none; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo { height: 44px; min-width: 80px; }
  .client-logo img { max-height: 36px; max-width: 110px; }
  .client-logo--wide { min-width: 140px; }
  .client-logo--wide img { max-height: 32px; max-width: 160px; }
  .clients-grid .client-logo.client-logo--wide img {
    max-height: 40px;
    max-width: none;
    width: 100%;
  }
  .why-grid { grid-template-columns: 1fr !important; }

  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .cta-band-actions .btn { justify-content: center; }

  .hero-stats { grid-template-columns: 1fr; }
  .cap-grid, .comp-grid, .cert-grid,
  .r-3col, .r-4col, .proc-grid { grid-template-columns: 1fr !important; }
  .product-mosaic { grid-template-columns: 1fr; }
  .product-mosaic__feature { grid-column: auto; }
  .stat-num { white-space: normal; }
  .spec-grid { grid-template-columns: 1fr; }

  .nav .wrap { min-height: 64px; gap: 12px; }
  .logo-img { height: 38px; }
  .nav-cta { gap: 8px; }
  .nav-quote-long,
  .nav-quote-short { display: none; }
  .nav-quote { padding: 0; width: 44px; justify-content: center; }
  .nav-quote svg { margin: 0; }
  .section-head-row { flex-direction: column; align-items: flex-start !important; }
  .role-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .role-row:hover { transform: none; }
  .cert-co { white-space: normal; }
  .btn { white-space: normal; }
  .page-hero .h1 { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .concept-switch { bottom: 12px; max-width: calc(100vw - 24px); flex-wrap: wrap; justify-content: center; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(50, 47, 90, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s;
}
.drawer.open { opacity: 1; visibility: visible; }

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 100vw);
  max-width: 100%;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.3,.7,.4,1);
  overflow: hidden;
}
.drawer.open .drawer-panel { transform: none; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-logo {
  display: inline-flex;
  align-items: center;
}
.drawer-logo img { height: 36px; width: auto; display: block; }

.dp-close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
  color: var(--text-dim);
  transition: color .18s, background .18s;
}
.dp-close:hover {
  color: var(--ink);
  background: var(--tint);
}
.dp-close svg { width: 22px; height: 22px; }

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px 24px;
  -webkit-overflow-scrolling: touch;
}

.drawer-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  transition: color .18s;
}
.drawer-link:hover { color: var(--amber-deep); }
.drawer-link.active {
  color: var(--amber-deep);
  font-weight: 600;
}

.drawer-group {
  border-bottom: 1px solid var(--line);
}
.drawer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color .18s;
}
.drawer-summary::-webkit-details-marker { display: none; }
.drawer-summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-faint);
  border-bottom: 1.5px solid var(--text-faint);
  transform: rotate(45deg);
  transition: transform .2s ease, border-color .18s;
  flex-shrink: 0;
  margin-left: 12px;
}
.drawer-group[open] .drawer-summary { color: var(--ink); }
.drawer-group[open] .drawer-summary::after {
  transform: rotate(-135deg);
}

.drawer-sub {
  padding: 0 0 12px 16px;
  display: flex;
  flex-direction: column;
}
.drawer-sub .drawer-link {
  min-height: 40px;
  padding: 8px 0;
  border-bottom: none;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-dim);
}
.drawer-sub .drawer-link:hover,
.drawer-sub .drawer-link.active {
  color: var(--amber-deep);
  font-weight: 500;
}

.drawer-foot {
  flex-shrink: 0;
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color .18s;
}
.drawer-phone:hover { color: var(--ink); }
.drawer-phone svg {
  width: 16px;
  height: 16px;
  color: var(--text-faint);
  flex-shrink: 0;
}
.drawer-quote {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 0.92rem;
  padding: 13px 20px;
}
.drawer-quote svg { width: 16px; height: 16px; }

body.menu-open { overflow: hidden; }

/* ---------- Home cover (enter site + cloth) ---------- */
html.home-cover-pending,
html.home-cover-pending body {
  overflow: hidden;
  height: 100%;
}
.home-cover {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
}
html.home-cover-pending .home-cover {
  display: block;
}
html.home-cover-skip .home-cover {
  display: none !important;
}
.home-cover__door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  background: var(--bg);
  transition: transform 1.6s cubic-bezier(.22,.7,.2,1);
  will-change: transform;
}
.home-cover__door--left { left: 0; }
.home-cover__door--right { right: 0; }
.home-cover.is-leaving .home-cover__door--left {
  transform: translateX(-100%);
}
.home-cover.is-leaving .home-cover__door--right {
  transform: translateX(100%);
}
.home-cover__welcome {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 48px) var(--gutter);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.8,.28,1);
}
.home-cover__door--left .home-cover__welcome { left: 0; }
.home-cover__door--right .home-cover__welcome { left: -100%; }
.home-cover.is-welcome .home-cover__welcome {
  opacity: 1;
  transform: none;
}
.home-cover__mark {
  width: min(280px, 72%);
  height: auto;
  padding: 18px 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.home-cover__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1080px, 100%);
  margin: clamp(22px, 3.5vw, 40px) 0 0;
  list-style: none;
}
.home-cover__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px 14px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.home-cover__logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.home-cover__countdown {
  margin: clamp(18px, 3vw, 28px) 0 0;
  font-family: var(--body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.home-cover__countdown [data-home-cover-count] {
  display: inline-block;
  min-width: 1.15em;
  font-family: var(--display);
  font-size: 1.45em;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.home-cover__cloth {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: #6e1620;
  background-image:
    repeating-linear-gradient(
      90deg,
      #4a0e16 0px,
      #7a1c28 10px,
      #3a0a12 20px,
      #9a2834 32px,
      #5c121c 42px,
      #2e080e 52px,
      #4a0e16 62px
    ),
    linear-gradient(180deg, rgba(255,210,160,0.16) 0%, transparent 22%, rgba(40,0,8,0.45) 100%);
  transition: transform 1.35s cubic-bezier(.18,.7,.22,1), border-radius 1.35s ease;
  will-change: transform;
}
.home-cover__door--left .home-cover__cloth {
  transform-origin: left center;
  border-top-right-radius: 28% 6%;
  border-bottom-right-radius: 36% 10%;
  box-shadow:
    5px 0 0 0 #c4a35a,
    7px 0 0 0 #7a5c22,
    inset -28px 0 48px rgba(0,0,0,0.38),
    inset 0 0 80px rgba(40,0,8,0.28);
}
.home-cover__door--right .home-cover__cloth {
  transform-origin: right center;
  border-top-left-radius: 28% 6%;
  border-bottom-left-radius: 36% 10%;
  box-shadow:
    -5px 0 0 0 #c4a35a,
    -7px 0 0 0 #7a5c22,
    inset 28px 0 48px rgba(0,0,0,0.38),
    inset 0 0 80px rgba(40,0,8,0.28);
}
.home-cover.is-opening .home-cover__door--left .home-cover__cloth {
  transform: scaleX(0.18);
  border-top-right-radius: 80% 18%;
  border-bottom-right-radius: 90% 28%;
}
.home-cover.is-opening .home-cover__door--right .home-cover__cloth {
  transform: scaleX(0.18);
  border-top-left-radius: 80% 18%;
  border-bottom-left-radius: 90% 28%;
}
.home-cover__valance {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  z-index: 4;
  pointer-events: none;
  background-color: #6e1620;
  background-image:
    repeating-linear-gradient(
      90deg,
      #4a0e16 0px,
      #7a1c28 10px,
      #3a0a12 20px,
      #9a2834 32px,
      #4a0e16 42px
    ),
    linear-gradient(180deg, rgba(255,210,160,0.18), transparent 70%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 1.6s cubic-bezier(.22,.7,.2,1);
}
.home-cover__valance::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #7a5c22, #e8d08a 20%, #c4a35a 50%, #e8d08a 80%, #7a5c22);
}
.home-cover__valance::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 36px;
  background-image: radial-gradient(ellipse 36px 36px at 50% 0, #6e1620 71%, transparent 72%);
  background-size: 72px 36px;
  background-repeat: repeat-x;
}
.home-cover.is-leaving .home-cover__valance {
  transform: translateY(-140%);
}
.home-cover__intro {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.home-cover.is-opening .home-cover__intro,
.home-cover.is-leaving .home-cover__intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-cover.is-leaving {
  pointer-events: none;
}
.home-cover__enter {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: 0.04em;
  padding: 22px 52px;
  border: 0;
  border-radius: 8px;
  background: var(--amber);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 18px 40px -12px rgba(239,76,54,0.75);
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.home-cover__enter:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
}
.home-cover__enter:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}
.home-cover__enter svg {
  width: 28px;
  height: 28px;
  transition: transform 0.22s;
}
.home-cover__enter:hover svg {
  transform: translateX(4px);
}
@media (max-width: 860px) {
  .home-cover__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-cover__logo {
    min-height: 104px;
  }
}
@media (max-width: 520px) {
  .home-cover__mark { padding: 14px 18px; }
  .home-cover__logo { min-height: 88px; padding: 14px 10px; }
  .home-cover__logo img { max-height: 52px; }
}
@media (max-height: 760px) {
  .home-cover__logos { margin-top: 18px; gap: 12px; }
  .home-cover__logo { min-height: 84px; padding: 12px 10px; }
  .home-cover__logo img { max-height: 48px; }
  .home-cover__mark { width: min(220px, 70%); padding: 12px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-cover__cloth,
  .home-cover__welcome,
  .home-cover__intro,
  .home-cover__door,
  .home-cover__valance,
  .home-cover__enter,
  .home-cover__enter svg {
    transition: none;
  }
  .home-cover.is-opening .home-cover__door--left .home-cover__cloth,
  .home-cover.is-leaving .home-cover__door--left {
    transform: translateX(-100%);
  }
  .home-cover.is-opening .home-cover__door--right .home-cover__cloth,
  .home-cover.is-leaving .home-cover__door--right {
    transform: translateX(100%);
  }
  .home-cover.is-leaving .home-cover__valance {
    transform: none;
  }
}
