/* ============================================================
   LAYOUT + reusable structural utilities
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 80px 0;
}

.section-surface {
  background: var(--c-surface);
}

.section-tight {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 48px 0;
  }
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Section headings */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 32px;
}

.section-intro {
  color: var(--c-muted);
  max-width: 640px;
  margin-bottom: 32px;
  margin-top: -20px;
  line-height: 1.65;
}

/* Stats */
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--c-accent);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 4px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--c-bg);
  background-image: radial-gradient(
    circle,
    rgba(255, 60, 0, 0.15) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 60, 0, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 96px);
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--c-white);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--c-accent);
}

.hero-body {
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  margin-top: 32px;
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
}

/* ---------- BRACKET FRAME ---------- */
.bracket-frame {
  position: relative;
  border: 1px solid rgba(255, 60, 0, 0.3);
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bracket-frame::before,
.bracket-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--c-accent);
  border-style: solid;
}

.bracket-frame::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.bracket-frame::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

.frame-16-9 {
  aspect-ratio: 16 / 9;
}
.frame-4-3 {
  aspect-ratio: 4 / 3;
}
.frame-1-1 {
  aspect-ratio: 1 / 1;
}

.frame-inner {
  text-align: center;
  padding: 20px;
}

.frame-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 4px;
  color: rgba(255, 60, 0, 0.35);
  text-transform: uppercase;
  line-height: 1;
}

.frame-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- CHECKLIST ---------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-accent);
  font-weight: 700;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding-top: calc(var(--nav-height) + 32px);
  padding-bottom: 8px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.breadcrumb a {
  color: var(--c-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--c-white);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb li[aria-current] {
  color: var(--c-accent);
}

/* ---------- PAGE HERO (interior) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 64px;
  background-color: var(--c-bg);
  background-image: radial-gradient(
    circle,
    rgba(255, 60, 0, 0.1) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 76px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--c-white);
  margin-bottom: 20px;
  max-width: 900px;
}

.page-hero h1 .accent {
  color: var(--c-accent);
}

.page-lead {
  font-size: 18px;
  color: var(--c-text);
  max-width: 620px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* ---------- PROSE (long-form copy) ---------- */
.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
  margin: 40px 0 16px;
}

.prose h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--c-white);
  margin: 28px 0 12px;
}

.prose p {
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose p strong,
.prose li strong {
  color: var(--c-text);
  font-weight: 600;
}

.prose ul.dashed {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul.dashed li {
  position: relative;
  padding-left: 22px;
  color: var(--c-muted);
  line-height: 1.6;
}

.prose ul.dashed li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

/* ---------- H2 / H3 headings in flow ---------- */
.h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
}

.h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--c-white);
}

.lead {
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ---------- PRODUCT / FEATURE CARD ---------- */
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.product-card:hover {
  border-color: var(--c-border-accent);
  transform: translateY(-3px);
}

.product-card .card-icon {
  color: var(--c-white);
  margin-bottom: 20px;
}

.product-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.product-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: auto;
}

.product-card .tag-rent,
.product-card .tag-new,
.product-card .tag-buy,
.product-card .tag-quote {
  margin-top: 20px;
  align-self: flex-start;
}

.grid-4 .product-card {
  min-height: 240px;
  padding: 24px 20px;
}

.grid-4 .product-card h4 {
  font-size: 21px;
}

/* ---------- SPEC / FEATURE CALLOUT CARD ---------- */
.info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: border-color var(--transition);
}

.info-card:hover {
  border-color: var(--c-border-accent);
}

.info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* Stat cell */
.stat-cell {
  text-align: center;
}

/* ---------- LEFT-BORDER FEATURE BAND ---------- */
.band-accent {
  background: var(--c-surface);
  border-left: 4px solid var(--c-accent);
}

/* ---------- MARKET CARD ---------- */
.market-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.market-card:hover {
  border-color: var(--c-border-accent);
}
.market-card .market-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.market-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--c-white);
}
.market-card p {
  font-size: 14px;
  color: var(--c-muted);
}
.market-card a.market-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--c-accent);
  padding: 60px 40px;
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 48px);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta-band {
    padding: 48px 20px;
  }
}

/* ---------- CONTACT LAYOUT ---------- */
.contact-phone {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--c-accent);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.contact-meta-line {
  color: var(--c-muted);
  margin-bottom: 8px;
}

.contact-meta-line strong {
  color: var(--c-text);
  font-weight: 600;
}

/* ---------- NAP block ---------- */
.nap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-card);
  padding: 24px;
  margin: 24px 0;
}

.nap .nap-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 8px;
}

.nap .nap-line {
  color: var(--c-muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.nap .nap-line a {
  color: var(--c-accent);
  font-weight: 600;
}

/* ---------- Related products ---------- */
.related-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 28px;
}

/* Utility spacing */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }

/* Portfolio */
.portfolio-cat {
  margin-bottom: 48px;
}
.portfolio-cat h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   MODERN 2025 UPGRADE LAYER (overrides — later cascade wins)
   ============================================================ */

/* ---------- HERO (layered depth + floating glow orbs) ---------- */
.hero {
  background-image:
    radial-gradient(circle, rgba(255,60,0,0.13) 1px, transparent 1px),
    radial-gradient(1100px 700px at 78% -5%, rgba(255,60,0,0.14), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(0,201,167,0.07), transparent 55%);
  background-size: 42px 42px, 100% 100%, 100% 100%;
  -webkit-mask-image: none;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
  filter: blur(60px); opacity: 0.5;
}
.hero::before {
  width: 460px; height: 460px; top: -120px; right: -60px;
  background: radial-gradient(circle, rgba(255,60,0,0.5), transparent 65%);
  animation: floatOrb 14s ease-in-out infinite;
}
.hero::after {
  width: 360px; height: 360px; bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(255,166,35,0.28), transparent 65%);
  animation: floatOrb 18s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.12); }
}
.hero-inner { position: relative; z-index: 1; }

/* Gradient-text accents */
.hero h1 .accent, .page-hero h1 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 30px rgba(255,60,0,0.35));
}
.hero h1 { letter-spacing: -0.01em; }

/* Eyebrow → glass pill chip */
.eyebrow {
  padding: 7px 14px; border: 1px solid var(--c-border);
  border-radius: var(--radius-pill); background: rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

/* Stat numbers → gradient + glow */
.stat-num {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 18px rgba(255,60,0,0.3));
  letter-spacing: -0.01em;
}

/* ---------- PAGE HERO (interior) ---------- */
.page-hero {
  background-image:
    radial-gradient(circle, rgba(255,60,0,0.09) 1px, transparent 1px),
    radial-gradient(900px 500px at 85% -20%, rgba(255,60,0,0.12), transparent 60%);
  background-size: 42px 42px, 100% 100%;
}
.page-hero h1 { letter-spacing: -0.01em; }

/* ---------- BRACKET FRAME (sheen + scan line + hover) ---------- */
.bracket-frame {
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,60,0,0.05), transparent 40%),
    #0a0a0d;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.bracket-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), var(--glow-accent-soft); }
.frame-mark {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  opacity: 0.9;
}
.bracket-frame .frame-inner::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--grad-hairline); animation: scan 4.5s linear infinite; opacity: 0.6;
}
@keyframes scan { 0% { top: 8%; } 50% { top: 92%; } 100% { top: 8%; } }

/* ---------- CTA BAND (gradient + shine) ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad-accent);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px circle at 15% 20%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(500px circle at 90% 90%, rgba(0,0,0,0.14), transparent 55%);
}
.cta-band-inner { position: relative; z-index: 1; }

/* ---------- SECTION LABEL → accent bar chip ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-accent);
}

/* Section titles — tighter modern tracking */
.section-title, .h2 { letter-spacing: -0.01em; }

/* Related / market link arrows nudge */
.market-link { transition: gap var(--transition), color var(--transition); }
.market-card:hover .market-link { color: var(--c-gold); }

/* Checklist ticks → gradient dot */
.checklist li::before { filter: drop-shadow(0 0 6px rgba(255,60,0,0.6)); }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .bracket-frame .frame-inner::after { animation: none; }
}

/* ============================================================
   HD IMAGERY + "YOUR AD HERE" hero ad-slot
   ============================================================ */
.bracket-frame.has-photo { background: #060507; }
.bracket-frame.has-photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0;
}
.has-photo .frame-caption {
  left: 0; right: 0; bottom: 0; margin: 0; padding: 30px 16px 12px; z-index: 4;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
  color: rgba(255,255,255,0.9); font-family: var(--font-mono);
}

/* Hero tri-fold "YOUR AD HERE" placeholder — sits on the center LED screen */
.hero-photo { container-type: inline-size; }
.ad-slot {
  position: absolute; top: 34%; left: 49%; transform: translate(-50%, -50%);
  z-index: 3; text-align: center; padding: 2.4cqw 3.2cqw;
  border: 2px dashed rgba(255, 60, 0, 0.9); border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  animation: adPulse 3s ease-in-out infinite;
}
@keyframes adPulse {
  0%, 100% { border-color: rgba(255,60,0,0.85); box-shadow: 0 0 0 0 rgba(255,60,0,0); }
  50% { border-color: rgba(255,60,0,1); box-shadow: 0 0 26px 2px rgba(255,60,0,0.28); }
}
.ad-slot-kicker {
  display: block; font-family: var(--font-mono); font-weight: 600;
  font-size: 1.9cqw; letter-spacing: 1.5px; text-transform: uppercase;
  color: #FF3C00; margin-bottom: 0.6cqw;
}
.ad-slot-title {
  display: block; font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  font-size: 7cqw; line-height: 0.86; text-transform: uppercase;
  color: #0A0806; letter-spacing: -0.5px;
}
.ad-slot-sub {
  display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: 1.7cqw; letter-spacing: 1px; text-transform: uppercase;
  color: #241c17; margin-top: 0.8cqw;
}
@media (prefers-reduced-motion: reduce) { .ad-slot { animation: none; } }

/* ============================================================
   FULL-BLEED TRI-FOLD HERO
   ============================================================ */
.hero-bleed { background-image: none; background-color: #08070a; }
.hero-bleed .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-bleed .hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,5,7,0.96) 0%, rgba(6,5,7,0.82) 30%, rgba(6,5,7,0.4) 56%, rgba(6,5,7,0.12) 80%, rgba(6,5,7,0.45) 100%),
    linear-gradient(0deg, rgba(6,5,7,0.9) 0%, rgba(6,5,7,0.15) 32%, transparent 46%);
}
.hero-inner-bleed { grid-template-columns: 1fr; z-index: 2; }
.hero-inner-bleed .hero-copy { max-width: 620px; }

/* Pinned "YOUR AD HERE" on the truck's flat LED billboard (desktop) */
.ad-slot-hero {
  top: 34%; left: 72%; z-index: 2; padding: 12px 18px;
  background: rgba(255,255,255,0.06);
}
.ad-slot-hero .ad-slot-kicker { font-size: 11px; }
.ad-slot-hero .ad-slot-title { font-size: clamp(24px, 2.8vw, 46px); }
.ad-slot-hero .ad-slot-sub { font-size: 10px; }

@media (max-width: 1024px) {
  .ad-slot-hero { display: none; }
  .hero-bleed .hero-bg { object-position: 50% 62%; }
}
@media (max-width: 768px) {
  .hero-bleed .hero-scrim {
    background: linear-gradient(0deg, rgba(6,5,7,0.96) 0%, rgba(6,5,7,0.62) 46%, rgba(6,5,7,0.4) 100%);
  }
}

/* --- Hero slideshow (crossfade + dots) --- */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-bleed .hero-slide { opacity: 0; transition: opacity 1.1s ease-in-out; }
.hero-bleed .hero-slide.is-active { opacity: 1; }
.hero-dots {
  position: absolute; z-index: 3; right: 28px; bottom: 26px;
  display: flex; gap: 11px;
}
.hero-dot {
  width: 11px; height: 11px; padding: 0; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.65); background: transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.hero-dot:hover { border-color: #FF3C00; }
.hero-dot.is-active { background: #FF3C00; border-color: #FF3C00; transform: scale(1.2); }
@media (max-width: 768px) {
  .hero-dots { right: 50%; transform: translateX(50%); bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bleed .hero-slide { transition: none; }
}

/* --- Bleed hero copy: compact + refined over photo backgrounds --- */
.hero-bleed .hero-copy { max-width: 540px; }
.hero-bleed .eyebrow { margin-bottom: 18px; }
.hero-bleed h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.94;
  margin-bottom: 16px;
  text-shadow: 0 2px 26px rgba(0,0,0,0.6);
}
.hero-bleed .hero-body {
  font-size: 15px;
  line-height: 1.58;
  max-width: 430px;
  margin-bottom: 26px;
  color: #dcd8d3;
  text-shadow: 0 1px 14px rgba(0,0,0,0.65);
}
.hero-bleed .hero-stats { margin-top: 26px; padding-top: 20px; max-width: 500px; }
.hero-bleed .hero-stats .stat-num { font-size: clamp(20px, 2.3vw, 30px); }

/* Tablet: single column, copy stays upper-left */
@media (max-width: 900px) {
  .hero-bleed .hero-copy { max-width: 100%; }
}

/* Phone: anchor copy to the bottom (darkest part of the scrim) */
@media (max-width: 768px) {
  .hero.hero-bleed { align-items: flex-end; }
  .hero-bleed .hero-inner-bleed { padding-top: 24px; padding-bottom: 58px; }
  .hero-bleed h1 { font-size: clamp(30px, 8.6vw, 46px); margin-bottom: 14px; }
  .hero-bleed .hero-body { font-size: 14px; max-width: 100%; margin-bottom: 22px; }
  .hero-bleed .hero-stats { margin-top: 22px; padding-top: 18px; }
  .hero-dots { bottom: 12px; }
}
