/* ─────────────────────────────────────────────
   Everclear V2 - fresh blue/white design system
   Inspired by Hanlon Windows. No green. Cleaner
   geometry, more whitespace, corporate feel.
   ───────────────────────────────────────────── */

:root {
  /* Palette - shades of blue + white + neutral slate */
  --navy:        #0B2545;
  --navy-2:      #13315C;
  --blue:        #1E5CB8;
  --blue-2:      #2E73D2;
  --sky:         #4A86C5;
  --sky-pale:    #B7D2EC;
  --ice:         #E8F0FA;
  --cloud:       #F4F8FC;
  --white:       #FFFFFF;
  --ink:         #0B1929;
  --text:        #364B61;
  --text-2:      #6B7C8F;
  --line:        rgba(11, 37, 69, .12);
  --line-soft:   rgba(11, 37, 69, .06);

  /* Compatibility aliases - preserve legacy variable names so old inline styles still work */
  --mint:        var(--blue);
  --mint-dim:    var(--blue-2);
  --mint-text:   var(--blue);
  --pale:        var(--ice);
  --soft:        var(--cloud);
  --bg:          var(--cloud);
  --header-bg:   rgba(255, 255, 255, .92);

  /* Geometry - architectural / no rounded corners */
  --radius-xs:   0;
  --radius-sm:   0;
  --radius-md:   0;
  --radius-lg:   0;
  --radius-card: 0;
  --radius-pill: 0;

  /* Shadows - softer, smaller */
  --shadow-xs:   0 1px 2px rgba(11, 37, 69, .04);
  --shadow-sm:   0 2px 8px rgba(11, 37, 69, .06);
  --shadow-md:   0 8px 24px rgba(11, 37, 69, .08);
  --shadow-lg:   0 20px 48px rgba(11, 37, 69, .12);

  /* Motion */
  --easing:      cubic-bezier(.4, 0, .2, 1);
  --easing-emph: cubic-bezier(.16, 1, .3, 1);

  /* Layout */
  --container:   1600px;
  --container-wide: 1600px;
  --gutter:      clamp(20px, 4vw, 56px);
  --section-y:   clamp(64px, 8vw, 120px);
  --header-h:    72px;
}
@media (min-width: 1024px) { :root { --header-h: 84px; } }

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .6em;
  text-wrap: pretty;
}
.v2-hero__title,
.v2-hero__sub,
.v2-why__heading,
.v2-why__title,
.v2-pillar h3,
.v2-cat h3,
.v2-num__label,
.v2-categories__head h2,
.v2-numbers__head h2,
.v2-showcase__head h2,
.v2-story__copy h2,
.v2-review__quote,
.cert__heading,
.cert__lede,
.cert__overlay strong,
.section__head h2,
.section__head p,
.faq__head h2,
.faq__head .h-section,
.faq-item__head,
.foot__cta-copy h3,
.foot__cta-copy p,
.h-display, .h-section,
.bp-hero__title,
.bp-row__title { text-wrap: pretty; }
h1 { font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
p  { margin: 0 0 1em; color: var(--text); }

.h-display { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.03em; line-height: 1.05; color: var(--navy); }
.h-section { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; line-height: 1.1; color: var(--navy); }

.skip {
  position: absolute; top: -40px; left: 16px;
  background: var(--navy); color: white;
  padding: 12px 16px; border-radius: 6px;
  z-index: 999; font-weight: 600;
}
.skip:focus { top: 16px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.link {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  transition: color .2s var(--easing);
}
.link:hover { color: var(--navy); }

/* ─────────────────────────────────────────────
   Buttons - flat, simple, architectural
   ───────────────────────────────────────────── */
.btn[hidden] { display: none !important; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  letter-spacing: -0.01em;
  transition: background .15s var(--easing), color .15s var(--easing), border-color .15s var(--easing), box-shadow .2s var(--easing), transform .15s var(--easing);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn em { font-style: normal; }
.btn__ico {
  font-size: 18px !important;
  font-variation-settings: 'wght' 500;
}

.btn--navy {
  background: var(--navy);
  color: #FFFFFF;
}
.btn--navy:hover { background: var(--navy-2); box-shadow: var(--shadow-md); color: #FFFFFF; }
.btn--navy:visited { color: #FFFFFF; }
.btn--navy .material-symbols-rounded,
.btn--navy .btn__ico { color: #FFFFFF !important; }
a.btn--navy, a.btn--navy:link, a.btn--navy:visited, a.btn--navy:hover,
a.btn--navy:focus, a.btn--navy:active, button.btn--navy { color: #FFFFFF !important; }

/* btn--mint (legacy) becomes outline-blue */
.btn--mint {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--mint:hover {
  background: var(--navy);
  color: #FFFFFF;
}
.btn--mint:hover .material-symbols-rounded,
.btn--mint:hover .btn__ico { color: #FFFFFF !important; }

/* Reset the curved-corner classes to flat rounded rectangles */
.btn--curve-bl,
.btn--curve-tr,
.btn--shroom-l,
.btn--shroom-r { border-radius: var(--radius-sm); }
.btn--curve-tr { padding: 10px 20px; font-size: 13px; }

@media (min-width: 768px) {
  .btn { padding: 15px 28px; font-size: 15px; }
  .btn--curve-tr { padding: 11px 22px; font-size: 13px; }
}

/* Magnetic effect - disabled */
.btn--magnetic { transform: none !important; }

/* ─────────────────────────────────────────────
   Header / Nav - sticky white bar with mega-menu
   ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding-block: 12px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; }
@media (min-width: 1024px) { .nav__logo-img { height: 40px; } }

.nav__links { display: none; }
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background .15s var(--easing), color .15s var(--easing);
}
.nav__link:hover { background: var(--ice); color: var(--navy); }
.nav__link[aria-current="page"] { color: var(--blue); }
.nav__link-ico { display: none; }
.nav__chev { font-size: 18px !important; transition: transform .2s var(--easing); }

.nav__item--has-menu { position: relative; }
.nav__item--has-menu .nav__link[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

.nav__mega {
  position: absolute;
  top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 880px; max-width: 92vw;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s var(--easing), transform .18s var(--easing), visibility .18s;
}
@media (min-width: 1024px) and (hover: hover) {
  .nav__item--has-menu:hover .nav__mega,
  .nav__item--has-menu .nav__mega:hover {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.nav__mega-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background .15s var(--easing);
}
.nav__mega-card:hover { background: var(--ice); }
.nav__mega-card .material-symbols-rounded {
  font-size: 22px !important;
  color: var(--blue);
  margin-bottom: 4px;
}
.nav__mega-card strong { color: var(--navy); font-weight: 600; font-size: 14.5px; }
.nav__mega-sub { color: var(--text-2); font-size: 12.5px; line-height: 1.4; }

.nav__cta { display: none; gap: 8px; align-items: stretch; }
@media (min-width: 1024px) { .nav__cta { display: flex; } }
.nav__cta .btn,
.nav__cta .btn--curve-tr {
  min-height: 44px;
  padding-block: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav__cta .btn--navy {
  background: #286BBF;
  border-color: #286BBF;
  color: var(--white) !important;
}
.nav__cta .btn--navy:hover { background: #1E5CB8; border-color: #1E5CB8; color: var(--white) !important; }

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: transparent;
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--navy);
  transition: transform .25s var(--easing), opacity .25s var(--easing);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav__links {
    display: flex;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    padding: 24px var(--gutter);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--easing), opacity .3s var(--easing), visibility .3s;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateY(0) !important; opacity: 1 !important; visibility: visible !important; }
  .nav__link { padding: 14px 16px; font-size: 16px; }
  .nav__link-ico { display: inline-flex; font-size: 20px !important; color: var(--blue); }
  .nav__link[data-menu] { width: 100%; justify-content: flex-start; gap: 12px; }
  .nav__link .nav__chev { margin-left: auto; }

  /* Mega menu is collapsed by default on mobile; toggled via aria-expanded on the button */
  .nav__item--has-menu .nav__mega {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--ice);
    margin-left: 22px;
    padding: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height .3s var(--easing), opacity .25s var(--easing), padding .3s var(--easing), visibility .3s;
  }
  .nav__item--has-menu .nav__link[aria-expanded="true"] + .nav__mega {
    max-height: 800px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 4px 0 8px 16px;
  }
  .nav__mega-grid { grid-template-columns: 1fr; gap: 0; }
  .nav__mega-card { padding: 12px 4px; }
  .nav__mobile-foot { display: flex; flex-direction: column; gap: 12px; padding: 20px 0 0; margin-top: 12px; border-top: 1px solid var(--line); }
  .nav__mobile-btn { width: 100%; }
  .nav__mobile-info { display: grid; gap: 6px; padding-top: 12px; font-size: 13px; color: var(--text-2); }
  .nav__mobile-info p { margin: 0; display: flex; gap: 8px; align-items: center; }
  .nav__mobile-info .material-symbols-rounded { font-size: 18px !important; color: var(--blue); }
}
@media (min-width: 1024px) { .nav__mobile-foot { display: none; } }

.nav__backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 25, 41, .4);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--easing), visibility .25s;
  z-index: 99;
}
.nav__backdrop.is-open { opacity: 1; visibility: visible; }

/* ─────────────────────────────────────────────
   Section utility
   ───────────────────────────────────────────── */
.section { padding-block: var(--section-y); }
.section--alt { background: var(--cloud); }
.section--ice { background: var(--ice); }
.section__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding-inline: var(--gutter);
  text-align: center;
}
.section__head--left {
  text-align: left; max-width: var(--container);
  display: flex; gap: 32px; align-items: end;
  justify-content: space-between; flex-wrap: wrap;
}
.section__head--left .section__head-inner { flex: 1; min-width: 280px; }
.section__head--left .eyebrow,
.section__head--left h2,
.section__head--left p { text-align: left; }
.section__head-count { font-size: 13px; color: var(--text-2); font-weight: 500; }
.section__head-count strong { color: var(--navy); font-weight: 700; }
.section__head h2 { margin: 0 0 16px; }
.section__head p { color: var(--text); font-size: 17px; line-height: 1.6; margin: 0 auto; max-width: 600px; }
.section__head--left p { margin-left: 0; }

/* ─────────────────────────────────────────────
   Scroll progress + page hero
   ───────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--blue);
  z-index: 200;
  transition: width .1s linear;
}

.page-hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) var(--gutter) clamp(48px, 7vw, 96px);
  background: var(--cloud);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero--has-image .page-hero__bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: .14;
  filter: saturate(0.6);
}
.page-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--ice);
  border-radius: var(--radius-pill);
}
.page-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 20px;
}
.page-hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 32px;
}
.page-hero__ctas {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb-bar__inner { padding-block: 14px; }
.breadcrumb {
  display: flex; align-items: center;
  gap: 6px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-2);
}
.breadcrumb a { color: var(--text-2); transition: color .15s var(--easing); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__current { color: var(--navy); font-weight: 500; }
.breadcrumb__sep { font-size: 16px !important; color: var(--line); }

/* ─────────────────────────────────────────────
   Trust band - horizontal chips
   ───────────────────────────────────────────── */
.trust-band {
  width: 100%;
  margin: 0;
  padding: 28px var(--gutter);
  background: #DCE9F7;
  overflow: hidden;
}
.trust-band__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px 32px;
}
.trust-band__item {
  flex: 1 1 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  min-width: 180px;
  white-space: nowrap;
}
.trust-band__item .material-symbols-rounded {
  font-size: 26px !important;
  color: var(--blue);
}
/* Hide duplicate (clone) items on desktop - they're only for the mobile marquee */
@media (min-width: 720px) {
  .trust-band__item--clone { display: none; }
}
@media (max-width: 719px) {
  .trust-band { padding: 16px 0; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); }
  .trust-band__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    gap: 28px;
    animation: trust-marquee 24s linear infinite;
  }
  .trust-band__item { min-width: 0; flex: 0 0 auto; }
  .trust-band:hover .trust-band__track { animation-play-state: paused; }
}
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-band__track { animation: none; }
}

/* ─────────────────────────────────────────────
   Product cards (.pcard)
   ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cross-sell variant: always 2-per-row at full container width */
.product-grid--two { grid-template-columns: 1fr !important; }
@media (min-width: 720px) {
  .product-grid--two { grid-template-columns: repeat(2, 1fr) !important; }
}

/* No-orphan rules - prevent a single card sitting alone on the last row */

/* Exactly 4 cards: 2x2 on narrow, 4x1 on wide. Never 3+1. */
.product-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1200px) {
  .product-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Exactly 7 cards: 3+3+1 → swap to 4+3 or 2x... use 4-col so last row has 3 */
.product-grid:has(> :nth-child(7):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1000px) {
  .product-grid:has(> :nth-child(7):last-child) {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* If only 1 card slips to last row at the typical 3-col layout, make the
   first card on that last row span 2 columns so it never sits alone.
   Works for 3-col grids where total mod 3 == 1 (e.g. 7, 10, 13). */
@supports (selector(:nth-last-child(1 of *))) {
  .product-grid > :last-child:nth-child(3n + 1):not(:first-child) {
    /* grid-column: span 2; */
  }
}
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .15s var(--easing);
  text-decoration: none;
  color: inherit;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-pale);
}
.pcard__media {
  aspect-ratio: 4 / 3;
  background: var(--ice);
  overflow: hidden;
  position: relative;
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--easing);
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pcard__title { color: var(--navy); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.pcard__sub { color: var(--text); font-size: 14.5px; line-height: 1.55; margin: 0 0 12px; flex: 1; }
.pcard__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  color: var(--blue);
  margin-top: auto;
}
.pcard__link .material-symbols-rounded { font-size: 18px !important; transition: transform .2s var(--easing); }
.pcard:hover .pcard__link .material-symbols-rounded { transform: translateX(3px); }

.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ice), var(--cloud));
  color: var(--text-2);
}
.img-placeholder--16-9 { aspect-ratio: 16 / 9; }
.img-placeholder--4-3 { aspect-ratio: 4 / 3; }
.img-placeholder__label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.img-placeholder__caption { font-size: 14px; text-align: center; padding: 8px 24px; }

/* ─────────────────────────────────────────────
   Why-Everclear (.feat) - feature grid
   ───────────────────────────────────────────── */
.built__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: transparent;
  border: 0;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.feat {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .15s var(--easing);
}
.feat:hover { background: var(--cloud); }
.feat__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ice);
  color: var(--blue);
}
.feat__icon .material-symbols-rounded { font-size: 24px !important; }
.feat__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0; width: 100%;
}
.feat__head h3 { margin: 0; font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.feat__chev { font-size: 22px !important; color: var(--text-2); transition: transform .2s var(--easing); display: none; }
@media (max-width: 768px) {
  .feat__chev { display: inline-flex; }
  .feat p { display: none; }
  .feat.is-open p { display: block; }
  .feat.is-open .feat__chev { transform: rotate(180deg); }
}
.feat p { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.6; }
.built__cta { display: flex; justify-content: center; margin-top: 40px; }

/* ─────────────────────────────────────────────
   Showroom block
   ───────────────────────────────────────────── */
.showroom {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding-block: var(--section-y);
}
.showroom__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .showroom__inner { grid-template-columns: 1fr 1.2fr; gap: 64px; } }
.showroom__copy .eyebrow { color: var(--sky); }
.showroom__copy h2 { color: var(--white); margin-bottom: 20px; }
.showroom__copy p { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.65; margin: 0 0 12px; }
.showroom__copy strong { color: var(--white); font-weight: 600; }
.showroom__addr,
.showroom__hours {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.88); font-size: 15px;
  margin: 14px 0 0;
}
.showroom__addr .material-symbols-rounded,
.showroom__hours .material-symbols-rounded {
  font-size: 20px !important; color: var(--sky);
}
.showroom__photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy-2);
}
.showroom__photo-img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3;
}
.showroom__photo-ctas {
  display: flex; gap: 12px;
  padding: 16px;
  background: linear-gradient(0deg, rgba(11,25,41,.95), transparent);
  position: absolute; bottom: 0; left: 0; right: 0;
  flex-wrap: wrap;
}
.showroom__photo-ctas .btn { flex: 1; min-width: 140px; }
@media (max-width: 600px) {
  .showroom__photo { padding-bottom: 0; }
  .showroom__photo-ctas {
    position: static;
    background: transparent;
    padding: 16px 0 0;
    flex-direction: column;
    align-items: stretch;
  }
  .showroom__photo-ctas .btn { width: 100%; justify-content: center; }
}
.showroom__photo-ctas .btn--mint { background: var(--white); color: var(--navy); border-color: var(--white); }
.showroom__photo-ctas .btn--mint:hover { background: var(--ice); color: var(--navy); }

/* ─────────────────────────────────────────────
   FAQ accordion
   ───────────────────────────────────────────── */
.faq { background: var(--white); padding-block: var(--section-y); }
.faq__inner { max-width: 920px; }
.faq__head { text-align: center; margin-bottom: 40px; }
.faq__head .h-section { color: var(--navy); margin: 8px 0 16px; }
.faq__intro { color: var(--text); font-size: 16px; max-width: 600px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 17px; font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color .15s var(--easing);
}
.faq-item__head:hover { color: var(--blue); }
.faq-item__ico {
  font-size: 22px !important;
  transition: transform .25s var(--easing);
  color: var(--blue);
  flex-shrink: 0;
}
.faq-item__head[aria-expanded="true"] .faq-item__ico { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--easing);
}
.faq-item__body p { padding: 0 0 24px; color: var(--text); font-size: 15.5px; line-height: 1.65; margin: 0; }
.faq-item.is-open .faq-item__body,
.faq-item__head[aria-expanded="true"] + .faq-item__body { max-height: 500px; }

/* ─────────────────────────────────────────────
   Custom banner (.cbanner)
   ───────────────────────────────────────────── */
.cbanner {
  max-width: var(--container);
  margin: 0 auto;
  padding-block: clamp(48px, 6vw, 88px);
  padding-inline: var(--gutter);
}
.cbanner__inner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .cbanner__inner { grid-template-columns: 1.2fr 1fr; } }
.cbanner__copy { padding: clamp(32px, 5vw, 56px); }
.cbanner--ice .cbanner__inner { background: var(--ice); color: var(--navy); }
.cbanner--ice .cbanner__heading,
.cbanner--ice .cbanner__body { color: var(--navy); }
.cbanner__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px;
}
.cbanner--ice .cbanner__eyebrow { color: var(--blue); }
.cbanner__heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.cbanner__body { color: rgba(255,255,255,.8); font-size: 16px; margin: 0 0 24px; max-width: 520px; }
.cbanner__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
/* CTA buttons inside the navy cbanner - lighter blue accents */
.cbanner--navy .btn--navy {
  background: #286BBF;
  color: var(--white);
  border-color: #286BBF;
}
.cbanner--navy .btn--navy:hover {
  background: #1E5CB8;
  color: var(--white);
  border-color: #1E5CB8;
}
.cbanner--navy .btn--navy .material-symbols-rounded { color: var(--white) !important; }
.cbanner--navy a.btn--navy,
.cbanner--navy a.btn--navy:link,
.cbanner--navy a.btn--navy:visited,
.cbanner--navy a.btn--navy:hover,
.cbanner--navy a.btn--navy:focus,
.cbanner--navy a.btn--navy:active { color: var(--white) !important; }

.cbanner--navy .btn--mint {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}
.cbanner--navy .btn--mint:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.cbanner--navy .btn--mint .material-symbols-rounded { color: inherit !important; }
.cbanner__photo { aspect-ratio: 4 / 3; }
.cbanner__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────
   Stats band (component) - uses .stats__ classes
   The "stats" class is also used legacy as a flat list on the
   old homepage. Both selectors here are scoped to children so they
   don't clash with the new homepage's .v2-numbers strip.
   ───────────────────────────────────────────── */
.stats { padding-block: var(--section-y); }
.stats__inner {
  background: var(--navy);
  color: var(--white);
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--radius-lg);
  max-width: var(--container);
  margin: 0 auto;
}
.stats__head { max-width: 720px; margin-bottom: 40px; }
.stats__eyebrow {
  display: inline-block; color: var(--sky);
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 16px;
}
.stats__heading { color: var(--white); font-size: clamp(28px, 3.5vw, 44px); margin: 0; letter-spacing: -0.02em; }
.stats__heading-hl { color: var(--sky); }
.stats__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  list-style: none;
  padding: 0;
}
.stats__cell {
  padding: 28px 0;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-right: 24px;
  padding-left: 24px;
}
.stats__cell:first-child { padding-left: 0; }
.stats__cell:last-child { border-right: none; padding-right: 0; }
@media (max-width: 600px) { .stats__cell { border-right: none; padding-left: 0; padding-right: 0; } }
.stats__num {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.stats__value {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.stats__order { font-size: 13px; color: var(--sky); font-weight: 500; }
.stats__copy strong { display: block; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.stats__copy span { font-size: 13px; color: rgba(255,255,255,.65); }

/* ─────────────────────────────────────────────
   Process timeline carousel - 3 visible, auto-slide
   ───────────────────────────────────────────── */
.timeline-c { padding-block: var(--section-y); }
.timeline-c__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto clamp(32px, 4vw, 56px);
  padding-inline: var(--gutter);
}
.timeline-c__head-copy { max-width: 720px; }
.timeline-c__head-copy .eyebrow { margin-bottom: 10px; }
.timeline-c__head-copy h2 { color: var(--navy); font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin: 0 0 12px; }
.timeline-c__head-copy p { color: var(--text); font-size: 16px; margin: 0; }
.timeline-c__nav { display: flex; gap: 8px; }
.timeline-c__btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  transition: background .15s var(--easing), color .15s var(--easing), border-color .15s var(--easing);
  cursor: pointer;
}
.timeline-c__btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.timeline-c__btn .material-symbols-rounded { font-size: 20px !important; }
.timeline-c__viewport {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  overflow: hidden;
}
.timeline-c__track {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 4px 0;
  transition: transform .5s var(--easing);
  will-change: transform;
}
.timeline-c__step {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: background .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
}
@media (max-width: 900px) { .timeline-c__step { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .timeline-c__step { flex: 0 0 100%; } }
.timeline-c__step:hover {
  background: #E8F0FA;
  border-color: var(--sky-pale);
}
.timeline-c__step:hover .timeline-c__copy,
.timeline-c__step:hover .timeline-c__heading { color: var(--navy); }
.timeline-c__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cloud);
}
.timeline-c__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--easing);
}
.timeline-c__step:hover .timeline-c__media img { transform: scale(1.04); }
.timeline-c__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ice), var(--cloud));
}
.timeline-c__body { padding: 24px; }
.timeline-c__num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 8px;
}
.timeline-c__heading { color: var(--navy); font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
.timeline-c__copy { color: var(--text); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Legacy vertical timeline - kept for any pages still using it */
.timeline {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.timeline__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}
.timeline__num {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.timeline__heading { color: var(--navy); margin-bottom: 8px; font-size: 18px; }
.timeline__copy { color: var(--text); font-size: 15px; margin: 0; line-height: 1.6; }

/* ─────────────────────────────────────────────
   Benefits + issues
   ───────────────────────────────────────────── */
/* Benefits accordion - image left, vertical collapsible cards right */
.benefits-acc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .benefits-acc { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.benefits-acc__media {
  align-self: stretch;
  overflow: hidden;
  background: var(--cloud);
  min-height: 100%;
}
@media (max-width: 899px) { .benefits-acc__media { aspect-ratio: 4 / 3; min-height: 0; } }
.benefits-acc__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.benefits-acc__right { display: flex; flex-direction: column; gap: 24px; }
.benefits-acc__head { margin-bottom: 8px; }
.benefits-acc__head .eyebrow { margin-bottom: 10px; }
.benefits-acc__head h2 { color: var(--navy); font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; margin: 0 0 12px; }
.benefits-acc__head p { color: var(--text); font-size: 16px; line-height: 1.6; margin: 0; }
.benefits-acc__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.benefit--acc {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.benefit--acc .benefit__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
}
.benefit--acc .benefit__head::-webkit-details-marker { display: none; }
.benefit--acc .benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--ice);
  color: var(--blue);
  margin: 0;
}
.benefit--acc .benefit__icon .material-symbols-rounded { font-size: 22px !important; }
.benefit--acc .benefit__title {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.benefit__chev {
  font-size: 24px !important;
  color: var(--text-2);
  transition: transform .25s var(--easing);
}
.benefit--acc[open] .benefit__chev { transform: rotate(180deg); }
.benefit__panel {
  padding: 0 4px 24px 60px;
}
.benefit--acc .benefit__body {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Legacy grid variant - kept for any pages still rendering a plain card grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit:not(.benefit--acc) {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  transition: border-color .15s var(--easing);
}
.benefit:not(.benefit--acc):hover { border-color: var(--sky-pale); }
.benefit:not(.benefit--acc) .benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ice); color: var(--blue);
  margin-bottom: 16px;
}
.benefit:not(.benefit--acc) .benefit__icon .material-symbols-rounded { font-size: 24px !important; }
.benefit:not(.benefit--acc) .benefit__title { color: var(--navy); font-size: 17px; margin-bottom: 8px; }
.benefit:not(.benefit--acc) .benefit__body { color: var(--text); font-size: 14.5px; line-height: 1.6; margin: 0; }

.issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.issue {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}
.issue__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--ice);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--blue);
}
.issue__title { color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.issue p { color: var(--text); font-size: 14.5px; margin: 0; }

/* ─────────────────────────────────────────────
   Product series accordion
   ───────────────────────────────────────────── */
.series {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.series__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.series__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  align-items: center;
  list-style: none;
}
.series__head::-webkit-details-marker { display: none; }
.series__head-meta { display: flex; flex-direction: column; gap: 4px; min-width: 96px; }
.series__tier { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.series__code { font-size: 11px; color: var(--text-2); font-family: 'JetBrains Mono', monospace; }
.series__head-title h3 { margin: 0 0 4px; color: var(--navy); font-size: 17px; font-weight: 600; }
.series__head-title p { margin: 0; color: var(--text); font-size: 14px; }
.series__chev { font-size: 22px !important; color: var(--text-2); transition: transform .2s var(--easing); }
.series__item[open] .series__chev { transform: rotate(180deg); }
.series__body { padding: 0 24px 24px; border-top: 1px solid var(--line-soft); }
.series__body p { color: var(--text); font-size: 15px; padding-top: 16px; }
.series__sub { color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin: 16px 0 8px; }
.series__features, .series__certs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
}
.series__features li,
.series__certs li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 14px; color: var(--text);
}
.series__features .material-symbols-rounded,
.series__certs .material-symbols-rounded { font-size: 18px !important; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.series__pdf { margin-top: 16px; }
.series__pdf a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-size: 14px; font-weight: 600;
}
.series__pdf .material-symbols-rounded { font-size: 18px !important; }

/* ─────────────────────────────────────────────
   Comparison table
   ───────────────────────────────────────────── */
.cmp-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.cmp { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp th, .cmp td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.cmp thead th {
  background: var(--cloud);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cmp tbody th { color: var(--navy); font-weight: 600; }
.cmp td { color: var(--text); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: none; }

/* ─────────────────────────────────────────────
   Gallery
   ───────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery__cell {
  position: relative;
  background: var(--cloud);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
}
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--easing); }
.gallery__cell:hover img { transform: scale(1.04); }
.gallery__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(11,25,41,.85), transparent);
  color: var(--white);
  font-size: 13px;
  display: flex; align-items: end; gap: 8px; justify-content: space-between;
}
.gallery__cap-idx { font-size: 11px; opacity: .7; letter-spacing: .12em; }
.gallery__cap-cta .material-symbols-rounded { font-size: 18px !important; }

/* ─────────────────────────────────────────────
   Testimonials - infinite horizontal marquee
   ───────────────────────────────────────────── */
.testimonials {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.testimonials__viewport {
  overflow: hidden;
  width: 100%;
}
.testimonials__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonials-marquee 60s linear infinite;
  will-change: transform;
}
.testimonials:hover .testimonials__track { animation-play-state: paused; }
@keyframes testimonials-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__track { animation: none; }
}
.tcard {
  flex: 0 0 clamp(280px, 28vw, 380px);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.tcard__stars { display: flex; gap: 2px; color: var(--blue); }
.tcard__stars .material-symbols-rounded {
  font-size: 20px !important;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 200, 'opsz' 24 !important;
  font-weight: 700 !important;
}
.tcard__quote { color: var(--text); font-size: 15px; line-height: 1.65; margin: 0; flex: 1; }
.tcard__author { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.tcard__name { color: var(--navy); font-weight: 600; font-size: 14.5px; }
.tcard__via { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); font-size: 12.5px; }
.tcard__via .material-symbols-rounded { font-size: 14px !important; color: var(--blue); }
.tcard__via-ico { width: 14px; height: 14px; display: inline-block; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   Image-copy row
   ───────────────────────────────────────────── */
.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
@media (min-width: 900px) { .row { grid-template-columns: 1fr 1fr; gap: 64px; } }
.row__copy h2 { margin: 12px 0 16px; }
.row__body { color: var(--text); font-size: 16.5px; line-height: 1.65; margin: 0 0 14px; }
.row__bullets { display: grid; gap: 8px; margin: 16px 0 24px; }
.row__bullets li {
  display: flex; gap: 8px; align-items: flex-start;
  color: var(--text); font-size: 15px;
}
.row__bullets .material-symbols-rounded { font-size: 20px !important; color: var(--blue); flex-shrink: 0; }
.row__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.row__image-card,
.row__image-card--alt {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cloud);
  align-self: stretch;
  min-height: 100%;
}
@media (max-width: 899px) {
  .row__image-card,
  .row__image-card--alt { aspect-ratio: 4 / 3; min-height: 0; }
}
.row__image-card img,
.row__image-card--alt img { width: 100%; height: 100%; object-fit: cover; display: block; }
.row { align-items: stretch; }
.row__copy { display: flex; flex-direction: column; justify-content: center; }

/* ─────────────────────────────────────────────
   Split content
   ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.split__col {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}
.split__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--ice); color: var(--blue);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.split__icon .material-symbols-rounded { font-size: 24px !important; }
.split__title { color: var(--navy); font-size: 20px; margin-bottom: 12px; }
.split__intro { color: var(--text); font-size: 15px; margin-bottom: 16px; }
.split__list { display: grid; gap: 8px; margin-bottom: 20px; }
.split__list li { display: flex; gap: 8px; align-items: flex-start; color: var(--text); font-size: 14.5px; }
.split__list .material-symbols-rounded { font-size: 18px !important; color: var(--blue); flex-shrink: 0; }
.split__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: 14px;
}
.split__cta .material-symbols-rounded { font-size: 18px !important; }

/* ─────────────────────────────────────────────
   AWA Cert block - scene image with floating badges
   ───────────────────────────────────────────── */
.cert { background: var(--white); padding-block: var(--section-y); }
.cert__inner { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.cert__head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5vw, 72px); }
.cert__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.cert__eyebrow .material-symbols-rounded { font-size: 16px !important; }
.cert__heading { color: var(--navy); font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; }
.cert__heading-hl { color: var(--blue); }
.cert__lede { color: var(--text); font-size: 16.5px; max-width: 620px; margin: 16px auto 0; }

/* Scene: large image with translucent badge overlays at bottom */
.cert__scene {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.cert__scene-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  object-fit: cover;
  display: block;
}
.cert__overlays {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 16px;
  margin: 0;
}
@media (min-width: 720px) {
  .cert__overlays {
    position: absolute;
    left: clamp(16px, 4vw, 56px);
    right: clamp(16px, 4vw, 56px);
    bottom: -24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
  }
}
.cert__overlay {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 18px 40px rgba(11, 37, 69, .15), 0 2px 6px rgba(11, 37, 69, .08);
  text-align: center;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.cert__overlay:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(11, 37, 69, .2), 0 4px 10px rgba(11, 37, 69, .1); }
.cert__overlay-art {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--ice);
  color: var(--blue);
  margin-bottom: 6px;
  flex-direction: column;
}
.cert__overlay-art--stamp { gap: 1px; line-height: 1; }
.cert__overlay-art img { max-width: 36px; max-height: 36px; height: auto; width: auto; }
.cert__overlay-num { font-weight: 700; font-size: 12px; }
.cert__overlay-num--big { font-size: 18px; letter-spacing: -0.02em; }
.cert__overlay strong { color: var(--navy); font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; }
.cert__overlay span { color: var(--text-2); font-size: 12.5px; }

/* Section needs extra bottom padding to accommodate the overhanging cards */
.cert { padding-bottom: calc(var(--section-y) + 40px); }

/* ─────────────────────────────────────────────
   Areas / map / contact form
   ───────────────────────────────────────────── */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.areas__col summary { list-style: none; cursor: pointer; }
.areas__col summary::-webkit-details-marker { display: none; }
.areas__col summary {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.areas__col summary h3 { color: var(--navy); font-size: 17px; margin: 0; padding: 0; border: 0; }
.areas__chev { font-size: 22px !important; color: var(--text-2); transition: transform .2s var(--easing); display: none; }
.areas__col[open] .areas__chev { transform: rotate(180deg); }
.areas__col ul { display: grid; gap: 6px; }
.areas__col li { display: flex; align-items: center; gap: 6px; color: var(--text); font-size: 14px; }
.areas__col .material-symbols-rounded { font-size: 14px !important; color: var(--blue); }
/* Mobile: stack as accordions, show chev */
@media (max-width: 720px) {
  .areas { grid-template-columns: 1fr; gap: 0; }
  .areas__col { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .areas__col:first-of-type { border-top: 1px solid var(--line); }
  .areas__col summary { margin-bottom: 0; padding: 12px 4px; border-bottom: 0; }
  .areas__chev { display: inline-flex; }
  .areas__col ul { padding: 0 4px 16px; }
}

.map iframe {
  width: 100%; border: 0; border-radius: var(--radius-md);
  min-height: 380px;
  background: var(--cloud);
}

.areas-map {
  margin-top: 48px;
}
.areas-map iframe {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cloud);
  min-height: 420px;
  display: block;
}

.quote-embed {
  max-width: var(--container);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  margin-inline: var(--gutter);
}
@media (min-width: 1300px) { .quote-embed { margin-inline: auto; } }
@media (max-width: 600px)  { .quote-embed { padding: 24px 20px; margin-inline: 16px; } }
/* 3-step quote form */
.quote3__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.quote3__rail-step {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: background .2s var(--easing), color .2s var(--easing), border-color .2s var(--easing);
}
.quote3__rail-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--cloud);
  color: var(--text-2);
  font-weight: 700;
  font-size: 12px;
  border-radius: 50%;
}
.quote3__rail-step.is-current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.quote3__rail-step.is-current span { background: rgba(255, 255, 255, .18); color: var(--white); }
.quote3__rail-step.is-done { color: var(--blue); border-color: var(--sky-pale); }
.quote3__rail-step.is-done span { background: var(--blue); color: var(--white); }
.quote3__panel { display: none; }
.quote3__panel.is-active { display: block; }
.quote3__legend { color: var(--navy); font-size: 18px; margin: 0 0 16px; letter-spacing: -0.01em; }
.quote3__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote3__grid .qfield--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .quote3__grid { grid-template-columns: 1fr; } }
.quote3__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quote3__step-indicator { font-size: 13.5px; color: var(--text-2); }
.quote3__step-indicator strong { color: var(--navy); }
.quote3__nav { display: flex; gap: 12px; }

.quote-embed__head { text-align: center; margin-bottom: 32px; }
.quote-embed__head h2 { color: var(--navy); margin: 8px 0 12px; }
.quote-embed__head p { color: var(--text); }
.quote-embed__grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.quote-embed__grid .qfield--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .quote-embed__grid { grid-template-columns: 1fr; } }
.quote-embed__foot { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.quote-embed__note { color: var(--text-2); font-size: 13px; margin: 0; }
.quote-embed__note a { color: var(--navy); }

.qfield { display: flex; flex-direction: column; gap: 6px; }
.qfield label, .qfield legend {
  color: var(--navy); font-size: 13.5px; font-weight: 500;
}
.qfield input, .qfield select, .qfield textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s var(--easing), box-shadow .15s var(--easing);
}
.qfield input:focus, .qfield select:focus, .qfield textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 92, 184, .12);
}
.qfield__error { color: #C03A3A; font-size: 12px; display: none; }
.qfield.is-invalid .qfield__error { display: block; }
.qfield--full { grid-column: 1 / -1; }
.qchoice { display: flex; gap: 8px; flex-wrap: wrap; }
.qchip input { display: none; }
.qchip span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  cursor: pointer;
  transition: all .15s var(--easing);
}
.qchip input:checked + span { background: var(--navy); color: var(--white); border-color: var(--navy); }
.qcheck { display: flex; gap: 10px; align-items: flex-start; color: var(--text); font-size: 13.5px; }

/* ─────────────────────────────────────────────
   Quote modal
   ───────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0;
  display: none;
  z-index: 1000;
  align-items: center; justify-content: center;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11,25,41,.55); }
.modal__panel {
  position: relative;
  background: var(--white);
  width: min(640px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(32px, 4vw, 48px);
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--cloud);
  color: var(--text);
  transition: background .15s var(--easing);
}
.modal__close:hover { background: var(--ice); color: var(--navy); }
.quote__inner h2 { text-align: center; color: var(--navy); margin: 0 0 8px; }
.quote__sub { text-align: center; color: var(--text); margin: 0 0 24px; }
.quote__trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.quote__trust li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-2);
}
.quote__trust .material-symbols-rounded { font-size: 14px !important; color: var(--blue); }
.quote__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.qcard {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 14px; color: var(--navy); font-weight: 500;
  transition: all .15s var(--easing);
}
.qcard img { width: 40px; height: 40px; object-fit: contain; }
.qcard:hover { border-color: var(--blue); background: var(--ice); }
.qcard[aria-checked="true"] { border-color: var(--blue); background: var(--ice); }
.quote__form-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.quote__form-grid .qfield--full { grid-column: 1 / -1; }
.quote__success { text-align: center; padding: 40px 0; }
.quote__success-ico { font-size: 56px !important; color: var(--blue); margin-bottom: 16px; font-variation-settings: 'FILL' 1; }
.quote__success h3 { color: var(--navy); margin-bottom: 8px; }
.quote__foot {
  margin-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.quote__step { font-size: 13px; color: var(--text-2); }
.quote__step strong { color: var(--navy); }
.quote__nav { display: flex; gap: 12px; }
.quote__panel { display: none; }
.quote__panel.is-active { display: block; }

/* ─────────────────────────────────────────────
   Repair FAB
   ───────────────────────────────────────────── */
.repair-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  background: #286BBF;
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 12px 18px 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform .2s var(--easing), box-shadow .2s var(--easing);
  max-width: 280px;
}
.repair-fab:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }
.repair-fab__ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.repair-fab__ico .material-symbols-rounded { font-size: 22px !important; color: var(--white); }
.repair-fab__copy { display: flex; flex-direction: column; gap: 2px; }
.repair-fab__copy strong { font-size: 13px; font-weight: 600; }
.repair-fab__copy span { font-size: 11.5px; opacity: .8; display: flex; gap: 4px; align-items: center; }
.repair-fab__arrow { font-size: 14px !important; }
.repair-fab__close {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  font-size: 12px;
}
.repair-fab__close .material-symbols-rounded { font-size: 14px !important; }
.repair-fab.is-hidden { display: none; }
@media (max-width: 600px) { .repair-fab { bottom: 16px; right: 16px; } }

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  margin-top: 0;
}

/* Footer CTA strip - sits above the main footer grid */
.foot__cta {
  background: #286BBF;
}
.foot__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: clamp(28px, 4vw, 48px);
}
@media (max-width: 600px) {
  .foot__cta-btns { width: 100%; flex-direction: column; align-items: stretch; }
  .foot__cta-btn { width: 100%; justify-content: center; }
}
.foot__cta-copy { flex: 1 1 320px; }
.foot__cta-copy h3 {
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.foot__cta-copy p {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  margin: 0;
}
.foot__cta-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.foot__cta-btn { padding: 14px 26px; font-size: 15px; }
/* Call button - dark navy with white text */
.foot__cta .btn--mint {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.foot__cta .btn--mint:hover {
  background: var(--navy-2);
  color: var(--white);
  border-color: var(--navy-2);
}
.foot__cta .btn--mint .material-symbols-rounded { color: var(--white) !important; }
.foot__cta a.btn--mint,
.foot__cta a.btn--mint:link,
.foot__cta a.btn--mint:visited,
.foot__cta a.btn--mint:hover,
.foot__cta a.btn--mint:focus,
.foot__cta a.btn--mint:active { color: var(--white) !important; }

/* Quote button - light white with dark text */
.foot__cta .btn--navy {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.foot__cta .btn--navy:hover {
  background: var(--ice);
  color: var(--navy);
  border-color: var(--ice);
  box-shadow: none;
}
.foot__cta .btn--navy .material-symbols-rounded { color: var(--navy) !important; }
.foot__cta a.btn--navy,
.foot__cta a.btn--navy:link,
.foot__cta a.btn--navy:visited,
.foot__cta a.btn--navy:hover,
.foot__cta a.btn--navy:focus,
.foot__cta a.btn--navy:active { color: var(--navy) !important; }

.foot__inner { padding-top: 56px; }
.foot__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-inline: var(--gutter);
}
@media (min-width: 800px) {
  .foot__inner { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 56px; }
}
.foot__brand { display: flex; flex-direction: column; gap: 20px; }
.nav__logo--foot .nav__logo-img { height: 50px; filter: brightness(0) invert(1); }
.foot__contact-h {
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sky); margin: 0 0 8px;
}
.foot__contact p { margin: 4px 0; font-size: 14px; color: rgba(255,255,255,.78); }
.foot__contact a { color: var(--white); transition: color .15s var(--easing); }
.foot__contact a:hover { color: var(--sky); }
.foot__badges { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.foot__badges img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: .85; }

/* Industry partner logos (AGWA Accredited, Vantage, Elevate) - footer brand column */
.foot__partners {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.foot__partner-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 6px;
}
.foot__partner-logo--wide { height: 60px; padding: 0; background: transparent; }
@media (max-width: 600px) {
  .foot__partners { gap: 14px; margin-top: 16px; }
  .foot__partner-logo { height: 44px; padding: 6px 8px; }
  .foot__partner-logo--wide { height: 52px; }
}

/* Social icons */
.foot__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}
.foot__social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .15s var(--easing), color .15s var(--easing), border-color .15s var(--easing);
}
.foot__social a:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.foot__social svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

.foot__col h4 {
  color: var(--white); font-size: 13px;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin: 0 0 16px;
}
.foot__col ul { display: flex; flex-direction: column; gap: 10px; }
.foot__col a {
  color: rgba(255,255,255,.7); font-size: 14px;
  transition: color .15s var(--easing);
}
.foot__col a:hover { color: var(--white); }

.foot__rule {
  border: 0; border-top: 1px solid rgba(255,255,255,.12);
  margin: 56px 0 0;
}
.foot__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px;
  padding-block: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}
.foot__legal a { color: rgba(255,255,255,.7); transition: color .15s var(--easing); }
.foot__legal a:hover { color: var(--white); }
.foot__legal-end { display: inline-flex; align-items: center; gap: 16px; }
.foot__powered { display: inline-flex; align-items: center; gap: 8px; }
.foot__powered-label { opacity: .65; }
.foot__powered-logo { height: 18px; opacity: .85; filter: brightness(0) invert(1); }

/* ─────────────────────────────────────────────
   Blog
   ───────────────────────────────────────────── */
.bp-hero {
  position: relative;
  padding: clamp(80px, 11vw, 160px) var(--gutter) clamp(48px, 6vw, 88px);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.bp-hero__media { position: absolute; inset: 0; }
.bp-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.bp-hero__gradient { position: absolute; inset: 0; background: linear-gradient(0deg, var(--navy) 10%, transparent 90%); }
.bp-hero__inner { position: relative; max-width: var(--container); margin: 0 auto; }
.bp-hero__eyebrow {
  display: inline-block; padding: 6px 12px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.bp-hero__title { color: var(--white); font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; max-width: 880px; }
.bp-hero__lede { color: rgba(255,255,255,.8); font-size: 18px; max-width: 700px; }
.bp-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.post-meta { padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.post-meta__inner { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.post-meta__author { display: flex; gap: 12px; align-items: center; }
.post-meta__avatar {
  width: 48px; height: 48px;
  border-radius: 50% !important;
  background: var(--white);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.post-meta__avatar img { width: 70%; height: auto; object-fit: contain; }
.post-meta__avatar .material-symbols-rounded { font-size: 22px !important; color: var(--blue); }

/* Related posts - top divider */
.related-posts { border-top: 1px solid var(--line); }

/* Blog post hero - light blue CTAs */
.bp-hero .btn--navy {
  background: #286BBF !important;
  border-color: #286BBF !important;
  color: var(--white) !important;
}
.bp-hero .btn--navy:hover {
  background: #1E5CB8 !important;
  border-color: #1E5CB8 !important;
}
.bp-hero .btn--navy .material-symbols-rounded { color: var(--white) !important; }
.post-meta__author strong { color: var(--navy); font-size: 14px; }
.post-meta__author p { color: var(--text-2); font-size: 12.5px; margin: 0; }
.post-meta__bits { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--text-2); }
.post-meta__bits .material-symbols-rounded { font-size: 16px !important; vertical-align: -3px; }

.post { background: var(--white); padding-block: var(--section-y); }
.post__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 1000px) { .post__inner:has(.post__toc) { grid-template-columns: 240px 1fr; gap: 64px; } }
.post__inner:not(:has(.post__toc)) .post__body { max-width: 100%; margin: 0 auto; }
.post__inner:not(:has(.post__toc)) .prose { max-width: 880px; margin: 0 auto; }
.post__toc {
  position: sticky; top: calc(var(--header-h) + 24px);
  align-self: start;
}
.post__toc-h {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  display: flex; gap: 6px; align-items: center;
  margin: 0 0 14px;
}
.post__toc-h .material-symbols-rounded { font-size: 16px !important; }
.post__toc ol { display: flex; flex-direction: column; gap: 6px; }
.post__toc a { color: var(--text); font-size: 13.5px; line-height: 1.45; transition: color .15s var(--easing); }
.post__toc a:hover { color: var(--navy); }
.post__body { max-width: 720px; }
.prose { color: var(--text); font-size: 17px; line-height: 1.75; }
.prose h2 { color: var(--navy); font-size: 28px; margin: 48px 0 16px; }
.prose h3 { color: var(--navy); font-size: 22px; margin: 32px 0 12px; }
.prose p { margin: 0 0 1.4em; }
.prose a { color: var(--blue); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--navy); }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose ul li, .prose ol li { margin-bottom: .5em; list-style: revert; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--blue);
  background: var(--cloud);
  padding: 20px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
  color: var(--navy);
  font-size: 18px; font-style: italic;
}

/* Newsletter */
.newsletter {
  background: var(--cloud);
  padding-block: clamp(56px, 7vw, 96px);
}
.newsletter__inner {
  max-width: 720px; margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.newsletter h3 { color: var(--navy); font-size: 28px; margin-bottom: 8px; }
.newsletter p { color: var(--text); }
.newsletter__form { display: flex; gap: 12px; max-width: 480px; margin: 24px auto 0; }
.newsletter__form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
}
.newsletter__success { display: none; }
.newsletter__success.is-active { display: flex; gap: 8px; align-items: center; justify-content: center; color: var(--blue); }

/* Blog index */
.bp-index { background: var(--white); }
.bp-index__list { display: flex; flex-direction: column; gap: 64px; }
.bp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) { .bp-row { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.bp-row--flip { direction: rtl; }
.bp-row--flip > * { direction: ltr; }
.bp-row__media { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-card); overflow: hidden; background: var(--cloud); }
.bp-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--easing); }
.bp-row:hover .bp-row__media img { transform: scale(1.03); }
.bp-row__num {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); color: var(--navy);
  padding: 6px 10px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600;
}
.bp-row__tag {
  display: inline-block; padding: 4px 10px;
  background: var(--ice); color: var(--blue);
  border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.bp-row__title { color: var(--navy); font-size: clamp(24px, 2.8vw, 36px); margin-bottom: 12px; line-height: 1.2; }
.bp-row__sub { color: var(--text); font-size: 16px; line-height: 1.6; }
.bp-row__cta {
  display: inline-flex; gap: 6px; align-items: center;
  color: var(--blue); font-weight: 600; margin-top: 16px;
}
.bp-row__cta .material-symbols-rounded { font-size: 18px !important; }

/* ─────────────────────────────────────────────
   Projects
   ───────────────────────────────────────────── */
.pf-filter { background: var(--cloud); padding-block: 28px; border-block: 1px solid var(--line-soft); }
.pf-filter__inner {
  max-width: var(--container); margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.pf-filter__row { display: flex; gap: 8px; flex-wrap: wrap; }
.pf-chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500;
  color: var(--text);
  transition: all .15s var(--easing);
}
.pf-chip:hover { border-color: var(--blue); color: var(--blue); }
.pf-chip.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pf-filter__count { font-size: 13px; color: var(--text-2); }

.pf-feature {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .pf-feature { grid-template-columns: 1.3fr 1fr; } }
.pf-feature__media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; }
.pf-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.pf-feature__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(11,25,41,.85), transparent);
  color: var(--white);
}
.pf-feature__cat {
  display: inline-block; padding: 4px 10px;
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.pf-feature__title { color: var(--white); font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 8px; line-height: 1.15; }
.pf-feature__loc { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; opacity: .9; }
.pf-feature__loc .material-symbols-rounded { font-size: 16px !important; }
.pf-feature__brief p { color: var(--text); font-size: 17px; line-height: 1.65; margin-bottom: 24px; }
.pf-feature__meta { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .pf-feature__meta { grid-template-columns: 1fr 1fr; } }
.pf-feature__col ul { display: grid; gap: 8px; }
.pf-feature__col li { display: flex; gap: 8px; align-items: flex-start; color: var(--text); font-size: 14px; }
.pf-feature__col .material-symbols-rounded { font-size: 16px !important; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.pf-list { background: var(--cloud); }
.pf-list__head { max-width: var(--container); margin: 0 auto 32px; padding-inline: var(--gutter); }
.pf-list__head h2 { color: var(--navy); margin: 8px 0 0; }
.pf-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--container); margin: 0 auto;
  padding-inline: var(--gutter);
}
.pf-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pf-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pf-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--easing); }
.pf-card:hover .pf-card__media img { transform: scale(1.05); }
.pf-card__overlay {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--white); color: var(--navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s var(--easing);
}
.pf-card:hover .pf-card__overlay { opacity: 1; }
.pf-card__body { padding: 20px; }
.pf-card__top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 12px; color: var(--text-2); }
.pf-card__title { color: var(--navy); font-size: 17px; margin-bottom: 6px; }
.pf-card__brief { color: var(--text); font-size: 14px; line-height: 1.55; margin-bottom: 12px; }
.pf-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-tag {
  font-size: 11px; padding: 3px 8px;
  background: var(--ice); color: var(--blue);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.pf-marquee { background: var(--navy); padding: 28px 0; overflow: hidden; }
.pf-marquee__track {
  display: flex; gap: 16px; align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.pf-marquee__item { color: var(--white); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.pf-marquee__dot { color: var(--sky); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.proj {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) { .proj { grid-template-columns: 1.2fr 1fr; } }
.proj__media { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4 / 3; }
.proj__media img { width: 100%; height: 100%; object-fit: cover; }
.proj__meta .eyebrow { margin-bottom: 8px; }
.proj__title { color: var(--navy); font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 16px; }
.proj__brief { color: var(--text); font-size: 16px; line-height: 1.65; margin-bottom: 20px; }
.proj__bits { display: grid; gap: 20px; }
.proj__bits strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: 4px; }
.proj__bits p { color: var(--text); font-size: 14.5px; margin: 0; }

/* ─────────────────────────────────────────────
   404 + cookie
   ───────────────────────────────────────────── */
.fourohfour {
  background: var(--cloud);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.fourohfour__inner { max-width: 600px; padding: 64px var(--gutter); text-align: center; }
.fourohfour__num { font-size: clamp(80px, 12vw, 160px); font-weight: 700; color: var(--blue); letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px; }
.fourohfour h1 { color: var(--navy); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.fourohfour p { color: var(--text); }
.fourohfour__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }

.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 95;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  padding: 20px;
}
.cookie__inner { display: flex; flex-direction: column; gap: 16px; }
.cookie__msg { font-size: 13.5px; color: var(--text); margin: 0; }
.cookie__msg a { color: var(--blue); }
.cookie__ctas { display: flex; gap: 8px; }
.cookie__ctas .btn { flex: 1; padding: 10px 18px; font-size: 13px; }

/* ─────────────────────────────────────────────
   V2 HOMEPAGE SECTIONS
   ───────────────────────────────────────────── */

/* Intro wrapper: hero on left, split panels stacked on right */
.v2-intro {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .v2-intro { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
}
.v2-intro > .v2-hero,
.v2-intro > .v2-split { min-height: clamp(420px, 62vh, 640px); }

/* Hero - full-bleed photo with centred white headline (Hanlon-style) */
.v2-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--navy);
  border: 0;
}
.v2-hero__media {
  position: absolute; inset: 0;
}
.v2-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.v2-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 25, 41, .25) 0%, rgba(11, 25, 41, .55) 100%);
}
.v2-hero__inner {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: clamp(56px, 8vw, 120px) var(--gutter);
  text-align: left;
}
.v2-hero__title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
  margin: 0;
  max-width: 720px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .25);
}
.v2-hero__sub {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: clamp(15px, 1.25vw, 18px);
  color: rgba(255, 255, 255, .92);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}
.v2-hero__ctas {
  display: flex; gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 600px) {
  .v2-hero__ctas { flex-direction: column; align-items: stretch; }
  .v2-hero__btn { width: 100%; justify-content: center; }
}
.v2-hero__btn { padding: 16px 32px; font-size: 15px; }
.v2-hero__btn--ghost,
.v2-hero__btn--blue {
  background: #286BBF;
  color: var(--white);
  border: 1px solid #286BBF;
}
.v2-hero__btn--ghost:hover,
.v2-hero__btn--blue:hover { background: #1E5CB8; color: var(--white); border-color: #1E5CB8; }
.v2-hero__btn--ghost .material-symbols-rounded,
.v2-hero__btn--blue .material-symbols-rounded { color: var(--white) !important; }

/* Split panels - Explore Windows / Explore Doors (solid colours, stacked) */
.v2-split {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--white);
}
/* Mobile + tablet: stacked vertically. Desktop is also stacked (see :root rules above). */
/* No 2-column layout - always 1 col on small screens. */
.v2-split__panel {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 48px);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: filter .25s var(--easing);
}
.v2-split__panel:hover { filter: brightness(1.08); }
.v2-split__panel--windows { background: #286BBF; }
.v2-split__panel--doors   { background: var(--navy); }
.v2-split__copy {
  display: flex; flex-direction: column;
  gap: 24px;
}
.v2-split__copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 600;
  margin: 0;
}
.v2-split__cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 12px 22px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 0;
  transition: background .2s var(--easing), color .2s var(--easing), transform .2s var(--easing);
}
.v2-split__cta .material-symbols-rounded {
  font-size: 18px !important;
  transition: transform .2s var(--easing);
  color: var(--navy);
}
.v2-split__panel:hover .v2-split__cta .material-symbols-rounded { transform: translateX(3px); }

/* Trust strip - full-bleed; spread on desktop, marquee on mobile */
.v2-trust {
  width: 100%;
  margin: 0;
  padding: 28px var(--gutter);
  background: var(--cloud);
  overflow: hidden;
}
.v2-trust__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px 32px;
}
.v2-trust__item {
  flex: 1 1 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  min-width: 180px;
  white-space: nowrap;
}
.v2-trust__item .material-symbols-rounded {
  font-size: 26px !important;
  color: var(--blue);
}
/* Desktop: hide clones */
@media (min-width: 720px) {
  .v2-trust__item--clone { display: none; }
}
/* Mobile: marquee */
@media (max-width: 719px) {
  .v2-trust { padding: 16px 0; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); }
  .v2-trust__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    gap: 28px;
    animation: trust-marquee 24s linear infinite;
  }
  .v2-trust__item { min-width: 0; flex: 0 0 auto; }
  .v2-trust:hover .v2-trust__track { animation-play-state: paused; }
}

/* Category strip */
.v2-categories {
  background: var(--white);
  padding-block: clamp(48px, 6vw, 88px);
}
.v2-categories__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding-inline: var(--gutter);
}
.v2-categories__head .eyebrow { margin-bottom: 12px; }
.v2-categories__head h2 { color: var(--navy); margin: 0; }
@media (min-width: 1024px) {
  .v2-categories__heading { white-space: nowrap; }
}
.v2-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  background: transparent;
  border: 0;
  overflow: visible;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
/* Category card - portrait photo with navy gradient + white text overlay */
.v2-cat {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  isolation: isolate;
}
.v2-cat__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--easing), filter .3s var(--easing);
  z-index: 0;
}
.v2-cat:hover .v2-cat__media { transform: scale(1.05); }
.v2-cat__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 25, 41, .2) 0%,
      rgba(11, 25, 41, .55) 45%,
      rgba(11, 25, 41, .95) 100%);
  transition: opacity .25s var(--easing);
  z-index: 1;
}
.v2-cat:hover .v2-cat__overlay {
  background: #286BBF;
}
.v2-cat__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.2vw, 32px);
  z-index: 2;
}
.v2-cat__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  margin-bottom: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.v2-cat__ico .material-symbols-rounded { font-size: 24px !important; color: var(--white); }
.v2-cat h3 {
  color: var(--white);
  margin: 0;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.v2-cat p {
  color: rgba(255, 255, 255, .85);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.v2-cat__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--white);
  font-weight: 600; font-size: 14px;
  padding-top: 8px;
}
.v2-cat__link .material-symbols-rounded {
  font-size: 18px !important;
  transition: transform .2s var(--easing);
}
.v2-cat:hover .v2-cat__link .material-symbols-rounded { transform: translateX(4px); }

/* Story strip */
.v2-story { padding-block: var(--section-y); }
.v2-story__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .v2-story__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
.v2-story__copy .eyebrow { color: var(--blue); }
.v2-story__copy h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 14px 0 24px;
}
.v2-story__copy p { color: var(--text); font-size: 17px; line-height: 1.65; margin: 0 0 14px; }
.v2-story__copy strong { color: var(--navy); font-weight: 600; }
.v2-story__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.v2-story__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.v2-pillar {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-pillar__num {
  font-size: 12px; font-weight: 700;
  color: var(--blue); letter-spacing: .12em;
}
.v2-pillar h3 { color: var(--navy); font-size: 19px; margin: 0; }
.v2-pillar p { color: var(--text); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* Numbers strip */
.v2-numbers {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(48px, 6vw, 88px);
}
.v2-numbers__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.v2-numbers__head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.v2-numbers__head .eyebrow { color: var(--sky); }
.v2-numbers__head h2 { color: var(--white); margin: 8px 0 0; }
.v2-numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.v2-num {
  text-align: center;
  padding: 12px 24px;
  border-left: 1px solid #286BBF;
}
.v2-num:first-child { border-left: 0; }
@media (max-width: 720px) {
  .v2-num { border-left: 0; border-top: 1px solid #286BBF; padding-block: 24px; }
  .v2-num:first-child { border-top: 0; }
  /* Hide "Expert employees" (3rd) on mobile so only 4 visible */
  .v2-num:nth-child(3) { display: none; }
  .v2-num:nth-child(4) { border-top: 0; }
}
.v2-num__value {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.v2-num__label { color: rgba(255,255,255,.7); font-size: 14px; }

/* Showcase */
.v2-showcase {
  padding-block: var(--section-y);
  background: var(--cloud);
}
.v2-showcase__head {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: end;
  max-width: var(--container);
  margin: 0 auto 48px;
  padding-inline: var(--gutter);
}
.v2-showcase__head h2 { color: var(--navy); margin: 8px 0 0; max-width: 680px; }
.v2-showcase__head .eyebrow { margin: 0 0 8px; }
.v2-showcase__head a { color: var(--blue); font-weight: 600; font-size: 14.5px; display: inline-flex; gap: 4px; align-items: center; }
.v2-showcase__head .material-symbols-rounded { font-size: 18px !important; }
.v2-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 720px) {
  .v2-showcase__grid { grid-template-columns: repeat(2, 1fr); }
}
.v2-show {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--ice);
  aspect-ratio: 4 / 3;
  text-decoration: none;
}
.v2-show img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--easing);
}
.v2-show:hover img { transform: scale(1.04); }
.v2-show__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(11, 25, 41, .82) 0%, transparent 100%);
  color: var(--white);
}
.v2-show__tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  opacity: .8;
}
.v2-show h3 {
  color: var(--white); font-size: 19px; margin: 6px 0 0;
  letter-spacing: -0.01em;
}

/* CTA */
.v2-cta {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(56px, 7vw, 96px);
}
.v2-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.v2-cta h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.v2-cta p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
}
.v2-cta__ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.v2-cta .btn--mint {
  background: var(--white); color: var(--navy);
  border-color: var(--white);
}
.v2-cta .btn--mint:hover { background: var(--ice); color: var(--navy); }

/* Why Everclear - centred badge + hero image + 3 features */
.v2-why {
  padding-block: var(--section-y);
  background: var(--white);
  overflow: hidden;
}
.v2-why__head {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 80px);
  padding-inline: var(--gutter);
  max-width: 880px;
}
.v2-why__badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.v2-why__heading {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

/* Hero image - matches container width (same as .v2-showcase) */
.v2-why__visual {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  isolation: isolate;
}
.v2-why__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 640px;
  object-fit: cover;
  display: block;
  clip-path: inset(0 5px 0 5px);
}
.v2-why__fade {
  position: absolute;
  inset: 0;
  margin-inline: var(--gutter);
  pointer-events: none;
  background: linear-gradient(to top, var(--white) 0%, transparent 35%, transparent 100%);
}
.v2-why__deco {
  position: absolute;
  top: -112px;
  width: 384px; height: 288px;
  z-index: -1;
  opacity: .4;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 37, 69, .5) 1px, transparent 1px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 20%, transparent 100%);
          mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 20%, transparent 100%);
}
.v2-why__deco--left  { left: -112px; }
.v2-why__deco--right { right: -112px; }
@media (max-width: 768px) { .v2-why__deco { display: none; } }

/* 3-feature row beneath - matches container width of image above */
.v2-why__features {
  display: flex;
  flex-direction: column;
  max-width: var(--container);
  margin: 40px auto 0;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) {
  .v2-why__features { flex-direction: row; gap: 0; align-items: stretch; }
}
.v2-why__feat {
  flex: 1 1 0;
  display: flex; flex-direction: column;
  background: var(--white);
  padding: 16px;
  gap: 4px;
}
.v2-why__feat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--blue);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(11, 37, 69, .14), 0 1px 3px rgba(11, 37, 69, .08);
  margin-bottom: 16px;
}
.v2-why__feat-ico .material-symbols-rounded { font-size: 20px !important; }
.v2-why__feat h2,
.v2-why__feat h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.v2-why__feat p {
  margin: 0;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.v2-why__sep {
  display: none;
  align-self: stretch;
  width: 2px;
  margin-inline: 24px;
  background: linear-gradient(to bottom, var(--line) 0%, transparent 50%, var(--line) 100%);
}
@media (min-width: 768px) { .v2-why__sep { display: block; } }

/* Single review */
.v2-review {
  padding-block: var(--section-y);
  background: var(--white);
}
.v2-review__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.v2-review__stars {
  display: flex; gap: 4px; justify-content: center;
  color: var(--blue); margin-bottom: 24px;
}
.v2-review__stars .material-symbols-rounded {
  font-size: 22px !important;
  font-variation-settings: 'FILL' 1, 'wght' 600 !important;
}
.v2-review__quote {
  color: var(--navy); font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.4; letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 500;
}
.v2-review__quote::before { content: '“'; color: var(--blue); margin-right: 2px; }
.v2-review__quote::after  { content: '”'; color: var(--blue); margin-left: 2px; }
.v2-review__author { color: var(--text); font-size: 14.5px; }
.v2-review__author strong { color: var(--navy); font-weight: 600; }
.v2-review__source {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-2); font-size: 13px;
  margin-top: 6px;
}
.v2-review__source .material-symbols-rounded { font-size: 14px !important; color: var(--blue); }
.v2-review__source-ico { width: 16px; height: 16px; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--easing), transform .6s var(--easing);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────
   Global overrides — kill all rounded corners
   ───────────────────────────────────────────── */
.skip,
.btn,
.btn--curve-bl, .btn--curve-tr, .btn--shroom-l, .btn--shroom-r,
.nav__link, .nav__mega, .nav__mega-card, .nav__burger,
.page-hero__eyebrow,
.pcard, .pcard__media,
.built__grid, .feat, .feat__icon,
.showroom__photo, .showroom__photo-img,
.cbanner__inner,
.stats__inner,
.timeline__step,
.benefit, .benefit__icon,
.issue, .issue__num,
.series__item,
.cmp-wrap,
.gallery__cell,
.tcard,
.row__image-card, .row__image-card--alt,
.split__col, .split__icon,
.cert__badge, .cert__badge-art, .cert__test, .cert__test-ico, .cert__pill,
.map iframe,
.quote-embed,
.qfield input, .qfield select, .qfield textarea,
.qchip span,
.modal__panel, .modal__close,
.qcard,
.repair-fab, .repair-fab__ico, .repair-fab__close,
.cookie,
.bp-hero__eyebrow,
.bp-row__media, .bp-row__num, .bp-row__tag,
.pf-chip, .pf-feature__media, .pf-feature__cat,
.pf-card, .pf-card__media, .pf-card__overlay, .pf-tag,
.proj__media, .prose blockquote, .newsletter__form input,
.v2-categories__grid, .v2-cat__ico,
.v2-pillar, .v2-story__pillars,
.v2-show, .v2-split__panel, .v2-split__cta,
.v2-hero__crest, .v2-hero__crest-dot {
  border-radius: 0 !important;
}
*:focus-visible { border-radius: 0 !important; }

/* ─────────────────────────────────────────────
   Info-card hover invert (navy/white)
   ───────────────────────────────────────────── */
.benefit, .v2-pillar, .split__col, .issue, .feat, .timeline__step {
  transition:
    background .2s var(--easing),
    color .2s var(--easing),
    border-color .2s var(--easing),
    transform .2s var(--easing),
    box-shadow .25s var(--easing);
}
.benefit:hover, .split__col:hover, .issue:hover,
.feat:hover, .timeline__step:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
/* Each story pillar gets its own hover colour */
.v2-pillar:nth-child(1):hover { background: #0B2545; color: var(--white); border-color: #0B2545; box-shadow: var(--shadow-md); }
.v2-pillar:nth-child(2):hover { background: #1E5CB8; color: var(--white); border-color: #1E5CB8; box-shadow: var(--shadow-md); }
.v2-pillar:nth-child(3):hover { background: #286BBF; color: var(--white); border-color: #286BBF; box-shadow: var(--shadow-md); }
.v2-pillar:hover h3, .v2-pillar:hover p, .v2-pillar:hover .v2-pillar__num { color: var(--white) !important; }
.benefit:hover .benefit__title,
.benefit:hover .benefit__body,
.v2-pillar:hover h3,
.v2-pillar:hover p,
.split__col:hover .split__title,
.split__col:hover .split__intro,
.split__col:hover .split__list li,
.issue:hover .issue__title,
.issue:hover p,
.feat:hover h3,
.feat:hover p,
.timeline__step:hover .timeline__heading,
.timeline__step:hover .timeline__copy { color: var(--white); }

.benefit:hover .benefit__icon,
.feat:hover .feat__icon,
.split__col:hover .split__icon,
.issue:hover .issue__num {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}
.benefit:hover .benefit__icon .material-symbols-rounded,
.feat:hover .feat__icon .material-symbols-rounded,
.split__col:hover .split__icon .material-symbols-rounded { color: var(--white) !important; }

.v2-pillar:hover .v2-pillar__num,
.split__col:hover .split__cta,
.split__col:hover .split__list .material-symbols-rounded,
.timeline__step:hover .timeline__num { color: var(--white) !important; }

.split__col:hover .split__list .material-symbols-rounded { color: var(--white) !important; }
