/* =============================================================
   PLASTOBAL SK - Enterprise B2B Design System (Bunzl-aligned)

   Dark ground #002025 · alternating #FFFFFF / #F8F9FA ·
   1px #E5E7EB borders · lime #78BE20 + teal #07828D accents ·
   sharp 2–4px geometry · 100px section rhythm.

    1 Tokens        2 Base           3 Layout
    4 Atoms         5 Header/Mega    6 Hero + floating cards
    7 Sectors       8 Products       9 Printing + RFQ
   10 Benefits     11 Sustainability 12 Testimonials
   13 Contact      14 Footer        15 Responsive  16 Motion
   ============================================================= */

/* -------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------- */
:root {
  /* Ground / navy */
  --ground:     #002025;   /* hero + footer ground */
  --ground-2:   #04353c;   /* raised dark surface */
  --navy:       #0b2545;
  --navy-mid:   #12365f;

  /* Accents.  AA notes:
     --teal   #07828d  → white text on it 4.58:1 ✓ ; as small text on #fff 4.58 ✓
     --teal-ink #06757e → small text on #f8f9fa 5.17:1 ✓ (teal is 4.34 there)
     --lime   #78be20  → never small text on white; used as a fill with
                         navy text on top (7.6:1) or as an accent on dark. */
  --teal:      #07828d;
  --teal-ink:  #06757e;
  --teal-dark: #056a73;
  --teal-050:  #e6f5f6;
  --lime:      #78be20;
  --lime-hover: #68a71b;   /* primary CTA hover fill */
  --lime-dark: #4d7c0f;    /* AA-safe lime for text on light grounds */

  /* Neutrals */
  --ink:   #002025;   /* headings */
  --text:  #3f4b60;   /* 8.8:1 on white */
  --muted: #64707f;   /* 5.0:1 on white, 4.8:1 on off-white */
  --line:  #e5e7eb;   /* spec border */
  --line-2:#eef1f5;
  --white: #ffffff;
  --off:   #f8f9fa;

  /* On dark */
  --on-dark:      #cfdcdf;
  --on-dark-mute: #9fb5ba;   /* 7.4:1 on --ground */

  --font-sans: "Inter", "Roboto", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --fs-display: clamp(2.35rem, 1.5rem + 3.3vw, 3.8rem);
  --fs-h2:      clamp(1.65rem, 1.28rem + 1.6vw, 2.4rem);
  --fs-h3:      clamp(1.1rem, 1.03rem + 0.35vw, 1.3rem);
  --fs-lead:    clamp(1.03rem, 0.99rem + 0.3vw, 1.18rem);
  --fs-sm:      0.875rem;
  --fs-xs:      0.75rem;

  /* Sharp enterprise geometry */
  --r:      2px;
  --r-card: 4px;
  --r-pill: 999px;   /* category badges only */

  --sh-card:  0 10px 30px rgba(0, 0, 0, 0.08);
  --sh-head:  0 1px 3px rgba(0, 32, 37, 0.08);

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 76px;
  --pad-section: clamp(4rem, 7vw, 100px);
  --float: 60px;   /* hero card overlap */

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.2s;
}

/* -------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  line-height: 1.62;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h3 { font-weight: 700; letter-spacing: -0.015em; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--ground); color: #fff; padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

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

/* -------------------------------------------------------------
   3. LAYOUT
   ------------------------------------------------------------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

.section { padding-block: var(--pad-section); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.section--off { background: var(--off); }
.section--dark { background: var(--ground); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
/* clears the hero's overlapping card grid */
.section--after-float { padding-top: calc(var(--pad-section) + var(--float)); }

.section-head { max-width: 780px; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { margin-top: 1.05rem; font-size: var(--fs-lead); color: var(--muted); }
.section--dark .section-head p { color: var(--on-dark-mute); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-ink); margin-bottom: 0.95rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--teal); }
.section-head.center .eyebrow { justify-content: center; }
.section--dark .eyebrow { color: var(--lime); }
.section--dark .eyebrow::before { background: var(--lime); }

/* -------------------------------------------------------------
   4. ATOMS
   ------------------------------------------------------------- */
.btn {
  --bg: var(--lime); --fg: var(--ground); --bd: var(--lime);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem; font-size: 0.95rem; font-weight: 600; line-height: 1.2;
  color: var(--fg); background: var(--bg); border: 1px solid var(--bd);
  border-radius: var(--r); cursor: pointer; text-align: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary, .btn--lime { --bg: var(--lime); --fg: var(--ground); --bd: var(--lime); }
.btn--primary:hover, .btn--lime:hover { --bg: var(--lime-hover); --bd: var(--lime-hover); --fg: var(--ground); }

.btn--navy { --bg: var(--ground); --fg: #fff; --bd: var(--ground); }
.btn--navy:hover { --bg: var(--teal); --bd: var(--teal); }

.btn--lime { --bg: var(--lime); --fg: var(--ground); --bd: var(--lime); }
.btn--lime:hover { --bg: var(--lime-dark); --bd: var(--lime-dark); --fg: #fff; }

.btn--outline { --bg: #fff; --fg: var(--ink); --bd: #cbd2d6; }
.btn--outline:hover { --bg: var(--off); --fg: var(--teal-ink); --bd: var(--teal); }

.btn--light { --bg: #fff; --fg: var(--ground); --bd: #fff; }
.btn--light:hover { --bg: var(--lime); --bd: var(--lime); --fg: var(--ground); }

.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { --bg: rgba(255,255,255,0.1); --bd: var(--lime); --fg: var(--lime); }

.btn--sm { padding: 0.6rem 1rem; font-size: var(--fs-sm); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Arrow link - the recurring Bunzl "→" CTA */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; font-size: 0.9rem; color: var(--teal-ink);
  transition: color var(--dur) var(--ease);
}
.arrow-link .arw {
  transition: transform var(--dur) var(--ease);
  font-size: 1.05em; line-height: 1;
}
.arrow-link:hover { color: var(--lime-dark); }
.arrow-link:hover .arw { transform: translateX(5px); }
.section--dark .arrow-link { color: var(--lime); }
.section--dark .arrow-link:hover { color: #fff; }

/* Category badge - the one place a pill radius is allowed */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: var(--r-pill); background: var(--teal); color: #fff;
}
.pill--lime { background: var(--lime); color: var(--ground); }
.pill--ghost { background: var(--teal-050); color: #05646d; }
.pill--dark { background: rgba(255,255,255,0.12); color: #fff; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover { border-color: var(--teal); transform: translateY(-2px); }

.icon-square {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--r); background: var(--off);
  border: 1px solid var(--line); color: var(--ground); margin-bottom: 1.15rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.icon-square svg { width: 23px; height: 23px; }
.card:hover .icon-square { background: var(--ground); border-color: var(--ground); color: var(--lime); }

.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* -------------------------------------------------------------
   5. UTILITY BAR / HEADER / MEGA MENU
   ------------------------------------------------------------- */
.utility-bar {
  background: var(--off); color: var(--muted);
  font-size: var(--fs-sm); border-bottom: 1px solid var(--line);
}
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 42px; padding-block: 0.3rem; flex-wrap: wrap;
}
.utility-bar a:hover { color: var(--teal-ink); }
.utility-links, .utility-meta { display: flex; align-items: center; gap: 1.5rem; }
.utility-links a { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; }
.utility-links svg { width: 15px; height: 15px; color: var(--teal); }
.utility-loc { display: inline-flex; align-items: center; gap: 0.4rem; }
.utility-loc svg { width: 15px; height: 15px; color: var(--teal); }

.lang-switch { display: inline-flex; gap: 0.1rem; align-items: center; }
.lang-switch button {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-weight: 700; font-size: var(--fs-xs); letter-spacing: 0.05em; padding: 0.2rem 0.3rem;
}
.lang-switch button[aria-pressed="true"] { color: var(--ground); text-decoration: underline; }
.lang-switch span { color: #c9ced6; }

.utility-social { display: inline-flex; gap: 0.8rem; }
.utility-social a { color: var(--muted); }
.utility-social a:hover { color: var(--teal-ink); }
.utility-social a svg { width: 16px; height: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 200; background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--sh-head); }

.nav { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); }
.nav__item, .nav__menu li { white-space: nowrap; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; flex: none; }
.brand__mark { width: 38px; height: 38px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-weight: 800; font-size: 1.22rem; letter-spacing: -0.02em; color: var(--ground); }
.brand__name span { color: var(--teal); }
.brand__tag {
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 4px;
}

.nav__menu {
  display: flex; align-items: stretch; flex-wrap: nowrap;
  gap: 0.15rem; margin-inline: auto;
}
.nav__item { position: static; display: flex; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.6rem 0.7rem; font-weight: 600; font-size: 0.94rem; color: var(--ink);
  background: none; border: 0; cursor: pointer; font-family: inherit;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 12px;
  height: 3px; background: var(--teal); transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.is-active, .nav__link[aria-expanded="true"] { color: var(--teal-ink); }
.nav__link:hover::after, .nav__link.is-active::after,
.nav__link[aria-expanded="true"]::after { transform: scaleX(1); }
.nav__link .chev { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav__link[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Full-width mega panel */
.mega {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 190;
  background: #fff; border-top: 1px solid var(--line);
  border-bottom: 3px solid var(--teal); box-shadow: var(--sh-card);
}
.mega[hidden] { display: none; }
.mega__inner {
  display: grid; grid-template-columns: 1.15fr repeat(3, 1fr) 1.1fr;
  gap: clamp(1.5rem, 2.5vw, 2.5rem); padding-block: 2.5rem;
}
.mega__intro { border-right: 1px solid var(--line); padding-right: clamp(1rem, 2vw, 2rem); }
.mega__intro h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.mega__intro p { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 1.1rem; }

.mega__col h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ground); margin-bottom: 0.9rem; padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line); font-weight: 700;
}
.mega__col ul { display: grid; gap: 0.55rem; }
.mega__col a {
  font-size: 0.9rem; color: var(--text); display: inline-flex;
  align-items: center; gap: 0.45rem; transition: color var(--dur) var(--ease);
}
.mega__col a:hover { color: var(--teal-ink); }
.mega__col a::before {
  content: ""; width: 6px; height: 2px; background: #c9d2d4;
  flex: none; transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.mega__col a:hover::before { background: var(--teal); width: 12px; }

/* Featured image block on the right */
.mega__featured {
  border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column; background: var(--off);
}
.mega__featured img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.mega__featured-body { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mega__featured-body b { color: var(--ink); font-size: 0.98rem; }
.mega__featured-body .ft-p { font-size: var(--fs-sm); color: var(--muted); }

.nav__actions { display: flex; align-items: center; gap: 0.55rem; flex: none; }
.icon-btn {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: var(--r); background: #fff;
  cursor: pointer; color: var(--ink);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-btn:hover { color: var(--teal-ink); border-color: var(--teal); }
.icon-btn svg { width: 20px; height: 20px; }

.nav__toggle { display: none; }
.nav__drawer { display: none; }
.nav__backdrop { display: none; }

.search-drop { border-top: 1px solid var(--line); background: var(--off); padding-block: 1rem; }
.search-drop[hidden] { display: none; }
.search-drop form { display: flex; gap: 0.6rem; }
.search-drop input {
  flex: 1; padding: 0.8rem 1rem; border: 1px solid var(--line);
  border-radius: var(--r); background: #fff;
}
.search-drop input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-050); }

/* -------------------------------------------------------------
   6. HERO + FLOATING CARDS
   ------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--on-dark);
  background-color: var(--ground);   /* fallback until the photo paints */
  background-image:
    linear-gradient(135deg, rgba(0, 32, 37, 0.92) 0%, rgba(11, 37, 69, 0.88) 100%),
    url("../img/hero-warehouse.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero__copy {
  max-width: 720px;
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hero h1 { color: #fff; font-size: var(--fs-display); letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--lime); }
.hero__lead { margin-top: 1.4rem; font-size: var(--fs-lead); color: var(--on-dark); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.hero__usp { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: 2rem; }
.hero__usp li { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--on-dark); }
.hero__usp svg { width: 17px; height: 17px; color: var(--on-dark); flex: none; }

/* Signature overlapping card grid */
.hero__cards {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-bottom: calc(var(--float) * -1);
}
.float-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--sh-card); padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* lime accent rides on a pseudo-element so the 1px border stays uniform */
.float-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.float-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12); }
.float-card:hover::before { transform: scaleX(1); }
.float-card:focus-within::before { transform: scaleX(1); }
.float-card__ico { width: 26px; height: 26px; color: var(--teal); }
.float-card h3 { font-size: 1.02rem; color: var(--ink); }
.float-card p { font-size: var(--fs-sm); color: var(--muted); flex: 1; }
.float-card .arrow-link { margin-top: 0.35rem; }

/* Trust strip */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem 2rem; padding-block: 1.4rem; flex-wrap: wrap;
}
.trust-strip__label { font-size: var(--fs-sm); font-weight: 600; color: var(--muted); }
.trust-strip__items { display: flex; align-items: center; gap: clamp(1.1rem, 3.5vw, 2.5rem); flex-wrap: wrap; }
.trust-strip__items span {
  font-weight: 800; letter-spacing: 0.06em; color: var(--ground);
  font-size: 0.9rem; opacity: 0.45; text-transform: uppercase;
}

/* Stat counters */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 2rem 1.25rem 2rem 0; }
.stat + .stat { padding-left: clamp(1rem, 2.5vw, 2.25rem); border-left: 1px solid var(--line); }
.stat b {
  display: block; font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem);
  font-weight: 800; color: var(--ground); letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat b .u { color: var(--teal); }
.stat span { font-size: var(--fs-sm); color: var(--muted); }

/* -------------------------------------------------------------
   7. SECTORS - photography-first cards
   ------------------------------------------------------------- */
.sector-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sector-card:hover { border-color: var(--teal); box-shadow: var(--sh-card); }
.sector-card__media {
  aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 4px 4px 0 0; background: var(--ground);
}
.sector-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.sector-card:hover .sector-card__media img { transform: scale(1.04); }
.sector-card__body {
  padding: 1.4rem; display: flex; flex-direction: column;
  align-items: flex-start; gap: 0.65rem; flex: 1;
}
.sector-card__body h3 { font-size: var(--fs-h3); color: var(--ground); }
.sector-card__body p { font-size: var(--fs-sm); color: var(--muted); flex: 1; }

/* -------------------------------------------------------------
   8. PRODUCTS
   ------------------------------------------------------------- */
.product-card { position: relative; display: flex; flex-direction: column; }
.product-card h3 { font-size: var(--fs-h3); margin-bottom: 0.45rem; }
.product-card > p { font-size: var(--fs-sm); color: var(--muted); }
.product-card ul {
  display: grid; gap: 0.42rem; margin-top: 0.9rem; padding-top: 0.9rem;
  border-top: 1px solid var(--line-2); flex: 1;
}
.product-card li { font-size: var(--fs-sm); color: var(--text); display: flex; gap: 0.55rem; align-items: center; }
.product-card li::before { content: ""; width: 8px; height: 2px; background: var(--teal); flex: none; }
.product-card .arrow-link { margin-top: 1.15rem; }
.product-card__tag { position: absolute; top: 1.2rem; right: 1.2rem; }

/* -------------------------------------------------------------
   9. CUSTOM PRINTING + RFQ  (2-column)
   ------------------------------------------------------------- */
.rfq-layout {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4.5vw, 4rem); align-items: start;
}

/* Ordered process - numbering encodes a real sequence */
.steps { display: grid; gap: 0; margin-top: 1.9rem; }
.step { position: relative; display: flex; gap: 1.1rem; padding-bottom: 1.6rem; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 2px; background: var(--line);
}
.step:last-child::before { display: none; }
.step__num {
  flex: none; display: grid; place-items: center; width: 44px; height: 44px;
  background: var(--ground); color: var(--lime); font-weight: 800; font-size: 1.05rem;
  border-radius: var(--r); font-variant-numeric: tabular-nums; z-index: 1;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.step p { font-size: var(--fs-sm); color: var(--muted); }

.printing__list { display: grid; gap: 0.7rem; margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.printing__list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; }
.printing__list svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 3px; }

/* RFQ card */
.form-card {
  background: var(--off);
  border: 1px solid rgba(0, 32, 37, 0.22);
  border-top: 3px solid var(--ground);
  border-radius: var(--r-card);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.form-card__head { margin-bottom: 1.4rem; }
.form-card__head h3 { font-size: 1.25rem; }
.form-card__head p { font-size: var(--fs-sm); color: var(--muted); margin-top: 0.35rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.field label .req { color: #b3261e; }
.field input, .field select, .field textarea {
  padding: 0.75rem 0.85rem; border: 1px solid #ccd3d5; border-radius: var(--r);
  background: #fff; width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 112px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px var(--teal-050);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #b3261e; background: #fdf2f2;
}
.field .err { font-size: var(--fs-xs); color: #b3261e; font-weight: 600; min-height: 1em; }
.field .hint { font-size: var(--fs-xs); color: var(--muted); }

.file-drop {
  display: flex; align-items: center; gap: 0.9rem; padding: 1rem;
  border: 1px dashed #b6c1c3; border-radius: var(--r); background: #fff;
  cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.file-drop:hover, .file-drop.is-drag { border-color: var(--teal); background: var(--teal-050); }
.file-drop svg { width: 24px; height: 24px; color: var(--teal); flex: none; }
.file-drop__text b { display: block; font-size: 0.92rem; color: var(--ink); }
.file-drop__text span { font-size: var(--fs-xs); color: var(--muted); }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-list { display: grid; gap: 0.45rem; margin-top: 0.6rem; }
.file-chip {
  display: flex; align-items: center; gap: 0.55rem; font-size: var(--fs-sm);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 0.45rem 0.65rem; color: var(--ink);
}
.file-chip svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.file-chip button {
  margin-left: auto; background: none; border: 0; cursor: pointer;
  color: var(--muted); line-height: 1; padding: 0.15rem;
}
.file-chip button:hover { color: #b3261e; }

.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--teal); }
.form-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 0.8rem; }

.form-alert {
  display: none; gap: 0.65rem; align-items: flex-start; border-radius: var(--r);
  padding: 0.85rem 1rem; font-size: var(--fs-sm); font-weight: 600; margin-bottom: 1.2rem;
}
.form-alert.show { display: flex; }
.form-alert svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.form-alert--ok { background: #eaf7f1; color: #0f7b52; border: 1px solid #bfe4d2; }
.form-alert--err { background: #fdf2f2; color: #b3261e; border: 1px solid #f3c9c6; }
.form-alert ul { margin-top: 0.35rem; display: grid; gap: 0.2rem; font-weight: 500; }
.form-alert a { text-decoration: underline; }

/* -------------------------------------------------------------
   10. BENEFITS / WHY US
   ------------------------------------------------------------- */
.feature { display: flex; gap: 1.05rem; }
.feature__icon {
  flex: none; display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--r); background: var(--off);
  border: 1px solid var(--line); color: var(--ground);
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: var(--fs-h3); margin-bottom: 0.35rem; }
.feature p { font-size: var(--fs-sm); color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__intro { margin-top: 1.05rem; color: var(--muted); font-size: var(--fs-lead); }
.why-list { display: grid; gap: 1.4rem; margin-top: 1.9rem; }
.why-item { display: flex; gap: 0.95rem; align-items: flex-start; }
.why-item__check {
  flex: none; width: 28px; height: 28px; border-radius: var(--r);
  display: grid; place-items: center; background: var(--ground); color: var(--lime);
}
.why-item__check svg { width: 15px; height: 15px; }
.why-item b { color: var(--ink); display: block; margin-bottom: 0.15rem; }
.why-item span { font-size: var(--fs-sm); color: var(--muted); }

.media-panel {
  position: relative; overflow: hidden; min-height: 420px;
  background: var(--ground); border-radius: var(--r-card);
  display: grid; place-items: center;
}
.media-panel__motif { position: absolute; inset: 0; opacity: 0.55; }
.media-panel__motif svg { width: 100%; height: 100%; }
.media-panel__badge { position: relative; text-align: center; color: #fff; padding: 2rem; }
.media-panel__badge .brandbig {
  font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: 0.02em; color: #fff;
}
.media-panel__badge .rule { width: 46px; height: 3px; background: var(--lime); margin: 1rem auto; }
.media-panel__badge p { color: rgba(255,255,255,0.75); }

/* -------------------------------------------------------------
   11. SUSTAINABILITY
   ------------------------------------------------------------- */
.eco-top { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.eco-points { display: grid; gap: 1.35rem; }
.eco-point { display: flex; gap: 0.9rem; align-items: flex-start; }
.eco-point svg { flex: none; width: 21px; height: 21px; color: var(--teal); margin-top: 3px; }
.eco-point b { color: var(--ink); }
.eco-point p { color: var(--muted); font-size: var(--fs-sm); }

.eco-metrics {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.eco-metric { padding: 1.6rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.eco-metric b {
  display: block; font-size: 2.2rem; font-weight: 800; color: var(--ground);
  letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums;
}
.eco-metric b .u { color: var(--teal); }
.eco-metric span { display: block; margin-top: 0.55rem; font-size: var(--fs-sm); color: var(--muted); }

/* -------------------------------------------------------------
   12. TESTIMONIALS
   ------------------------------------------------------------- */
.quote-card { display: flex; flex-direction: column; height: 100%; }
.quote-card__mark { width: 30px; height: 30px; color: var(--lime); margin-bottom: 1rem; }
.quote-card blockquote { font-size: 1rem; color: var(--text); flex: 1; }
.quote-card figcaption {
  display: flex; align-items: center; gap: 0.85rem;
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-2);
}
.quote-card__logo {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--ground); color: var(--lime); border-radius: var(--r);
  font-weight: 800; font-size: 0.9rem;
}
.quote-card__who b { display: block; color: var(--ink); font-size: 0.95rem; }
.quote-card__who span { font-size: var(--fs-sm); color: var(--muted); }

/* -------------------------------------------------------------
   13. CONTACT
   ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: start; }
.branch-card {
  border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(1.4rem, 2.4vw, 1.9rem); background: #fff;
  border-top: 3px solid var(--teal);
}
.branch-card__head { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem; }
.branch-card__head h3 { font-size: var(--fs-h3); }
.branch-list { display: grid; gap: 0.75rem; }
.branch-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text); }
.branch-list svg { flex: none; width: 17px; height: 17px; color: var(--teal); margin-top: 2px; }
.branch-list a:hover { color: var(--teal-ink); }

.map-embed {
  margin-top: 1.15rem; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

/* -------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background: var(--ground); color: var(--on-dark-mute);
  border-top: 4px solid var(--teal);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); padding-block: clamp(3rem, 5vw, 4.5rem);
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name span { color: var(--lime); }
.footer-brand .brand__tag { color: var(--on-dark-mute); }
.footer-about { margin-top: 1.05rem; font-size: var(--fs-sm); max-width: 38ch; }
.footer-social { display: flex; gap: 0.55rem; margin-top: 1.3rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--r); display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #dbe7e9;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--lime); border-color: var(--lime); color: var(--ground); }
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 1.05rem; font-weight: 700;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--fs-sm); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--lime); }

.company-id { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 2rem; }
.company-id h4 {
  color: #fff; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 1.1rem; font-weight: 700;
}
.company-id dl {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 1.75rem; margin: 0;
}
.company-id div { display: flex; flex-direction: column; gap: 0.2rem; }
.company-id dt {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--on-dark-mute);
}
.company-id dd { margin: 0; font-size: var(--fs-sm); color: #fff; font-variant-numeric: tabular-nums; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: var(--fs-xs);
}
.footer-bottom a:hover { color: var(--lime); }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* -------------------------------------------------------------
   15. RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 1180px) {
  .mega__inner { grid-template-columns: 1fr 1fr 1fr; }
  .mega__intro { grid-column: 1 / -1; border-right: 0; padding-right: 0;
                 border-bottom: 1px solid var(--line); padding-bottom: 1.25rem; }
  .mega__featured { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .mega__featured img { width: 220px; aspect-ratio: 16 / 10; }
}

/* The six-item desktop row needs ~960px of nav space; below that the
   drawer takes over rather than letting the menu overflow. */
@media (max-width: 1099px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .nav__toggle { display: grid; }

  .nav__drawer {
    display: block; position: fixed; top: 0; right: 0; bottom: 0;
    width: min(90vw, 380px); background: #fff; z-index: 250;
    box-shadow: -8px 0 40px rgba(0,32,37,0.22); padding: 1.15rem;
    transform: translateX(100%); transition: transform var(--dur) var(--ease); overflow-y: auto;
  }
  .nav__drawer.open { transform: translateX(0); }
  .nav__backdrop {
    display: block; position: fixed; inset: 0; background: rgba(0,32,37,0.6); z-index: 240;
    opacity: 0; visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
  }
  .nav__backdrop.open { opacity: 1; visibility: visible; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }

  .drawer-acc { border-bottom: 1px solid var(--line); }
  .drawer-acc__btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 0.5rem; padding: 0.95rem 0.2rem; background: none; border: 0; cursor: pointer;
    font-weight: 600; color: var(--ink); font-family: inherit; text-align: left;
  }
  .drawer-acc__btn .chev { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
  .drawer-acc__btn[aria-expanded="true"] { color: var(--teal-ink); }
  .drawer-acc__btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
  .drawer-acc__panel { padding: 0 0 0.9rem 0.6rem; display: grid; gap: 0.55rem; }
  .drawer-acc__panel[hidden] { display: none; }
  .drawer-acc__panel a { font-size: 0.9rem; color: var(--text); }
  .drawer-acc__panel a:hover { color: var(--teal-ink); }
  .drawer-link {
    display: block; padding: 0.95rem 0.2rem; font-weight: 600;
    color: var(--ink); border-bottom: 1px solid var(--line);
  }
  .drawer-link:hover { color: var(--teal-ink); }
  .drawer-cta { display: grid; gap: 0.55rem; margin-top: 1.35rem; }
}

/* Between the mobile drawer and full desktop the six nav items get tight -
   shrink padding/type rather than letting a label wrap. */
@media (min-width: 1100px) and (max-width: 1279px) {
  .nav { gap: 0.85rem; }
  .nav__link { padding: 0.6rem 0.55rem; font-size: 0.875rem; }
  .nav__link::after { left: 0.55rem; right: 0.55rem; }
  .brand__tag { display: none; }
}

@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .split, .eco-top, .rfq-layout, .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .utility-links { display: none; }

}

@media (max-width: 620px) {
  :root { --float: 40px; }
  .grid, .grid--3, .grid--2, .hero__cards, .stats,
  .eco-metrics, .form-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0 !important; padding-left: 0 !important; padding-block: 1.2rem; }
  .stat + .stat { border-top: 1px solid var(--line); }
  .utility-bar__inner { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; }
  .mega__inner { grid-template-columns: 1fr; }
  .mega__featured { flex-direction: column; }
  .mega__featured img { width: 100%; }
}

/* =============================================================
   17. SUBPAGES - page hero, breadcrumbs, filter grid
   ============================================================= */
.page-hero {
  position: relative; color: var(--on-dark);
  background-color: var(--ground);
  background-image:
    linear-gradient(135deg, rgba(0, 32, 37, 0.94) 0%, rgba(11, 37, 69, 0.9) 100%);
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.page-hero--photo { background-blend-mode: normal; }
.page-hero__inner { padding-block: clamp(2.25rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 {
  color: #fff; font-size: clamp(1.9rem, 1.35rem + 2.2vw, 3rem);
  letter-spacing: -0.03em; margin-top: 0.75rem;
}
.page-hero__lead { margin-top: 1.1rem; font-size: var(--fs-lead); color: var(--on-dark); max-width: 62ch; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.9rem; }

/* Breadcrumbs */
.breadcrumb { padding-top: 1.25rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: var(--fs-sm); }
.breadcrumb li { display: flex; align-items: center; gap: 0.45rem; color: var(--on-dark-mute); }
.breadcrumb a { color: var(--on-dark-mute); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb li[aria-current] { color: #fff; font-weight: 600; }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.filter-bar__label {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-right: 0.35rem;
}
.chip {
  font: inherit; font-size: var(--fs-sm); font-weight: 600; cursor: pointer;
  padding: 0.5rem 0.95rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--teal-ink); }
.chip[aria-pressed="true"] { background: var(--ground); border-color: var(--ground); color: var(--lime); }
.filter-count { font-size: var(--fs-sm); color: var(--muted); margin-left: auto; }

/* Product tiles */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tile {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.tile:hover { border-color: var(--teal); box-shadow: var(--sh-card); transform: translateY(-4px); }
.tile[hidden] { display: none; }
.tile__media { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 4px 4px 0 0; background: var(--ground); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tile:hover .tile__media img { transform: scale(1.04); }
.tile__body { padding: 1.35rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; flex: 1; }
.tile__body h3 { font-size: var(--fs-h3); color: var(--ground); }
.tile__body p { font-size: var(--fs-sm); color: var(--muted); flex: 1; }
.tile__specs { display: grid; gap: 0.35rem; width: 100%; }
.tile__specs li { font-size: var(--fs-sm); color: var(--text); display: flex; gap: 0.55rem; align-items: center; }
.tile__specs li::before { content: ""; width: 8px; height: 2px; background: var(--teal); flex: none; }
.tile__foot { display: flex; flex-wrap: wrap; gap: 0.6rem; width: 100%; margin-top: 0.35rem; }

.empty-state {
  border: 1px dashed var(--line); border-radius: var(--r-card);
  padding: 2.5rem; text-align: center; color: var(--muted);
}
.empty-state[hidden] { display: none; }

/* Related links strip */
.related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.related a {
  display: flex; flex-direction: column; gap: 0.4rem; padding: 1.15rem;
  border: 1px solid var(--line); border-radius: var(--r-card); background: #fff;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.related a:hover { border-color: var(--teal); transform: translateY(-2px); }
.related b { color: var(--ink); font-size: 0.98rem; }
.related span { font-size: var(--fs-sm); color: var(--muted); }

/* Full-bleed navy CTA band (subpages) */
.band { background: var(--ground); color: var(--on-dark); border-top: 4px solid var(--lime); }
.band__inner {
  display: grid; grid-template-columns: 1.5fr auto; gap: 2rem; align-items: center;
  padding-block: clamp(2.75rem, 5vw, 4rem);
}
.band__text { max-width: 62ch; }
.band__text .pill { margin-bottom: 1rem; }
.band h2 { color: #fff; font-size: var(--fs-h2); }
.band p { color: var(--on-dark-mute); margin-top: 0.75rem; }
.band__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* =============================================================
   18. QUICK INQUIRY MODAL
   ============================================================= */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 400; background: rgba(0, 32, 37, 0.66);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal {
  position: fixed; z-index: 401; inset: 0;
  display: grid; place-items: center; padding: 1.25rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.modal.open { opacity: 1; visibility: visible; }
.modal__dialog {
  width: min(100%, 560px); max-height: calc(100vh - 2.5rem); overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--lime);
  border-radius: var(--r-card); box-shadow: 0 24px 60px rgba(0, 32, 37, 0.32);
  transform: translateY(12px); transition: transform var(--dur) var(--ease);
}
.modal.open .modal__dialog { transform: none; }
.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.5rem 0.9rem;
}
.modal__head h2 { font-size: 1.25rem; }
.modal__head p { font-size: var(--fs-sm); color: var(--muted); margin-top: 0.3rem; }
.modal__close {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; color: var(--ink);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.modal__close:hover { border-color: var(--teal); color: var(--teal-ink); }
.modal__close svg { width: 18px; height: 18px; }
.modal__body { padding: 0 1.5rem 1.5rem; }

/* =============================================================
   19. LEGAL / PROSE PAGES
   ============================================================= */
.prose { max-width: 76ch; }
.prose h2 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem); margin-top: 2.25rem; }
.prose h3 { font-size: var(--fs-h3); margin-top: 1.5rem; }
.prose p, .prose li { color: var(--text); }
.prose p { margin-top: 0.9rem; }
.prose ul { margin-top: 0.9rem; display: grid; gap: 0.5rem; }
.prose ul li { display: flex; gap: 0.65rem; align-items: flex-start; }
.prose ul li::before { content: ""; width: 8px; height: 2px; background: var(--teal); flex: none; margin-top: 0.75em; }
.prose a { color: var(--teal-ink); font-weight: 600; text-decoration: underline; }
.prose a:hover { color: var(--lime-dark); }
.prose dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem 1.75rem; margin-top: 1.1rem; }
.prose dt { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.prose dd { margin: 0.2rem 0 0; color: var(--ink); font-weight: 600; }

.notice {
  border: 1px solid #f0d9a8; background: #fdf7e8; color: #6b4e0d;
  border-radius: var(--r-card); padding: 1.1rem 1.25rem; margin-top: 1.5rem;
  font-size: var(--fs-sm);
}
.notice b { color: #4d3908; }

/* =============================================================
   20. SUBPAGE RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .band__inner { grid-template-columns: 1fr; }
  .related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .tile-grid, .related { grid-template-columns: 1fr; }
  .filter-count { margin-left: 0; width: 100%; }
  .modal__dialog { max-height: calc(100vh - 1.5rem); }
}

/* -------------------------------------------------------------
   16. MOTION
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.07s; }
[data-reveal-delay="2"] { transition-delay: 0.14s; }
[data-reveal-delay="3"] { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .sector-card:hover .sector-card__media img,
  .tile:hover .tile__media img { transform: none; }
}
