/* ============================================================
 * Flexigas Website 2026, main stylesheet
 *
 * Source: lifted from Codex's v2 concept render
 * (Marketing/Websites/Flexigas/renders/styles.css, 2026-05-18),
 * enhanced with footer + nav + form-embed scaffolding for the
 * full page set.
 *
 * Palette (per memory flexigas_brand_palette_2026, 2026-05-06):
 *   Black / White / Yellow only as BRAND colours.
 *   Functional UI tones (line, soft, muted) preserved for hierarchy , 
 *   these are NOT the retired Yes Open greys (#4A5768, #353A41).
 *
 * Sister-brand continuity with Ridgeline is structural (same section
 * rhythm + class names: hero / proof-rail / install-band / spec-table
 * / final-cta), differentiated by light-first surface and yellow accent.
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&family=Inter:wght@500;600;700;800;900&display=swap');

:root {
  --black: #050505;
  --ink: #111111;
  --muted: #626262;
  --line: #dedede;
  --soft: #f6f6f2;
  --yellow: #f9c900;
  --yellow-2: #ffe36d;
  --accent: var(--yellow);
  --white: #ffffff;
  --max: 1180px;
  --font-display: "Inter", Arial, sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.45;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  align-items: center;
  min-height: 72px;
  padding: 0 40px;
  color: var(--black);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-mark {
  display: block;
  width: auto;
  height: 44px;
}
.site-footer .brand-mark { height: 38px; }
/* Legacy text wordmark - kept as fallback only when the SVG fails to load */
.brand-word {
  position: relative;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 650;
}
.primary-nav a {
  text-decoration: none;
  color: rgba(0,0,0,.68);
}
.primary-nav a:hover { color: var(--black); }
/* nav dropdowns */
.nav-group { position: relative; display: inline-flex; align-items: center; }
.nav-group-btn {
  font: inherit;
  font-weight: 650;
  color: rgba(0,0,0,.68);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-group-btn::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: .5;
  transition: transform .15s ease;
}
.nav-group-btn:hover { color: var(--black); }
.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
}
.nav-menu::before { /* transparent bridge over the gap so hover survives the trip to the items */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  white-space: nowrap;
}
.nav-menu a:hover { background: var(--soft); color: var(--black); }
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group.open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-group:hover .nav-group-btn::after,
.nav-group.open .nav-group-btn::after { transform: rotate(225deg); margin-top: 2px; }
/* hamburger (mobile only) */
.menu-toggle {
  display: none;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta-mobile { display: none; }

/* ---------- Buttons ---------- */
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(249,201,0,.26);
}
.header-cta,
.button-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(249,201,0,.18);
}
.button-secondary {
  color: var(--black);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.24);
}
.button-secondary.dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.46);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(560px, 74vh, 720px);
  overflow: hidden;
  color: var(--black);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 640px;
  max-width: calc(100% - 48px);
  padding: 56px 0 56px 64px;
}
.hero h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 520px;
  color: #383838;
  font-size: 20px;
  line-height: 1.45;
}
.eyebrow,
.pathway-kicker {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Per-hero focal points can override this via .hero-home / .hero-ds etc. */
  object-position: center center;
  opacity: 1;
}
/* Homepage hero: widescreen FG Bond + earthing cable banner.
   This image is already widescreen (1916x821 ~ 2.33:1) with the gloved-hands
   + fitting + cable cluster anchored right and a natural dark backdrop on the
   left. object-position centre lets the natural composition do the work. */
.hero-home .hero-media img { object-position: center center; }
/* CSST product page hero: light lay-flat, subject (fittings + pipe) clusters on
   the right so the left stays clean for copy. */
.hero-csst .hero-media img { object-position: 80% center; }
/* Looser line-height on the CSST hero H1 so the "Flexigas" g-descender does not
   collide with "CSST" on the wrapped second line (global .hero h1 is a tight .95). */
.hero-csst h1 { line-height: 1.06; }
/* Installers hero: in-action crimping shot, keep the hands + cutter visible on the
   right while the dark scrim holds the copy on the left. */
.hero-installers .hero-media img { object-position: 72% center; }
/* Contact hero: shorter full-width dark banner (no proof-rail). */
.hero-contact { min-height: clamp(360px, 46vh, 460px); }
.hero-contact .hero-media img { object-position: center center; }
/* Light hero gradient (default for any light-mode hero on a stone/white image). */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,.78) 0%,
    rgba(255,255,255,.60) 30%,
    rgba(255,255,255,.15) 55%,
    rgba(255,255,255,0) 75%);
}
/* Dark hero variant: flip copy to white + use a black gradient anchor on left.
   Use on any hero where the photo itself is dark/editorial. */
.hero.hero-dark { background: #0A0A0A; color: var(--white); }
.hero.hero-dark .hero-copy { color: var(--white); }
.hero.hero-dark h1 { color: var(--white); }
.hero.hero-dark .hero-lede { color: rgba(255,255,255,.82); }
.hero.hero-dark .hero-media::after {
  background: linear-gradient(90deg,
    rgba(10,10,10,.86) 0%,
    rgba(10,10,10,.70) 30%,
    rgba(10,10,10,.30) 55%,
    rgba(10,10,10,0) 78%);
}
.hero.hero-dark .hero-progress span { background: rgba(255,255,255,.18); }
.hero.hero-dark .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.46);
}
.hero.hero-dark .proof-rail {
  color: var(--white);
  background: rgba(10,10,10,.78);
  border-top-color: rgba(255,255,255,.10);
  box-shadow: 0 -12px 36px rgba(0,0,0,.30);
  backdrop-filter: blur(12px);
}
.hero-progress {
  position: absolute;
  top: 28px;
  left: 64px;
  z-index: 5;
  display: flex;
  gap: 10px;
  width: 360px;
  max-width: calc(100% - 128px);
}
.hero-progress span {
  height: 3px;
  flex: 1;
  background: rgba(0,0,0,.14);
}
.hero-progress .active { background: var(--yellow); }

/* ---------- Proof rail ---------- */
.proof-rail {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 60px;
  color: var(--black);
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 36px rgba(0,0,0,.06);
  backdrop-filter: blur(12px);
}
.proof-rail span {
  position: relative;
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.proof-rail span:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -4px;
  top: 50%;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-50%);
}

/* ---------- Audience rail ---------- */
.audience-rail {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  min-height: 74px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  background: #fbfbf8;
}
.audience-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.audience-rail a {
  color: var(--ink);
  font-weight: 850;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

/* ---------- Section primitives ---------- */
.section { padding: 44px 42px; }
.section-heading,
.pathway-list,
.proof-grid,
.technical-copy,
.spec-table,
.ds-layout {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section-heading { margin-bottom: 28px; }
.section-heading h2,
.install-copy h2,
.technical-copy h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}
.section-heading p,
.install-copy p,
.technical-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Systems pathway ---------- */
.systems {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  border-bottom: 1px solid var(--line);
  background: #fbfbf8;
}
.systems .section-heading { margin: 0; }
.systems .section-heading h2::after,
.pathway h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 16px;
  background: var(--yellow);
}
.pathway-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.pathway {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.pathway:last-child {
  padding-right: 0;
  border-right: 0;
}
.pathway img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
  background: var(--soft);
}
.pathway h3 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}
.pathway p:not(.pathway-kicker) {
  color: #303030;
  font-size: 15px;
}
.pathway a {
  color: var(--black);
  font-weight: 850;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

/* ---------- Install band (dark) ---------- */
.install-band {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(520px, 1.18fr);
  gap: 40px;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-top: 6px solid var(--yellow);
}
.install-copy {
  max-width: 520px;
  margin-left: auto;
}
.install-copy p { color: rgba(255,255,255,.76); }
.install-image { margin: 0; }
.install-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mini-metrics span {
  border-top: 2px solid var(--yellow);
  padding-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.mini-metrics strong {
  display: block;
  color: var(--yellow);
  font-size: 30px;
  line-height: 1;
}

/* ---------- Proof grid ---------- */
.proof-grid-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.compact h2 { max-width: 620px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.proof-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
  background: var(--soft);
}
.proof-grid h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 21px;
}
.proof-grid p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Technical section + spec table ---------- */
.technical {
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid var(--line);
  background: #f9f9f6;
}
.technical-copy { padding: 0 42px; }
.spec-table {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.spec-table div {
  min-height: 120px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.spec-table div:last-child { border-right: 0; }
.spec-table span {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}
.spec-table strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.08;
}

/* ---------- Ridgeline cross-promo band ----------
   Mirrors the Ridgeline `.compatibility` section pattern exactly so the band
   reads as a slice of Ridgeline transplanted into Flexigas. Brand teal is
   Ridgeline's canonical #008DA2 (from ridgeline-homepage-2026.css :root).
   Background is #1a1a1a (near-black), NOT teal. Image is a CSS background
   anchored 75% bottom with a left-to-transparent dark gradient on top. */
.cross-promo-band {
  position: relative;
  min-height: clamp(440px, 58vh, 620px);
  overflow: hidden;
  display: block;
  background: #1a1a1a url('../assets/cross-brand/ridgeline-en1254-tee.png') 75% bottom / cover no-repeat;
  color: #FFFFFF;
}
.cross-promo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(20,20,20,0.95) 0%,
    rgba(20,20,20,0.86) 28%,
    rgba(20,20,20,0.50) 50%,
    rgba(20,20,20,0.10) 72%,
    rgba(20,20,20,0) 88%);
  pointer-events: none;
}
.cross-promo-band .cross-promo-media { display: none; } /* legacy <img>, image is now a CSS background */
.cross-promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: clamp(440px, 58vh, 620px);
  padding: 64px clamp(32px, 6vw, 96px);
}
.cross-promo-copy > * {
  max-width: 560px;
  margin-left: clamp(0px, 4vw, 80px);
}
.cross-promo-band .eyebrow {
  margin: 0 0 18px;
  color: #008DA2; /* Ridgeline teal */
  letter-spacing: 0;
}
.cross-promo-band h2 {
  margin: 0 0 24px;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.cross-promo-band .teal-text { color: #008DA2; }
.cross-promo-lede {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
}
.button-cross-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  color: #FFFFFF;
  background: #008DA2; /* Ridgeline teal solid, matches their CTA pattern */
  border: 0;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s ease;
}
.button-cross-promo:hover { background: #007A8C; } /* Ridgeline teal-hover token */
.button-cross-promo:active { background: #006675; } /* Ridgeline teal-press token */
.cross-promo-kicker {
  margin: 0 0 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: #008DA2;
}
.cross-promo-logo {
  align-self: flex-start;
  height: clamp(46px, 5vw, 64px);
  width: auto;
  max-width: 320px;
  display: block;
  margin: 0 0 14px;
}

/* ---------- Final CTA (light, full-width white band) ----------
   Sits between the Ridgeline cross-promo (dark) and the footer (dark)
   to break the dark→dark→dark stack. Per Joel ruling 2026-05-22.
   Use this for the homepage; the .final-cta variant below stays
   available for pages that genuinely want a dark close. */
.final-cta-light {
  padding: 76px 42px 84px;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.final-cta-light h2 {
  max-width: 820px;
  margin: 0 auto 16px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.02;
}
.final-cta-light .eyebrow {
  margin-bottom: 14px;
}
.final-cta-light .final-cta-lede {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}
.final-cta-light .hero-actions {
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Final CTA (dark, kept available for non-homepage use) ---------- */
.final-cta {
  padding: 76px 42px 84px;
  text-align: center;
  color: var(--white);
  background: var(--black);
}
.final-cta h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .hero-actions { justify-content: center; }

/* ---------- DS page ---------- */
.hero-ds .hero-media img { object-position: 72% center; }
.ds-explainer {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.ds-layout {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 36px;
  align-items: stretch;
}
.ds-layout figure { margin: 0; }
.ds-layout figure img {
  height: 100%;
  min-height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.ds-points {
  display: grid;
  gap: 18px;
}
.ds-points article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.ds-points span {
  color: var(--yellow);
  font-weight: 900;
}
.ds-points h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.ds-points p { color: var(--muted); }

/* ---------- HubSpot form embed (lead capture pages) ---------- */
.form-embed {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,.06);
}
.form-embed .hbspt-form input,
.form-embed .hbspt-form textarea,
.form-embed .hbspt-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.form-embed .hbspt-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.form-embed .hbspt-form .hs-submit input[type="submit"] {
  min-height: 48px;
  padding: 0 24px;
  color: var(--black);
  background: var(--yellow);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 72px 42px 28px;
  color: rgba(255,255,255,.72);
  background: var(--black);
}
.footer-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto 44px;
}
.footer-brand-link { display: inline-block; }
.footer-brand .footer-logo {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer-tagline {
  max-width: 240px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social a {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
}
.footer-social a:hover { color: var(--yellow); }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer-nav-col h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-nav-col ul { margin: 0; padding: 0; list-style: none; }
.footer-nav-col li { margin-bottom: 10px; }
.footer-nav-col a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  text-decoration: none;
}
.footer-nav-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.5);
  font-size: 12px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Nav fit: medium screens (tighten so 6 items don't overflow) ---------- */
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header { grid-template-columns: 196px 1fr 166px; padding: 0 24px; }
  .primary-nav { gap: 20px; font-size: 13px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 0 18px;
  }
  .menu-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(0,0,0,.14);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a,
  .nav-group { border-bottom: 1px solid var(--line); }
  .primary-nav > a { padding: 14px 4px; }
  .nav-group { display: block; position: static; }
  .nav-group-btn { width: 100%; justify-content: space-between; padding: 14px 4px; }
  .nav-menu {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px 14px;
    background: transparent;
  }
  .nav-group.open .nav-menu { display: flex; transform: none; }
  .nav-menu::before { display: none; }
  .primary-nav a.nav-cta-mobile {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 14px; min-height: 48px; border-radius: 4px;
    background: var(--yellow); color: var(--black); font-weight: 800;
    text-decoration: none; box-shadow: 0 16px 34px rgba(249,201,0,.18);
  }
  .nav-menu a { padding: 9px 6px; white-space: normal; }
  .header-cta { display: none; }
  /* Legacy .brand img width rule removed 2026-05-28: it was forcing 142px width
     onto the .brand-mark logo and squishing its aspect ratio at mobile.
     .brand-mark controls sizing via height + width:auto only. */
  .brand-word { font-size: 24px; }
  .hero {
    min-height: 560px;
  }
  .hero-copy {
    width: auto;
    padding: 52px 24px 40px;
  }
  .hero h1 { font-size: 52px; }
  .hero-lede { font-size: 18px; }
  .hero-home .hero-media img { object-position: 85% center; }
  .hero-media::after {
    background: linear-gradient(180deg,
      rgba(255,255,255,.94) 0%,
      rgba(255,255,255,.80) 45%,
      rgba(255,255,255,.30) 85%,
      rgba(255,255,255,0) 100%);
  }
  .brand-mark { height: 32px; width: auto; }
  .hero-progress {
    left: 24px;
    top: 24px;
    max-width: calc(100% - 48px);
  }
  .proof-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-rail span {
    padding: 14px 10px;
    font-size: 11px;
  }
  .proof-rail span:not(:last-child)::after { display: none; }
  .audience-rail {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .section { padding: 42px 24px; }
  .section-heading h2,
  .install-copy h2,
  .technical-copy h2,
  .final-cta h2 {
    font-size: 36px;
  }
  .systems,
  .install-band,
  .ds-layout {
    grid-template-columns: 1fr;
  }
  .systems .section-heading { max-width: 640px; }
  .pathway-list,
  .proof-grid,
  .spec-table {
    grid-template-columns: 1fr;
  }
  .pathway,
  .spec-table div {
    border-right: 0;
    padding-right: 0;
  }
  .pathway {
    border-bottom: 1px solid var(--line);
    padding-bottom: 26px;
  }
  .pathway:last-child { border-bottom: 0; }
  .install-copy { margin-left: 0; }
  .install-image img,
  .ds-layout figure img {
    height: 360px;
    min-height: 0;
  }
  .mini-metrics { grid-template-columns: 1fr; }
  .technical-copy { padding: 0 24px; }
  .cross-promo-band {
    min-height: 480px;
    background-position: 75% center;
  }
  .cross-promo-band::after {
    background: linear-gradient(180deg,
      rgba(20,20,20,0.55) 0%,
      rgba(20,20,20,0.86) 55%,
      rgba(20,20,20,0.94) 100%);
  }
  .cross-promo-copy { padding: 56px 24px; min-height: 480px; }
  .cross-promo-copy > * { margin-left: 0; max-width: 100%; }
  .cross-promo-band h2 { font-size: 36px; }
  .final-cta-light { padding: 56px 24px 64px; }
  .final-cta-light h2 { font-size: 32px; }
  .cross-promo-media img { object-position: 75% center; opacity: .50; }
  .cross-promo-media::after {
    background:
      linear-gradient(180deg, rgba(14,45,51,.92) 0%, rgba(14,45,51,.80) 60%, rgba(14,45,51,.65) 100%);
  }
  .site-footer { padding: 56px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   PRODUCTS PAGE (.fp-* namespace)
   Mirrors the Ridgeline .pp-* products pattern, adapted to Flexigas
   tokens. Links/accents use ink text + yellow underline (yellow text
   on white is low-contrast). Surface alternation white / soft.
   ============================================================ */

.fp-hero {
  padding: clamp(56px, 9vh, 104px) clamp(20px, 6vw, 64px) clamp(40px, 6vh, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.fp-hero-inner { max-width: 980px; margin: 0 auto; }
.fp-hero .eyebrow { margin-bottom: 14px; }
.fp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 18px;
}
.fp-hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
}

/* Sticky anchor nav */
.fp-anchor-nav {
  position: sticky;
  top: 72px;
  z-index: 18;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fp-anchor-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 36px);
  overflow-x: auto;
  padding: 14px clamp(16px, 4vw, 32px);
  scrollbar-width: none;
}
.fp-anchor-nav-inner::-webkit-scrollbar { display: none; }
.fp-anchor-nav a {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.fp-anchor-nav a:hover { border-bottom-color: var(--yellow); }

/* Sections + surface alternation */
.fp-section { padding: clamp(56px, 9vh, 104px) clamp(20px, 6vw, 64px); background: var(--white); }
.fp-section-inner { max-width: var(--max); margin: 0 auto; }
.fp-section.alt { background: var(--soft); }
.fp-section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.fp-section-head .eyebrow { margin-bottom: 12px; }
.fp-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 16px;
}
.fp-section-lede { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55; color: var(--muted); margin: 0; }
.fp-section-foot {
  margin: 44px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.fp-section-foot a, .fp-section-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* Card base */
.fp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fp-card:hover { border-color: var(--yellow); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.fp-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-card-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.fp-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 6px;
}
.fp-card-code {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.fp-card-desc { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 12px; flex-grow: 1; }
.fp-card-meta {
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink);
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.fp-card-meta strong { color: var(--black); font-weight: 700; }

/* Spec list (tube cards) */
.fp-spec-list {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 12px;
}
.fp-spec-list > div { display: flex; flex-direction: column; gap: 2px; }
.fp-spec-list dt { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.fp-spec-list dd { margin: 0; color: var(--black); font-size: 14px; font-weight: 700; }

/* ---------- Technical downloads cards (.fp-dl-*) ---------- */
.fp-dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 480px)); justify-content: center; gap: 20px; }
.fp-dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 22px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fp-dl-card:hover { border-color: var(--yellow); box-shadow: 0 14px 32px rgba(0,0,0,.06); }
.fp-dl-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  background: var(--soft);
  border-radius: 8px;
}
.fp-dl-body { flex: 1 1 auto; min-width: 0; }
.fp-dl-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--black); margin: 0 0 4px; line-height: 1.2; }
.fp-dl-desc { font-size: 13px; color: var(--muted); margin: 0 0 6px; line-height: 1.4; }
.fp-dl-tag { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.fp-dl-btn {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 20px;
  background: var(--yellow); color: var(--black);
  border-radius: 4px; font-weight: 800; font-size: 14px; text-decoration: none;
  transition: background .12s ease;
}
.fp-dl-btn:hover { background: #ffd84d; }
/* PDF first-page thumbnail (mirrors Ridgeline .tdp-card-thumb), 92x120 portrait,
   cover-cropped from the top. Falls back to a centred doc/app icon when no img. */
.fp-dl-thumb {
  flex: 0 0 auto;
  width: 92px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
/* contain (not cover) so the whole first page shows, nothing cropped at the bottom */
.fp-dl-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #fff; }
.fp-dl-thumb svg { width: 30px; height: 30px; color: var(--ink); }
@media (max-width: 700px) {
  .fp-dl-grid { grid-template-columns: 1fr; }
  .fp-dl-card { flex-wrap: wrap; }
  .fp-dl-btn { width: 100%; }
  .fp-dl-thumb { width: 78px; height: 100px; }
}

/* ---------- Install step sequence (.fp-steps) ---------- */
.fp-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.fp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.fp-step-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #f0f0f0;
}
.fp-step-num {
  position: absolute;
  top: 14px; left: 14px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.fp-step-body { padding: 20px 24px 24px; }
.fp-step-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 800; margin: 0 0 7px; color: var(--black); line-height: 1.2; }
.fp-step-body p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }
@media (max-width: 760px) { .fp-steps { grid-template-columns: 1fr; } }

/* Full-width image banner band (used mid-page, e.g. FG Bond) */
.fp-banner { width: 100%; line-height: 0; background: #0A0A0A; }
.fp-banner img {
  width: 100%;
  height: clamp(320px, 46vh, 540px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Tube card image: square container so the square spool product shots fit
   cleanly (no pillarbox / stretched look in a landscape 4:3 box). */
.fp-card-image-tube { aspect-ratio: 1 / 1; }
/* Coil-lengths line on tube cards */
.fp-card-coils { margin: 10px 0 0; font-size: 13px; line-height: 1.4; color: var(--ink); }
.fp-card-coils strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; margin-bottom: 2px; }

/* FG Bond feature row (text + image side by side) */
.fp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.fp-feature-img { aspect-ratio: 4 / 3; background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.fp-feature-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
/* Cover variant: for editorial / lifestyle photos that should fill the box
   edge-to-edge (no white padding), e.g. a dark-background product shot. */
.fp-feature-img--cover { background: #0A0A0A; }
.fp-feature-img--cover img { object-fit: cover; padding: 0; }
.fp-feature h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 900; line-height: 1.05; margin: 0 0 16px; color: var(--black); }
.fp-feature p { color: var(--muted); font-size: 17px; line-height: 1.55; margin: 0 0 14px; }

/* Per-section grids */
.fp-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 360px)); justify-content: center; gap: 28px; }
.fp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

@media (max-width: 980px) {
  .fp-anchor-nav { top: 64px; }
  .fp-grid-3, .fp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fp-feature { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .fp-grid-3, .fp-grid-4, .fp-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE (.cp-*), ported from the Ridgeline contact
   template, recoloured to Flexigas tokens (yellow accent,
   black buttons, yellow underlines). Same layout: hero (text +
   image) -> form + direct-contact grid -> quick-links band.
   ============================================================ */
.cp-hero {
  background: linear-gradient(180deg, var(--soft) 0%, #ffffff 100%);
  padding: clamp(40px,6vw,72px) clamp(20px,4vw,48px) clamp(36px,5vw,60px);
  border-bottom: 1px solid var(--line);
}
.cp-hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,4vw,56px); align-items: center; }
@media (max-width: 880px) { .cp-hero-inner { grid-template-columns: 1fr; } }
.cp-hero-text h1 { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.4rem); line-height: 1.08; margin: .4rem 0 .8rem; font-weight: 900; letter-spacing: -.02em; color: var(--black); }
.cp-hero-lede { font-size: clamp(1.05rem,1.6vw,1.25rem); line-height: 1.55; color: var(--muted); margin: 0; max-width: 560px; }
.cp-hero-image { border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.cp-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 880px) { .cp-hero-image { aspect-ratio: 16 / 10; max-height: 320px; } }

.cp-main { padding: clamp(48px,6vw,80px) clamp(20px,4vw,48px); background: #fff; }
.cp-main-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px,4vw,56px); align-items: start; }
@media (max-width: 960px) { .cp-main-inner { grid-template-columns: 1fr; } }
.cp-section-head { margin-bottom: clamp(20px,2.5vw,28px); }
.cp-section-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); line-height: 1.15; margin: .4rem 0 .6rem; font-weight: 800; letter-spacing: -.015em; color: var(--black); }
.cp-section-lede { font-size: clamp(1rem,1.4vw,1.1rem); line-height: 1.55; color: var(--muted); margin: 0; max-width: 580px; }

.cp-form-embed { background: var(--soft); border: 1px solid var(--line); border-radius: 10px; padding: clamp(20px,3vw,32px); }
.cp-form-embed label { font-weight: 700; font-size: .92rem; color: var(--black); margin-bottom: 5px; display: block; }
.cp-form-embed input, .cp-form-embed select, .cp-form-embed textarea, .cp-form-embed .hs-input {
  width: 100%; padding: 11px 13px; font-family: inherit; font-size: 1rem; border: 1px solid #c7c7c7;
  border-radius: 6px; background: #fff; color: var(--black); box-sizing: border-box; margin-bottom: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cp-form-embed textarea { min-height: 120px; resize: vertical; }
.cp-form-embed input:focus, .cp-form-embed select:focus, .cp-form-embed textarea:focus, .cp-form-embed .hs-input:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(249,201,0,.35);
}
.cp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .cp-form-row { grid-template-columns: 1fr; } }
.cp-form-submit, .cp-form-embed .hs-button {
  background: var(--yellow); color: var(--black); border: 0; padding: 13px 28px; font-family: inherit;
  font-size: 1rem; font-weight: 800; border-radius: 4px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
}
.cp-form-submit:hover, .cp-form-embed .hs-button:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(249,201,0,.26); }
.cp-form-note { font-size: .85rem; line-height: 1.5; color: var(--muted); margin: 14px 0 0; }
.cp-form-note code { background: #fff; padding: 1px 6px; border-radius: 3px; font-family: ui-monospace, Menlo, monospace; font-size: .9em; color: var(--black); }

.cp-direct-col { position: sticky; top: 24px; }
@media (max-width: 960px) { .cp-direct-col { position: static; } }
.cp-direct-head { margin-bottom: clamp(18px,2.5vw,24px); }
.cp-direct-head h2 { font-family: var(--font-display); font-size: clamp(1.3rem,2.2vw,1.6rem); line-height: 1.2; margin: .4rem 0 0; font-weight: 800; letter-spacing: -.01em; color: var(--black); }
.cp-direct-list { list-style: none; margin: 0 0 clamp(20px,2.8vw,28px); padding: 0; display: grid; gap: clamp(14px,2vw,20px); }
.cp-direct-item { background: var(--soft); border-radius: 8px; padding: 16px 18px; display: grid; gap: 4px; }
.cp-direct-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.cp-direct-value { font-size: 1.08rem; font-weight: 700; color: var(--black); text-decoration: none; line-height: 1.4; }
.cp-direct-value:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
.cp-direct-address { font-style: normal; font-weight: 700; color: var(--black); line-height: 1.5; }
.cp-direct-note { font-size: .88rem; color: var(--muted); margin-top: 2px; }
.cp-direct-link { color: var(--ink); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; font-weight: 800; }
.cp-map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 4px 12px rgba(0,0,0,.06); background: var(--soft); }
.cp-map { display: block; width: 100%; }

.cp-quick { background: var(--soft); padding: clamp(48px,6vw,80px) clamp(20px,4vw,48px); border-top: 1px solid var(--line); }
.cp-quick-inner { max-width: var(--max); margin: 0 auto; }
.cp-quick-title { font-family: var(--font-display); font-size: clamp(1.5rem,2.6vw,2rem); line-height: 1.15; margin: 0 0 .6rem; font-weight: 800; letter-spacing: -.015em; text-align: center; color: var(--black); }
.cp-quick-lede { font-size: clamp(1rem,1.4vw,1.1rem); line-height: 1.55; color: var(--muted); text-align: center; margin: 0 auto clamp(28px,3.5vw,40px); max-width: 580px; }
.cp-quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
@media (max-width: 880px) { .cp-quick-grid { grid-template-columns: 1fr; } }
.cp-quick-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: clamp(20px,2.5vw,28px); text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.cp-quick-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.08); border-color: #cfcfcf; }
.cp-quick-card h3 { font-family: var(--font-display); font-size: clamp(1.05rem,1.5vw,1.2rem); line-height: 1.25; margin: 0 0 .5rem; font-weight: 800; letter-spacing: -.01em; color: var(--black); }
.cp-quick-card-lede { font-size: .95rem; line-height: 1.5; color: var(--muted); margin: 0 0 .9rem; }
.cp-quick-cta { display: inline-block; font-weight: 800; font-size: .92rem; color: var(--ink); }
.cp-quick-card:hover .cp-quick-cta { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
.cp-quick-card-num { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .12em; color: var(--black); background: rgba(249,201,0,.18); padding: 4px 10px; border-radius: 999px; margin-bottom: .9rem; }

/* ============================================================
   FIND A STOCKIST (.fp-locator search block, .fp-merchants band)
   ============================================================ */
.fp-locator { padding: clamp(48px,6vw,80px) clamp(20px,4vw,48px); background: #fff; }
.fp-locator-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px,4vw,48px); align-items: stretch; }
@media (max-width: 880px) { .fp-locator-inner { grid-template-columns: 1fr; } }
.fp-locator-panel { background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: clamp(24px,3vw,34px); align-self: start; }
.fp-locator-panel h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 800; letter-spacing: -.015em; color: var(--black); margin: .4rem 0 .6rem; line-height: 1.12; }
.fp-locator-panel p { font-size: 1rem; line-height: 1.55; color: var(--muted); margin: 0 0 20px; }
.fp-locator-field { display: block; margin-bottom: 14px; }
.fp-locator-field label { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 6px; }
.fp-locator-field input, .fp-locator-field select { width: 100%; padding: 12px 14px; font-family: inherit; font-size: 1rem; border: 1px solid #c7c7c7; border-radius: 6px; background: #fff; color: var(--black); box-sizing: border-box; }
.fp-locator-field input:focus, .fp-locator-field select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(249,201,0,.35); }
.fp-locator-btn { width: 100%; background: var(--yellow); color: var(--black); border: 0; padding: 13px 24px; font-family: inherit; font-size: 1rem; font-weight: 800; border-radius: 4px; cursor: pointer; margin-top: 4px; transition: transform .15s ease, box-shadow .15s ease; }
.fp-locator-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(249,201,0,.26); }
.fp-locator-note { font-size: .9rem; line-height: 1.5; color: var(--muted); margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.fp-locator-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
.fp-locator-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 4px 14px rgba(0,0,0,.07); min-height: 420px; background: var(--soft); }
.fp-locator-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }

.fp-merchants { padding: clamp(44px,5vw,68px) clamp(20px,4vw,48px); background: var(--soft); border-top: 1px solid var(--line); }
.fp-merchants-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.fp-merchants h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 800; letter-spacing: -.015em; color: var(--black); margin: .4rem 0 .6rem; }
.fp-merchants-lede { font-size: 1.05rem; line-height: 1.55; color: var(--muted); margin: 0 auto clamp(28px,3.5vw,40px); max-width: 560px; }
.fp-merchants-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px,2vw,24px); }
.fp-merchant { background: #fff; border: 1px solid var(--line); border-radius: 10px; width: 200px; height: 110px; display: flex; align-items: center; justify-content: center; padding: 22px; transition: border-color .18s ease, box-shadow .18s ease; }
.fp-merchant:hover { border-color: #cfcfcf; box-shadow: 0 6px 16px rgba(0,0,0,.07); }
.fp-merchant img { max-width: 100%; max-height: 100%; object-fit: contain; }
.fp-merchants-note { font-size: .98rem; color: var(--muted); margin: clamp(24px,3vw,32px) 0 0; }
.fp-merchants-note strong { color: var(--black); font-weight: 800; }

/* Stockist directory (collapsible, all branches) */
.fp-directory { padding: clamp(44px,5vw,68px) clamp(20px,4vw,48px); background: #fff; border-top: 1px solid var(--line); }
.fp-directory-inner { max-width: var(--max); margin: 0 auto; }
.fp-dir-head { text-align: center; margin-bottom: clamp(24px,3vw,36px); }
.fp-dir-head h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 800; letter-spacing: -.015em; color: var(--black); margin: .4rem 0 .6rem; }
.fp-dir-lede { font-size: 1.05rem; line-height: 1.55; color: var(--muted); margin: 0 auto; max-width: 620px; }
.fp-dir-groups { display: grid; gap: 10px; }
.fp-dir-group { border: 1px solid var(--line); border-radius: 8px; background: var(--soft); overflow: hidden; }
.fp-dir-group > summary { cursor: pointer; list-style: none; padding: 15px 20px; display: flex; align-items: center; gap: 12px; }
.fp-dir-group > summary::-webkit-details-marker { display: none; }
.fp-dir-group > summary::after { content: "+"; margin-left: 6px; font-family: var(--font-display); font-weight: 800; color: var(--muted); font-size: 1.3rem; line-height: 1; }
.fp-dir-group[open] > summary::after { content: "-"; }
.fp-dir-brand { font-family: var(--font-display); font-weight: 800; color: var(--black); font-size: 1.05rem; }
.fp-dir-count { margin-left: auto; background: rgba(249,201,0,.22); color: var(--black); font-size: .78rem; font-weight: 800; letter-spacing: .02em; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.fp-dir-towns { padding: 0 20px 18px; color: var(--muted); line-height: 1.75; font-size: .95rem; margin: 0; }

/* ============================================================
   STOCKIST LOGO MARQUEE (.fp-marquee), auto-scrolling, light.
   Mirrors the Ridgeline distributor band mechanic on a light
   surface with colour logos. Track holds the logo set TWICE so
   a -50% translate loops seamlessly. Pauses on hover.
   ============================================================ */
.fp-marquee-band { background: #fff; padding: clamp(40px,5vw,62px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.fp-marquee-head { text-align: center; margin: 0 auto clamp(22px,3vw,34px); padding: 0 24px; max-width: 680px; }
.fp-marquee-head h2 { font-family: var(--font-display); font-size: clamp(1.3rem,2.2vw,1.75rem); font-weight: 800; letter-spacing: -.015em; color: var(--black); margin: .35rem 0 0; }
.fp-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.fp-marquee-track { display: flex; align-items: center; gap: clamp(40px,5.5vw,80px); width: max-content; animation: fp-marquee-scroll 60s linear infinite; }
.fp-marquee:hover .fp-marquee-track { animation-play-state: paused; }
.fp-marquee-track img { height: 44px; width: auto; max-width: 168px; object-fit: contain; flex: 0 0 auto; display: block; }
@keyframes fp-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .fp-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 32px 48px; padding: 0 24px; }
  .fp-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
   SPEC LANGUAGE BLOCK (.fp-spec-block), copy-paste specification
   text for the Specifiers page. Dark card, yellow accent.
   ============================================================ */
.fp-spec-block { max-width: var(--max); margin: 0 auto; background: var(--black); color: #f3f3f3; border-radius: 12px; padding: clamp(24px,3.4vw,38px); position: relative; }
.fp-spec-block .fp-spec-eyebrow { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 14px; }
.fp-spec-block p { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .98rem; line-height: 1.75; margin: 0 0 12px; color: #ededed; max-width: 70ch; }
.fp-spec-block p:last-child { margin-bottom: 0; }
.fp-spec-copy { position: absolute; top: 20px; right: 20px; background: var(--yellow); color: var(--black); border: 0; font-family: var(--font-display); font-weight: 800; font-size: .8rem; padding: 7px 14px; border-radius: 4px; cursor: pointer; }
.fp-spec-copy:hover { filter: brightness(.96); }
@media (max-width: 560px) { .fp-spec-copy { position: static; display: inline-block; margin-bottom: 14px; } }

/* ============================================================
   TECHNICAL GUIDE ARTICLE (.fp-article*) + TL;DR callout
   ============================================================ */
.fp-article-wrap { max-width: 820px; margin: 0 auto; padding: clamp(24px,4vw,40px) clamp(20px,4vw,40px) clamp(48px,6vw,72px); }
.fp-breadcrumb { font-size: .85rem; color: var(--muted); margin: 0 0 18px; }
.fp-breadcrumb a { color: var(--ink); text-decoration: none; font-weight: 600; }
.fp-breadcrumb a:hover { text-decoration: underline; text-decoration-color: var(--yellow); }
.fp-article-hero { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 26px; }
.fp-article-hero .eyebrow { margin-bottom: 10px; }
.fp-article-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem,3.4vw,2.7rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; color: var(--black); margin: 0 0 14px; }
.fp-article-meta { font-size: .85rem; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; }
.fp-article-body { font-size: 1.06rem; line-height: 1.7; color: #2a2a2a; }
.fp-article-body h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.85rem); font-weight: 800; letter-spacing: -.015em; color: var(--black); margin: 2.1em 0 .55em; line-height: 1.18; }
.fp-article-body h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 800; color: var(--black); margin: 1.6em 0 .4em; }
.fp-article-body p { margin: 0 0 1.1em; }
.fp-article-body ul, .fp-article-body ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.fp-article-body li { margin: .4em 0; }
.fp-article-body strong { color: var(--black); font-weight: 700; }
.fp-article-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; font-weight: 600; }
.fp-article-body table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .94rem; }
.fp-article-body th, .fp-article-body td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }
.fp-article-body th { background: var(--soft); font-weight: 700; color: var(--black); }
.fp-article-figure { margin: 1.9em 0; }
.fp-article-figure img { width: 100%; height: clamp(220px, 34vw, 380px); object-fit: cover; border-radius: 10px; display: block; }
.fp-article-body hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.fp-tldr { background: var(--soft); border-left: 4px solid var(--yellow); border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 0 0 1.6em; }
.fp-tldr p { margin: 0; }
.fp-tldr-label { font-family: var(--font-display); font-weight: 800; color: var(--black); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 6px; }

/* "Coming soon" tag for guide cards on the technical-guides hub */
.fp-soon-tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* ============================================================
   FAQ ACCORDION (.fp-faq), Common Questions page
   ============================================================ */
.fp-faq { max-width: 860px; margin: 0 auto; display: grid; gap: 10px; }
.fp-faq-cat { font-family: var(--font-display); font-weight: 800; color: var(--black); font-size: 1.15rem; letter-spacing: -.01em; margin: 30px 0 6px; }
.fp-faq-cat:first-child { margin-top: 0; }
.fp-faq-item { border: 1px solid var(--line); border-radius: 8px; background: var(--soft); overflow: hidden; }
.fp-faq-item > summary { cursor: pointer; list-style: none; padding: 16px 20px; display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 700; color: var(--black); font-size: 1.02rem; line-height: 1.35; }
.fp-faq-item > summary::-webkit-details-marker { display: none; }
.fp-faq-item > summary::after { content: "+"; margin-left: auto; font-family: var(--font-display); font-weight: 800; color: var(--muted); font-size: 1.3rem; line-height: 1; flex: 0 0 auto; }
.fp-faq-item[open] > summary::after { content: "-"; }
.fp-faq-a { padding: 0 20px 18px; color: var(--muted); line-height: 1.7; font-size: .98rem; margin: 0; }
.fp-faq-a p { margin: 0 0 .8em; }
.fp-faq-a p:last-child { margin: 0; }
.fp-faq-a a { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }

/* ============================================================
   QUALITY UPLIFT COMPONENT LIBRARY (2026-06-16)
   Premium set-piece components to match the Ridgeline bar.
   Light-first, yellow rationed. See the uplift goal/loop prompt.
   ============================================================ */
:root {
  --sp-compact: 64px;
  --sp-content: 96px;
  --sp-editorial: 128px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: .36s;
  --hdr-h: 72px;
}

/* ---- Scroll reveal (opt-in via .reveal; only active when JS adds html.fp-js) ---- */
html.fp-js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); will-change: opacity, transform; }
html.fp-js .reveal.is-visible { opacity: 1; transform: none; }
html.fp-js .reveal.d1 { transition-delay: .08s; }
html.fp-js .reveal.d2 { transition-delay: .16s; }
html.fp-js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { html.fp-js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---- Section signature mark: 64px yellow rule top-left of a section ---- */
.fp-srule { position: relative; }
.fp-srule::before { content: ""; position: absolute; left: clamp(20px,6vw,64px); top: 0; width: 64px; height: 3px; background: var(--yellow); }

/* ============================================================
   4.1 DARK FULL-BLEED PHOTO BAND (.fp-band)
   ============================================================ */
.fp-band { position: relative; display: flex; align-items: center; min-height: clamp(440px,56vh,600px); padding: clamp(56px,8vw,128px) clamp(28px,6vw,96px); overflow: hidden; isolation: isolate; background-color: #0a0a0a; background-image: var(--fp-band-image, none); background-size: cover; background-position: var(--fp-band-pos, center); background-repeat: no-repeat; }
.fp-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.72) 44%, rgba(5,5,5,0) 88%); }
.fp-band-inner { max-width: 560px; margin-left: clamp(0px,4vw,72px); }
.fp-band .eyebrow { color: var(--yellow); margin-bottom: 16px; }
.fp-band h2 { font-family: var(--font-display); color: #fff; font-weight: 800; font-size: clamp(40px,4.6vw,66px); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 18px; }
.fp-band p { color: rgba(255,255,255,.82); font-family: var(--font-body); font-size: clamp(16px,1.25vw,19px); line-height: 1.55; max-width: 520px; margin: 0 0 26px; }
.fp-band .hero-actions { gap: 14px; }
.fp-band--right { justify-content: flex-end; text-align: right; }
.fp-band--right::after { background: linear-gradient(270deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.72) 44%, rgba(5,5,5,0) 88%); }
.fp-band--right .fp-band-inner { margin-left: 0; margin-right: clamp(0px,4vw,72px); }
.fp-band--right .fp-band-inner p { margin-left: auto; }
.fp-band--right .hero-actions { justify-content: flex-end; }
@media (max-width: 760px) {
  .fp-band { align-items: flex-end; min-height: clamp(420px,68vh,560px); background-position: center top; }
  .fp-band::after, .fp-band--right::after { background: linear-gradient(180deg, rgba(5,5,5,.15) 0%, rgba(5,5,5,.82) 58%, rgba(5,5,5,.96) 100%); }
  .fp-band--right { text-align: left; justify-content: flex-start; }
  .fp-band-inner, .fp-band--right .fp-band-inner { max-width: none; margin: 0; }
  .fp-band--right .hero-actions { justify-content: flex-start; }
}
/* Outlined-white button for dark surfaces */
.button-on-dark { color: #fff; background: transparent; border: 1.5px solid rgba(255,255,255,.65); box-shadow: none; }
.button-on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-1px); box-shadow: none; }

/* ============================================================
   4.2a SIGNATURE HERO SET-PIECE (.fp-hero-stage), light-first
   copy left, full-bleed image right with white scrim, proof rail welded bottom
   ============================================================ */
.fp-hero-stage { position: relative; background: #fff; overflow: hidden; }
.fp-hero-stage-grid { position: relative; min-height: clamp(540px,74vh,800px); }
.fp-hero-stage-img { position: absolute; inset: 0 0 0 34%; background-size: cover; background-position: var(--fp-hero-pos, 78% center); background-repeat: no-repeat; background-image: var(--fp-hero-image, none); }
.fp-hero-stage-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 6%, rgba(255,255,255,.55) 30%, rgba(255,255,255,0) 58%); }
.fp-hero-stage-copy { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: clamp(48px,7vw,96px) clamp(20px,5vw,48px) clamp(96px,11vw,150px); }
.fp-hero-stage-copy .hero-copy-inner { max-width: 640px; }
.fp-hero-stage .eyebrow { color: var(--ink); position: relative; padding-left: 0; }
.fp-hero-stage h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(44px,6vw,88px); line-height: .98; letter-spacing: -.025em; color: var(--black); margin: 8px 0 20px; }
.fp-hero-stage h1 .hl { background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%); padding: 0 .04em; }
.fp-hero-stage .hero-lede { font-size: clamp(17px,1.5vw,21px); line-height: 1.45; color: #2a2a2a; max-width: 540px; margin: 0 0 30px; }
/* welded proof rail along the bottom of the hero */
.fp-hero-rail { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; flex-wrap: wrap; gap: 0; background: rgba(255,255,255,.86); backdrop-filter: blur(6px); border-top: 1px solid var(--line); }
.fp-hero-rail span { flex: 1 1 auto; text-align: center; padding: 16px 18px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); border-left: 1px solid var(--line); white-space: nowrap; }
.fp-hero-rail span:first-child { border-left: 0; }
@media (max-width: 860px) {
  .fp-hero-stage-img { inset: 0; opacity: 1; }
  .fp-hero-stage-img::after { background: linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.86) 46%, #fff 70%); }
  .fp-hero-stage-grid { min-height: 0; }
  .fp-hero-stage-copy { padding-top: clamp(280px,52vw,420px); }
  .fp-hero-rail span { flex-basis: 50%; border-top: 1px solid var(--line); }
}

/* ============================================================
   4.3 ASYMMETRIC SYSTEMS GRID (.fp-systems)
   ============================================================ */
.fp-systems-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(220px,.5fr) minmax(640px,1.5fr); gap: 44px; align-items: start; }
.fp-systems-head h2 { font-family: var(--font-display); font-size: clamp(30px,3.4vw,48px); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; color: var(--black); margin: 10px 0 14px; }
.fp-systems-head p { color: var(--muted); font-size: 1rem; line-height: 1.55; max-width: 320px; }
.fp-systems-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.fp-syscard { padding: 0 26px; border-left: 1px solid var(--line); }
.fp-syscard:first-child { padding-left: 0; border-left: 0; }
.fp-syscard:last-child { padding-right: 0; }
.fp-syscard-img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; background: var(--soft); margin-bottom: 16px; }
.fp-syscard .pathway-kicker, .fp-syscard .eyebrow { color: var(--ink); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin: 0 0 8px; }
.fp-syscard h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--black); margin: 0 0 8px; padding-bottom: 12px; position: relative; }
.fp-syscard h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 54px; height: 3px; background: var(--yellow); }
.fp-syscard p { color: var(--muted); font-size: .96rem; line-height: 1.55; margin: 0 0 14px; }
.fp-syscard a { color: var(--ink); font-weight: 800; text-decoration: none; }
.fp-syscard a:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
@media (max-width: 900px) { .fp-systems-inner { grid-template-columns: 1fr; gap: 28px; } .fp-systems-cards { grid-template-columns: 1fr; gap: 28px; } .fp-syscard { padding: 0; border-left: 0; } }

/* ============================================================
   4.4 PHOTO CARD GRID (.fp-proofgrid), a real photo in every card
   ============================================================ */
.fp-proofgrid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.fp-proofcard-img { display: block; width: 100%; height: 188px; object-fit: cover; border-radius: 8px; background: var(--soft); margin-bottom: 16px; }
.fp-proofcard h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: var(--black); line-height: 1.2; margin: 0 0 7px; }
.fp-proofcard p { color: var(--muted); font-size: .93rem; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .fp-proofgrid { grid-template-columns: repeat(2,1fr); gap: 22px; } }
@media (max-width: 560px) { .fp-proofgrid { grid-template-columns: 1fr; } }

/* ============================================================
   4.5 CASE-STUDY CARD (.fp-case)
   ============================================================ */
.fp-casegrid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fp-case { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.fp-case:hover { border-color: #cfcfcf; box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.fp-case-img { display: block; width: 100%; height: 240px; object-fit: cover; background: var(--soft); }
.fp-case-body { padding: 26px 26px 30px; }
.fp-case-kicker { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin: 0 0 14px; }
.fp-case-stat { font-family: var(--font-display); font-size: clamp(28px,3vw,40px); font-weight: 800; color: var(--black); line-height: 1; margin: 0 0 4px; display: inline-block; padding-bottom: 6px; box-shadow: inset 0 -10px 0 var(--yellow-2); }
.fp-case h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--black); margin: 14px 0 8px; }
.fp-case p { color: var(--muted); font-size: .96rem; line-height: 1.55; margin: 0 0 14px; }
.fp-case a { color: var(--ink); font-weight: 800; text-decoration: none; }
.fp-case a:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
@media (max-width: 760px) { .fp-casegrid { grid-template-columns: 1fr; } }

/* ============================================================
   4.6 ICON PROOF ROW (.fp-techrow), 5-up icon + label + value
   ============================================================ */
.fp-techrow { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.fp-techcard { border: 1px solid var(--line); border-radius: 10px; padding: 24px 20px; background: #fff; transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease); }
.fp-techcard:hover { transform: translateY(-2px); border-color: var(--yellow); box-shadow: 0 10px 24px rgba(0,0,0,.07); }
.fp-techcard svg { width: 28px; height: 28px; color: var(--yellow); margin-bottom: 14px; display: block; }
.fp-techcard .fp-tech-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin: 0 0 6px; }
.fp-techcard .fp-tech-value { font-family: var(--font-display); font-size: 1.02rem; font-weight: 800; color: var(--black); line-height: 1.25; margin: 0; }
@media (max-width: 900px) { .fp-techrow { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .fp-techrow { grid-template-columns: 1fr; } }

/* ============================================================
   4.7 NUMBER-LED PILLARS (.fp-pillars)
   ============================================================ */
.fp-pillars { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 28px 56px; }
.fp-pillar { border-top: 1px solid var(--line); padding-top: 18px; }
.fp-pillar-num { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--yellow); letter-spacing: .04em; display: block; margin-bottom: 10px; }
.fp-pillar h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--black); margin: 0 0 8px; }
.fp-pillar p { color: var(--muted); font-size: .98rem; line-height: 1.6; margin: 0; }
@media (max-width: 700px) { .fp-pillars { grid-template-columns: 1fr; gap: 22px; } }

/* ============================================================
   4.8 HAIRLINE LIST (.fp-rowlist)
   ============================================================ */
.fp-rowlist { max-width: var(--max); margin: 0 auto; }
.fp-rowlist a, .fp-rowlist .fp-row { display: grid; grid-template-columns: 220px 1fr 130px; gap: 24px; align-items: baseline; padding: 20px 6px; border-top: 1px solid var(--line); text-decoration: none; color: inherit; }
.fp-rowlist a:last-child, .fp-rowlist .fp-row:last-child { border-bottom: 1px solid var(--line); }
.fp-row-label { font-family: var(--font-display); font-weight: 800; color: var(--black); font-size: 1.05rem; }
.fp-row-desc { color: var(--muted); font-size: .96rem; line-height: 1.5; }
.fp-row-action { text-align: right; font-weight: 800; color: var(--ink); white-space: nowrap; }
.fp-rowlist a:hover .fp-row-action { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
.fp-rowlist a:hover .fp-row-label { color: var(--ink); }
@media (max-width: 700px) { .fp-rowlist a, .fp-rowlist .fp-row { grid-template-columns: 1fr; gap: 6px; } .fp-row-action { text-align: left; } }

/* ---- Sticky sub-nav offset under the 72px header ---- */
.fp-anchor-nav.is-sticky, .fp-anchor-nav--sticky { position: sticky; top: var(--hdr-h); z-index: 30; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }

/* Centered 3-up systems row (replaces the asymmetric rail per Joel 2026-06-16) */
.fp-srow { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.fp-srow .fp-syscard { padding: 0; border-left: 0; }
.fp-srow .fp-syscard-img { aspect-ratio: 4/3; margin-bottom: 18px; }
@media (max-width: 900px) { .fp-srow { grid-template-columns: 1fr; gap: 26px; max-width: 460px; } }

/* ---------- Stockist locator results (live WPSL store_search) ---------- */
.fp-locator-results { margin-top: 16px; }
.fp-locator-status, .fp-locator-count { font-size: 14px; color: var(--muted); margin: 0 0 10px; }
.fp-locator-count { font-weight: 700; color: var(--black); }
.fp-locator-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; max-height: 440px; overflow-y: auto; }
.fp-locator-result { padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.fp-locator-result-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.fp-locator-result h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin: 0; color: var(--black); }
.fp-locator-dist { font-size: 12px; font-weight: 700; color: var(--black); background: var(--yellow); padding: 2px 9px; border-radius: 20px; white-space: nowrap; }
.fp-locator-result address { font-style: normal; font-size: 13px; color: var(--muted); margin: 5px 0 7px; line-height: 1.45; }
.fp-locator-result-meta { font-size: 13px; margin: 0; }
.fp-locator-result-meta a { color: var(--black); font-weight: 600; text-decoration: underline; }
