/* =========================================================================
   Hellenic Packaging · Brand v2.1 · Homepage v4
   Imposing branding pass, no em-dashes in copy
   ========================================================================= */

:root {
  --navy:       #14304B;
  --navy-deep:  #0E2438;
  --navy-darker:#091A29;
  --marble:     #FFFFFF;
  --carbon:     #1A1A1A;
  --steel:      #5A7585;
  --limestone:  #E8F0F8;
  --olive:      #5C8AB5;
  --rust:       #1E73C7;

  --f-head: 'Oswald', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'IBM Plex Mono', 'SF Mono', Monaco, Consolas, 'Courier New', monospace;

  --max:    1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --rule:   1px solid rgba(20,48,75,0.12);
  --rule-d: 1px solid rgba(255, 255, 255,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--carbon);
  background: var(--marble);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ---------- Type system ---------- */

.eyebrow {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.eyebrow--marble { color: rgba(255, 255, 255,0.7); }
.eyebrow--marble::before { background: var(--rust); }
.eyebrow--clean::before { display: none; }

.h-mega {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(56px, 11.5vw, 180px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
}

.h-1 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.h-2 {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.h-3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--navy);
}

.lede {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--carbon);
  max-width: 60ch;
}

.mono { font-family: var(--f-mono); font-feature-settings: 'tnum' 1, 'lnum' 1; }

/* ---------- Layout primitives ---------- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.section { padding: clamp(80px, 10vw, 160px) 0; }
.section--tight { padding: clamp(48px, 6vw, 96px) 0; }
.section--navy { background: var(--navy); color: var(--marble); }
.section--limestone { background: var(--limestone); }

/* Cross/plus pattern background */
.pattern-cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255,0.08) 1px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,0.08) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px, 56px 56px;
  background-position: center, center, center;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.pattern-cross--light {
  background-image:
    radial-gradient(circle at center, rgba(20,48,75,0.06) 1px, transparent 1.5px);
  background-size: 56px 56px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Giant background wordmark watermark */
.bg-wordmark {
  position: absolute;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(180px, 32vw, 580px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.04;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 1;
}

.bg-wordmark--marble { color: var(--marble); opacity: 0.05; }

/* ---------- Top utility bar ---------- */

.utility {
  background: var(--navy-darker);
  color: rgba(255, 255, 255,0.85);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.utility__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.utility__right { display: flex; gap: 16px; }
.utility__right span + span {
  border-left: 1px solid rgba(255, 255, 255,0.18);
  padding-left: 16px;
}

@media (max-width: 720px) {
  .utility__right span:first-child { display: none; }
}

/* ---------- Main nav ---------- */

.nav {
  background: var(--marble);
  border-bottom: var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }

.brand__word {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.brand__sub {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 3px;
}

.nav__menu { display: flex; gap: clamp(16px, 2vw, 28px); justify-content: flex-end; }

.nav__menu a {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease;
}

.nav__menu a:hover { border-bottom-color: var(--rust); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--marble);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 22px;
  transition: background 160ms ease;
}

.nav__cta:hover { background: var(--rust); }

@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
}

/* ---------- HERO ·  Imposing, full-bleed visual ---------- */

.hero {
  position: relative;
  background: var(--marble);
  overflow: hidden;
  padding: 0;
  min-height: clamp(640px, 86vh, 880px);
  display: flex;
  align-items: stretch;
}

/* Massive HELLENIC wordmark behind hero copy */
.hero__bg-wordmark {
  position: absolute;
  left: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(220px, 36vw, 660px);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

.hero__copy { padding: clamp(56px, 7vw, 120px) 0; position: relative; z-index: 3; }

.hero__eyebrow { margin-bottom: 36px; }

.hero__head { margin-bottom: 36px; }

.hero__head .line { display: block; }

.hero__head em {
  font-style: normal;
  color: var(--rust);
}

.hero__sub {
  max-width: 56ch;
  margin-bottom: 48px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--carbon);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: clamp(48px, 5vw, 64px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(20,48,75,0.18);
  padding-top: 32px;
  max-width: 600px;
}

.hero__stat-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}

.hero__stat-num .plus {
  color: var(--rust);
  font-weight: 500;
  margin-right: 2px;
}

.hero__stat-num sup {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--steel);
  margin-left: 4px;
  vertical-align: top;
  letter-spacing: 0.08em;
}

.hero__stat-label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.4;
}

/* Hero visual extends edge-to-edge of viewport on the right */
.hero__visual {
  position: relative;
  align-self: stretch;
  background: var(--navy);
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255,0.12) 1px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 120%;
  height: 110%;
  background-image: url('assets/logo-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.06;
  pointer-events: none;
}

.hero__chevrons {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 16px;
  z-index: 2;
}

.hero__chevron {
  width: 140px;
  height: 26px;
  background: var(--olive);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
}

.hero__chevron:nth-child(2n) { background: var(--marble); opacity: 0.85; }
.hero__chevron:nth-child(3n) { background: var(--rust); width: 120px; }

.hero__visual-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.55);
  border-top: 1px solid rgba(255, 255, 255,0.22);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.hero__visual-tag {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.55);
  z-index: 2;
}

.hero__visual-rotate {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.10);
  line-height: 0.9;
  text-align: right;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 320px; order: -1; margin-right: 0; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 28px;
  transition: all 160ms ease;
  cursor: pointer;
  border: 0;
}

.btn--primary { background: var(--navy); color: var(--marble); }
.btn--primary:hover { background: var(--rust); }

.btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--marble); }

.btn__arrow { display: inline-block; transition: transform 160ms ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- MANIFESTO STRIP ---------- */

.manifesto {
  background: var(--navy-deep);
  color: var(--marble);
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: 1px solid rgba(255, 255, 255,0.08);
  border-bottom: 1px solid rgba(255, 255, 255,0.08);
}

.manifesto__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.manifesto__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--rust);
  text-transform: uppercase;
}

.manifesto__line {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--marble);
}

.manifesto__line em { font-style: normal; color: var(--rust); }

.manifesto__chevron {
  display: grid;
  gap: 5px;
}

.manifesto__chevron span {
  width: 38px;
  height: 8px;
  background: var(--olive);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
}

.manifesto__chevron span:nth-child(2n) { background: var(--rust); }

@media (max-width: 720px) {
  .manifesto__inner { grid-template-columns: 1fr; gap: 16px; }
  .manifesto__chevron { display: none; }
}

/* ---------- EXPERTISE ---------- */

.expertise {
  background: var(--marble);
  position: relative;
  padding: clamp(96px, 11vw, 180px) 0;
  overflow: hidden;
}

.expertise__bg {
  position: absolute;
  right: -3vw;
  top: 8%;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(160px, 28vw, 480px);
  line-height: 0.8;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.expertise__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.expertise__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
  padding-bottom: 32px;
  border-bottom: var(--rule);
}

.expertise__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 14ch;
}

.expertise__title em {
  font-style: normal;
  color: var(--rust);
}

.expertise__intro {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--carbon);
  max-width: 56ch;
}

.expertise__intro p { margin-bottom: 16px; }
.expertise__intro p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .expertise__head { grid-template-columns: 1fr; align-items: start; }
}

.expertise__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-top: var(--rule);
}

.expertise__row {
  display: grid;
  grid-template-columns: 100px 280px 1fr 60px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: var(--rule);
  transition: background 200ms ease, padding-left 200ms ease;
  position: relative;
}

.expertise__row:hover {
  background: var(--limestone);
  padding-left: 16px;
}

.expertise__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--rust);
}

.expertise__label {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.expertise__detail {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  color: var(--carbon);
  max-width: 60ch;
}

.expertise__arrow {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--olive);
  font-size: 28px;
  text-align: right;
  transition: transform 200ms ease, color 200ms ease;
}

.expertise__row:hover .expertise__arrow {
  color: var(--rust);
  transform: translateX(8px);
}

@media (max-width: 1080px) {
  .expertise__row {
    grid-template-columns: 80px 1fr 40px;
    grid-template-rows: auto auto;
  }
  .expertise__num { grid-row: 1; grid-column: 1; }
  .expertise__label { grid-row: 1; grid-column: 2; }
  .expertise__arrow { grid-row: 1; grid-column: 3; }
  .expertise__detail { grid-row: 2; grid-column: 2 / -1; padding-top: 8px; }
}

@media (max-width: 600px) {
  .expertise__row { grid-template-columns: 60px 1fr; }
  .expertise__arrow { display: none; }
  .expertise__label { grid-column: 2; }
  .expertise__detail { grid-column: 1 / -1; padding-top: 16px; }
}

/* ---------- OVERLAY BREAK ·  Massive declaration ---------- */

.overlay-break {
  background: var(--navy);
  color: var(--marble);
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 200px) 0;
}

.overlay-break__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.overlay-break__deco {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 22px;
  z-index: 1;
  opacity: 0.55;
}

.overlay-break__deco span {
  width: 260px;
  height: 38px;
  background: var(--olive);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
}

.overlay-break__deco span:nth-child(2n) { width: 240px; opacity: 0.6; }
.overlay-break__deco span:nth-child(3n) { width: 220px; opacity: 0.4; background: var(--marble); }

.overlay-break__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(64px, 14vw, 240px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--marble);
  text-align: right;
  position: relative;
  z-index: 2;
}

.overlay-break__title em {
  font-style: normal;
  color: var(--rust);
}

.overlay-break__title .line { display: block; }

.overlay-break__caption {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.55);
  text-align: right;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255,0.18);
  max-width: 360px;
  margin-left: auto;
}

@media (max-width: 880px) {
  .overlay-break__title { text-align: left; }
  .overlay-break__caption { text-align: left; margin-left: 0; }
  .overlay-break__deco { left: -120px; opacity: 0.25; }
}

/* ---------- SOURCING ---------- */

.sourcing {
  background: var(--limestone);
  color: var(--carbon);
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 11vw, 180px) 0;
}

.sourcing__bg {
  position: absolute;
  left: -3vw;
  bottom: 4%;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(160px, 26vw, 440px);
  line-height: 0.8;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.04;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.sourcing__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.sourcing__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.sourcing__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.sourcing__title em { font-style: normal; color: var(--rust); }

.sourcing__intro {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--carbon);
  max-width: 56ch;
}

.sourcing__intro p { margin-bottom: 16px; }
.sourcing__intro p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .sourcing__head { grid-template-columns: 1fr; }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(20,48,75,0.18);
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.process__step {
  padding: 32px 24px 0 0;
  border-right: 1px solid rgba(20,48,75,0.12);
  position: relative;
}

.process__step:last-child { border-right: 0; }

.process__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rust);
  margin-bottom: 16px;
}

.process__title {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.process__detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--carbon);
  max-width: 28ch;
}

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process__step:nth-child(2n) { border-right: 0; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid rgba(20,48,75,0.12); padding-bottom: 32px; }
}

@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: 0; border-bottom: 1px solid rgba(20,48,75,0.12); padding-right: 0; padding-bottom: 32px; }
  .process__step:last-child { border-bottom: 0; }
}

/* ---------- STAT BAND ---------- */

.statband {
  background: var(--marble);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}

.statband__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(20,48,75,0.18);
}

.statband__item {
  padding: 32px 24px 0 0;
  border-right: 1px solid rgba(20,48,75,0.12);
}

.statband__item:last-child { border-right: 0; }

.statband__num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  display: block;
}

.statband__num .plus {
  color: var(--rust);
  font-weight: 500;
  margin-right: 2px;
}

.statband__num sup {
  font-size: 0.4em;
  color: var(--steel);
  font-weight: 500;
  vertical-align: top;
  margin-left: 4px;
  letter-spacing: 0.08em;
}

.statband__label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.5;
  max-width: 18ch;
}

@media (max-width: 880px) {
  .statband__inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .statband__item:nth-child(2n) { border-right: 0; }
  .statband__item:nth-child(-n+2) { border-bottom: 1px solid rgba(20,48,75,0.12); padding-bottom: 32px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .statband__inner { grid-template-columns: 1fr; }
  .statband__item { border-right: 0; border-bottom: 1px solid rgba(20,48,75,0.12); padding-bottom: 24px; padding-right: 0; }
  .statband__item:last-child { border-bottom: 0; }
}

/* ---------- Section header ---------- */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 32px;
  border-bottom: var(--rule);
}

.section-head--dark { border-bottom-color: rgba(255, 255, 255,0.22); }
.section-head__left .eyebrow { margin-bottom: 16px; }
.section-head__left h2 { max-width: 16ch; }
.section-head__right p { font-size: clamp(15px, 1.2vw, 17px); max-width: 56ch; }

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- PRODUCTS ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}

.product {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 32px;
  background: var(--marble);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: background 200ms ease;
  position: relative;
}

.product:hover { background: var(--limestone); }

.product__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.product__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel);
}

.product__arrow {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--rust);
  font-size: 22px;
  line-height: 1;
}

.product__name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.product__type {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}

.product__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--carbon);
  margin-bottom: 24px;
}

.product__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 16px;
  border-top: 1px solid rgba(20,48,75,0.16);
  margin-top: auto;
}

.product__more:hover { color: var(--rust); }

@media (max-width: 1080px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products { grid-template-columns: 1fr; } }

/* ---------- TESTING / FOOTPRINT split ---------- */

.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.split--reverse { grid-template-columns: 7fr 5fr; }

@media (max-width: 880px) { .split, .split--reverse { grid-template-columns: 1fr; } }

.split__head h2 { margin-bottom: 24px; }
.split__head .eyebrow { margin-bottom: 16px; }

.split__body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.65;
}

.split__body p:last-child { margin-bottom: 0; }

/* Definition list */

.deflist { list-style: none; border-top: var(--rule); }
.deflist--dark { border-top-color: rgba(255, 255, 255,0.22); }

.deflist li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: var(--rule);
}

.deflist--dark li { border-bottom-color: rgba(255, 255, 255,0.22); }

.deflist__term {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.deflist--dark .deflist__term { color: var(--marble); }

.deflist__detail {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--carbon);
}

.deflist--dark .deflist__detail { color: rgba(255, 255, 255,0.85); }

@media (max-width: 720px) { .deflist li { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Footprint ---------- */

.footprint {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.footprint__item {
  padding: 32px;
  border-right: var(--rule);
  position: relative;
}

.footprint__item:last-child { border-right: 0; }

.footprint__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rust);
  margin-bottom: 16px;
}

.footprint__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footprint__title::after {
  content: "↘";
  color: var(--rust);
  font-size: 0.85em;
}

.footprint__detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--carbon);
}

@media (max-width: 880px) {
  .footprint { grid-template-columns: repeat(2, 1fr); }
  .footprint__item:nth-child(2n) { border-right: 0; }
  .footprint__item:nth-child(-n+2) { border-bottom: var(--rule); }
}

@media (max-width: 480px) {
  .footprint { grid-template-columns: 1fr; }
  .footprint__item { border-right: 0; border-bottom: var(--rule); }
  .footprint__item:last-child { border-bottom: 0; }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--marble);
  padding: clamp(96px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  right: -3vw;
  top: -10%;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(180px, 30vw, 520px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--marble);
  opacity: 0.05;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-band h2 { color: var(--marble); margin-bottom: 24px; max-width: 14ch; }

.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255,0.85);
  margin-bottom: 32px;
  max-width: 52ch;
  line-height: 1.6;
}

.cta-band .btn--primary { background: var(--marble); color: var(--navy); }
.cta-band .btn--primary:hover { background: var(--rust); color: var(--marble); }

.cta-band__contact {
  border-left: 1px solid rgba(255, 255, 255,0.22);
  padding-left: 48px;
}

.cta-band__contact-label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.6);
  margin-bottom: 8px;
}

.cta-band__contact-name {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--marble);
  margin-bottom: 4px;
}

.cta-band__contact-role {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255, 255, 255,0.7);
  margin-bottom: 20px;
}

.cta-band__contact-line {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--marble);
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255,0.18);
}

.cta-band__contact-line:first-of-type { border-top: 0; }

@media (max-width: 880px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-band__contact { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255, 255, 255,0.22); padding-top: 32px; }
}

/* ---------- Footer ---------- */

.footer { background: var(--navy-darker); color: rgba(255, 255, 255,0.7); padding-top: 64px; position: relative; overflow: hidden; }

.footer__bg {
  position: absolute;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--marble);
  opacity: 0.04;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255,0.18);
  position: relative;
  z-index: 2;
}

.footer__brand .brand img { height: 44px; filter: brightness(0) invert(1); }
.footer__brand .brand__word { color: var(--marble); }
.footer__brand .brand__sub { color: rgba(255, 255, 255,0.6); }

.footer__brand p {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255,0.7);
  max-width: 30ch;
}

.footer__col h4 {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marble);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; }
.footer__col li { padding: 6px 0; font-size: 14px; color: rgba(255, 255, 255,0.7); }
.footer__col a:hover { color: var(--rust); }

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255,0.5);
  position: relative;
  z-index: 2;
}

.footer__bottom span + span::before {
  content: "·";
  margin: 0 12px;
  color: rgba(255, 255, 255,0.3);
}

@media (max-width: 720px) {
  .footer__bottom span + span::before { content: ""; margin: 0; }
  .footer__bottom { flex-direction: column; gap: 4px; }
}

/* =========================================================================
   MEDIA SYSTEM · Image slots with graceful empty-state fallback
   See IMAGES.md for spec on what to drop into each slot
   ========================================================================= */

.media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  width: 100%;
}

.media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* When media has no image, the empty-state pattern shows through */
.media--empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255,0.12) 1px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.6;
  z-index: 1;
}

.media--empty::after {
  content: "";
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  width: 110%;
  height: 110%;
  background-image: url('assets/logo-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.06;
  z-index: 1;
}

.media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,48,75,0.35) 0%, rgba(20,48,75,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hover-zoom on cards */
.media--zoom .media__img { transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.product:hover .media--zoom .media__img,
.media--zoom:hover .media__img { transform: scale(1.06); }

/* Product card media slot */
.product__media {
  position: relative;
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  height: 220px;
  background: var(--navy);
  overflow: hidden;
}

.product__media .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product__media--empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255,0.10) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.7;
}

.product__media-watermark {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 88px;
  color: rgba(255, 255, 255,0.08);
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 2;
}

.product:hover .product__media .media__img { transform: scale(1.06); }

/* Hero photo (full-bleed) */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo .media__overlay {
  background: linear-gradient(90deg, rgba(20,48,75,0.92) 0%, rgba(20,48,75,0.55) 60%, rgba(20,48,75,0.30) 100%);
}

/* Overlay-break background photo */
.overlay-break__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.overlay-break__photo .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-break__photo .media__overlay {
  background: linear-gradient(180deg, rgba(20,48,75,0.55) 0%, rgba(14,36,56,0.78) 100%);
}

.overlay-break__photo .media__img {
  object-position: 30% 50%;
}

/* Testing section image slot. Hidden until image loads */
.testing__media {
  width: 100%;
  height: 360px;
  margin-bottom: 32px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: none;
}

.testing__media.has-image { display: block; }

.testing__media .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.testing__media:hover .media__img { transform: scale(1.04); }

/* Sourcing visual block */
.sourcing__visual {
  position: relative;
  width: 100%;
  height: 280px;
  background: var(--navy);
  margin-bottom: 32px;
  overflow: hidden;
  display: none; /* hidden until image present */
}

.sourcing__visual--has-image { display: block; }

.sourcing__visual .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 700ms ease, transform 700ms ease;
  }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* Stat counter animation hook */
.stat-counter {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.stat-counter.is-in { opacity: 1; transform: none; }

/* Hero parallax watermark. Subtle scroll movement */
.hero__bg-wordmark {
  will-change: transform;
  transition: transform 100ms linear;
}

/* Chevron slide-in animation */
@media (prefers-reduced-motion: no-preference) {
  .hero__chevron {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 600ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .hero__chevrons.is-in .hero__chevron { opacity: 1; transform: none; }
  .hero__chevrons.is-in .hero__chevron:nth-child(1) { transition-delay: 60ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(2) { transition-delay: 120ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(3) { transition-delay: 180ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(4) { transition-delay: 240ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(5) { transition-delay: 300ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(6) { transition-delay: 360ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(7) { transition-delay: 420ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(8) { transition-delay: 480ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(9) { transition-delay: 540ms; }
  .hero__chevrons.is-in .hero__chevron:nth-child(10) { transition-delay: 600ms; }
}

/* Manifesto chevron slide */
@media (prefers-reduced-motion: no-preference) {
  .manifesto__chevron span {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .manifesto__inner.is-in .manifesto__chevron span { opacity: 1; transform: none; }
  .manifesto__inner.is-in .manifesto__chevron span:nth-child(1) { transition-delay: 200ms; }
  .manifesto__inner.is-in .manifesto__chevron span:nth-child(2) { transition-delay: 280ms; }
  .manifesto__inner.is-in .manifesto__chevron span:nth-child(3) { transition-delay: 360ms; }
  .manifesto__inner.is-in .manifesto__chevron span:nth-child(4) { transition-delay: 440ms; }
}

/* =========================================================================
   PAGE-LEVEL COMPONENTS for inner pages (about, products, testing, etc.)
   ========================================================================= */

/* Page hero — used on all sub-pages instead of the homepage hero */
.page-hero {
  position: relative;
  background: var(--marble);
  overflow: hidden;
  padding: clamp(80px, 10vw, 160px) 0 clamp(56px, 7vw, 96px);
}

.page-hero__bg-wordmark {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(160px, 28vw, 480px);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.page-hero__copy { padding-top: 24px; }

.page-hero__crumbs {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.page-hero__crumbs a:hover { color: var(--rust); }
.page-hero__crumbs span { color: var(--rust); }

.page-hero__head {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 14ch;
}

.page-hero__head em { font-style: normal; color: var(--rust); }

.page-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--carbon);
  max-width: 56ch;
  margin-bottom: 32px;
}

.page-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  background: var(--navy);
  overflow: hidden;
}

.page-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255,0.12) 1px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.page-hero__chevrons {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 14px;
  z-index: 2;
}

.page-hero__chevrons span {
  width: 110px;
  height: 22px;
  background: var(--olive);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
}

.page-hero__chevrons span:nth-child(2n) { background: var(--marble); opacity: 0.85; }
.page-hero__chevrons span:nth-child(3n) { background: var(--rust); width: 90px; }

.page-hero__visual-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.55);
  z-index: 2;
}

@media (max-width: 880px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__visual { min-height: 240px; }
}

/* Article block — long-form prose section */
.article-block {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}

.article-block--limestone { background: var(--limestone); }
.article-block--navy { background: var(--navy); color: var(--marble); }
.article-block--navy h2,
.article-block--navy h3 { color: var(--marble); }
.article-block--navy p { color: rgba(255, 255, 255,0.85); }

.article-block__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.article-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.article-grid--reverse { grid-template-columns: 7fr 5fr; }
.article-grid--centered { grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; }

@media (max-width: 880px) { .article-grid, .article-grid--reverse { grid-template-columns: 1fr; } }

.article-grid__head h2 { margin-bottom: 24px; }
.article-grid__head .eyebrow { margin-bottom: 16px; }

.article-grid__body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.article-grid__body p:last-child { margin-bottom: 0; }

.article-grid__body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.article-block--navy .article-grid__body h3 { color: var(--marble); }

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-mono);
  font-size: 13px;
  border-top: 1px solid rgba(20,48,75,0.18);
  margin-top: 16px;
}

.spec-table tr {
  border-bottom: 1px solid rgba(20,48,75,0.10);
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  width: 40%;
}

.spec-table td {
  color: var(--carbon);
  font-weight: 500;
}

.article-block--navy .spec-table { border-top-color: rgba(255, 255, 255,0.22); }
.article-block--navy .spec-table tr { border-bottom-color: rgba(255, 255, 255,0.12); }
.article-block--navy .spec-table th { color: rgba(255, 255, 255,0.6); }
.article-block--navy .spec-table td { color: var(--marble); }

/* Spec rows — alternative numbered key/value blocks */
.spec-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: clamp(16px, 2vw, 32px);
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,48,75,0.12);
  align-items: start;
}

.article-block--navy .spec-row { border-bottom-color: rgba(255, 255, 255,0.18); }

.spec-row__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rust);
}

.spec-row__label {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.article-block--navy .spec-row__label { color: var(--marble); }

.spec-row__value {
  font-size: 14px;
  line-height: 1.55;
  color: var(--carbon);
}

.article-block--navy .spec-row__value { color: rgba(255, 255, 255,0.85); }

@media (max-width: 720px) {
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
}

/* Cross-link nav cards (for product pages, sub-section navigation) */
.crosslinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
  margin-top: 64px;
}

.crosslink {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 32px;
  background: var(--marble);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: background 200ms ease;
}

.crosslink:hover { background: var(--limestone); }

.crosslink__num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel);
  margin-bottom: 12px;
}

.crosslink__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.crosslink__detail {
  font-size: 14px;
  line-height: 1.5;
  color: var(--carbon);
  margin-bottom: 16px;
}

.crosslink__more {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: auto;
}

@media (max-width: 880px) { .crosslinks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .crosslinks { grid-template-columns: 1fr; } }

/* Highlight callout */
.callout {
  background: var(--limestone);
  border-left: 3px solid var(--rust);
  padding: 24px 28px;
  margin: 32px 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
}

.callout strong {
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

/* Form (contact / RFQ) */
.form {
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.form__row {
  display: grid;
  gap: 6px;
}

.form__label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.form__input,
.form__textarea,
.form__select {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(20,48,75,0.20);
  background: var(--marble);
  color: var(--carbon);
  width: 100%;
  border-radius: 0;
  transition: border-color 160ms ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--rust);
}

.form__textarea { min-height: 140px; resize: vertical; }

.form__row--double { grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 600px) { .form__row--double { grid-template-columns: 1fr; } }

.form__submit { margin-top: 8px; }

/* Inline contact card (for contact page, distributors page) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  margin-top: 32px;
}

.contact-card {
  border-top: 2px solid var(--navy);
  padding-top: 20px;
}

.contact-card__label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

.contact-card__value {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.4;
}

.contact-card__detail {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--carbon);
  margin-top: 4px;
  line-height: 1.5;
}

@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; } }

/* Section title for inner pages */
.section-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}

.article-block--navy .section-title { color: var(--marble); }
.section-title em { font-style: normal; color: var(--rust); }

/* =========================================================================
   MOBILE NAV TOGGLE
   ========================================================================= */

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  padding: 0;
  margin-left: 8px;
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--navy);
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.nav__toggle::before { top: 14px; }
.nav__toggle span { top: 21px; }
.nav__toggle::after { top: 28px; }

.nav__toggle[aria-expanded="true"]::before {
  top: 21px;
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span { opacity: 0; }

.nav__toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .nav__toggle { display: inline-block; }
  .nav__inner { grid-template-columns: auto 1fr auto; }

  .nav__menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(360px, 86vw);
    background: var(--marble);
    border-left: 1px solid rgba(20,48,75,0.16);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 96px 32px 32px;
    gap: 0;
    transition: right 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 60;
    box-shadow: -24px 0 48px rgba(20,48,75,0.10);
  }

  .nav__menu.is-open { right: 0; }

  .nav__menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(20,48,75,0.12);
    font-size: 16px;
    letter-spacing: 0.10em;
  }

  .nav__menu a:hover { border-bottom-color: var(--rust); }

  .nav__cta { display: none; }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,48,75,0.50);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
    z-index: 55;
  }

  .nav__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* =========================================================================
   BACK TO TOP
   ========================================================================= */

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--marble);
  border: 0;
  cursor: pointer;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  z-index: 40;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease, background 160ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top:hover { background: var(--rust); }

@media (max-width: 720px) {
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; font-size: 16px; }
}

/* =========================================================================
   MEET THE TEAM
   ========================================================================= */

.team {
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--marble);
  overflow: hidden;
}

.team__bg {
  position: absolute;
  left: -3vw;
  top: 6%;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(160px, 28vw, 480px);
  line-height: 0.8;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.team__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.team__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 32px;
  border-bottom: var(--rule);
}

@media (max-width: 880px) {
  .team__head { grid-template-columns: 1fr; align-items: start; }
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}

.team-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  background: var(--marble);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 200ms ease;
}

.team-card:hover { background: var(--limestone); }

.team-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  overflow: hidden;
}

.team-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255,0.10) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.7;
}

.team-card__media .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-card:hover .team-card__media .media__img { transform: scale(1.06); }

.team-card__initials {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 80px);
  color: rgba(255, 255, 255,0.10);
  letter-spacing: 0.04em;
  z-index: 2;
}

.team-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255,0.55);
  z-index: 2;
}

.team-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.team-card__name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.team-card__role {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}

.team-card__bio {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--carbon);
}

@media (max-width: 1080px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .team__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   NAV DROPDOWN (Products)
   ========================================================================= */

.nav__dropdown {
  position: relative;
  display: inline-block;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav__dropdown-caret {
  font-size: 9px;
  transition: transform 200ms ease;
}

.nav__dropdown:hover .nav__dropdown-caret,
.nav__dropdown:focus-within .nav__dropdown-caret { transform: translateY(2px); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: var(--marble);
  border: 1px solid rgba(20,48,75,0.12);
  box-shadow: 0 24px 48px rgba(20,48,75,0.10);
  min-width: 280px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 60;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border: 0;
  transition: background 160ms ease, color 160ms ease;
}

.nav__dropdown-menu a:hover {
  background: var(--limestone);
  color: var(--rust);
}

.nav__dropdown-num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--rust);
  min-width: 22px;
}

@media (max-width: 960px) {
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 8px 0;
    min-width: 0;
  }
  .nav__dropdown-trigger { padding: 16px 0; }
  .nav__dropdown-menu a {
    padding: 10px 0 10px 16px;
    border-bottom: 1px dashed rgba(20,48,75,0.10);
    font-size: 13px;
  }
}

/* =========================================================================
   FOOTER EUMOS BADGE
   ========================================================================= */

.footer__bottom {
  align-items: center;
}

.footer__bottom-left {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
}

.footer__bottom-left span + span::before {
  content: "·";
  margin: 0 12px;
  color: rgba(255, 255, 255,0.3);
}

.footer__eumos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255,0.18);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marble);
  margin-left: auto;
  flex-shrink: 0;
}

.footer__eumos-mark {
  color: var(--rust);
  font-size: 10px;
  line-height: 1;
}

.footer__eumos-label {
  font-weight: 600;
  letter-spacing: 0.14em;
}

@media (max-width: 720px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__eumos { margin-left: 0; }
  .footer__bottom-left { flex-direction: column; gap: 4px; }
  .footer__bottom-left span + span::before { content: ""; margin: 0; }
}

/* =========================================================================
   VIDEO SLOTS
   ========================================================================= */

/* Hero background video — autoplay, loop, muted */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--navy);
  pointer-events: none;
}

/* When video is present, it sits on top of the image fallback */
.hero__photo .hero__video { display: block; }

/* Testing page featured video */
.testing__video {
  position: relative;
  width: 100%;
  margin: 32px 0;
  background: var(--navy);
  overflow: hidden;
  display: none; /* hidden until video loads */
  aspect-ratio: 16 / 9;
}

.testing__video.has-video { display: block; }

.testing__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--navy);
}

.testing__video__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.8);
  background: rgba(20,48,75,0.6);
  padding: 6px 12px;
  border-left: 2px solid var(--rust);
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

/* Testing featured image (replaces former video block) */
.testing__feature {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 32px 0;
  background: var(--navy);
  overflow: hidden;
  display: none;
}

.testing__feature:not(.media--empty) { display: block; }

.testing__feature .media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.testing__feature:hover .media__img { transform: scale(1.04); }

.testing__feature__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255,0.9);
  background: rgba(20,48,75,0.6);
  padding: 6px 12px;
  border-left: 2px solid var(--rust);
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(6px);
}


/* Safety net: ordered lists in article bodies should not show default numbers */
.article-grid__body ol.deflist,
.process,
.expertise__list,
.team__grid {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
