/* ============================================================
   GAINESVILLE PREMIUM ROOFING — DESIGN SYSTEM
   Edit phone + colors below. Everything else cascades.
   ============================================================ */

:root {
  /* ⬇⬇⬇ EDIT PHONE HERE — one place, every page updates ⬇⬇⬇ */
  --phone-display: "(352) 555-0199";
  --phone-link: "+13525550199";

  /* ⬇⬇⬇ EDIT COLORS HERE ⬇⬇⬇ */
  --black: #0a0e14;
  --navy: #0d1e3a;
  --navy-2: #122548;
  --navy-deep: #081428;
  --red: #dc1f1f;
  --red-2: #b81717;
  --red-glow: rgba(220, 31, 31, 0.25);
  --bone: #f6f4ef;
  --bone-2: #e8e4db;
  --bone-dim: #a8acb5;
  --off: #f1ede4;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(0, 0, 0, 0.08);

  --display: 'Oswald', Impact, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1300px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open { overflow: hidden; }

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

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

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

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

@media (min-width: 900px) {
  .container { padding: 0 40px; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.02; margin: 0; letter-spacing: -0.01em; text-transform: uppercase; }

h1 { font-size: clamp(46px, 9.5vw, 120px); }
h2 { font-size: clamp(36px, 6vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 22px); letter-spacing: 0; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.red { color: var(--red); }
.bone { color: var(--bone); }

.underline { position: relative; display: inline-block; }
.underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: var(--red);
  z-index: -1;
  opacity: 0.55;
}

.stack { display: block; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--red); }

.inline {
  color: var(--red);
  border-bottom: 1px dashed var(--red);
  transition: color 0.2s;
}
.inline:hover { color: var(--bone); border-bottom-color: var(--bone); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--red);
  color: var(--bone);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-2);
  border-color: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone);
}
.btn-outline:hover {
  background: var(--bone);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bone);
  color: var(--navy);
  border-color: var(--bone);
}
.btn-white:hover {
  background: var(--red);
  color: var(--bone);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 900px) {
  .nav-inner { padding: 0 40px; height: 78px; }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--bone);
  font-size: 18px;
  border-radius: var(--radius);
}

.nav-brand-text { line-height: 1; }
.nav-brand-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1000px) {
  .nav-links { display: flex; }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link.active { background: rgba(220, 31, 31, 0.08); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 110;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-link:hover { background: rgba(220, 31, 31, 0.12); color: var(--red); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 1000px) {
  .nav-cta { display: flex; }
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--bone);
  padding: 8px 14px;
  border-radius: var(--radius);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }
.nav-phone:hover { color: var(--red); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 102;
}
.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88%, 380px);
  background: var(--navy-deep);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 105;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { transform: translateX(0); }

@media (min-width: 1000px) {
  .nav-toggle, .mobile-nav, .mobile-nav-backdrop { display: none !important; }
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
}
.mobile-nav-close svg { width: 22px; height: 22px; }

.mobile-nav-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.mobile-nav-list li { border-bottom: 1px solid var(--line); }

.mobile-nav-link {
  display: block;
  padding: 18px 4px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--red); }

.mobile-nav-group { border-bottom: 1px solid var(--line); }

.mobile-nav-grouptrigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  text-align: left;
}
.mobile-nav-grouptrigger svg { width: 14px; height: 14px; transition: transform 0.2s; }
.mobile-nav-group.open .mobile-nav-grouptrigger svg { transform: rotate(180deg); }
.mobile-nav-group.open .mobile-nav-grouptrigger { color: var(--red); }

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-group.open .mobile-nav-sub { max-height: 1000px; }

.mobile-nav-sub-link {
  display: block;
  padding: 12px 4px 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bone-dim);
}
.mobile-nav-sub-link:hover { color: var(--red); }

.mobile-nav-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.mobile-nav-phone svg { width: 18px; height: 18px; color: var(--red); }

/* ============================================================
   STICKY CALL BAR (mobile only)
   ============================================================ */

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--red);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.4);
}
.call-bar svg { width: 20px; height: 20px; }

@media (min-width: 1000px) {
  .call-bar { display: none; }
}

/* On mobile, pad bottom of body so call bar doesn't cover content */
@media (max-width: 999px) {
  body { padding-bottom: 60px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 60px 0 80px;
}

@media (min-width: 900px) {
  .hero { padding: 80px 0 100px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(220, 31, 31, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(13, 30, 58, 0.6), transparent 50%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-2);
}
.hero-badge svg { width: 13px; height: 13px; color: var(--bone-2); fill: none; stroke: currentColor; stroke-width: 2.5; }
.hero-badge.red { color: var(--red); border-color: rgba(220,31,31,0.4); background: rgba(220,31,31,0.08); }
.hero-badge.red svg { color: var(--red); }

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 9vw, 110px);
}

.hero-lead {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--bone-2);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-lead strong { color: var(--bone); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

@media (min-width: 600px) {
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
}

.hero-trust-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: var(--bone);
  margin-bottom: 6px;
}
.hero-trust-num .red { color: var(--red); }

.hero-trust-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(13,30,58,0.4), rgba(13,30,58,0.7)),
    url('https://images.unsplash.com/photo-1632759145355-8b8c7b7c7c0f?w=800&q=80') center/cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

@media (min-width: 1000px) {
  .hero-photo { aspect-ratio: 3/4; }
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}

.hero-photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--red);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}
.hero-photo-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--bone);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.hero-photo-caption-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.hero-photo-caption-text {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  background: var(--red);
  color: var(--bone);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--red-2);
  border-bottom: 1px solid var(--red-2);
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: tick 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.ticker-item::after {
  content: '★';
  margin-left: 60px;
  color: rgba(255,255,255,0.5);
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CERTS BAND
   ============================================================ */

.certs { background: var(--navy-2); padding: 50px 0; border-bottom: 1px solid var(--line); }

.certs-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

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

.certs-label {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--bone);
}
.certs-label strong { display: block; color: var(--red); margin-top: 6px; }

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

@media (min-width: 600px) {
  .certs-grid { grid-template-columns: repeat(6, 1fr); }
}

.cert {
  text-align: center;
}

.cert-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.cert-icon.red { background: var(--red); border-color: var(--red); color: var(--bone); }
.cert-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }

.cert-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.2;
}
.cert-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 4px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

section {
  padding: 70px 0;
  background: var(--navy);
}

@media (min-width: 900px) {
  section { padding: 100px 0; }
}

.bg-off { background: var(--off); color: var(--navy); }
.bg-off h1, .bg-off h2, .bg-off h3, .bg-off h4 { color: var(--navy); }
.bg-off p { color: #2a3a4a; }
.bg-off .eyebrow { color: var(--red); }

.bg-navy { background: var(--navy-deep); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 50px;
  align-items: end;
}

@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.3fr 1fr; gap: 60px; }
}

.section-head h2 { margin-bottom: 0; }
.section-head p { font-size: 17px; line-height: 1.65; color: var(--bone-2); max-width: 480px; }

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service {
  display: flex;
  flex-direction: column;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 50px rgba(220, 31, 31, 0.18);
}

.service-img {
  position: relative;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-deep);
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,20,40,0.85));
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 11px;
  background: var(--red);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.service-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  z-index: 2;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  color: var(--bone);
  opacity: 0.7;
  line-height: 1;
}

.service-body { padding: 26px 24px 28px; }

.service-body h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--bone);
}

.service-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--bone-dim);
  margin-bottom: 16px;
}

.service-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.service-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--bone-2);
  margin-bottom: 7px;
}
.service-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service:hover .service-link::after { transform: translateX(4px); }

/* ============================================================
   RECENT JOBS GRID
   ============================================================ */

.jobs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.jobs-head h2 { color: var(--navy); margin-bottom: 0; }

.jobs-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(220, 31, 31, 0.1);
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(220,31,31,0.3);
}
.jobs-live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .jobs-grid { grid-template-columns: repeat(4, 1fr); }
}

.job {
  background: var(--bone);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.job:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

.job-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.job-date {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  background: rgba(8,20,40,0.85);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.job-body { padding: 16px 18px 18px; }
.job-loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.job-body h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: #5b6675;
  letter-spacing: 0.04em;
}
.job-meta strong { color: var(--navy); font-weight: 700; }
.job-meta span { padding: 3px 8px; background: rgba(13,30,58,0.06); border-radius: 100px; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */

.ba-section { background: var(--navy-deep); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 700px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}

.ba {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-pair { display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 16/9; }

.ba-img {
  position: relative;
  background-size: cover;
  background-position: center;
}
.ba-img::after {
  content: attr(data-label);
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: rgba(8,20,40,0.85);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ba-img.after::after { background: var(--red); }

.ba-body {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ba-body h4 { color: var(--bone); margin-bottom: 4px; font-size: 17px; }
.ba-body small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-dim); }
.ba-tag {
  padding: 5px 11px;
  background: var(--red);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

/* ============================================================
   PROOF / WHY US (long form)
   ============================================================ */

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1000px) {
  .proof-grid { grid-template-columns: 1.6fr 1fr; gap: 60px; }
}

.proof-prose h2 { margin-bottom: 24px; }
.proof-prose h3 { margin: 36px 0 16px; }
.proof-prose p { font-size: 16px; line-height: 1.75; }

.proof-side {
  background: var(--navy);
  color: var(--bone);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  align-self: start;
  position: sticky;
  top: 100px;
}
.proof-side h3 { color: var(--bone); margin-bottom: 24px; }
.proof-side ul { list-style: none; padding: 0; margin: 0; }
.proof-side li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.proof-side li:last-child { border-bottom: none; }
.proof-side svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  margin-top: 2px;
}
.proof-side strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 4px;
}
.proof-side span { font-size: 13px; color: var(--bone-dim); line-height: 1.5; display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s, border-color 0.25s;
}
.review:hover { transform: translateY(-4px); border-color: var(--red); }

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.review-stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.review-source-dot {
  width: 7px; height: 7px;
  background: #4285f4;
  border-radius: 50%;
}

.review-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--bone);
  line-height: 1.25;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bone-dim);
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
}

.review-loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding: 26px 30px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reviews-summary-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.reviews-summary-stars {
  color: var(--red);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.reviews-summary-label {
  font-size: 14px;
  color: var(--bone-dim);
}
.reviews-summary-label strong { display: block; color: var(--bone); font-family: var(--display); letter-spacing: 0.03em; }

/* ============================================================
   SERVICE AREA
   ============================================================ */

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 1000px) {
  .area-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
}

.area-prose h2 { margin-bottom: 24px; }
.area-prose p { font-size: 16px; line-height: 1.7; color: var(--bone-2); margin-bottom: 20px; }
.area-prose p strong { color: var(--bone); }

.area-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 600px) {
  .area-list { grid-template-columns: repeat(3, 1fr); }
}

.area-list a {
  display: block;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.area-list a:hover { background: var(--red); color: var(--bone); border-color: var(--red); }

.area-map {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}
.area-map svg { width: 100%; height: 100%; }
.area-map-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.area-map-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 14px;
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */

.quote-section { background: var(--off); color: var(--navy); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

@media (min-width: 1000px) {
  .quote-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; }
}

.quote-prose h2 { color: var(--navy); margin-bottom: 24px; }
.quote-prose p { font-size: 17px; line-height: 1.7; color: #2a3a4a; margin-bottom: 28px; }
.quote-prose .eyebrow { color: var(--red); }

.quote-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quote-perks-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--navy);
}
.quote-perks li svg {
  width: 20px; height: 20px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  flex-shrink: 0;
}

.quote-form {
  background: var(--bone);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

@media (min-width: 600px) {
  .quote-form { padding: 36px 36px; }
}

.quote-form-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.quote-form-head h3 { color: var(--navy); margin-bottom: 6px; }
.quote-form-head p { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #5b6675; margin: 0; }

.form-row { margin-bottom: 18px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 500px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  color: var(--navy);
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-field textarea { resize: vertical; min-height: 80px; font-family: inherit; }

.form-submit { width: 100%; margin-top: 6px; font-size: 17px; padding: 18px; }

.form-disclaimer {
  font-size: 12px;
  color: #6a7585;
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 { color: var(--red); margin-bottom: 12px; }
.form-success p { font-size: 16px; color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1000px) {
  .faq-grid { grid-template-columns: 1fr 1.3fr; gap: 70px; }
}

.faq-side h2 { color: var(--bone); margin-bottom: 24px; }
.faq-side p { color: var(--bone-2); line-height: 1.7; margin-bottom: 28px; }

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary, .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bone);
  cursor: pointer;
  text-align: left;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--red); }

.faq-item .toggle, .faq-q-icon {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  transition: transform 0.25s;
}
.faq-item[open] .toggle { transform: rotate(45deg); }

.faq-a {
  padding: 0 22px 22px;
  color: var(--bone-2);
  line-height: 1.65;
  font-size: 14.5px;
}
.faq-a strong { color: var(--bone); }

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  background: var(--red);
  color: var(--bone);
  padding: 80px 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 900px) {
  .final-cta-inner { grid-template-columns: 1.4fr 1fr; padding: 0 40px; }
}

.final-cta h2 { color: var(--bone); margin-bottom: 18px; }
.final-cta p { color: rgba(246,244,239,0.9); font-size: 16px; margin-bottom: 8px; }
.final-cta p:last-of-type { margin-bottom: 0; }

.final-cta-phone {
  text-align: center;
  padding: 30px;
  background: rgba(0,0,0,0.18);
  border: 2px dashed rgba(246,244,239,0.4);
  border-radius: var(--radius);
}

.final-cta-phone-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.85);
  margin-bottom: 10px;
}

.final-cta-phone-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.final-cta-phone-num:hover { color: var(--navy); }

.final-cta-phone-sub {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.75);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--navy-deep);
  color: var(--bone);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
}

.footer-brand { max-width: 380px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--bone-dim); margin-top: 16px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 14px;
  color: var(--bone-dim);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--red); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.footer-contact-item strong { color: var(--bone); display: block; font-weight: 600; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
}
.footer-bottom a { color: var(--bone-dim); }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumbs {
  background: var(--navy-deep);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .breadcrumbs-inner { padding: 0 40px; }
}

.breadcrumbs-inner a { color: var(--bone-dim); transition: color 0.15s; }
.breadcrumbs-inner a:hover { color: var(--red); }
.breadcrumbs-inner .sep { color: var(--bone-dim); opacity: 0.5; }
.breadcrumbs-inner .current { color: var(--red); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */

.page-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

@media (min-width: 900px) {
  .page-hero { padding: 80px 0 90px; }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(220, 31, 31, 0.1), transparent 50%);
  z-index: 0;
}

.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(40px, 7vw, 84px); }
.page-hero-lead { font-size: 17px; line-height: 1.6; color: var(--bone-2); max-width: 640px; margin-bottom: 28px; }
.page-hero-lead strong { color: var(--bone); }
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   SUBPAGE CONTENT (service / city pages)
   ============================================================ */

.content-section {
  padding: 70px 0;
  background: var(--off);
  color: var(--navy);
}

@media (min-width: 900px) {
  .content-section { padding: 90px 0; }
}

.content-section h2, .content-section h3, .content-section h4 { color: var(--navy); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1000px) {
  .content-grid { grid-template-columns: 1.6fr 1fr; gap: 60px; }
}

.content-prose h2 { margin-bottom: 20px; }
.content-prose h3 { margin: 36px 0 14px; font-size: clamp(22px, 2.8vw, 30px); }
.content-prose p { font-size: 16px; line-height: 1.75; color: #2a3a4a; margin-bottom: 18px; }
.content-prose strong { color: var(--navy); font-weight: 700; }
.content-prose ul { padding: 0; margin: 18px 0 24px; list-style: none; }
.content-prose ul li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #2a3a4a;
}
.content-prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
}

.content-side {
  background: var(--navy);
  color: var(--bone);
  padding: 30px 28px;
  border-radius: var(--radius);
  align-self: start;
}

@media (min-width: 1000px) {
  .content-side { position: sticky; top: 100px; }
}

.content-side h3 { color: var(--bone); margin-bottom: 16px; font-size: 22px; }
.content-side p { color: var(--bone-2); font-size: 14px; margin-bottom: 20px; line-height: 1.65; }
.content-side .btn { width: 100%; margin-bottom: 10px; }

.content-side-phone {
  display: block;
  text-align: center;
  padding: 18px;
  background: rgba(220,31,31,0.1);
  border: 1px solid rgba(220,31,31,0.3);
  border-radius: var(--radius);
  margin-top: 8px;
}
.content-side-phone-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.content-side-phone-num {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--bone);
}

/* ============================================================
   RELATED GRID
   ============================================================ */

.related-section {
  padding: 70px 0;
  background: var(--navy);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.related-card {
  display: block;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.25s, border-color 0.25s;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--red); }

.related-card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.related-card h4 { color: var(--bone); margin-bottom: 8px; font-size: 18px; line-height: 1.2; }
.related-card p { color: var(--bone-dim); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }

.related-card-link {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related-card-link::after { content: '→'; transition: transform 0.2s; }
.related-card:hover .related-card-link::after { transform: translateX(4px); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 700px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  padding: 32px 26px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 700;
  color: var(--red);
  line-height: 0.9;
  margin-bottom: 14px;
}

.process-step h4 { color: var(--bone); margin-bottom: 10px; font-size: 19px; }
.process-step p { color: var(--bone-dim); font-size: 14px; line-height: 1.6; }

/* ============================================================
   VALUES GRID (about page)
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 700px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value {
  padding: 28px 24px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
}
.value h4 { color: var(--bone); margin-bottom: 10px; font-size: 19px; }
.value p { color: var(--bone-dim); font-size: 14px; line-height: 1.6; margin: 0; }

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  background: var(--red);
  padding: 50px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 700px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.85);
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 50px;
}

@media (min-width: 600px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
  text-align: center;
  border-radius: var(--radius);
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateY(-4px); }

.contact-card-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220,31,31,0.12);
  border-radius: 50%;
  color: var(--red);
}
.contact-card-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }

.contact-card h4 { color: var(--bone); margin-bottom: 6px; font-size: 17px; }
.contact-card p { color: var(--bone-dim); font-size: 13px; line-height: 1.5; margin: 0; }
.contact-card a { color: var(--red); font-weight: 600; }
.contact-card a:hover { color: var(--bone); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   PHONE TEXT FILLER (CSS variable injection)
   ============================================================ */

.phone-text::after { content: var(--phone-display); }
