/* ============================================================
   CAM Pool Projects — Global Stylesheet
   Brand: Luxury meets craftsmanship. Deep ocean navy + aqua + travertine.
   Type: Playfair Display (display) / Montserrat (body)
   ============================================================ */

:root {
  /* Palette */
  --navy-900: #061c2e;
  --navy: #0a2a43;
  --navy-700: #0f3a5a;
  --blue: #0e6ba8;
  --aqua: #14b6c9;
  --aqua-light: #45d3e0;
  /* Secondary accent — champagne gold (brand family of logo gold #FADC3C) */
  --gold: #cba254;
  --gold-bright: #e6c46c;
  --gold-ink: #977412;
  --gold-soft: rgba(203,162,84,.16);
  --sand: #c6ab7d;
  --sand-light: #e7dcc7;
  --cream: #f7f4ee;
  --white: #ffffff;
  --ink: #16232c;
  --muted: #5c6b76;
  --line: #e4ddd0;

  /* Type scale */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Montserrat', -apple-system, sans-serif;

  /* Spacing / layout */
  --wrap: 1200px;
  --radius: 4px;
  --shadow-sm: 0 4px 14px rgba(6,28,46,.08);
  --shadow-md: 0 14px 40px rgba(6,28,46,.16);
  --shadow-lg: 0 30px 70px rgba(6,28,46,.28);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; color: var(--navy); letter-spacing: -.01em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--gold-bright); }

.lead { font-size: 19px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .35s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--navy-900); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,28,46,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand .mark {
  font-family: var(--f-display); font-weight: 700; font-size: 26px;
  color: var(--white); letter-spacing: .04em;
}
.brand .mark b { color: var(--gold); font-weight: 700; }
.brand .sub {
  font-family: var(--f-body); font-size: 9.5px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: 10px 14px;
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; transition: color .25s;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links .has-menu > a::after { content: '⌄'; margin-left: 6px; font-size: 11px; opacity: .7; }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease);
}
.nav-links .has-menu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { color: var(--ink); padding: 10px 14px; border-radius: 3px; font-weight: 600; }
.submenu a:hover { background: var(--cream); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--white); font-weight: 700; font-size: 14px; letter-spacing: .02em; white-space: nowrap; }
.nav-phone span { color: var(--gold-bright); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg video.hero-video, .hero-bg .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,28,46,.88) 0%, rgba(6,28,46,.6) 45%, rgba(6,28,46,.25) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; padding: 60px 0; }
.hero h1 { color: var(--white); font-size: clamp(38px, 6vw, 68px); margin-bottom: 22px; }
.hero h1 em { color: var(--gold-bright); font-style: italic; }
.hero p { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 46px; flex-wrap: wrap; }
.hero-badge { border-left: 2px solid var(--gold); padding-left: 14px; }
.hero-badge b { display: block; font-family: var(--f-display); font-size: 24px; color: var(--white); }
.hero-badge span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* Page hero (interior, shorter) */
.page-hero {
  position: relative; padding: 96px 0 76px; color: var(--white); overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,28,46,.82), rgba(6,28,46,.9)); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; font-size: 18px; }
.crumbs { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.crumbs a:hover { color: var(--gold-bright); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section.tight { padding: 72px 0; }
.section.cream { background: var(--cream); }
.section.navy { background: var(--navy); color: rgba(255,255,255,.86); }
.section.navy h2, .section.navy h3 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 18px; }
.section.navy .section-head p { color: rgba(255,255,255,.72); }

/* ---------- Value / feature grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.value-grid.on-navy { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.value-cell { background: var(--white); padding: 40px 32px; }
.value-grid.on-navy .value-cell { background: var(--navy); }
.value-cell .num { font-family: var(--f-display); font-size: 15px; color: var(--gold); font-weight: 600; letter-spacing: .1em; }
.value-cell h3 { font-size: 21px; margin: 14px 0 10px; }
.value-grid.on-navy .value-cell h3 { color: var(--white); }
.value-cell p { color: var(--muted); font-size: 15px; }
.value-grid.on-navy .value-cell p { color: rgba(255,255,255,.7); }

/* ---------- Cards / services ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 22px; margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 15px; margin-bottom: 18px; flex: 1; }
.card-link { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.card-link::after { content: ' →'; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-body h2 { font-size: clamp(28px,3.5vw,40px); margin-bottom: 18px; }
.split-body p { color: var(--muted); margin-bottom: 16px; }
.split-body.on-dark p { color: rgba(255,255,255,.75); }
.check-list { list-style: none; margin: 22px 0 30px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 12px; font-size: 15.5px; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; background: var(--gold); color: var(--navy-900);
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat b { font-family: var(--f-display); font-size: clamp(34px,5vw,52px); color: var(--gold-bright); display: block; }
.stat span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.68); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; grid-auto-flow: dense; }
.gallery-grid .tile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
.gallery-grid .tile.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-grid .tile.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-grid .tile:hover img { transform: scale(1.07); }
.gallery-grid .tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,28,46,.55));
  opacity: 0; transition: opacity .4s;
}
.gallery-grid .tile:hover::after { opacity: 1; }
.tile-cap { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .04em; opacity: 0; transform: translateY(8px); transition: .4s; }
.gallery-grid .tile:hover .tile-cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(6,20,32,.94); z-index: 999; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: var(--white); font-size: 40px; cursor: pointer; line-height: 1; }

/* ---------- Process timeline ---------- */
.timeline { display: grid; gap: 0; }
.tl-step { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.tl-step:last-child { border-bottom: 1px solid var(--line); }
.tl-week { font-family: var(--f-display); font-size: 15px; color: var(--gold); font-weight: 600; }
.tl-week b { display: block; font-size: 40px; color: var(--navy); }
.tl-body h3 { font-size: 23px; margin-bottom: 8px; }
.tl-body p { color: var(--muted); }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; }
.quote { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.quote .stars { color: var(--sand); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 16px; color: var(--ink); font-style: italic; margin-bottom: 18px; }
.quote .who { font-weight: 700; font-size: 14px; color: var(--navy); }
.quote .who span { display: block; font-weight: 500; font-size: 12px; color: var(--muted); font-style: normal; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 96px 0; color: var(--white); text-align: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,28,46,.86), rgba(10,42,67,.92)); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(30px,4.5vw,48px); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 30px; font-size: 18px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--f-body); font-size: 15px; color: var(--ink); background: var(--cream);
  transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Areas / cities ---------- */
.city-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 14px; }
.city-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); font-weight: 600; color: var(--navy); transition: all .3s var(--ease);
}
.city-chip:hover { border-color: var(--gold); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.city-chip span { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 72px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid h4 { color: var(--white); font-family: var(--f-body); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand .mark { font-family: var(--f-display); font-size: 26px; color: var(--white); }
.footer-brand .mark b { color: var(--gold); }
.footer-logo { height: 66px; width: auto; display: block; margin-bottom: 4px; }
.footer-brand p { margin: 16px 0; max-width: 300px; }
.footer-lic { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .04em; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .split-media { margin-bottom: 8px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid .tile.wide, .gallery-grid .tile.tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 76px; left: 0; right: 0; background: var(--navy-900);
    padding: 12px; gap: 0; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav.open .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.05); margin: 4px 0 8px; }
  .nav.open .submenu a { color: rgba(255,255,255,.8); }
  .section { padding: 68px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 78vh; }
  .tl-step { grid-template-columns: 64px 1fr; gap: 18px; }
  .tl-week b { font-size: 30px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 18px; }
}

/* ============================================================
   LUXURY POLISH LAYER — elevated navy + champagne gold
   ============================================================ */

/* Premium gold hairline under the sticky header */
.site-header { border-bottom: 1px solid rgba(203,162,84,.30); }

/* Refined display typography */
h1, h2, h3 { text-wrap: balance; }
.section-head h2, .split-body h2 { font-weight: 600; letter-spacing: -.02em; }
.hero h1 { font-weight: 700; letter-spacing: -.02em; text-shadow: 0 2px 30px rgba(6,28,46,.35); }

/* Eyebrow: gold tick for left-aligned, centered rule for centered heads */
.eyebrow { font-size: 11.5px; letter-spacing: .34em; }
.eyebrow::before {
  content: ''; display: inline-block; width: 26px; height: 1.5px;
  background: var(--gold); vertical-align: middle; margin-right: 12px; margin-bottom: 3px;
}
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after {
  content: ''; display: block; width: 46px; height: 1.5px;
  background: var(--gold); margin: 14px auto 0;
}

/* Buttons — sharper, more architectural, with gold glow */
.btn { border-radius: 2px; letter-spacing: .16em; padding: 17px 34px; font-size: 12px; }
.btn-primary { box-shadow: 0 8px 24px rgba(203,162,84,.22); }
.btn-primary:hover { box-shadow: 0 12px 34px rgba(203,162,84,.42); }
.btn-ghost:hover { color: var(--navy-900); }

/* Cinematic hero overlay + gold divider above badges */
.hero-bg::after {
  background: linear-gradient(105deg, rgba(4,18,30,.92) 0%, rgba(5,22,36,.66) 46%, rgba(6,28,46,.30) 100%);
}
.hero-badges { border-top: 1px solid rgba(203,162,84,.28); padding-top: 30px; margin-top: 40px; }
.hero-badge b { letter-spacing: .01em; }

/* Cards — thin frame, gold top accent on hover, refined lift */
.card { border: 1px solid var(--line); box-shadow: 0 2px 10px rgba(6,28,46,.05); position: relative; }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); z-index: 2;
}
.card:hover::before { transform: scaleX(1); }
.card:hover { box-shadow: 0 22px 50px rgba(6,28,46,.18); }
.card-link { color: var(--gold-ink); font-weight: 700; }
.card-link:hover { color: var(--gold); }

/* Value grid — gold numeral, subtle top accent */
.value-cell { position: relative; padding: 44px 34px; }
.value-cell .num { font-size: 13px; letter-spacing: .18em; }
.value-cell h3 { letter-spacing: -.01em; }

/* Split media — gold frame detail */
.split-media { position: relative; }
.split-media img { border-radius: 3px; }
.split-media::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  border: 1px solid var(--gold); border-radius: 3px; top: 18px; left: 18px; z-index: -1; opacity: .5;
}
.split.reverse .split-media::after { left: -18px; }

/* Check list — gold ticks */
.check-list li::before { background: var(--gold); color: var(--navy-900); }

/* Quotes — gold rule + refined */
.quote { border-top: 3px solid var(--gold); box-shadow: 0 10px 34px rgba(6,28,46,.08); }
.quote .stars { color: var(--gold); }

/* City chips — gold hover */
.city-chip { border-radius: 2px; }
.city-chip:hover { border-color: var(--gold); color: var(--gold-ink); }
.city-chip span { color: var(--gold); }

/* Submenu hover in gold */
.submenu a:hover { background: var(--cream); color: var(--gold-ink); }

/* Stats — gold numerals with hairline separators */
.stat b { color: var(--gold-bright); font-weight: 600; }

/* Timeline — gold week markers */
.tl-week { color: var(--gold-ink); }
.tl-step { border-top-color: var(--line); }

/* Footer — gold accents */
.footer-grid h4 { color: var(--gold-bright); }
.footer-grid a:hover { color: var(--gold-bright); }
.site-footer { border-top: 3px solid var(--gold); }

/* Section eyebrow color on cream stays legible */
.section.cream .eyebrow { color: var(--gold-ink); }
.section.cream .eyebrow::before, .section.cream .eyebrow::after { background: var(--gold-ink); }

/* CTA band — warmer, deeper */
.cta-band-bg::after { background: linear-gradient(180deg, rgba(6,28,46,.88), rgba(9,38,60,.94)); }

/* ============================================================
   HOME V2 — competitor-beating front end
   ============================================================ */

/* Rotating hero slides */
.hero-bg .hero-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1s var(--ease);will-change:opacity}
.hero-bg .hero-slide.active{opacity:1}
.hero-dots{position:absolute;bottom:26px;left:50%;transform:translateX(-50%);z-index:2;display:flex;gap:10px}
.hero-dots button{width:9px;height:9px;border-radius:50%;border:1px solid rgba(255,255,255,.7);background:transparent;cursor:pointer;padding:0;transition:.3s}
.hero-dots button.on{background:var(--gold);border-color:var(--gold)}

/* Trust bar under hero */
.trustbar{background:var(--navy-900);border-bottom:1px solid rgba(203,162,84,.28)}
.trustbar .wrap{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:12px 30px;padding:15px 24px}
.trustbar .i{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.82);font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;font-weight:600}
.trustbar .i::before{content:'';width:5px;height:5px;background:var(--gold);border-radius:50%;flex:none}
.trustbar .i b{color:var(--gold-bright);font-weight:700}

/* Free 3D design band */
.design3d{position:relative;background:var(--navy);color:#fff;overflow:hidden}
.design3d .wrap{position:relative;z-index:1}
.design3d .split-body h2{color:#fff}
.design3d .tagpill{display:inline-block;background:var(--gold);color:var(--navy-900);font-size:10.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;padding:6px 14px;border-radius:2px;margin-bottom:16px}
.design3d p{color:rgba(255,255,255,.8)}
.design3d .split-media::after{border-color:var(--gold);opacity:.6}

/* Advantage comparison table */
.compare{max-width:900px;margin:0 auto}
.compare-row{display:grid;grid-template-columns:1.3fr 1fr 1fr;align-items:center;border-bottom:1px solid var(--line)}
.compare-row.head{border-bottom:2px solid var(--navy)}
.compare-row>div{padding:16px 18px}
.compare-row .feat{font-weight:600;color:var(--navy);font-size:14.5px}
.compare-row .ind{color:var(--muted);font-size:13.5px;text-align:center}
.compare-row .cam{background:rgba(203,162,84,.10);text-align:center;font-weight:700;color:var(--navy);font-size:14px;border-left:1px solid var(--line);border-right:1px solid var(--line)}
.compare-row.head .feat{font-family:var(--f-body);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:700}
.compare-row.head .ind{font-family:var(--f-body);font-size:11px;letter-spacing:.12em;text-transform:uppercase;font-weight:700}
.compare-row.head .cam{color:var(--navy);font-family:var(--f-d);font-size:18px;letter-spacing:0;text-transform:none}
.compare-row .cam .yes{color:var(--gold-ink)}

/* County credibility band */
.county-band{background:var(--cream)}
.county-list{display:flex;flex-wrap:wrap;gap:12px;margin:20px 0 8px}
.county-pill{background:var(--white);border:1px solid var(--line);border-left:3px solid var(--gold);padding:14px 22px;font-weight:600;color:var(--navy);font-size:14.5px}
.county-pill span{display:block;font-size:11px;color:var(--muted);font-weight:500;letter-spacing:.04em}

@media (max-width:760px){
  .compare-row{grid-template-columns:1.2fr .9fr .9fr}
  .compare-row>div{padding:12px 10px}
  .compare-row .feat{font-size:12.5px}
  .compare-row .ind,.compare-row .cam{font-size:12px}
  .trustbar .wrap{gap:8px 18px}
}
