/* ============================================================
   MASTERCRAFT CONSTRUCTION — Global Base Styles
   Light body / Dark chrome | Mobile-First | A11y
   ============================================================ */

/* ── Modern Reset ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Prevents grid/flex children from overflowing their tracks.
     Grid items have min-width:auto by default which ignores the
     track size and causes content to blow out of the container. */
  min-width: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Light body — warm off-white, industrial grit texture */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  /* overflow-x:clip preserves sticky positioning; overflow-x:hidden creates
     a new stacking context and breaks position:sticky on child elements.   */
  overflow-x: clip;
  /* Reserve scrollbar space so layout doesn't shift on page transitions    */
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle paper grain on light background */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
img { object-fit: cover; }

/* SVG reset — do NOT set fill here; it overrides icon colors.
   Inline SVGs that need fill:none set it on the element itself. */
svg {
  display: block;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  overflow: visible;
}

/* Default link colour on light bg — use orange for contrast */
a {
  color: var(--clr-orange);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
a:hover, a:focus-visible { color: var(--clr-orange-dim); }

/* Dark-context links stay lime — explicitly exclude .btn so button colors aren't overridden */
.site-nav a:not(.btn),
.site-footer a:not(.btn),
.page-hero a:not(.btn),
.hero a:not(.btn),
.cta-banner a:not(.btn),
.section--dark a:not(.btn) {
  color: var(--clr-lime);
}
.site-nav a:not(.btn):hover,
.site-footer a:not(.btn):hover,
.page-hero a:not(.btn):hover,
.section--dark a:not(.btn):hover { color: var(--clr-white); }

ul, ol { list-style: none; }

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Focus Styles ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.site-nav :focus-visible,
.nav__mobile :focus-visible,
.hero :focus-visible,
.section--dark :focus-visible { outline-color: var(--clr-lime); }

/* ── Skip Link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gradient-citrus);
  color: var(--clr-void);
  font-weight: 700;
  font-family: var(--ff-condensed);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: var(--z-skip);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ── Screen Reader Only ──────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);        /* legacy fallback                  */
  clip-path: inset(50%);      /* modern replacement               */
  white-space: nowrap;
  border: 0;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.container--wide { max-width: var(--container-wide); }

/* ── Section Spacing — driven by central responsive token ──── */
/* Vertical rhythm shifts via --space-section (see tokens.css).
   No per-section media queries — one token controls it all.      */
.section { padding-block: var(--space-section); }

/* ════════════════════════════════════════════════════════════
   LAYOUT PRIMITIVES — reusable responsive utilities
   Markup links to these instead of components rolling their own
   grids. Column-count utilities step up on canonical breakpoints;
   the auto variant is fully intrinsic (no breakpoints at all).
   ════════════════════════════════════════════════════════════ */

/* Centered content wrapper (alias of container for semantic markup) */
.u-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* Vertical stack with token-driven gap */
.u-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
}

/* Horizontal cluster that wraps intrinsically — no breakpoints */
.u-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-gap);
  align-items: center;
}

/* Base grid — single column, token gap */
.u-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-gap);
}

/* Intrinsic auto-fit grid — responsive with ZERO breakpoints.
   Columns fill as many --grid-min tracks as fit the container.    */
.u-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(min(var(--grid-min), 100%), 1fr));
}

/* Responsive column counts — step up on canonical breakpoints */
.u-grid--2 { grid-template-columns: 1fr; }
.u-grid--3 { grid-template-columns: 1fr; }
.u-grid--4 { grid-template-columns: 1fr; }

@media (min-width: 480px) {
  .u-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 640px) {
  .u-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .u-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .u-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .u-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Main + sidebar split — stacks below xl, splits at 1024px */
.u-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-gap-lg);
  align-items: start;
}
@media (min-width: 1024px) {
  .u-split { grid-template-columns: 2fr 1.15fr; }
}
@media (min-width: 1280px) {
  .u-split { grid-template-columns: 2fr 1.25fr; }
}

/* Full-bleed grid child — spans all columns */
.u-grid__full { grid-column: 1 / -1; }

/* ── Orphan-balancing grids (odd item counts) ──────────────
   Center trailing items instead of leaving them left-aligned.
   Base: single column stack. Balancing kicks in at 640px+.     */

/* PYRAMID — 3 items: 1 centered on top, 2 below (▲) */
.u-grid--pyramid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-gap);
}
@media (min-width: 640px) {
  .u-grid--pyramid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .u-grid--pyramid > :nth-child(1) { grid-column: 2 / 4; } /* top center */
  .u-grid--pyramid > :nth-child(2) { grid-column: 1 / 3; } /* bottom left */
  .u-grid--pyramid > :nth-child(3) { grid-column: 3 / 5; } /* bottom right */
}

/* INVERTED PYRAMID — 3 items: 2 on top, 1 centered below (▼) */
.u-grid--inv-pyramid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-gap);
}
@media (min-width: 640px) {
  .u-grid--inv-pyramid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .u-grid--inv-pyramid > :nth-child(1) { grid-column: 1 / 3; } /* top left */
  .u-grid--inv-pyramid > :nth-child(2) { grid-column: 3 / 5; } /* top right */
  .u-grid--inv-pyramid > :nth-child(3) { grid-column: 2 / 4; } /* bottom center */
}

/* CENTERED-REMAINDER — 5 items in a 3-wide layout: 3 top,
   last 2 centered below. Uses a 6-col span grid (as trust-bar). */
.u-grid--5-centered {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-gap);
}
@media (min-width: 480px) {
  .u-grid--5-centered { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .u-grid--5-centered { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .u-grid--5-centered > * { grid-column: span 2; }
  .u-grid--5-centered > :nth-child(4) { grid-column: 2 / span 2; }
  .u-grid--5-centered > :nth-child(5) { grid-column: 4 / span 2; }
}
@media (min-width: 1024px) {
  .u-grid--5-centered { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .u-grid--5-centered > *,
  .u-grid--5-centered > :nth-child(4),
  .u-grid--5-centered > :nth-child(5) { grid-column: auto; }
}

/* ── Section backgrounds ─────────────────────────────────── */
.section--light {
  background: var(--clr-bg);
}
.section--raised {
  background: var(--clr-light-raised);
}
.section--dark {
  background: var(--clr-void);
}
.section--surface {
  background: var(--clr-surface);
}
/* Legacy alias */
.section--void { background: var(--clr-void); }

/* ── Section Label ───────────────────────────────────────── */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-condensed);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: var(--sp-4);
}
.section__label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gradient-citrus);
  flex-shrink: 0;
}

/* On dark sections, label is lime */
.section--dark .section__label,
.hero .section__label,
.page-hero .section__label {
  color: var(--clr-lime);
}

/* ── Section Heading ─────────────────────────────────────── */
.section__heading {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-none);
  letter-spacing: var(--ls-tight);
  color: var(--clr-strong);
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.section__heading em {
  font-style: normal;
  background: var(--gradient-citrus-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--clr-lime); /* fallback */
}

/* Dark section headings stay white */
.section--dark .section__heading { color: var(--clr-white); }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  border: none;
}

/* ════════════════════════════════════════════════════════════
   BUTTON SYSTEM
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--ff-condensed);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  /* WCAG 2.5.8 — minimum 44px touch target */
  min-height: 2.75rem;
  /* Eliminates 300ms tap delay on mobile browsers */
  touch-action: manipulation;
  cursor: pointer;
  transition:
    background-color var(--t-base) var(--ease-out),
    filter var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out),
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  line-height: var(--lh-none);
  /* Prevent text selection on rapid taps */
  user-select: none;
  -webkit-user-select: none;
}
.btn:active { transform: scale(0.97); }

/* Citrus primary button */
.btn--primary,
a.btn--primary {
  background: var(--gradient-citrus);
  color: var(--clr-void);
  box-shadow: 0 0 20px rgba(255,122,0,0.22), 0 0 10px rgba(184,240,0,0.10);
}
.btn--primary i,
a.btn--primary i { color: var(--clr-void); }
.btn--primary:hover,
a.btn--primary:hover,
.btn--primary:focus-visible,
a.btn--primary:focus-visible {
  filter: brightness(1.08);
  color: var(--clr-void);
  box-shadow: 0 0 36px rgba(255,122,0,0.30), 0 0 20px rgba(184,240,0,0.15);
  transform: translateY(-2px);
}

/* Outline — adapts to context */
.btn--outline {
  background: transparent;
  color: var(--clr-strong);
  border: 2px solid var(--clr-border);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  transform: translateY(-2px);
}

/* Outline on dark sections stays white/lime */
.section--dark .btn--outline,
.hero .btn--outline,
.nav__mobile .btn--outline {
  color: var(--clr-white);
  border-color: rgba(244,247,240,0.3);
}
.section--dark .btn--outline:hover,
.hero .btn--outline:hover {
  border-color: var(--clr-void);
  background: var(--clr-void);
  color: var(--clr-lime);
}

/* CTA banner outline button — black text on citrus bg, hover unchanged */
.cta-banner .btn--outline {
  color: var(--clr-void);
  border-color: rgba(13,15,14,0.5);
}
.cta-banner .btn--outline:hover {
  border-color: var(--clr-void);
  background: var(--clr-void);
  color: var(--clr-lime);
}

/* Ghost button — adapts */
.btn--ghost {
  background: transparent;
  color: var(--clr-orange);
  padding-inline: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--clr-orange);
  letter-spacing: var(--ls-wider);
}
.btn--ghost:hover { color: var(--clr-orange-dim); border-bottom-color: var(--clr-orange-dim); }

/* Dark variant (CTA banner dark button) — extends .btn, sets only what differs */
.btn--dark,
a.btn--dark {
  background: var(--clr-void);
  color: var(--clr-lime);
}
.btn--dark i,
a.btn--dark i { color: var(--clr-lime); }
.btn--dark:hover,
a.btn--dark:hover,
.btn--dark:focus-visible,
a.btn--dark:focus-visible {
  background: var(--clr-surface);
  color: var(--clr-lime);
  transform: translateY(-2px);
}

/* btn--dark in cta-banner: dark bg + lime text so it reads
   against the citrus gradient; hover lifts to surface */
.cta-banner .btn--dark,
.cta-banner a.btn--dark {
  background: var(--clr-void);
  color: var(--clr-lime);
}
.cta-banner .btn--dark i,
.cta-banner a.btn--dark i { color: var(--clr-lime); }
.cta-banner .btn--dark:hover,
.cta-banner a.btn--dark:hover,
.cta-banner .btn--dark:focus-visible,
.cta-banner a.btn--dark:focus-visible {
  background: var(--clr-surface);
  color: var(--clr-lime);
}

.btn--sm { font-size: var(--fs-sm); padding: var(--sp-2) var(--sp-5); }
.btn--centered { justify-content: center; width: 100%; }
.btn-text { pointer-events: none; }

/* ── cta-actions ─────────────────────────────────────────── */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ── guarantee-wrap ──────────────────────────────────────── */
.guarantee-wrap { max-width: 720px; margin-inline: auto; }

/* ── phone-link ──────────────────────────────────────────── */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-condensed);
  font-weight: 700;
  color: var(--clr-orange);
  font-size: var(--fs-md);
  letter-spacing: var(--ls-wide);
  text-decoration: none;
  transition: color var(--t-fast);
}
.phone-link:hover { color: var(--clr-orange-dim); }
.phone-link--sm { font-size: var(--fs-base); }

/* Phone link in dark sections */
.section--dark .phone-link,
.site-footer .phone-link,
.hero .phone-link,
.page-hero .phone-link { color: var(--clr-lime); }
.section--dark .phone-link:hover,
.site-footer .phone-link:hover { color: var(--clr-white); }

/* ── footer__col ─────────────────────────────────────────── */
.footer__col { display: flex; flex-direction: column; }
.footer__col .btn { align-self: flex-start; }

/* ── map-contact-card ────────────────────────────────────── */
.map-contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-top: var(--sp-4);
  overflow: hidden;
}
.map-contact-card__label {
  font-family: var(--ff-condensed);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-lime);
  margin-bottom: var(--sp-3);
  display: block;
}
.map-contact-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
.map-contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ── Misc shared ─────────────────────────────────────────── */
.county-note { font-weight: 400; opacity: 0.7; font-size: var(--fs-xs); }
.footer-credit { font-size: var(--fs-xs); color: var(--clr-muted-dark); }
.footer-credit a { color: var(--clr-muted-dark); text-decoration: none; }
.footer-credit a:hover { color: var(--clr-lime); }
.form-required-note { color: var(--clr-orange); }
.fail-link { color: inherit; text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   NAVIGATION — mobile-first, full-width, always dark chrome
   ════════════════════════════════════════════════════════════ */

/* ── Bar ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  background: rgba(13,15,14,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border-dark);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-nav.scrolled {
  background: rgba(13,15,14,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* Full-width inner — no container constraint on nav */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(var(--sp-4), 4vw, var(--sp-10));
  gap: var(--sp-4);
}

/* ── Logo ────────────────────────────────────────────────── */
.nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: var(--lh-none);
  gap: 0.1em;
}
.nav__logo-mark {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  letter-spacing: var(--ls-wide);
  color: var(--clr-white);
  line-height: var(--lh-none);
  text-transform: uppercase;
}
.nav__logo-mark span {
  background: var(--gradient-citrus-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--clr-orange);
}


/* ── Desktop nav links — hidden mobile-first ─────────────── */
.nav__links {
  display: none;
  align-items: center;
  gap: clamp(var(--sp-4), 2.5vw, var(--sp-8));
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--ff-condensed);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: var(--lh-none);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-muted-dark);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding-block: var(--sp-1);
  transition: color var(--t-fast);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-citrus-text);
  transition: width var(--t-base) var(--ease-out);
}
.nav__links a:hover,
.nav__links a.active { color: var(--clr-white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

@media (min-width: 768px) { .nav__links { display: flex; } }

/* ── Desktop CTA — hidden mobile-first ───────────────────── */
.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

/* ── Hamburger ───────────────────────────────────────────── */
.nav__hamburger {
  /* always visible on mobile; hidden ≥768px */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
  background: var(--clr-surface-2);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  line-height: var(--lh-none);
  transition: background var(--t-fast), color var(--t-fast);
  /* Gradient border via box-shadow */
  box-shadow: 0 0 0 1px rgba(255,122,0,0.45), 0 0 0 1px var(--clr-lime-border-sm);
}
/* Gradient border glow on rest state */
.nav__hamburger::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-sm);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,122,0,0.6) 0%, rgba(184,240,0,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.nav__hamburger i {
  font-size: 1.25rem;
  line-height: var(--lh-none);
  display: block;
  color: var(--clr-white); /* explicit — do not rely on inheritance */
}
.nav__hamburger:hover {
  background: var(--clr-surface);
  color: var(--clr-lime);
}
.nav__hamburger:hover::before {
  background: linear-gradient(135deg, #ff7a00 0%, #b8f000 100%);
}
.nav__hamburger:hover i { color: var(--clr-lime); }
.nav__hamburger .icon-close { display: none; }
.nav__hamburger .icon-menu  { display: block; }
.nav__hamburger[aria-expanded="true"] .icon-menu  { display: none; }
.nav__hamburger[aria-expanded="true"] .icon-close {
  display: block;
  color: var(--clr-lime);
}
@media (min-width: 768px) { .nav__hamburger { display: none; } }

/* ════════════════════════════════════════════════════════════
   MOBILE MENU — slide-in from right
   ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   MOBILE MENU — slide-in from right
   Panel: fixed, full-height, three-zone layout
     ┌─────────────────────┐
     │  HEADER (fixed)     │ ← logo + close button
     ├─────────────────────┤
     │  LINKS (scrollable) │ ← nav items
     ├─────────────────────┤
     │  FOOTER (fixed)     │ ← contact info + CTA + socials
     └─────────────────────┘
   ════════════════════════════════════════════════════════════ */

/* ── Backdrop ────────────────────────────────────────────── */
.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-backdrop);
  background: transparent;
  pointer-events: none;
  transition: background var(--t-med) ease;
}
.nav__backdrop.open {
  background: rgba(0,0,0,0.7);
  pointer-events: auto;
}

/* ── Panel ───────────────────────────────────────────────── */
.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  /* Fluid: 90vw on tiny screens, caps at 400px on larger mobile */
  width: clamp(280px, 85vw, 320px);
  z-index: var(--z-mobile);    /* 200 — above sticky nav (100) */
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border-left: 1px solid var(--clr-border-dark);
  box-shadow: -8px 0 48px rgba(0,0,0,0.7);
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease-in-out);
  /* overflow:hidden on the panel would clip the scrollable zone —
     each zone controls its own overflow instead              */
  overflow: hidden;
}
.nav__mobile.open { transform: translateX(0); }

/* ── ZONE 1: Panel header — fixed, never scrolls ─────────── */
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--clr-border-dark);
  /* Citrus accent line at top of panel */
  border-top: 3px solid transparent;
  border-image: var(--gradient-citrus) 1;
  background: var(--clr-void);
  flex-shrink: 0;
  min-height: var(--nav-height);
}
.nav__mobile-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  line-height: var(--lh-none);
}
.nav__mobile-brand-name {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-none);
  color: var(--clr-white);
}
.nav__mobile-brand-name span {
  background: var(--gradient-citrus-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Close button — larger touch target */
.nav__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* WCAG 2.5.8 — 44px minimum touch target */
  width: 2.75rem;
  height: 2.75rem;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.nav__mobile-close i {
  font-size: 1.2rem;
  line-height: var(--lh-none);
  display: block;
  color: var(--clr-white);
}
.nav__mobile-close:hover {
  background: var(--clr-surface);
  border-color: var(--clr-lime);
  color: var(--clr-lime);
}
.nav__mobile-close:hover i { color: var(--clr-lime); }

/* ── ZONE 2: Nav links — scrollable middle ───────────────── */
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding-block: var(--sp-2);
  /* Custom scrollbar — subtle on dark bg */
  scrollbar-width: thin;
  scrollbar-color: var(--clr-concrete) transparent;
}
.nav__mobile-links::-webkit-scrollbar { width: 4px; }
.nav__mobile-links::-webkit-scrollbar-track { background: transparent; }
.nav__mobile-links::-webkit-scrollbar-thumb {
  background: var(--clr-concrete);
  border-radius: var(--radius-xs);
}
.nav__mobile-links ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__mobile-links a {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  line-height: var(--lh-none);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--clr-muted-dark);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition:
    color var(--t-fast),
    background var(--t-fast),
    border-color var(--t-fast),
    padding-left var(--t-base) var(--ease-out);
}
.nav__mobile-links a i {
  font-size: 1rem;
  width: 1.25rem;
  line-height: var(--lh-none);
  text-align: center;
  flex-shrink: 0;
  color: var(--clr-muted-dark);
  transition: color var(--t-fast);
}
.nav__mobile-links a:hover,
.nav__mobile-links a.active {
  color: var(--clr-white);
  background: rgba(184,240,0,0.06);
  border-left-color: var(--clr-lime);
  padding-left: calc(var(--sp-6) + var(--sp-3));
}
.nav__mobile-links a:hover i,
.nav__mobile-links a.active i { color: var(--clr-lime); }

/* ── ZONE 3: Panel footer — fixed, never scrolls ─────────── */
.nav__mobile-footer {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--clr-border-dark);
  background: var(--clr-void);
  flex-shrink: 0;
}

/* Contact details block */
.nav__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border-dark);
}
.nav__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--clr-muted-dark);
  font-size: var(--fs-sm);
  font-family: var(--ff-condensed);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  transition: color var(--t-fast);
}
.nav__mobile-contact-item i {
  color: var(--clr-lime);
  font-size: var(--fs-sm);
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
  line-height: var(--lh-none);
}
.nav__mobile-contact-item:hover { color: var(--clr-white); }

/* CTA button */
.nav__mobile-cta {
  justify-content: center;
  width: 100%;
  font-size: var(--fs-sm);
}

/* Social icons row */
.nav__mobile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.nav__mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border-dark);
  background: var(--clr-surface-2);
  color: var(--clr-muted-dark);
  text-decoration: none;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.nav__mobile-socials a i {
  font-size: 1rem;
  line-height: var(--lh-none);
  display: block;
  color: var(--clr-muted-dark);
  transition: color var(--t-fast);
}
.nav__mobile-socials a:hover {
  color: var(--clr-lime);
  border-color: var(--clr-lime);
  background: rgba(184,240,0,0.08);
}
.nav__mobile-socials a:hover i { color: var(--clr-lime); }

/* At 768px+: hide hamburger — desktop links take over.
   Do NOT set display:none on .nav__mobile — the panel is
   JS-controlled via the hidden attribute and transform.
   display:none would fight with JS show/hide logic.         */
@media (min-width: 768px) {
  .nav__hamburger { display: none; }
  /* Ensure backdrop and panel can't linger visible on resize */
  .nav__backdrop  { display: none; }
  .nav__mobile    { display: none; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER — always dark
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border-dark);
  padding-block: var(--sp-12) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: 'MC';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: var(--ff-display);
  font-size: clamp(6rem, 18vw, 14rem);
  color: var(--clr-border-dark);
  line-height: var(--lh-none);
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  position: relative;
  z-index: var(--z-local);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-none);
  margin-bottom: var(--sp-2);
}
.footer__brand-name span {
  background: var(--gradient-citrus-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--clr-lime);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--clr-muted-dark);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-normal);
}

.footer__heading {
  font-family: var(--ff-condensed);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-lime);
  margin-bottom: var(--sp-4);
}

.footer__nav {
  display: flex;
  flex-direction: column;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--clr-muted-dark);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-base) var(--ease-out);
}
.footer__nav a i { font-size: 0.75rem; color: var(--clr-concrete); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--clr-white); padding-left: var(--sp-1); }
.footer__nav a:hover i { color: var(--clr-lime); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-muted-dark);
  margin-bottom: var(--sp-3);
}
.footer__contact-item i {
  font-size: 0.9rem;
  color: var(--clr-lime);
  margin-top: 3px;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}
.footer__contact-item a { color: var(--clr-muted-dark); }
.footer__contact-item a:hover { color: var(--clr-lime); }

.footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border-dark);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: var(--z-local);
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }
}

.footer__copy { font-size: var(--fs-xs); color: var(--clr-muted-dark); }
.footer__copy a { color: var(--clr-muted-dark); text-decoration: none; }
.footer__copy a:hover { color: var(--clr-lime); }

.footer__legal { display: flex; }
.footer__legal ul { display: flex; gap: var(--sp-4); list-style: none; margin: 0; padding: 0; }
.footer__legal a { font-size: var(--fs-xs); color: var(--clr-muted-dark); text-decoration: none; }
.footer__legal a:hover { color: var(--clr-lime); }

/* ════════════════════════════════════════════════════════════
   HEADINGS & TYPE — context-aware
   ════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-condensed);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--clr-strong);
  letter-spacing: var(--ls-wide);
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: var(--fs-3xl); line-height: var(--lh-none);  letter-spacing: var(--ls-tight); }
h2 { font-size: var(--fs-2xl); line-height: var(--lh-tight); }
h3 { font-size: var(--fs-xl);  line-height: var(--lh-snug);  }
h4 { font-size: var(--fs-lg);  line-height: var(--lh-snug);  }
h5 { font-size: var(--fs-md);  line-height: var(--lh-normal); }
h6 { font-size: var(--fs-base); line-height: var(--lh-normal); }

/* Headings on dark sections */
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6,
.section--void h1, .section--void h2, .section--void h3,
.section--void h4, .section--void h5, .section--void h6,
.section--surface h1, .section--surface h2, .section--surface h3,
.hero h1, .hero h2,
.page-hero h1, .page-hero h2,
.site-footer h2, .site-footer h3 { color: var(--clr-white); }

p {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  overflow-wrap: break-word;
  text-wrap: pretty;
  max-width: 72ch;
}
.section--dark p, .hero p, .page-hero p { color: var(--clr-muted-dark); }

strong, b { font-weight: 700; color: var(--clr-strong); }
.section--dark strong, .section--dark b { color: var(--clr-white); }

/* NOTE: do NOT set color on bare <i> — it clobbers Font Awesome icon colors */
em { font-style: italic; }
small { font-size: var(--fs-xs); color: var(--clr-muted); }
span  { font: inherit; color: inherit; }

blockquote {
  font-size: var(--fs-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-strong);
  border-left: 3px solid var(--clr-orange);
  padding-left: var(--sp-6);
  margin-block: var(--sp-6);
  line-height: var(--lh-snug);
}
.section--dark blockquote { color: var(--clr-white); border-left-color: var(--clr-lime); }
blockquote cite {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  font-style: normal;
  color: var(--clr-orange);
  font-family: var(--ff-condensed);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

ol, ul { padding-left: 0; }
li { font-size: var(--fs-base); color: var(--clr-muted); line-height: var(--lh-relaxed); }
.section--dark li { color: var(--clr-muted-dark); }

dl { display: grid; grid-template-columns: 1fr; column-gap: var(--sp-4); row-gap: var(--sp-2); }
@media (min-width: 480px) { dl { grid-template-columns: auto 1fr; } }
dt {
  font-family: var(--ff-condensed);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-muted);
  align-self: baseline;
}
dd { font-size: var(--fs-sm); color: var(--clr-strong); margin: 0; align-self: baseline; }

address { font-style: normal; font-size: var(--fs-sm); color: var(--clr-muted); line-height: var(--lh-relaxed); }
address a { color: var(--clr-muted); }
address a:hover { color: var(--clr-lime); }

/* ── Form elements ───────────────────────────────────────── */
form { width: 100%; }
label {
  display: block;
  font-family: var(--ff-condensed);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-muted);
  cursor: pointer;
  user-select: none;
}
select, textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  line-height: var(--lh-normal);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
select { cursor: pointer; }
select:focus, textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}
textarea {
  line-height: var(--lh-relaxed);
  resize: vertical;
  min-height: 8rem;
}
textarea::placeholder,
input::placeholder { color: var(--clr-light-muted); opacity: 0.6; }

/* ── Sectioning elements ─────────────────────────────────── */
main   { display: block; min-height: 60vh; }
section, article, aside { display: block; position: relative; }
nav, footer { display: block; }
div { box-sizing: border-box; }

/* ── Font Awesome icon sizing helpers ────────────────────── */
.fa-icon-sm { font-size: 0.85rem; }
.fa-icon-md { font-size: 1.1rem;  }
.fa-icon-lg { font-size: 1.35rem; }

/* ════════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR
   ════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--clr-light-raised); }
::-webkit-scrollbar-thumb {
  background: var(--clr-border-light);
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-light-raised);
  transition: background var(--t-fast);
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-orange-dim); }
::-webkit-scrollbar-corner { background: var(--clr-light-raised); }
* { scrollbar-width: thin; scrollbar-color: var(--clr-border-light) var(--clr-light-raised); }

/* ════════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 3.75rem;  /* 60px */
  right: var(--sp-6);
  z-index: var(--z-scroll);
  width: 2.25rem;
  height: 2.25rem;
  background: var(--gradient-citrus);
  color: var(--clr-void);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-citrus);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem) scale(0.85);
  transition:
    opacity var(--t-base) var(--ease-out),
    visibility var(--t-base),
    transform var(--t-base) var(--ease-out),
    filter var(--t-fast),
    box-shadow var(--t-base);
  user-select: none;
  -webkit-user-select: none;
}
.scroll-top i {
  color: var(--clr-void);
  font-size: 0.8rem;
  display: block;
  line-height: var(--lh-none);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-citrus-lg);
  transform: translateY(-3px) scale(1.05);
}
.scroll-top:active { transform: scale(0.95); }
@media (min-width: 640px) {
  .scroll-top { bottom: 3.75rem; right: var(--sp-8); width: 2.5rem; height: 2.5rem; }
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS & REVEALS
   ════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-2rem); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes pulse-lime {
  0%   { box-shadow: 0 0 0 0 var(--clr-lime-border-lg), 0 0 0 0 rgba(255,122,0,0.2); }
  50%  { box-shadow: 0 0 0 12px rgba(184,240,0,0), 0 0 0 6px rgba(255,122,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,240,0,0), 0 0 0 0 rgba(255,122,0,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  /* GPU-composite both properties for smooth animations */
  will-change: opacity, transform;
  transition:
    opacity  var(--t-xslow) var(--ease-out) var(--stagger-delay, 0ms),
    transform var(--t-xslow) var(--ease-out) var(--stagger-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  /* Release the layer hint after animation completes */
  will-change: auto;
}
.reveal--left    { transform: translateX(-2rem); }
.reveal--left.visible { transform: translateX(0); }

/* ── Diagonal section dividers ───────────────────────────── */
.angle-top    { clip-path: polygon(0 4%, 100% 0%, 100% 100%, 0% 100%); margin-top: -2px; }
.angle-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); margin-bottom: -2px; }

.geo-line {
  display: block;
  height: 3px;
  background: var(--gradient-citrus);
  width: 6rem;
  margin-bottom: var(--sp-6);
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO — dark chrome header used on inner pages
   ════════════════════════════════════════════════════════════ */
.page-hero {
  /* Photo: Construction scaffolding, workers, clear sky — Pexels / Aravind P.S. (free) */
  background-color: var(--clr-surface);
  background-image:
    /* Left-to-right: text side is solid, photo breathes on the right */
    linear-gradient(
      to right,
      rgba(13,15,14,0.97) 0%,
      rgba(13,15,14,0.85) 35%,
      rgba(13,15,14,0.55) 65%,
      rgba(13,15,14,0.18) 100%
    ),
    /* Bottom vignette keeps the border-bottom edge clean */
    linear-gradient(
      to bottom,
      transparent 70%,
      rgba(13,15,14,0.85) 100%
    ),
    url('../assets/img/pexels-aravind-p-s-2059574-13890649.webp');
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center 30%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  padding-block: var(--sp-16) var(--sp-12);
  border-bottom: 1px solid var(--clr-border-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: attr(data-text);
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--clr-border-dark);
  line-height: var(--lh-none);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.page-hero__label {
  font-family: var(--ff-condensed);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--clr-lime);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gradient-citrus-text);
}
.page-hero__heading {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  line-height: var(--lh-none);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  max-width: 14ch;
  position: relative;
  z-index: var(--z-local);
}
.page-hero__heading em {
  display: block;
  font-style: normal;
  background: var(--gradient-citrus-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--clr-lime);
}
.page-hero__sub {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--clr-muted-dark);
  max-width: 52ch;
  line-height: var(--lh-relaxed);
  position: relative;
  z-index: var(--z-local);
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER — citrus gradient, dark text
   ════════════════════════════════════════════════════════════ */
.cta-banner {
  background-color: var(--clr-void);
  background-image:
    linear-gradient(
      to right,
      #ff7a00 0%,
      #ff9500 20%,
      #d4c800 55%,
      rgba(184,240,0,0.80) 75%,
      rgba(184,240,0,0.45) 100%
    ),
    url('../assets/img/pexels-rezwan-1216589.webp');
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  padding-block: var(--sp-12);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: rgba(0,0,0,0.07);
  transform: skewX(-15deg);
}
.cta-banner__inner {
  position: relative;
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
}
@media (min-width: 640px) {
  .cta-banner__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.cta-banner__heading {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  color: var(--clr-void);
  text-transform: uppercase;
  line-height: var(--lh-none);
  letter-spacing: var(--ls-wide);
}
.cta-banner__sub {
  font-size: var(--fs-base);
  color: rgba(13,15,14,0.6);
  margin-top: var(--sp-2);
  font-weight: 400;
  line-height: var(--lh-relaxed);
}
