/* ═══════════════════════════════════════════════════════════════
   G&S DIRECT — Premium Static Site
   Colors: Navy #00287f · Red #c13126 · Gold #d4a843
   Fonts: Cormorant Garamond (serif) · Manrope (sans)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #00287f;
  --navy-deep: #001245;
  --navy-mid: #0a1e5c;
  --red: #c13126;
  --gold: #d4a843;
  --gold-light: #e8d5a0;
  --gold-dim: rgba(212, 168, 67, 0.12);
  --warm: #f5f0e8;
  --warm-light: #faf7f2;
  --cream: #f0ebe0;
  --ink: #0d1f40;
  --ink-soft: #3a4a6b;
  --muted: #6b7490;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --section-pad: clamp(5rem, 10vh, 8rem);
  --side-pad: clamp(1.5rem, 4vw, 3rem);
  --max-w: 1280px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--warm);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ── Grain texture overlay (global) ─────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Shared layout ──────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 400ms var(--ease);
}

.nav.scrolled {
  padding: 0.8rem 0;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0, 40, 127, 0.06);
}

/* Invert nav colors when over hero (dark bg) */
.nav:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.65); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .nav-ops-link { color: rgba(255, 255, 255, 0.3); }
.nav:not(.scrolled) .nav-logo { filter: brightness(0) invert(1); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 38px;
  width: auto;
  transition: filter 400ms var(--ease);
  mix-blend-mode: normal;
}

.nav.scrolled .nav-logo {
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink-soft);
  transition: color 250ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-ops-link {
  color: rgba(16, 36, 79, 0.35) !important;
  font-size: 0.75rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.55) contrast(1.15);
}

/* Gradient overlay for text readability + brand color blending */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 18, 69, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0, 18, 69, 0.35) 0%, rgba(0, 18, 69, 0.1) 40%, rgba(0, 18, 69, 0.45) 100%);
}

/* Grain on hero for extra texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Cascading "DIRECT" text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 4;
  pointer-events: none;
  user-select: none;
}

.hero-bg-text span {
  font-family: var(--sans);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.025);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-bg-text span:nth-child(2) { opacity: 0.7; transform: translateX(-15px); }
.hero-bg-text span:nth-child(3) { opacity: 1.4; transform: translateX(-30px); }
.hero-bg-text span:nth-child(4) { opacity: 2.1; transform: translateX(-45px); }
.hero-bg-text span:nth-child(5) { opacity: 2.8; transform: translateX(-60px); }

/* Hero content — anchored left, not centered */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  padding-top: clamp(8rem, 18vh, 14rem);
  padding-bottom: clamp(5rem, 12vh, 10rem);
  max-width: 60%;
  margin-left: clamp(3rem, 8vw, 8rem);
}

.hero-headline {
  margin: 0;
}

.hero-headline-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-headline-line:nth-child(2) {
  margin-left: 0.08em;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin: 1.2rem 0 0;
  opacity: 0;
  animation: fadeUp 800ms var(--ease) 600ms forwards;
}

.hero-gold-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 2rem 0;
  transition: width 1.4s var(--ease);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
}

.hero-gold-line.drawn { width: 72px; }

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 28rem;
  letter-spacing: 0.01em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(180deg, #e8c96e 0%, var(--gold) 100%);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow:
    0 4px 16px rgba(212, 168, 67, 0.35),
    0 1px 3px rgba(212, 168, 67, 0.15);
  transition: all 300ms var(--ease);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(212, 168, 67, 0.45),
    0 2px 6px rgba(212, 168, 67, 0.2);
}

.hero-cta svg {
  transition: transform 300ms var(--ease);
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.5) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.about-text .section-heading {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  margin-bottom: 1.8rem;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 460px;
}

.about-quote-wrap {
  display: flex;
  justify-content: center;
}

.about-quote {
  position: relative;
  padding: 2.8rem 2.5rem 2.5rem;
  background: rgba(255, 253, 248, 0.65);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0, 18, 69, 0.06),
    0 2px 8px rgba(0, 18, 69, 0.03);
  max-width: 420px;
}

.quote-mark {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  pointer-events: none;
}

.about-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.quote-attribution {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.quote-line {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.quote-attribution span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--warm);
}

.services-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 2.2rem 1.6rem 2rem;
  background: var(--warm-light);
  border: 1px solid rgba(0, 40, 127, 0.05);
  border-top: 3px solid var(--navy);
  border-radius: 16px;
  transition: all 350ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold);
  box-shadow:
    0 20px 48px rgba(0, 18, 69, 0.08),
    0 2px 8px rgba(0, 18, 69, 0.04);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 1.4rem;
  transition: all 350ms var(--ease);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy-deep);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  padding-bottom: calc(var(--section-pad) + 1rem);
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-heading {
  font-size: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: 0.8rem;
}

.contact-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.contact-card {
  padding: 2.5rem;
  background: var(--warm-light);
  border: 1px solid rgba(0, 40, 127, 0.05);
  border-radius: 20px;
  box-shadow:
    0 20px 56px rgba(0, 18, 69, 0.06),
    0 2px 8px rgba(0, 18, 69, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-detail address {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-phones a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  transition: color 250ms ease;
}

.contact-phones a:hover { color: var(--red); }

.contact-email {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  transition: color 250ms ease;
}
.contact-email:hover { color: var(--red); }

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: linear-gradient(180deg, #1a3f97 0%, var(--navy) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow:
    0 4px 16px rgba(0, 40, 127, 0.2),
    0 1px 3px rgba(0, 40, 127, 0.1);
  transition: all 300ms var(--ease);
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(0, 40, 127, 0.3),
    0 2px 6px rgba(0, 40, 127, 0.12);
}

.contact-cta svg {
  transition: transform 300ms var(--ease);
}

.contact-cta:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 1.8rem 0;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-email {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: color 250ms ease;
}
.footer-email:hover { color: var(--gold); }

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS (Warehouse → Truck → Store)
   ═══════════════════════════════════════════════════════════════ */
.scroll-track {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transition: opacity 500ms var(--ease);
  pointer-events: none;
}

.scroll-track.visible {
  opacity: 1;
}

.scroll-track-icon {
  color: var(--gold);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-track-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
}

.scroll-track-line {
  position: relative;
  width: 2px;
  height: 140px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 2px;
  margin: 0.3rem 0;
}

/* Dashed track effect */
.scroll-track-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(212, 168, 67, 0.2) 0px,
    rgba(212, 168, 67, 0.2) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: 2px;
}

.scroll-track-vehicle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  filter: drop-shadow(0 2px 6px rgba(212, 168, 67, 0.4));
  transition: top 60ms linear;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-bg-text { display: none; }
  .scroll-track { display: none; }
}

@media (max-width: 600px) {
  .nav-links { gap: 1.2rem; font-size: 0.75rem; }
  .nav-ops-link { display: none; }
  .hero-content {
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 7rem var(--side-pad) 5rem;
  }
  .hero-headline-line { font-size: clamp(3.5rem, 16vw, 5rem); }
  .hero-cta { padding: 1rem 2.4rem; }
  .service-grid { grid-template-columns: 1fr; }
  .about-text .section-heading { font-size: clamp(2.2rem, 8vw, 3rem); }
  .contact-heading { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .hero-scroll-hint { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   PUBLIC SITE SYSTEM OVERRIDES — dashboard match 2026-05-05
   Public site now shares the same stone/navy/gold geometry as the dashboard.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --navy: #00287f;
  --navy-deep: #071943;
  --navy-mid: #112a66;
  --gold: #b9963f;
  --gold-light: #d3bd73;
  --gold-dim: rgba(185, 150, 63, 0.10);
  --warm: #f4f1ea;
  --warm-light: #fbfaf6;
  --cream: #ebe7dd;
  --ink: #102039;
  --ink-soft: #334155;
  --muted: #667085;
}
.nav.scrolled { background: rgba(244,241,234,.92); box-shadow: 0 1px 0 rgba(7,25,67,.10); }
.nav-dashboard-link { color: var(--navy) !important; border: 1px solid rgba(7,25,67,.14); padding: .45rem .75rem !important; border-radius: 8px; background: rgba(251,250,246,.72); }
.nav:not(.scrolled) .nav-dashboard-link { color: #fff !important; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.hero-overlay { background:
  radial-gradient(ellipse at 20% 30%, rgba(185,150,63,.08) 0%, transparent 46%),
  linear-gradient(180deg, rgba(7,25,67,.58) 0%, rgba(7,25,67,.20) 40%, rgba(7,25,67,.70) 100%); }
.hero-video { filter: brightness(.36) saturate(.48) contrast(1.1); }
.hero-cta,
.contact-cta { border-radius: 8px !important; background: var(--gold); box-shadow: none; }
.about { background: var(--cream); }
.services,
.contact { background: var(--warm); }
.service-card,
.about-quote,
.contact-card { border-radius: 10px !important; box-shadow: none !important; background: var(--warm-light); border-color: rgba(7,25,67,.12); }
.service-card { border-top: 2px solid var(--navy); }
.service-icon { color: var(--navy); }
.label { color: var(--gold); }
.hero-gold-line,
.quote-line { background: var(--gold); box-shadow: none; }
.scroll-track,
.scroll-track-icon,
.scroll-track-line { border-radius: 8px !important; }
