/* ==========================================================================
   LV SIGNS — PUBLIC MARKETING SITE DESIGN SYSTEM
   site.css — reusable stylesheet for all public pages
   --------------------------------------------------------------------------
   Sections:
     1.  Design tokens (:root)
     2.  Base / reset
     3.  Layout primitives (container, grids, spacing utilities)
     4.  Buttons
     5.  Utility bar (thin top bar)
     6.  Site header + primary nav + mobile hamburger
     7.  Section wrappers + headings / eyebrows
     8.  Hero
     9.  Cards (generic, product, service)
     10. Logo marquee
     11. Stat band
     12. Industry chips / cards
     13. Testimonials
     14. Why-choose-us pillars
     15. CTA band
     16. Footer
     17. Motion / page-load reveals
     18. Responsive (mobile breakpoint ~860px)
   ========================================================================== */

/* 1. ─────────────────────────────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────────────────────────────────── */
:root {
  /* Palette — gold (primary CTA) */
  --gold: #FCB419;
  --gold-deep: #E09F0E;
  --gold-soft: #FFF4D6;

  /* Palette — teal (brand secondary) */
  --teal: #1E8696;
  --teal-deep: #14606D;
  --teal-soft: #E3F1F3;

  /* Ink / neutrals */
  --ink: #0E1B22;
  --ink-soft: #172A33;
  --slate: #34474F;
  --muted: #6E7E86;

  /* Surfaces / lines */
  --line: #E4EAEC;
  --bg: #FFFFFF;
  --bg-soft: #F4F7F8;
  --bg-dark: #0E1B22;

  /* Status */
  --success: #1F9D6B;
  --warn: #E0A00F;
  --info: #2B7DB8;
  --danger: #D14343;

  /* Radii / layout */
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14,27,34,.06), 0 2px 10px rgba(14,27,34,.05);
  --shadow-lg: 0 22px 48px -16px rgba(14,27,34,.24);

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Public Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 88px;
  --s-10: 120px;

  /* Component heights */
  --header-h: 76px;
  --utility-h: 40px;
}

/* 2. ─────────────────────────────────────────────────────────────────────
   BASE / RESET
   ───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p { color: var(--slate); }

a { color: var(--teal-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal); }

img, svg, picture, video { display: block; max-width: 100%; }

ul, ol { list-style: none; }

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

strong { font-weight: 700; color: var(--ink); }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* mono label helper — refs / codes / eyebrow-style overlines */
.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
}

/* 3. ─────────────────────────────────────────────────────────────────────
   LAYOUT PRIMITIVES
   ───────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

/* responsive grid utilities */
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }

.text-center { text-align: center; }

/* 4. ─────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  letter-spacing: .01em;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

/* gold — primary CTA */
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px -8px rgba(252,180,25,.7);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(252,180,25,.85);
}

/* outline — sits on light or dark, accepts modifier */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  transform: translateY(-2px);
}
/* outline tuned for dark backgrounds (hero, CTA band) */
.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline.on-dark:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* ghost — minimal text button */
.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  padding-inline: var(--s-3);
}
.btn-ghost:hover { color: var(--teal); background: var(--teal-soft); }

/* teal solid */
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(30,134,150,.7);
}
.btn-teal:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }

/* sizes */
.btn-sm { padding: 10px 16px; font-size: .86rem; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* 5. ─────────────────────────────────────────────────────────────────────
   UTILITY BAR (thin top strip)
   ───────────────────────────────────────────────────────────────────────── */
.utilitybar {
  background: var(--ink);
  color: #cdd7db;
  font-size: .82rem;
  height: var(--utility-h);
  display: flex;
  align-items: center;
}
.utilitybar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.utilitybar a { color: #e7eef0; }
.utilitybar a:hover { color: var(--gold); }
.utilitybar .ub-left,
.utilitybar .ub-right {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.utilitybar .ub-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap;
}
.utilitybar svg { width: 15px; height: 15px; color: var(--gold); }
.utilitybar .ub-tagline {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  color: #9fb0b6;
}

/* 6. ─────────────────────────────────────────────────────────────────────
   SITE HEADER + PRIMARY NAV
   ───────────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(14,27,34,.02);
}
.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

/* wordmark + icon */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -6px rgba(20,96,109,.6);
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; color: var(--gold); }
.brand .brand-sub {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }

/* primary nav */
.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .96rem;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}
.primary-nav a:hover { color: var(--teal-deep); background: var(--bg-soft); }
.primary-nav a.active { color: var(--teal-deep); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* header right cluster */
.header-actions { display: flex; align-items: center; gap: var(--s-4); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: .98rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--teal); }
.header-phone:hover { color: var(--teal-deep); }

/* mobile hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  place-items: center;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* mobile slide-down panel scrim */
.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,27,34,.45);
  z-index: 90;
}
body.nav-open .nav-scrim { display: block; }

/* 7. ─────────────────────────────────────────────────────────────────────
   SECTION WRAPPERS + HEADINGS / EYEBROWS
   ───────────────────────────────────────────────────────────────────────── */
.section { padding-block: var(--s-10); }
.section-sm { padding-block: var(--s-8); }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #c7d2d7; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  max-width: 720px;
  margin-bottom: var(--s-7);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head.center .eyebrow::before { display: none; }
.section-dark .eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  margin-bottom: var(--s-4);
}
.section-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 60ch;
}
.section-dark .section-lead { color: #9fb0b6; }
.section-head.center .section-lead { margin-inline: auto; }

/* 8. ─────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(14,27,34,.94) 0%, rgba(14,27,34,.78) 42%, rgba(14,27,34,.30) 100%),
    linear-gradient(0deg, rgba(20,96,109,.35), rgba(20,96,109,0) 55%);
}
.hero .container { position: relative; z-index: 2; padding-block: var(--s-9); }
.hero-inner { max-width: 730px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: var(--s-5);
}
.hero h1 .accent {
  color: var(--gold);
  display: inline;
}
.hero-lead {
  font-size: 1.22rem;
  color: #d6e0e3;
  max-width: 54ch;
  margin-bottom: var(--s-6);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: .9rem;
  color: #9fb0b6;
}
.hero-trust .stars { color: var(--gold); display: inline-flex; gap: 2px; }
.hero-trust .stars svg { width: 16px; height: 16px; }
.hero-trust strong { color: #fff; }

/* 9. ─────────────────────────────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* product card — photo + body + link */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card .pc-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-card .pc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(14,27,34,.82);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.product-card .pc-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.product-card .pc-body h3 { font-size: 1.22rem; font-weight: 700; }
.product-card .pc-body p { font-size: .96rem; color: var(--muted); flex: 1; }
.product-card .pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--teal-deep);
  margin-top: var(--s-2);
}
.product-card .pc-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.product-card:hover .pc-link svg { transform: translateX(4px); }

/* service card — SVG icon slot + body */
.service-card {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  height: 100%;
}
.service-card .sc-icon {
  width: 56px; height: 56px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-deep);
  transition: background .25s ease, color .25s ease;
}
.service-card .sc-icon svg { width: 28px; height: 28px; }
.service-card:hover .sc-icon { background: var(--gold); color: var(--ink); }
.service-card h3 { font-size: 1.18rem; font-weight: 700; }
.service-card p { font-size: .96rem; color: var(--muted); }
.service-card .sc-link {
  margin-top: auto;
  font-weight: 700;
  font-size: .88rem;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .sc-link svg { width: 15px; height: 15px; }

/* 10. ─────────────────────────────────────────────────────────────────────
   LOGO MARQUEE
   ───────────────────────────────────────────────────────────────────────── */
.marquee-band {
  padding-block: var(--s-7);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  color: var(--muted);
  margin-bottom: var(--s-5);
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s-9);
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: #9aa9af;
  white-space: nowrap;
  opacity: .8;
  transition: color .25s ease, opacity .25s ease;
}
.marquee-logo:hover { color: var(--teal-deep); opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 11. ─────────────────────────────────────────────────────────────────────
   STAT BAND
   ───────────────────────────────────────────────────────────────────────── */
.stat-band {
  background:
    radial-gradient(1100px 420px at 12% -10%, rgba(30,134,150,.55), transparent 60%),
    linear-gradient(160deg, var(--teal-deep) 0%, #0d4751 100%);
  color: #fff;
  padding-block: var(--s-9);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.stat {
  text-align: center;
  padding: var(--s-4) var(--s-3);
  border-right: 1px solid rgba(255,255,255,.14);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
}
.stat-num .unit { color: var(--gold); }
.stat-label {
  margin-top: var(--s-3);
  font-size: .96rem;
  color: #bfe0e5;
  font-weight: 500;
}

/* 12. ─────────────────────────────────────────────────────────────────────
   INDUSTRY CHIPS / CARDS
   ───────────────────────────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .22s ease, box-shadow .25s ease, border-color .22s ease;
}
.industry-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--teal);
  color: var(--ink);
}
.industry-chip .ic-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.industry-chip .ic-icon svg { width: 24px; height: 24px; }
.industry-chip .ic-text h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 2px; }
.industry-chip .ic-text span { font-size: .86rem; color: var(--muted); }

/* 13. ─────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--teal-soft);
}
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}
.stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.testimonial blockquote {
  font-size: 1.04rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: auto;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-meta .tm-name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.testimonial-meta .tm-co { font-size: .84rem; color: var(--muted); }

/* 14. ─────────────────────────────────────────────────────────────────────
   WHY-CHOOSE-US PILLARS
   ───────────────────────────────────────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.pillar {
  text-align: left;
  padding: var(--s-2);
}
.pillar .pillar-icon {
  width: 60px; height: 60px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  margin-bottom: var(--s-4);
  box-shadow: var(--shadow-sm);
}
.pillar .pillar-icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: var(--s-2); }
.pillar p { font-size: .96rem; color: var(--muted); }

/* 15. ─────────────────────────────────────────────────────────────────────
   CTA BAND
   ───────────────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 340px at 85% 120%, rgba(252,180,25,.22), transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
  padding-block: var(--s-9);
}
.cta-band .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  max-width: 18ch;
}
.cta-band p { color: #aebcc2; margin-top: var(--s-3); font-size: 1.08rem; max-width: 46ch; }
.cta-band .cta-actions { display: flex; gap: var(--s-4); flex-wrap: wrap; }

/* 16. ─────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: #9fb0b6;
  padding-top: var(--s-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: var(--s-6);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-about .brand { color: #fff; margin-bottom: var(--s-4); }
.footer-about .brand .brand-sub { color: var(--gold); }
.footer-about p { color: #8fa1a8; font-size: .94rem; margin-bottom: var(--s-5); }
.footer-social { display: flex; gap: var(--s-3); }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  color: #c7d2d7;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a { color: #9fb0b6; font-size: .95rem; }
.footer-col a:hover { color: var(--gold); }

.footer-contact .fc-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  font-size: .94rem;
  color: #c7d2d7;
}
.footer-contact .fc-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact .fc-item strong { color: #fff; display: block; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-5);
  font-size: .86rem;
  color: #7d8f96;
  flex-wrap: wrap;
}
.footer-bottom .fb-links { display: flex; gap: var(--s-5); }
.footer-bottom a { color: #9fb0b6; }
.footer-bottom a:hover { color: var(--gold); }

/* 17. ─────────────────────────────────────────────────────────────────────
   MOTION / PAGE-LOAD REVEALS
   ───────────────────────────────────────────────────────────────────────── */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* staggered hero load-in */
.reveal {
  opacity: 0;
  animation: rise-in .8s cubic-bezier(.22,.61,.36,1) forwards;
}
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .20s; }
.reveal.d3 { animation-delay: .32s; }
.reveal.d4 { animation-delay: .44s; }
.reveal.d5 { animation-delay: .56s; }
.reveal.d6 { animation-delay: .68s; }

.hero-bg { animation: fade-in 1.4s ease forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; }
  .marquee-track { animation: none; }
}

/* 18. ─────────────────────────────────────────────────────────────────────
   RESPONSIVE — tablet + mobile breakpoint ~860px
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  /* nav collapses to slide-down panel */
  .nav-toggle { display: grid; }
  .header-actions .header-phone { display: none; }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: var(--s-3);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .25s ease;
  }
  body.nav-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav a { padding: 14px 16px; font-size: 1.05rem; border-radius: 8px; }
  .primary-nav a.active::after { display: none; }

  /* show a quote button inside header for mobile */
  .header-actions .btn { padding: 11px 16px; font-size: .9rem; }

  /* utility bar trims down */
  .utilitybar { font-size: .76rem; }
  .utilitybar .ub-tagline { display: none; }
  .utilitybar .ub-right .ub-item:not(:last-child) { display: none; }

  /* sections breathe less */
  .section { padding-block: var(--s-8); }
  .section-sm { padding-block: var(--s-7); }

  /* grids → single / double column */
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6,
  .industry-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: var(--s-5); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  /* hero */
  .hero { min-height: 540px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* cta band stacks */
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-band .cta-actions { width: 100%; }
  .cta-band .cta-actions .btn { flex: 1; }
}

@media (max-width: 540px) {
  .container { padding-inline: var(--s-4); }
  .pillar-grid, .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; }
  body { font-size: 16px; }
}

/* --- products page -------------------------------------------------------- */

/* page-hero / breadcrumb band */
.page-hero {
  position: relative;
  background: var(--bg-dark);
  color: #c7d2d7;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 85% -20%, rgba(252,180,25,.16), transparent 55%),
    radial-gradient(120% 140% at 0% 120%, rgba(30,134,150,.30), transparent 55%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: var(--s-9) var(--s-8);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
  color: #9fb0b6;
  margin-bottom: var(--s-5);
}
.breadcrumb a { color: #9fb0b6; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 13px; height: 13px; color: #5d6f77; }
.breadcrumb .crumb-current { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  max-width: 16ch;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero .ph-lead {
  margin-top: var(--s-4);
  font-size: 1.12rem;
  color: #aebcc2;
  max-width: 60ch;
}
.page-hero .ph-meta {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
}
.page-hero .ph-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: .92rem;
  color: #c7d2d7;
}
.page-hero .ph-meta svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* filter-chip toolbar */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.filter-bar .container {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-block: var(--s-4);
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}
.filter-chips {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.filter-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--slate);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.filter-chip:hover {
  color: var(--teal-deep);
  border-color: var(--teal);
  transform: translateY(-1px);
}
.filter-chip[aria-pressed="true"] {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}

/* product grid behaviour */
.products-section .grid { margin-top: 0; }
.product-card.is-hidden { display: none; }
.product-card .pc-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--gold-deep);
  margin-top: var(--s-2);
}
.product-card .pc-quote svg { width: 16px; height: 16px; transition: transform .2s ease; }
.product-card:hover .pc-quote svg { transform: translateX(4px); }
.products-empty {
  display: none;
  text-align: center;
  color: var(--muted);
  padding-block: var(--s-8);
  font-size: 1.05rem;
}
.products-empty.is-visible { display: block; }
.products-empty-link { color: var(--teal-deep); font-weight: 700; }

@media (max-width: 1080px) {
  .products-section .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .filter-bar { position: static; }
  .filter-bar .container { gap: var(--s-3); }
  .page-hero .container { padding-block: var(--s-8) var(--s-7); }
}

/* --- contact page -------------------------------------------------------- */
.contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 380px at 88% -20%, rgba(30,134,150,.55), transparent 60%),
    radial-gradient(700px 320px at 6% 130%, rgba(252,180,25,.16), transparent 60%),
    linear-gradient(140deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(120deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero .container {
  position: relative;
  z-index: 1;
  padding-block: var(--s-9);
}
.contact-hero .page-hero-inner { max-width: 760px; }
.contact-hero .eyebrow { color: var(--gold); }
.contact-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  color: #8fa1a8;
  margin-bottom: var(--s-5);
}
.contact-hero .breadcrumb a { color: #bfe0e5; }
.contact-hero .breadcrumb a:hover { color: var(--gold); }
.contact-hero .breadcrumb svg { width: 13px; height: 13px; }
.contact-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: var(--s-4);
}
.contact-hero h1 .accent { color: var(--gold); }
.contact-hero p {
  font-size: 1.18rem;
  color: #cdd9dd;
  max-width: 54ch;
}
.contact-hero .page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.contact-hero .ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .86rem;
  font-weight: 600;
  color: #e7eef0;
}
.contact-hero .ph-badge svg { width: 16px; height: 16px; color: var(--gold); }

/* contact two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: var(--s-6);
  align-items: start;
}
.quote-wrap { margin-top: calc(var(--s-8) * -1); position: relative; z-index: 3; }

/* quote form card */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote-head {
  position: relative;
  padding: var(--s-6) var(--s-6) var(--s-5);
  background:
    radial-gradient(520px 200px at 100% 0%, rgba(252,180,25,.16), transparent 70%),
    linear-gradient(160deg, var(--teal-soft) 0%, #fff 78%);
  border-bottom: 1px solid var(--line);
}
.quote-head .qh-flag {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(var(--gold), var(--gold-deep));
}
.quote-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.quote-head p { color: var(--slate); font-size: 1rem; }
.quote-head .qh-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: var(--s-3);
}
.quote-head .qh-tag svg { width: 14px; height: 14px; color: var(--gold-deep); }
.quote-body { padding: var(--s-6); }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-4);
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.field label .opt {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .58rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 5px;
}
.field label .req { color: var(--danger); font-weight: 700; }
.input-shell {
  position: relative;
  display: flex;
  align-items: center;
}
.input-shell > svg {
  position: absolute;
  left: 14px;
  width: 18px; height: 18px;
  color: var(--muted);
  pointer-events: none;
  transition: color .2s ease;
}
.input-shell:focus-within > svg { color: var(--teal); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.input-shell input,
.input-shell select { padding-left: 42px; }
.field input::placeholder,
.field textarea::placeholder { color: #9aaab0; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #cbd6d9; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(30,134,150,.12);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.55; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2334474F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.quote-submit { margin-top: var(--s-5); }
.quote-submit .btn { font-size: 1.08rem; padding: 18px 28px; }
.ref-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: var(--s-4);
  padding: 12px 14px;
  background: var(--gold-soft);
  border: 1px solid #f3e2af;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--slate);
}
.ref-note svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; margin-top: 1px; }
.ref-note code {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  padding: 1px 6px;
  border-radius: 5px;
}
.privacy-line {
  margin-top: var(--s-4);
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}
.privacy-line a { color: var(--teal-deep); font-weight: 600; }

/* contact info rail */
.info-rail { display: flex; flex-direction: column; gap: var(--s-5); }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.info-card .ic-head {
  padding: var(--s-5) var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--line);
}
.info-card .ic-head h3 { font-size: 1.18rem; font-weight: 700; }
.info-card .ic-head p { font-size: .9rem; color: var(--muted); margin-top: 3px; }
.info-list { padding: var(--s-3) var(--s-5) var(--s-5); }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row .ir-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.info-row .ir-icon svg { width: 21px; height: 21px; }
.info-row .ir-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}
.info-row .ir-value { font-weight: 600; color: var(--ink); font-size: 1rem; line-height: 1.4; }
.info-row .ir-value a { color: var(--ink); }
.info-row .ir-value a:hover { color: var(--teal-deep); }
.info-row .ir-sub { font-size: .86rem; color: var(--muted); font-weight: 400; margin-top: 1px; }

/* map card */
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.map-card .map-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.map-card .map-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.02);
}
.map-card .map-pin {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -100%);
  width: 40px; height: 40px;
  color: var(--gold);
  filter: drop-shadow(0 6px 10px rgba(14,27,34,.45));
}
.map-card .map-pin svg { width: 40px; height: 40px; fill: var(--gold); stroke: var(--ink); stroke-width: 1.25; }
.map-card .map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: #fff;
  border-top: 1px solid var(--line);
}
.map-card .map-foot .mf-addr { font-weight: 600; color: var(--ink); font-size: .92rem; }
.map-card .map-foot .mf-addr span { display: block; font-weight: 400; color: var(--muted); font-size: .82rem; }
.map-card .map-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--teal-deep);
  white-space: nowrap;
}
.map-card .map-foot a svg { width: 15px; height: 15px; }

/* trust badges */
.trust-card { padding: var(--s-5); }
.trust-card .tc-title {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .64rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin-bottom: var(--s-4);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: var(--s-4) var(--s-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.trust-badge:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.trust-badge .tb-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
}
.trust-badge .tb-icon svg { width: 20px; height: 20px; }
.trust-badge .tb-label { font-size: .76rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.trust-badge .tb-sub { font-size: .68rem; color: var(--muted); }

/* response-time callout */
.response-card {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(252,180,25,.22), transparent 65%),
    linear-gradient(150deg, var(--teal-deep) 0%, #0d4751 100%);
}
.response-card .rc-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: var(--gold);
}
.response-card .rc-icon svg { width: 24px; height: 24px; }
.response-card .rc-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.02rem; }
.response-card .rc-sub { font-size: .88rem; color: #bfe0e5; }

/* contact page responsive */
@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
  .quote-wrap { margin-top: calc(var(--s-7) * -1); }
  .info-rail { margin-top: 0; }
}
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .quote-head, .quote-body { padding: var(--s-5); }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .map-card .map-foot { flex-direction: column; align-items: flex-start; }
}
