/* Crosby Connection Electrical — site stylesheet (redesign-glow full pass).
   One source of truth: brand tokens, layout system, components, motion.
   Brand: gold on black, Cinzel reserved for the wordmark, Archivo everywhere else. */

/* ---------- tokens ---------- */
:root {
  --bg: #0C0B09;
  --bg-deep: #080706;
  --panel: #16130E;
  --panel-2: #100E0B;
  --panel-3: #12100C;
  --gold: #C9A14A;
  --gold-bright: #E8CA80;
  --gold-deep: #9A742E;
  --grad-gold: linear-gradient(135deg, #E8CA80, #C9A14A 45%, #9A742E);
  --grad-panel: linear-gradient(180deg, #16130E, #100E0B);
  --ink: #0C0B09;
  --ink-soft: #3A2E14;
  --text: #F7F3EA;
  --text-soft: #E6E1D5;
  --text-muted: #D3CDC0;
  --text-faint: #B7B0A2;
  --line: rgba(255, 255, 255, 0.06);
  --line-gold: rgba(201, 161, 74, 0.35);
  --line-gold-soft: rgba(201, 161, 74, 0.18);
  --font: Archivo, sans-serif;
  --font-brand: Cinzel, serif;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --container: 1160px;
  --section-pad: clamp(72px, 9vw, 118px);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }
::selection { background: rgba(201, 161, 74, 0.35); color: var(--text); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2b241a; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--grad-gold); color: var(--ink); font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: var(--ink); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font); color: var(--text); text-wrap: balance; margin: 0; }
.display-1 { font-weight: 800; font-size: clamp(40px, 6vw, 68px); line-height: 1.05; letter-spacing: -0.02em; }
.display-2 { font-weight: 800; font-size: clamp(30px, 4vw, 44px); line-height: 1.12; letter-spacing: -0.015em; }
.display-3 { font-weight: 800; font-size: clamp(24px, 3vw, 30px); line-height: 1.2; letter-spacing: -0.01em; }
.lead { font-size: clamp(17.5px, 1.5vw, 19.5px); line-height: 1.75; color: var(--text-soft); text-wrap: pretty; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-bright); font-size: 14px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.7; }
.kicker--bare::before { display: none; }
.text-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 15.5px; letter-spacing: 0.04em;
  padding: 15px 28px; border-radius: var(--r-sm); border: 0; cursor: pointer;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.35s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-gold {
  background: var(--grad-gold); color: var(--ink);
  box-shadow: 0 4px 18px rgba(201, 161, 74, 0.22);
}
.btn-gold:hover {
  color: var(--ink); transform: translateY(-1px);
  animation: cta-pulse 1.6s ease-in-out infinite;
}
.btn-ghost { background: none; border: 1px solid rgba(201, 161, 74, 0.55); color: var(--gold-bright); font-weight: 600; }
.btn-ghost:hover { border-color: var(--gold-bright); background: rgba(201, 161, 74, 0.08); color: var(--gold-bright); }
.btn-quiet { background: #1A1712; border: 1px solid rgba(201, 161, 74, 0.4); color: var(--gold-bright); font-weight: 600; }
.btn-quiet:hover { background: #211D16; border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { background: var(--ink); color: var(--gold-bright); }
.btn-dark:hover { background: #1A1712; color: var(--gold-bright); }
.btn-ghost-dark { background: none; border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost-dark:hover { background: rgba(12, 11, 9, 0.08); color: var(--ink); }
.btn-sm { padding: 12px 20px; font-size: 14.5px; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 10px 0 rgba(232, 202, 128, 0.38), 0 4px 22px rgba(201, 161, 74, 0.4); }
  50% { box-shadow: 0 0 20px 3px rgba(232, 202, 128, 0.58), 0 4px 28px rgba(201, 161, 74, 0.48); }
}
.bolt { flex-shrink: 0; }

/* ---------- ribbon + header ---------- */
.ribbon {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep));
  color: var(--ink); text-align: center; padding: 10px 16px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
}
.ribbon a { color: var(--ink); text-decoration: underline; font-weight: 800; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 11, 9, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-gold-soft);
  transition: box-shadow 0.3s, background 0.3s;
}
html.scrolled .site-header { background: rgba(10, 9, 7, 0.96); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }
.site-header .container { display: flex; align-items: center; gap: 28px; padding-top: 13px; padding-bottom: 13px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(201, 161, 74, 0.4); }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name strong { font-family: var(--font-brand); font-weight: 700; font-size: 19px; letter-spacing: 0.1em; color: var(--text); }
.brand-name strong span { color: var(--gold); }
.brand-name small { font-size: 11px; letter-spacing: 0.42em; color: var(--text-muted); font-weight: 600; }
.site-nav { display: flex; gap: 26px; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; margin-left: 8px; }
.site-nav a { color: var(--text); position: relative; padding: 4px 0; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--grad-gold); border-radius: 2px; transition: right 0.25s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--gold-bright); }
.header-spacer { flex: 1; }
@media (max-width: 860px) {
  .site-header .container { flex-wrap: wrap; gap: 12px 20px; }
  .site-nav { gap: 18px; font-size: 14.5px; margin-left: 0; order: 3; width: 100%; }
  .header-cta { display: none; }
}

/* ---------- sections ---------- */
.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-tight { padding-top: calc(var(--section-pad) * 0.62); padding-bottom: calc(var(--section-pad) * 0.62); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head .kicker { margin-bottom: 14px; }
.section-head p { color: var(--text-soft); margin: 14px 0 0; font-size: 17.5px; }
.surface { background: var(--panel-3); border-top: 1px solid var(--line-gold-soft); border-bottom: 1px solid var(--line-gold-soft); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-gold-soft); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(201, 161, 74, 0.16), transparent 65%),
    radial-gradient(700px 500px at -10% 110%, rgba(201, 161, 74, 0.07), transparent 60%);
}
.hero .container {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 72px);
  align-items: center; padding-top: clamp(72px, 9vw, 116px); padding-bottom: clamp(72px, 9vw, 116px);
}
.hero-copy .kicker { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { max-width: 50ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-points { display: flex; gap: 10px 24px; flex-wrap: wrap; color: var(--text-soft); font-size: 15.5px; font-weight: 500; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: -28px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(201, 161, 74, 0.18), transparent);
  filter: blur(22px); pointer-events: none;
}
.hero-media img {
  position: relative; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-lg); border: 1px solid rgba(201, 161, 74, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  filter: sepia(0.08) saturate(1.08) contrast(1.02);
}
.hero-float {
  position: absolute; left: -18px; bottom: -18px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(12, 11, 9, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line-gold); border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--shadow-card);
}
.hero-float strong { font-size: 22px; font-weight: 800; color: var(--gold-bright); line-height: 1; }
.hero-float small { display: block; font-size: 13.5px; letter-spacing: 0.1em; color: var(--text-soft); font-weight: 600; text-transform: uppercase; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 560px; }
  .hero-float { left: 12px; bottom: -14px; }
}

/* hero light sweep — one shot */
.hero-sweep { position: relative; overflow: hidden; }
.hero-sweep::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -30%; width: 22%;
  background: linear-gradient(100deg, transparent, rgba(232, 202, 128, 0.22) 45%, rgba(245, 241, 232, 0.28) 50%, rgba(232, 202, 128, 0.22) 55%, transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: sweep 2.4s ease-in-out 0.9s 1 both;
}
@keyframes sweep {
  0% { left: -30%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

/* ---------- stats band ---------- */
.stats { border-top: 1px solid var(--line-gold-soft); border-bottom: 1px solid var(--line-gold-soft); background: var(--panel-3); }
.stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 40px; padding-bottom: 40px;
}
.stat { text-align: center; }
.stat strong {
  display: block; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; line-height: 1.1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: 6px; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
@media (max-width: 760px) { .stats .container { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ---------- cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, #1A1610, #131009);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover { border-color: var(--line-gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-wide { grid-column: span 2; }
@media (max-width: 620px) { .card-wide { grid-column: span 1; } }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(201, 161, 74, 0.09);
  border: 1px solid rgba(201, 161, 74, 0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--gold);
}
.card h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: 0; }
.card p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--text-muted); }

/* ---------- process ---------- */
.step { position: relative; padding: 28px 28px 28px 30px; }
.step-num {
  font-size: 44px; font-weight: 800; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9; margin-bottom: 14px; display: block;
}

/* ---------- chips / badges ---------- */
.chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.chip {
  border: 1px solid #38312A; border-radius: 999px;
  padding: 9px 20px; font-size: 15.5px; font-weight: 600; color: var(--text-soft);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip:hover, a.chip:hover { border-color: var(--line-gold); color: var(--gold-bright); background: rgba(201, 161, 74, 0.06); }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-gold); border-radius: 999px; padding: 8px 16px;
  font-size: 13px; letter-spacing: 0.08em; color: var(--gold-bright); font-weight: 600; text-transform: uppercase;
}

/* ---------- circuit texture ---------- */
.circuit-bg { position: relative; }
.circuit-bg > * { position: relative; z-index: 1; }
.circuit-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='%23C9A14A' stroke-width='1'%3E%3Cpath d='M0 60h130l40 40h110M280 100v90l-50 50H120M120 240v120M300 240h120M300 240v-60h60'/%3E%3Cpath d='M40 340h150l30-30h120'/%3E%3C/g%3E%3Cg fill='%23C9A14A'%3E%3Ccircle cx='130' cy='60' r='3'/%3E%3Ccircle cx='280' cy='190' r='3'/%3E%3Ccircle cx='120' cy='240' r='3'/%3E%3Ccircle cx='300' cy='240' r='3'/%3E%3Ccircle cx='190' cy='340' r='3'/%3E%3Ccircle cx='360' cy='180' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 420px 420px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

/* ---------- split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media { position: relative; }
.split-media::before {
  content: ""; position: absolute; inset: -24px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(201, 161, 74, 0.14), transparent);
  filter: blur(20px); pointer-events: none;
}
.split-media img {
  position: relative; width: 100%; height: auto; border-radius: var(--r-lg);
  border: 1px solid rgba(201, 161, 74, 0.4); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  filter: sepia(0.08) saturate(1.08) contrast(1.02);
}

/* ---------- emergency panel ---------- */
.emergency {
  background: var(--grad-panel); border: 1px solid var(--line-gold);
  border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.emergency-copy { padding: clamp(32px, 5vw, 52px); }
.emergency-copy .big { font-size: clamp(72px, 10vw, 132px); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.emergency img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; filter: sepia(0.08) saturate(1.08) contrast(1.02); }
@media (max-width: 860px) { .emergency { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--grad-panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 24px; transition: border-color 0.25s;
}
.faq details:hover { border-color: rgba(201, 161, 74, 0.25); }
.faq details[open] { border-color: var(--line-gold); }
.faq details p { max-width: 65ch; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 17.5px; padding: 20px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 600; color: var(--gold); line-height: 1;
  transition: transform 0.25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--text-soft); font-size: 16.5px; }

/* ---------- testimonials ---------- */
.quote-card { display: flex; flex-direction: column; gap: 14px; }
.quote-card blockquote { margin: 0; font-size: 16px; line-height: 1.72; color: var(--text-soft); }
.quote-card cite { font-style: normal; font-weight: 700; color: var(--gold-bright); font-size: 15px; margin-top: auto; }
.quote-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.quote-lead { font-weight: 800; font-size: 18.5px; line-height: 1.35; letter-spacing: -0.01em; color: var(--text); margin: 0; }

/* ---------- light band (warm off-white section) ---------- */
.band-light { background: #F5F1E8; color: #211C14; border-top: 1px solid #E3DAC5; border-bottom: 1px solid #E3DAC5; }
.band-light h2, .band-light h3 { color: #171310; }
.band-light .kicker { color: var(--gold-deep); }
.band-light .section-head p { color: #59503F; }
.band-light .card {
  background: #FFFDF8; border: 1px solid #E7DFCE;
  box-shadow: 0 14px 30px rgba(60, 45, 15, 0.1);
}
.band-light .card:hover { border-color: #CDB98C; box-shadow: 0 18px 40px rgba(60, 45, 15, 0.16); }
.band-light .quote-lead { color: #171310; }
.band-light .quote-card blockquote { color: #4A4335; }
.band-light .quote-card cite { color: var(--gold-deep); }
.band-light .quote-stars { color: #B8860B; }
.band-light a { color: var(--gold-deep); }
.band-light a:hover { color: #7A5A20; }

/* ---------- hero rating chip ---------- */
.rating-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-gold); border-radius: 999px; padding: 8px 18px;
  font-size: 15px; font-weight: 600; color: var(--text-soft);
  transition: border-color 0.2s, background 0.2s;
}
.rating-chip:hover { border-color: var(--gold-bright); background: rgba(201, 161, 74, 0.07); color: var(--text-soft); }
.rating-chip .quote-stars { font-size: 14px; letter-spacing: 2px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-gold); }
.cta-band .container {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding-top: clamp(48px, 6vw, 68px); padding-bottom: clamp(48px, 6vw, 68px);
}
.cta-band h2 { color: var(--ink); margin-bottom: 8px; }
.cta-band p { margin: 0; color: var(--ink-soft); font-size: 16.5px; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; font-size: 14px; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid rgba(201, 161, 74, 0.3); border-radius: var(--r-sm);
  padding: 13px 14px; color: var(--text); font-size: 16px; font-family: var(--font); outline: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #948D7E; }
.field select option { background: var(--panel-2); }
.field textarea { resize: vertical; }
.form-panel {
  background: var(--grad-panel); border: 1px solid var(--line-gold);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 38px);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--grad-panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 22px; transition: border-color 0.2s, transform 0.2s;
}
a.contact-card:hover { border-color: var(--line-gold); transform: translateY(-2px); }
.contact-card .card-icon { margin: 0; flex-shrink: 0; }
.contact-card > span:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card b { font-size: 13.5px; letter-spacing: 0.16em; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.contact-card > span:last-child > span { font-size: 17px; font-weight: 600; color: var(--text); word-break: break-word; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line-gold-soft); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; right: -110px; bottom: -110px; width: 440px; height: 440px;
  background: url("img/logo-mark.png") center / contain no-repeat;
  opacity: 0.05; pointer-events: none;
}
.site-footer .container, .site-footer .footer-bottom { position: relative; }
.site-footer .cols {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
  padding-top: clamp(48px, 6vw, 64px); padding-bottom: 36px;
}
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: 14px; letter-spacing: 0.18em; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.site-footer p, .site-footer li { color: var(--text-muted); font-size: 16px; line-height: 1.8; max-width: 65ch; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: var(--text); }
.site-footer ul a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(201, 161, 74, 0.14);
  padding: 20px 24px; text-align: center; color: var(--text-faint); font-size: 15px; letter-spacing: 0.04em;
}

/* ---------- mobile call bar ---------- */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(10, 9, 7, 0.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-gold);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1.4fr 1fr; gap: 10px;
  transform: translateY(110%); transition: transform 0.3s ease;
}
html.past-hero .mobile-bar { transform: none; }
@media (max-width: 767px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 72px; }
  .ccw-launcher { bottom: 86px !important; }
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; left: 20px; bottom: 20px; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(16, 14, 11, 0.94); border: 1px solid var(--line-gold);
  color: var(--gold-bright); font-size: 19px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s, border-color 0.2s;
}
.to-top:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
html.past-hero .to-top { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 767px) { .to-top { bottom: 86px; left: 12px; } }

/* ---------- form validation states ---------- */
.field.req::after { content: none; }
.field.req > span::after { content: " *"; color: var(--gold-bright); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #C05050; }
.field input:user-valid, .field textarea:user-valid { border-color: rgba(120, 160, 110, 0.55); }

/* ---------- reveals (armed by site.js) ---------- */
html.glow .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  will-change: opacity, transform;
}
html.glow .reveal.in-view { opacity: 1; transform: none; will-change: auto; }

/* ---------- live current: ambient glow on powered elements ---------- */
/* Gold CTAs breathe light; outlined elements (chips, card icons, quiet
   buttons) pulse their borders on staggered delays so the glow reads as
   current traveling through the page rather than synchronized blinking. */
@keyframes current-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(232, 202, 128, 0.26), 0 4px 20px rgba(201, 161, 74, 0.3); }
  50% { box-shadow: 0 0 24px rgba(232, 202, 128, 0.55), 0 4px 30px rgba(201, 161, 74, 0.44); }
}
@keyframes line-current {
  0%, 100% { border-color: rgba(201, 161, 74, 0.4); box-shadow: 0 0 2px rgba(232, 202, 128, 0.08); }
  50% { border-color: rgba(232, 202, 128, 0.9); box-shadow: 0 0 16px rgba(232, 202, 128, 0.4), inset 0 0 10px rgba(232, 202, 128, 0.12); }
}
/* softer variant for large panels and photo frames */
@keyframes line-current-soft {
  0%, 100% { border-color: rgba(201, 161, 74, 0.3); box-shadow: 0 0 2px rgba(232, 202, 128, 0.05), var(--shadow-card); }
  50% { border-color: rgba(232, 202, 128, 0.7); box-shadow: 0 0 20px rgba(232, 202, 128, 0.26), var(--shadow-card); }
}
/* structural 1px dividers (header, bands, footer) shimmer gently */
@keyframes line-breathe {
  0%, 100% { border-color: rgba(201, 161, 74, 0.2); }
  50% { border-color: rgba(201, 161, 74, 0.5); }
}
/* light-band variant: deep gold on cream */
@keyframes line-current-light {
  0%, 100% { border-color: #E0D5BC; box-shadow: 0 14px 30px rgba(60, 45, 15, 0.1); }
  50% { border-color: #C2A268; box-shadow: 0 0 16px rgba(154, 116, 46, 0.3), 0 14px 30px rgba(60, 45, 15, 0.12); }
}
.btn-gold { animation: current-glow 2.8s ease-in-out infinite; }
.btn-quiet, .btn-ghost { animation: line-current 3.4s ease-in-out infinite; }
.chip { animation: line-current 3.6s ease-in-out infinite; }
.card-icon { animation: line-current 3.6s ease-in-out infinite; }
.rating-chip { animation: line-current 3.6s ease-in-out infinite 0.8s; }
.badge { animation: line-current 3.6s ease-in-out infinite 1.4s; }
.card { animation: line-current-soft 4.2s ease-in-out infinite; }
.band-light .card { animation: line-current-light 4.2s ease-in-out infinite; }
.faq details { animation: line-current-soft 4.2s ease-in-out infinite; }
.contact-card { animation: line-current-soft 4.2s ease-in-out infinite; }
.form-panel { animation: line-current-soft 4.6s ease-in-out infinite; }
.emergency { animation: line-current-soft 4.6s ease-in-out infinite; }
.hero-media img, .split-media img { animation: line-current-soft 4.6s ease-in-out infinite 0.6s; }
.hero-float { animation: line-current 3.6s ease-in-out infinite 1.2s; }
.to-top { animation: line-current 3.6s ease-in-out infinite; }
.site-header { animation: line-breathe 4.8s ease-in-out infinite; }
.stats { animation: line-breathe 4.8s ease-in-out infinite 1.2s; }
.surface { animation: line-breathe 4.8s ease-in-out infinite 2.4s; }
.site-footer { animation: line-breathe 4.8s ease-in-out infinite 3.6s; }
/* staggered so the pulse travels */
.chip:nth-child(2n) { animation-delay: 0.5s; }
.chip:nth-child(3n) { animation-delay: 1s; }
.chip:nth-child(5n) { animation-delay: 1.5s; }
.chip:nth-child(7n) { animation-delay: 2s; }
.grid > .card:nth-child(2n), .grid > .card:nth-child(2n) .card-icon { animation-delay: 0.6s; }
.grid > .card:nth-child(3n), .grid > .card:nth-child(3n) .card-icon { animation-delay: 1.2s; }
.grid > .card:nth-child(4n), .grid > .card:nth-child(4n) .card-icon { animation-delay: 1.8s; }
.faq details:nth-child(2n) { animation-delay: 0.7s; }
.faq details:nth-child(3n) { animation-delay: 1.4s; }
.contact-card:nth-child(2n) { animation-delay: 0.7s; }
.contact-card:nth-child(3n) { animation-delay: 1.4s; }
/* hover / open states take over cleanly */
.chip:hover, .card:hover, .card:hover .card-icon, .btn-quiet:hover, .btn-ghost:hover,
.rating-chip:hover, .contact-card:hover, .faq details:hover, .faq details[open],
.to-top:hover { animation: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.glow .reveal { opacity: 1; transform: none; transition: none; }
  .btn-gold:hover { animation: none; }
  .hero-sweep::after { animation: none; opacity: 0; }
  .card:hover, a.contact-card:hover { transform: none; }
  .mobile-bar { transition: none; }
  .to-top { transition: none; }
  .btn-gold, .btn-quiet, .btn-ghost, .chip, .card-icon, .rating-chip, .badge,
  .card, .band-light .card, .faq details, .contact-card, .form-panel, .emergency,
  .hero-media img, .split-media img, .hero-float, .to-top,
  .site-header, .stats, .surface, .site-footer { animation: none; }
  .btn-gold { box-shadow: 0 0 14px rgba(232, 202, 128, 0.35), 0 4px 20px rgba(201, 161, 74, 0.3); }
  .card, .faq details, .contact-card { border-color: rgba(201, 161, 74, 0.3); }
}
