/* ============================================================
   Whitelabel design system for window-installer marketing sites
   Colour, type & radius tokens come from the site config JSON,
   injected via :root in _base.html. Defaults below are sensible
   fallbacks for previewing the CSS in isolation.
   ============================================================ */
:root {
  --c-primary: #0b3b8f;
  --c-primary-dark: #082c6b;
  --c-accent: #4797ac;
  --c-cream: #f5f6f8;
  --c-stone: #6b7280;
  --c-ink: #0f172a;
  --c-surface: #ffffff;

  --c-paper: #ffffff;
  --c-line: rgba(15, 23, 42, 0.08);
  --c-line-strong: rgba(15, 23, 42, 0.14);
  --c-muted-bg: #f8fafc;
  --c-footer-bg: #0b1220;
  --c-footer-low: #f1f5f9;

  --c-grad-primary: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  --c-grad-hero: linear-gradient(110deg, rgba(8, 17, 38, 0.78) 0%, rgba(11, 59, 143, 0.55) 45%, rgba(0, 0, 0, 0.15) 100%);

  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --r-xs: 6px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.12), 0 4px 10px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.25), 0 12px 28px -8px rgba(15, 23, 42, 0.12);
  --shadow-ring: 0 0 0 1px rgba(15, 23, 42, 0.05);

  --container: 1240px;
  --container-wide: 1400px;
  --gutter: clamp(1rem, 3vw, 2rem);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- reset -------- */
*,
*::before,
*::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss03";
  font-variation-settings: "opsz" 28;
}
@media (max-width: 39.9375em) {
  body { font-size: 16px; }
}
img, svg, video { max-width: 100%; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--c-primary); }
button {
  font: inherit;
  cursor: pointer;
  font-family: var(--f-body);
}
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--c-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.muted { color: var(--c-stone); }
address { font-style: normal; }

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

/* -------- typography -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  color: var(--c-ink);
  margin: 0 0 0.6em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.625rem);
  font-weight: 700;
}
h4 {
  font-size: 1.0625rem;
  font-weight: 600;
}
p { margin: 0 0 1em; }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--c-stone);
  max-width: 64ch;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-title {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 3rem;
}
.section-title .eyebrow { justify-content: center; }
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--c-stone); font-size: 1.05rem; margin: 0; }

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.6rem;
  height: 54px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--c-grad-primary);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(11, 59, 143, 0.6), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition),
    background var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: #fff;
  box-shadow: 0 16px 32px -12px rgba(11, 59, 143, 0.7), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}
.btn:active { transform: translateY(0); }
.btn--lg { height: 60px; padding: 0 2rem; font-size: 1rem; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  filter: none;
}
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  filter: none;
}
.btn--light {
  background: #fff;
  color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { background: #fff; color: var(--c-primary); filter: none; }

.btn--arrow::after {
  content: "→";
  font-weight: 500;
  transition: transform var(--transition);
}
.btn--arrow:hover::after { transform: translateX(3px); }

/* -------- topbar -------- */
.topbar {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  padding-block: 0.6rem;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar__item a { color: inherit; }
.topbar__item a:hover { color: #fff; }
.topbar__item svg { opacity: 0.7; }
@media (max-width: 720px) {
  .topbar__item--hideable { display: none; }
  .topbar__inner { justify-content: center; }
}

/* -------- header / nav -------- */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 2rem;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-ink);
}
.brandmark__logo {
  height: 52px;
  width: auto;
  display: block;
}
.brandmark__logo--footer { height: 46px; opacity: 0.95; }
.brandmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brandmark__name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brandmark__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin-top: 0.4rem;
}
@media (max-width: 540px) {
  .brandmark__tag { display: none; }
  .brandmark__logo { height: 44px; }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.primary-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.primary-nav a {
  color: var(--c-ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}
.primary-nav > ul > li > a:hover {
  color: var(--c-primary);
  background: var(--c-muted-bg);
}

.has-sub { position: relative; }
.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform var(--transition);
}
.has-sub:hover > a::after { transform: translateY(0) rotate(225deg); }

.submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -0.5rem;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 0.5rem;
  min-width: 270px;
  border-radius: var(--r);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-lg);
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu ul { list-style: none; margin: 0; padding: 0; }
.submenu a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  color: var(--c-ink);
}
.submenu a:hover {
  background: var(--c-muted-bg);
  color: var(--c-primary);
}
.submenu a strong { font-weight: 700; }

.primary-nav .nav-cta,
a.nav-cta {
  background: var(--c-grad-primary);
  color: #fff;
  padding: 0.65rem 1.3rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(11, 59, 143, 0.6);
  transition: transform var(--transition), filter var(--transition);
}
.primary-nav .nav-cta:hover,
a.nav-cta:hover {
  filter: brightness(1.08);
  color: #fff;
  background: var(--c-grad-primary);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
}
.nav-toggle:hover { background: var(--c-muted-bg); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--c-ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .primary-nav > ul > li { border-bottom: 1px solid var(--c-line); }
  .primary-nav > ul > li > a {
    padding: 1rem 0.25rem;
    display: block;
    border-radius: 0;
    font-weight: 600;
  }
  .has-sub > a::after { float: right; margin-top: 0.4rem; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem 0.5rem;
    display: none;
    min-width: 0;
  }
  .has-sub.is-expanded .submenu { display: block; }
  .nav-cta {
    margin-top: 1rem;
    align-self: stretch;
    text-align: center;
  }
}

/* -------- hero -------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-grad-hero);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}
.hero__rating .stars { display: inline-flex; gap: 2px; color: #fbbf24; }
.hero__rating .stars svg { fill: currentColor; }

@media (max-width: 720px) {
  .hero { min-height: 560px; }
  .hero__actions .btn { width: 100%; }
}

/* -------- trust strip -------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  padding-block: 1.1rem;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  color: var(--c-stone);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-strip__item svg { color: var(--c-primary); }

/* -------- page-summary -------- */
.page-summary {
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  text-align: center;
}
.page-summary h2 {
  max-width: 26ch;
  margin: 0 auto 1.5rem;
}
.page-summary p {
  max-width: 70ch;
  margin: 0 auto 1.25rem;
  color: var(--c-stone);
  font-size: 1.05rem;
  line-height: 1.7;
}
.page-summary strong { color: var(--c-ink); font-weight: 600; }

/* -------- product cards -------- */
.products-section { padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.product-card {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-ink);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-line);
  isolation: isolate;
}
.product-card__image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__overlay-text {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.product-card__title-bar {
  padding: 1.1rem 1.25rem 1.25rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.product-card__title-bar::after {
  content: "→";
  font-size: 1.1rem;
  color: var(--c-primary);
  flex-shrink: 0;
}

/* -------- stats band -------- */
.stats {
  background: var(--c-grad-primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 40%),
                    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat__value {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.6rem;
}
.stat__label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* -------- process / how it works -------- */
.process {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--c-paper);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.process__card {
  background: var(--c-muted-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  position: relative;
}
.process__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px -10px rgba(11, 59, 143, 0.5);
}
.process__card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.process__card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-stone);
  line-height: 1.6;
}

/* -------- selling points (benefits) -------- */
.selling-points {
  background: var(--c-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.selling-points__title-section {
  text-align: center;
  padding-bottom: 3rem;
  max-width: 56ch;
  margin: 0 auto;
}
.selling-points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.selling-point {
  background: #fff;
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--c-line);
}
.selling-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.selling-point h4 {
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.selling-point p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-stone);
  line-height: 1.6;
}
.selling-points__btn-section { padding-top: 3rem; text-align: center; }

/* -------- testimonials -------- */
.testimonials {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--c-paper);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--c-muted-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial__stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbf24;
  margin-bottom: 1rem;
}
.testimonial__stars svg { fill: currentColor; }
.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-ink);
  margin: 0 0 1.5rem;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-grad-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; color: var(--c-ink); }
.testimonial__location { font-size: 0.82rem; color: var(--c-stone); }

/* -------- big CTA band -------- */
.cta-band {
  background: var(--c-grad-primary);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.12), transparent 35%),
                    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}
.cta-band__inner { position: relative; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.cta-band .btn--light { box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.4); }

/* legacy cream cta-band (used on some pages); only when used standalone */
.cta-band--soft {
  background: var(--c-cream);
  color: var(--c-ink);
}
.cta-band--soft::before { display: none; }
.cta-band--soft h2 { color: var(--c-ink); }
.cta-band--soft p { color: var(--c-stone); }

/* -------- breadcrumbs -------- */
.breadcrumbs {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-stone);
  padding: 1.5rem 0 0.5rem;
}
.breadcrumbs a { color: var(--c-stone); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs__sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumbs span:last-child { color: var(--c-ink); font-weight: 600; }

/* -------- page header (interior pages) -------- */
.page-header {
  padding: 1rem 0 3.5rem;
  text-align: center;
  background: var(--c-paper);
}
.page-header .kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
  border-radius: var(--r-pill);
}
.page-header h1 {
  margin-bottom: 1rem;
  max-width: 22ch;
  margin-inline: auto;
}
.page-header__lead {
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.65;
  color: var(--c-stone);
}

/* -------- generic content section -------- */
.section { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--c-cream); }
.section--muted { background: var(--c-muted-bg); }

.prose { max-width: 70ch; margin: 0 auto; }
.prose p { line-height: 1.75; font-size: 1.05rem; }
.prose h2 { margin-top: 2.5rem; }
.prose ul { padding-left: 1.4em; }
.prose ul li { margin-bottom: 0.5em; line-height: 1.7; }

/* -------- areas we serve -------- */
.areas-intro { margin-bottom: clamp(1.75rem, 3vw, 2.25rem); }
.areas-towns__title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin: 0 0 1.1rem;
}
.areas-towns {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 52rem;
}
.areas-town {
  margin: 0;
}
.areas-town__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  box-shadow: var(--shadow-ring), 0 4px 14px rgba(15, 23, 42, 0.06);
  color: var(--c-ink);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
@media (hover: hover) {
  .areas-town__inner:hover {
    border-color: var(--c-line-strong);
    box-shadow: var(--shadow-ring), 0 6px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
  }
}
.areas-town__pin {
  display: flex;
  color: var(--c-accent);
  opacity: 0.95;
}
.areas-town__name {
  line-height: 1.2;
}
.areas-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.areas-cta .muted { margin-bottom: 1.25rem; line-height: 1.65; }

/* -------- product detail (interior pages) -------- */
.product-detail {
  padding: 1rem 0 3rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; padding: 0.5rem 0 2rem; }
}
.product-detail__image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.product-detail h1 { font-size: clamp(2rem, 4vw, 3rem); }
.product-detail__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--c-stone);
}
.product-detail__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.6rem;
}
.product-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
  color: var(--c-ink);
}
.product-detail__features li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--c-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.product-detail__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* -------- contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: #fff;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--r);
  box-shadow: var(--shadow-ring), var(--shadow);
}
.contact-card h3 { margin-bottom: 1.5rem; font-size: 1.35rem; }
.contact-card__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 640px) {
  .contact-card__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  .contact-card__row > :last-child {
    flex: 1;
    min-width: 0;
  }
}
.contact-card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card__row:first-child { padding-top: 0; }
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-stone);
  flex-shrink: 0;
  padding-top: 0;
}
@media (min-width: 640px) {
  .contact-card__label {
    min-width: 80px;
    padding-top: 0.3rem;
  }
}

.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--c-ink);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  height: 52px;
  padding: 0 1rem;
  background: #fff;
  border: 1.5px solid var(--c-line-strong);
  font: inherit;
  font-size: 1rem;
  color: var(--c-ink);
  border-radius: var(--r-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row textarea {
  min-height: 140px;
  padding: 0.85rem 1rem;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-primary) 18%, transparent);
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

/* -------- footer -------- */
.site-footer { margin-top: 0; }
.site-footer__upper {
  background: var(--c-footer-bg);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer__col h4 {
  color: #fff;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col ul li { padding: 0.3rem 0; font-size: 0.95rem; }
.site-footer__col a {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  transition: color var(--transition);
}
.site-footer__col a:hover { color: #fff; }
.site-footer__col address,
.site-footer__col p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.brandmark--footer { color: #fff; margin-bottom: 1rem; }
.brandmark--footer .brandmark__name { color: #fff; font-size: 1.15rem; }
.site-footer__tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  max-width: 32ch;
}
.social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: all var(--transition);
}
.social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.site-footer__lower {
  background: var(--c-footer-low);
  padding-block: 1.1rem;
  font-size: 0.85rem;
  color: var(--c-stone);
}
.site-footer__lower .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer__lower a { color: var(--c-stone); }
.site-footer__lower a:hover { color: var(--c-primary); }

/* -------- subtle entry animations -------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .reveal--1 { animation-delay: 0.05s; }
  .reveal--2 { animation-delay: 0.2s; }
  .reveal--3 { animation-delay: 0.35s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
}
