/* ============================================================
   SUNDAY — Outdoor Infrastructure
   Design system + components
   ============================================================ */

/* ---------- 1. TOKENS ---------- */

:root,
[data-theme='light'] {
  /* Brand */
  --pink: #e42b6c;
  --pink-hover: #c41f5b;
  --pink-active: #a4174a;
  --pink-soft: #fbe3ec;
  --pink-tint: #fdf3f7;

  /* Accents — used sparingly */
  --green: #6f9a55;
  --green-soft: #d7e8c9;
  --yellow: #b8912a;
  --yellow-soft: #f6ecc0;

  /* Neutrals */
  --charcoal: #14161a;
  --charcoal-2: #22262c;
  --grey-mid: #6c7076;
  --grey-line: #e2e2df;
  --grey-light: #efefec;
  --grey-lighter: #f7f7f5;
  --white: #ffffff;

  /* Semantic surfaces */
  --color-bg: #ffffff;
  --color-surface: #f7f7f5;
  --color-surface-2: #efefec;
  --color-surface-inverse: #14161a;
  --color-border: #e2e2df;
  --color-border-strong: #cfcfcb;

  /* Semantic text */
  --color-text: #14161a;
  --color-text-muted: #6c7076;
  --color-text-faint: #9a9ea3;
  --color-text-inverse: #f4f4f2;
  --color-text-inverse-muted: #9ea3aa;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.02rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.3rem + 3.8vw, 4.5rem);
  --text-hero: clamp(2.75rem, 1rem + 5.6vw, 6rem);
  --text-mega: clamp(4rem, 1rem + 12vw, 14rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius — deliberately restrained */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 6px;
  --r-full: 999px;

  /* Motion */
  --t-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 22, 26, 0.05);
  --shadow-md: 0 6px 20px rgba(20, 22, 26, 0.07);
  --shadow-lg: 0 22px 60px rgba(20, 22, 26, 0.12);
  --shadow-pink: 0 12px 34px rgba(228, 43, 108, 0.22);

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-narrow: 680px;
  --content-default: 1080px;
  --content-wide: 1440px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Switzer', 'Helvetica Neue', sans-serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  --nav-h: 74px;

  /* diagram aliases */
  --green-deep: var(--green);
  --yellow-deep: var(--yellow);
}

[data-theme='dark'] {
  --pink: #f4487f;
  --pink-hover: #ff6394;
  --pink-active: #ff7ea6;
  --pink-soft: #34191f;
  --pink-tint: #1e1417;

  --green: #96bd7b;
  --green-soft: #22301a;
  --yellow: #d9b352;
  --yellow-soft: #322a15;

  --grey-line: #2b2f35;
  --grey-light: #1e2126;
  --grey-lighter: #191c20;

  --color-bg: #101216;
  --color-surface: #171a1e;
  --color-surface-2: #1e2126;
  --color-surface-inverse: #f7f7f5;
  --color-border: #2b2f35;
  --color-border-strong: #3b4047;

  --color-text: #e8e8e6;
  --color-text-muted: #9299a1;
  --color-text-faint: #6b7178;
  --color-text-inverse: #14161a;
  --color-text-inverse-muted: #4d525a;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-pink: 0 12px 34px rgba(244, 72, 127, 0.2);
}

/* ---------- 2. LAYOUT PRIMITIVES ---------- */

.shell {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--default {
  max-width: var(--content-default);
}
.shell--narrow {
  max-width: var(--content-narrow);
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}
.section--tight {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.section--flush-top {
  padding-top: 0;
}
.section--surface {
  background: var(--color-surface);
}
.section--dark {
  background: var(--charcoal);
  color: var(--color-text-inverse);
}
[data-theme='dark'] .section--dark {
  background: #090a0c;
}
.section--dark .eyebrow {
  color: var(--pink);
}
.section--dark .lede,
.section--dark p {
  color: var(--color-text-inverse-muted);
}

.rule {
  height: 1px;
  background: var(--color-border);
  border: 0;
}

/* Section header pattern: number + label + headline */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-20));
}
@media (min-width: 900px) {
  .sec-head--split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: var(--space-16);
  }
}

.sec-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--pink);
  flex: none;
}
.eyebrow--plain::before {
  display: none;
}

/* ---------- 3. TYPOGRAPHY ---------- */

.h-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 500;
}
.h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: -0.032em;
  line-height: 1.02;
  font-weight: 500;
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: -0.028em;
  line-height: 1.05;
  font-weight: 500;
}
.h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 500;
}
.h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 46ch;
  font-weight: 400;
}

.body-copy {
  color: var(--color-text-muted);
  max-width: 62ch;
}
.body-copy + .body-copy {
  margin-top: var(--space-4);
}
.body-copy strong {
  color: var(--color-text);
  font-weight: 600;
}

.small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.tiny {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.mark {
  color: var(--pink);
}
.mega-type {
  font-family: var(--font-display);
  font-size: var(--text-mega);
  line-height: 0.82;
  letter-spacing: -0.05em;
  font-weight: 500;
}

/* ---------- 4. BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.95rem 1.6rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
  min-height: 48px;
}
.btn svg {
  flex: none;
  transition: transform var(--t-fast);
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--pink);
  color: #fff;
}
.btn--primary:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}
.btn--primary:active {
  transform: translateY(0);
  background: var(--pink-active);
}

.btn--dark {
  background: var(--charcoal);
  color: #f4f4f2;
}
.btn--dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
[data-theme='dark'] .btn--dark {
  background: #f2f2f0;
  color: #14161a;
}

.btn--ghost {
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.btn--ghost:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--block {
  width: 100%;
}
.btn--lg {
  padding: 1.15rem 2rem;
  font-size: var(--text-base);
  min-height: 56px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-border-strong);
}
.link-arrow:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.link-arrow svg {
  transition: transform var(--t-fast);
}
.link-arrow:hover svg {
  transform: translateX(3px);
}
.section--dark .link-arrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.section--dark .link-arrow:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ---------- 5. BADGES / PILLS ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--pink-soft);
  color: var(--pink-hover);
}
[data-theme='dark'] .badge {
  color: var(--pink);
}
.badge--green {
  background: var(--green-soft);
  color: var(--green);
}
.badge--yellow {
  background: var(--yellow-soft);
  color: var(--yellow);
}
.badge--outline {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-muted);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

/* ---------- 6. NAVIGATION ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--pink);
  transition: width 80ms linear;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition:
    background 300ms var(--ease-out),
    border-color 300ms var(--ease-out),
    box-shadow 300ms var(--ease-out),
    height 300ms var(--ease-out);
}
.nav__inner {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav.is-solid {
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-color: var(--color-border);
}
.nav.is-hidden {
  transform: translateY(-100%);
}
.nav {
  transition:
    background 300ms var(--ease-out),
    border-color 300ms var(--ease-out),
    transform 400ms var(--ease-out);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
  display: block;
  color: var(--pink);
  fill: currentColor;
}
.brand__word {
  height: 21px;
  width: auto;
  flex: none;
  display: block;
  color: var(--color-text);
  fill: currentColor;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.75rem);
  margin-left: auto;
}
@media (min-width: 1060px) {
  .nav__links {
    display: flex;
  }
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--pink);
  transition: width 220ms var(--ease-out);
}
.nav__link:hover,
.nav__link[aria-current='page'] {
  color: var(--color-text);
}
.nav__link:hover::after,
.nav__link[aria-current='page']::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}
@media (min-width: 1060px) {
  .nav__actions {
    margin-left: 0;
  }
}
.nav__phone {
  display: none;
  font-size: var(--text-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}
.nav__phone:hover {
  color: var(--pink);
}
@media (min-width: 640px) {
  .nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
}
.nav__cta {
  display: none;
}
@media (min-width: 780px) {
  .nav__cta {
    display: inline-flex;
    padding: 0.7rem 1.15rem;
    min-height: 42px;
  }
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--r-full);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.icon-btn:hover {
  background: var(--color-surface);
  border-color: var(--color-border-strong);
}
.nav__burger {
  display: inline-grid;
}
@media (min-width: 1060px) {
  .nav__burger {
    display: none;
  }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-5) var(--gutter) var(--space-10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 260ms var(--ease-out),
    transform 300ms var(--ease-out),
    visibility 260ms;
  overflow-y: auto;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--nav-h) - var(--space-5));
}
.drawer__links {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-8);
}
.drawer__link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  letter-spacing: -0.03em;
  font-weight: 500;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
}
.drawer__link span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.drawer__foot {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-3);
}

/* Sticky mobile CTA bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out);
}
.mobile-bar.is-visible {
  transform: translateY(0);
}
.mobile-bar .btn {
  min-height: 46px;
  padding: 0.7rem 1rem;
  font-size: var(--text-sm);
}
@media (min-width: 780px) {
  .mobile-bar {
    display: none;
  }
}
@media (max-width: 779px) {
  body {
    padding-bottom: 0;
  }
}

/* ---------- 7. HERO ---------- */

.hero {
  padding-top: calc(var(--nav-h) + clamp(var(--space-6), 3.4vw, var(--space-12)));
  padding-bottom: clamp(var(--space-12), 6vw, var(--space-20));
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 12% 0%, var(--pink-tint) 0%, transparent 70%),
    radial-gradient(50% 45% at 95% 10%, var(--grey-lighter) 0%, transparent 70%);
  pointer-events: none;
}
[data-theme='dark'] .hero::before {
  opacity: 0.5;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  align-items: start;
}
@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(var(--space-12), 4vw, var(--space-20));
  }
}

.hero__title {
  margin-top: var(--space-5);
  max-width: 19ch;
  font-size: clamp(2.5rem, 1rem + 4.4vw, 4.75rem);
}
.hero__sub {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 48ch;
  line-height: 1.5;
}

.hero__creds {
  margin-top: clamp(var(--space-8), 4vw, var(--space-10));
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.hero__cred {
  padding: var(--space-4) var(--space-5) var(--space-4) 0;
  margin-right: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
}
.hero__cred:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}
@media (max-width: 599px) {
  .hero__creds {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero__cred {
    padding-right: 0;
    margin-right: 0;
    font-size: var(--text-base);
  }
  .hero__cred:not(:last-child)::after {
    display: none;
  }
  .hero__creds-note {
    grid-column: 1 / -1;
  }
}
.hero__creds-note {
  flex-basis: 100%;
  padding-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  margin-top: -1px;
}

/* Lead form card */
.form-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  position: relative;
}
.form-card--sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-4));
}
.form-card__head {
  margin-bottom: var(--space-5);
}
.form-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.1;
}
.form-card__note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  max-width: 44ch;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-text-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.field textarea {
  min-height: 78px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236c7076' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--color-border-strong);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--pink) 16%, transparent);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--pink);
}
.field__err {
  font-size: var(--text-xs);
  color: var(--pink);
  display: none;
}
.field.is-invalid .field__err {
  display: block;
}

.form-foot {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.form-foot__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  max-width: none;
}
.form-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.form-alt a {
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-strong);
}
.form-alt a:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form-success.is-shown {
  display: block;
  animation: fade-up 420ms var(--ease-out) both;
}
.form-success__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 8. CROSS-SECTION DIAGRAM ---------- */

.xsec {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: var(--color-surface);
  overflow: hidden;
}
.xsec__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.xsec__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--color-text-muted);
}
.xsec__hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: none;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .xsec__hint {
    display: none;
  }
}
.xsec__stage {
  position: relative;
  aspect-ratio: 16 / 10;
}
.xsec__stage svg {
  width: 100%;
  height: 100%;
}
.xsec__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.xsec__tab {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.xsec__tab:hover {
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.xsec__tab.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
[data-theme='dark'] .xsec__tab.is-active {
  background: var(--pink);
  border-color: var(--pink);
}

/* SVG layer states */
.xl {
  transition:
    opacity 400ms var(--ease-out),
    stroke-width 300ms var(--ease-out);
}
.xl--dim {
  opacity: 0.16;
}
.xl-flow {
  stroke-dasharray: 5 7;
  animation: flow 1.4s linear infinite;
}
@keyframes flow {
  to {
    stroke-dashoffset: -24;
  }
}
.xsec__caption {
  padding: var(--space-4);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  min-height: 92px;
}
.xsec__caption h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.xsec__caption p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 52ch;
}

/* ---------- 9. TICKER ---------- */

.ticker {
  border-block: 1px solid var(--color-border);
  overflow: hidden;
  padding-block: var(--space-4);
  background: var(--color-bg);
}
.ticker__track {
  display: flex;
  gap: var(--space-10);
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.ticker__item svg {
  color: var(--pink);
  flex: none;
}

/* ---------- 10. SERVICE ZONES INTERFACE ---------- */

.zones {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 980px) {
  .zones {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(var(--space-8), 4vw, var(--space-16));
    align-items: start;
  }
}

.zones__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}
.zone-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: baseline;
  text-align: left;
  width: 100%;
  position: relative;
}
.zone-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pink);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.zone-item__num {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.zone-item__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
}
.zone-item__meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.zone-item:hover .zone-item__name,
.zone-item.is-active .zone-item__name {
  color: var(--color-text);
}
.zone-item.is-active .zone-item__num {
  color: var(--pink);
}
.zone-item.is-active .zone-item__meta,
.zone-item:hover .zone-item__meta {
  opacity: 1;
}
.zone-item.is-active::before {
  opacity: 1;
}

.zones__panel {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-bg);
}
.zones__plan {
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  position: relative;
}
.zones__plan svg {
  width: 100%;
  height: 100%;
}
.zone-hot {
  cursor: pointer;
}
.zone-shape {
  transition:
    opacity 350ms var(--ease-out),
    fill 350ms var(--ease-out);
  opacity: 0.18;
}
.zone-shape.is-active {
  opacity: 1;
}
.zones__detail {
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  border-top: 1px solid var(--color-border);
}
.zones__detail-inner {
  animation: swap 380ms var(--ease-out) both;
}
@keyframes swap {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.zones__detail h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.025em;
  margin: var(--space-2) 0 var(--space-3);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.chip {
  font-size: var(--text-xs);
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  color: var(--color-text-muted);
  background: var(--color-surface);
}
.zones__detail-cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ---------- 11. FEATURE / SPLIT BLOCKS ---------- */

.split {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-left {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .split--wide-right {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .split--flip > *:first-child {
    order: 2;
  }
}

.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.media-frame--tall {
  aspect-ratio: 3 / 4;
}
.media-frame--wide {
  aspect-ratio: 16 / 9;
}
.media-frame--square {
  aspect-ratio: 1;
}
.media-frame__cap {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bullets {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.bullet:last-child {
  border-bottom: 0;
}
.bullet__k {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--pink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding-top: 0.15rem;
}
.bullet h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.bullet p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Diff grid (Why Sunday) */
.diff-grid {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 700px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.diff {
  background: var(--color-bg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.diff::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
}
.diff:hover::after {
  transform: scaleX(1);
}
.diff__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text-faint);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.diff h3 {
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.diff p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: auto;
}

/* ---------- 12. RAINFALL / DRAINAGE CANVAS ---------- */

.rainviz {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  position: relative;
}
.rainviz__stage {
  position: relative;
  aspect-ratio: 16 / 9;
}
@media (min-width: 800px) {
  .rainviz__stage {
    aspect-ratio: 21 / 8;
  }
}
.rainviz canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.rainviz__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(var(--space-4), 3vw, var(--space-8));
  pointer-events: none;
}
.rainviz__state {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.rainviz__headline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.025em;
  max-width: 20ch;
}
.rainviz__ctrl {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3) clamp(var(--space-4), 3vw, var(--space-8));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.rainviz__btn {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-full);
}
.rainviz__btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.rainviz__btn.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* ---------- 13. MAINTENANCE PLANS ---------- */

.plans {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .plans {
    grid-template-columns: 1fr 1.08fr;
    align-items: stretch;
  }
}
.plan {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  position: relative;
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-fast);
}
.plan:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}
.plan--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--color-text-inverse);
}
.plan--featured:hover {
  box-shadow: var(--shadow-lg);
}
.plan--featured .plan__desc,
.plan--featured .plan__incl li {
  color: var(--color-text-inverse-muted);
}
.plan__flag {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
}
.plan__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
}
.plan__desc {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 42ch;
}
.plan__price {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.plan--featured .plan__price,
.plan--featured .plan__incl {
  border-color: rgba(255, 255, 255, 0.14);
}
.plan__price-val {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.plan__price-unit {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.plan--featured .plan__price-unit {
  color: var(--color-text-inverse-muted);
}
.plan__incl {
  list-style: none;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: var(--space-3);
}
.plan__incl li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  align-items: start;
  max-width: none;
}
.plan__incl svg {
  margin-top: 0.3rem;
  color: var(--green);
  flex: none;
}
.plan--featured .plan__incl svg {
  color: #96bd7b;
}
.plan__cta {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
}

/* Comparison table */
.compare {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-bg);
}
.compare__cap {
  margin: 0;
  padding: var(--space-5) var(--space-6) var(--space-4);
  color: var(--color-text-faint);
  border-bottom: 1px solid var(--color-border);
}
.compare table {
  width: 100%;
  font-size: var(--text-sm);
}
.compare th,
.compare td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.compare thead th {
  background: var(--color-surface);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.compare tbody tr {
  transition: background var(--t-fast);
}
.compare tbody tr:hover {
  background: var(--color-surface);
}
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare td:first-child {
  font-weight: 500;
  color: var(--color-text);
  width: 46%;
}
.compare .c-yes {
  color: var(--green);
}
.compare .c-no {
  color: var(--color-text-faint);
}
.compare .c-col {
  text-align: center;
  width: 27%;
}
.compare thead th.c-col {
  text-align: center;
}
.compare-scroll {
  overflow-x: auto;
}
.maint-nudge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--pink);
  border-radius: var(--r-md);
  background: var(--pink-tint);
}
.maint-nudge p {
  font-size: var(--text-sm);
  font-weight: 500;
  max-width: 58ch;
}

/* ---------- 14. PROCESS TIMELINE ---------- */

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}
.timeline__line {
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--color-border);
}
.timeline__line-fill {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0%;
  background: var(--pink);
  transition: height 240ms linear;
}
@media (min-width: 900px) {
  .timeline__line {
    left: 0;
    right: 0;
    top: 7px;
    bottom: auto;
    height: 1px;
    width: auto;
  }
  .timeline__line-fill {
    inset: 0 auto 0 0;
    width: 0%;
    height: 100%;
    transition: width 240ms linear;
  }
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    padding-top: var(--space-8);
  }
}
.step {
  position: relative;
  padding-left: var(--space-8);
  padding-block: var(--space-5);
  opacity: 0.45;
  transition: opacity 500ms var(--ease-out);
}
.step.is-on {
  opacity: 1;
}
.step__dot {
  position: absolute;
  left: 0;
  top: calc(var(--space-5) + 0.4rem);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  display: grid;
  place-items: center;
}
.step__dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  transform: scale(0);
  transition: transform 380ms var(--ease-out);
}
.step.is-on .step__dot::after {
  transform: scale(1);
}
.step.is-on .step__dot {
  border-color: var(--pink);
}
@media (min-width: 900px) {
  .step {
    padding-left: 0;
    padding-top: var(--space-8);
  }
  .step__dot {
    top: -0.5px;
  }
  .timeline {
    padding-top: 0;
  }
}
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.022em;
  margin: var(--space-2) 0 var(--space-2);
}
.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
}

/* ---------- 15. CASE STUDIES ---------- */

.hscroll {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-5);
  scrollbar-width: thin;
}
.hscroll > * {
  scroll-snap-align: start;
  flex: 0 0 min(88vw, 620px);
}
.hscroll::-webkit-scrollbar {
  height: 3px;
}
.hscroll::-webkit-scrollbar-thumb {
  background: var(--color-border-strong);
}

.case {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}
.case__body {
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  display: grid;
  gap: var(--space-5);
}
.case__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.case__loc {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  font-weight: 600;
}
.case h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.026em;
}
.case__pas {
  display: grid;
  gap: var(--space-4);
}
.pas {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.pas dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-text-faint);
}
.pas dd {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.pas--out dd {
  color: var(--color-text);
  font-weight: 500;
}

/* Before / after slider */
.ba {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface-2);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__after {
  clip-path: inset(0 0 0 50%);
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}
.ba__tag {
  position: absolute;
  top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-full);
  background: rgba(20, 22, 26, 0.68);
  color: #fff;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba__tag--before {
  left: var(--space-4);
}
.ba__tag--after {
  right: var(--space-4);
  background: var(--pink);
}

/* ---------- 16. STATS ---------- */

.stats {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 640px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  padding: clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-5), 3vw, var(--space-8));
  background: var(--charcoal);
}
[data-theme='dark'] .stat {
  background: #090a0c;
}
.stat__val {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #fff;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.stat__suf {
  font-size: 0.42em;
  color: var(--pink);
  margin-left: 0.1em;
}
.stat__label {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.62);
  max-width: 22ch;
}

/* ---------- 17. AUDIENCE GRID ---------- */

.aud-grid {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 560px) {
  .aud-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .aud-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.aud {
  background: var(--color-bg);
  padding: var(--space-6);
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background var(--t-fast);
}
.aud:hover {
  background: var(--pink-tint);
}
.aud__i {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}
.aud h3 {
  font-size: var(--text-base);
  font-weight: 600;
}
.aud p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---------- 18. FIELD GUIDE / RESOURCES ---------- */

.guide-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 700px) {
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .guide-grid--feature > *:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: clamp(var(--space-5), 2.5vw, var(--space-8));
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: var(--color-bg);
  min-height: 220px;
  transition:
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
}
.guide-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.guide-card:active {
  transform: translateY(0);
}
.guide-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.guide-card__cat {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--pink);
}
.guide-card__read {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.022em;
  line-height: 1.15;
}
.guide-card--feature h3 {
  font-size: var(--text-xl);
}
.guide-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.guide-card__foot {
  margin-top: auto;
  padding-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
}
.guide-card:hover .guide-card__foot {
  color: var(--pink);
}
.guide-card__viz {
  margin-top: auto;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--color-surface);
}

/* ---------- 19. FAQ ---------- */

.faq {
  border-top: 1px solid var(--color-border);
}
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
  text-align: left;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--color-text);
}
.faq__q:hover {
  color: var(--pink);
}
.faq__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    transform 300ms var(--ease-out);
}
.faq__ico::before,
.faq__ico::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 300ms var(--ease-out);
}
.faq__ico::before {
  width: 11px;
  height: 1.5px;
}
.faq__ico::after {
  width: 1.5px;
  height: 11px;
}
.faq__item.is-open .faq__ico {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: rotate(90deg);
}
.faq__item.is-open .faq__ico::after {
  transform: scaleY(0);
}
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 380ms var(--ease-in-out);
}
.faq__a-inner {
  padding-bottom: var(--space-6);
  padding-right: clamp(0px, 8vw, 120px);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.faq__a-inner p + p {
  margin-top: var(--space-3);
}

/* ---------- 20. FINAL CTA ---------- */

.cta-band {
  background: var(--charcoal);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .cta-band {
  background: #090a0c;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  right: -20vw;
  bottom: -32vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 43, 108, 0.32) 0%, transparent 62%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  padding-block: clamp(var(--space-20), 11vw, var(--space-32));
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 980px) {
  .cta-band__inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: var(--space-16);
  }
}
.cta-band p {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-lg);
  max-width: 44ch;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.signal-list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.signal-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  max-width: none;
}
.signal-list svg {
  color: var(--pink);
  margin-top: 0.35rem;
}

/* ---------- 21. FOOTER ---------- */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-top: clamp(var(--space-16), 7vw, var(--space-24));
  padding-bottom: var(--space-10);
}
.footer__top {
  display: grid;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
}
@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: 1.3fr 2fr;
  }
}
.footer__brand .brand__mark {
  width: 40px;
  height: 40px;
}
.footer__brand .brand__word {
  height: 28px;
}
.footer__contact {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.footer__contact a {
  font-weight: 500;
}
.footer__contact a:hover {
  color: var(--pink);
}
.footer__contact address {
  font-style: normal;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}
.footer__cols {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) {
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__col h4 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.footer__col ul {
  list-style: none;
  display: grid;
  gap: var(--space-2);
}
.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer__col a:hover {
  color: var(--pink);
}
.footer__areas {
  margin-top: clamp(var(--space-12), 5vw, var(--space-16));
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.footer__areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-4);
}
.footer__areas-list span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer__bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}
.footer__legal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.social {
  display: flex;
  gap: var(--space-2);
}
.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
}
.social a:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ---------- 22. PAGE HEADERS (interior) ---------- */

.phead {
  padding-top: calc(var(--nav-h) + clamp(var(--space-10), 6vw, var(--space-20)));
  padding-bottom: clamp(var(--space-10), 5vw, var(--space-16));
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.phead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 8% 0%, var(--pink-tint) 0%, transparent 70%);
  pointer-events: none;
}
[data-theme='dark'] .phead::before {
  opacity: 0.55;
}
.phead__inner {
  position: relative;
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 960px) {
  .phead__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: var(--space-16);
  }
}
.crumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.crumbs a:hover {
  color: var(--pink);
}
.phead h1 {
  max-width: 20ch;
}
.phead__side {
  display: grid;
  gap: var(--space-5);
}
.spec-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  max-width: none;
}
.spec-list dt,
.spec-list .k {
  color: var(--color-text-muted);
  min-width: 0;
  overflow-wrap: break-word;
}
.spec-list dd {
  min-width: 0;
}
.spec-list .v {
  font-weight: 600;
  text-align: right;
}

/* prose blocks for resources */
.prose {
  max-width: 68ch;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.024em;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.prose h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.prose p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.prose ul,
.prose ol {
  margin: 0 0 var(--space-5) var(--space-5);
  display: grid;
  gap: var(--space-2);
}
.prose li {
  color: var(--color-text-muted);
}
.prose strong {
  color: var(--color-text);
  font-weight: 600;
}
.pullquote {
  margin: var(--space-10) 0;
  padding-left: var(--space-6);
  border-left: 2px solid var(--pink);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.022em;
  line-height: 1.25;
  max-width: 30ch;
}

/* ---------- 23. SCROLL REVEALS ---------- */

.rv {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .rv {
    opacity: 0;
    transition:
      opacity 720ms var(--ease-out),
      filter 720ms var(--ease-out);
    filter: blur(6px);
  }
  .rv.is-in {
    opacity: 1;
    filter: none;
  }
  .rv-d1 {
    transition-delay: 70ms;
  }
  .rv-d2 {
    transition-delay: 140ms;
  }
  .rv-d3 {
    transition-delay: 210ms;
  }
  .rv-d4 {
    transition-delay: 280ms;
  }
  .rv-clip {
    opacity: 1;
    filter: none;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 900ms var(--ease-out);
  }
  .rv-clip.is-in {
    clip-path: inset(0 0 0 0);
  }
  .media-frame .rv-zoom {
    transform: scale(1.06);
  }
  .media-frame.is-in .rv-zoom {
    transform: scale(1);
  }
}

/* word-by-word headline reveal */
.split-words .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-words .w > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 760ms var(--ease-out);
}
.split-words.is-in .w > span {
  transform: none;
}

/* ---------- 24. UTILITIES ---------- */

.stack-2 {
  display: grid;
  gap: var(--space-2);
}
.stack-3 {
  display: grid;
  gap: var(--space-3);
}
.stack-4 {
  display: grid;
  gap: var(--space-4);
}
.stack-5 {
  display: grid;
  gap: var(--space-5);
}
.stack-6 {
  display: grid;
  gap: var(--space-6);
}
.stack-8 {
  display: grid;
  gap: var(--space-8);
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mt-8 {
  margin-top: var(--space-8);
}
.mt-10 {
  margin-top: var(--space-10);
}
.mt-12 {
  margin-top: var(--space-12);
}
.mt-16 {
  margin-top: var(--space-16);
}
.tnum {
  font-variant-numeric: tabular-nums;
}
.nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.no-max {
  max-width: none;
}

/* view transitions between pages */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: vt-out 180ms cubic-bezier(0.4, 0, 1, 1) both;
}
::view-transition-new(root) {
  animation: vt-in 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes vt-out {
  to {
    opacity: 0;
  }
}
@keyframes vt-in {
  from {
    opacity: 0;
  }
}

/* ---------- 25. MAINTENANCE + PROJECTS PAGE ADDITIONS (mtx- / pjx-) ---------- */

/* grouping labels inside plan cards and case scope blocks */
.mtx-glabel {
  margin-top: var(--space-7);
  margin-bottom: 0;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.mtx-gnote {
  margin-top: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 46ch;
}
.mtx-glabel + .mtx-gnote + .plan__incl {
  margin-top: var(--space-3);
}
.plan__incl + .mtx-glabel {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.plan--featured .plan__incl + .mtx-glabel {
  border-top-color: rgba(255, 255, 255, 0.16);
}
.plan--featured .mtx-glabel {
  color: rgba(255, 255, 255, 0.55);
}
.plan--featured .mtx-gnote {
  color: var(--color-text-inverse-muted);
}

/* scope block appended under a case study */
.mtx-scope {
  margin-top: var(--space-2);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}
.mtx-scope .mtx-glabel {
  margin-top: 0;
  margin-bottom: var(--space-4);
}
.mtx-scope .mtx-gnote {
  margin-top: var(--space-5);
  max-width: 66ch;
}

/* full-width case study layout for the projects page */
.pjx-case {
  border-radius: var(--r-lg);
}
@media (min-width: 1000px) {
  .pjx-case--wide {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }
  .pjx-case--wide > .ba,
  .pjx-case--wide > .media-frame,
  .pjx-case--wide > .pjx-diagram {
    aspect-ratio: auto;
    height: 100%;
    min-height: 520px;
    border-right: 1px solid var(--color-border);
    border-radius: 0;
  }
  .pjx-case--wide > .case__body {
    align-content: start;
  }
}
.pjx-diagram {
  background: var(--color-surface-2);
  display: grid;
  place-items: center;
  padding: var(--space-5);
}
.pjx-diagram svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- 26. FIELD GUIDE PAGE ADDITIONS (sfg-) ---------- */

.sfg-checks {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 680px) {
  .sfg-checks {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1120px) {
  .sfg-checks {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sfg-check {
  background: var(--color-bg);
  padding: clamp(var(--space-6), 2.4vw, var(--space-8));
}
.sfg-check__n {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--space-3);
}
.sfg-check h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.022em;
  margin-bottom: var(--space-4);
}
.sfg-check ul {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding-left: 1.05rem;
}
.sfg-check li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.sfg-check li::marker {
  color: var(--color-text-faint);
}

/* ==========================================================
   27. SEASONAL PROMO — TOP BANNER + LIGHTING DIALOG
   ========================================================== */
.promo {
  position: relative;
  z-index: 101;
  background: var(--charcoal);
  color: #f2f2ef;
}
[data-theme='dark'] .promo {
  background: var(--charcoal-2);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.07);
}
.promo[hidden] {
  display: none;
}
.promo__inner {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 0 var(--gutter);
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.promo__dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pink) 22%, transparent);
}
.promo__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: rgba(242, 242, 239, 0.72);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  min-width: 0;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
}
.promo__lbl {
  font-weight: 600;
  color: #f2f2ef;
}
.promo__sep {
  color: rgba(242, 242, 239, 0.3);
}
.promo__btn {
  margin-left: auto;
  flex: none;
  appearance: none;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid color-mix(in srgb, var(--pink) 70%, transparent);
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.promo__btn:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.promo__close {
  flex: none;
  appearance: none;
  background: none;
  border: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: rgba(242, 242, 239, 0.5);
  cursor: pointer;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.promo__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.promo__short {
  display: none;
}
@media (max-width: 1020px) {
  .promo__long {
    display: none;
  }
  .promo__short {
    display: inline;
  }
}
@media (max-width: 720px) {
  .promo__inner {
    min-height: 38px;
    gap: var(--space-3);
  }
  .promo__text {
    font-size: 0.75rem;
    gap: 0.4rem;
  }
  .promo__btn {
    font-size: 0.75rem;
  }
}
@media (max-width: 560px) {
  .promo__lbl,
  .promo__sep {
    display: none;
  }
  .promo__inner {
    gap: 0.55rem;
    padding-inline: var(--space-4);
  }
}

/* ---- Lighting dialog ---- */
.ldg {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}
.ldg[hidden] {
  display: none;
}
.ldg.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ldg__scrim {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--charcoal) 72%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.ldg__card {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100dvh - var(--space-10));
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 40px 90px -30px rgba(10, 12, 16, 0.55);
  display: block;
  transform: translateY(14px) scale(0.985);
  transition: transform 320ms var(--ease-out);
}
.ldg.is-open .ldg__card {
  transform: none;
}

.ldg__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--color-surface-2);
  min-height: 168px;
}
.ldg__media {
  aspect-ratio: 16 / 5.2;
}
.ldg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  display: block;
}
@media (max-width: 819px) {
  .ldg__media {
    aspect-ratio: 16 / 8;
  }
}
.ldg__season {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  margin: 0;
  padding: 0.4rem 0.6rem;
  background: color-mix(in srgb, var(--charcoal) 78%, transparent);
  backdrop-filter: blur(4px);
  color: #f2f2ef;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ldg__body {
  padding: clamp(var(--space-5), 2.6vw, var(--space-7));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.ldg__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 0;
}
.ldg__lede {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}
.ldg__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem var(--space-6);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-4);
}
@media (min-width: 720px) {
  .ldg__list {
    grid-template-columns: 1fr 1fr;
  }
}
.ldg__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--color-text);
}
.ldg__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}
.ldg__offer {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
  background: var(--pink-tint);
  border-left: 2px solid var(--pink);
  padding: var(--space-4);
}
.ldg__pct {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
  color: var(--pink);
  line-height: 1;
}
.ldg__offer p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--color-text);
  flex: 1 1 12rem;
}
.ldg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.ldg__later {
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.4rem 0.2rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-border-strong);
}
.ldg__later:hover {
  color: var(--color-text);
}
.ldg__fine {
  margin: 0;
  color: var(--color-text-faint);
}
.ldg__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  appearance: none;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.ldg__close:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
@media (prefers-reduced-motion: reduce) {
  .ldg,
  .ldg__card {
    transition: none;
  }
}

@media (max-width: 560px) {
  .ldg {
    padding: var(--space-4);
  }
  .ldg__media {
    aspect-ratio: 16 / 7;
  }
  .ldg__season {
    left: var(--space-4);
    bottom: var(--space-4);
    font-size: 0.625rem;
  }
  .ldg__body {
    gap: var(--space-3);
  }
  .ldg__title {
    font-size: var(--text-xl);
  }
  .ldg__lede,
  .ldg__list li,
  .ldg__offer p {
    font-size: 0.8125rem;
  }
  .ldg__list {
    gap: 0.4rem;
    padding-block: var(--space-3);
  }
  .ldg__offer {
    padding: var(--space-3);
  }
  .ldg__actions {
    gap: var(--space-2);
  }
}
