/* ═══════════════════════════════════════════════════
   TRISTATE HOME CONSULTING GROUP — SHARED STYLESHEET
   Design: Luxury roofing meets Western PA blue-collar craft
   Fonts: DM Serif Display (display) + Outfit (body)
   ═══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy: #1B3A5F;
  --orange: #FF6B35;
  --white: #FFFFFF;
  --dark: #0D1F33;
  --storm: #0A1628;
  --gray: #F5F5F0;
  --muted: #6B7280;
  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh-md: 0 8px 32px rgba(0,0,0,.12);
  --sh-lg: 0 16px 48px rgba(0,0,0,.20);
  --r: 6px;
  --t: all .3s ease;
  --ts: all .6s ease;
  --fd: 'DM Serif Display', serif;
  --fb: 'Outfit', sans-serif;
  --max: 1240px;
  --nav-h: 80px;
  --orange-alpha: rgba(255,107,53,.15);
  --navy-alpha: rgba(27,58,95,.15);
  --white-alpha-10: rgba(255,255,255,.10);
  --white-alpha-20: rgba(255,255,255,.20);
}

/* ── RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--fd); line-height: 1.1; }
p { line-height: 1.72; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; left: -9999px; top: 16px; z-index: 9999;
  background: var(--orange); color: var(--white);
  padding: 10px 20px; font-weight: 700; border-radius: var(--r);
  font-family: var(--fb);
}
.skip-link:focus { left: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── LAYOUT ── */
.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(100% - 32px, var(--max)); } }
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 120px 0; }
@media (max-width: 768px) { .section-pad { padding: 72px 0; } .section-pad-lg { padding: 88px 0; } }
@media (max-width: 480px) { .section-pad { padding: 56px 0; } .section-pad-lg { padding: 64px 0; } }

/* ── DIAGONAL CLIP PATHS ── */
.clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); }
.clip-top { clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%); }
.clip-both { clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%); }
@media (max-width: 768px) {
  .clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); }
  .clip-top { clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%); }
  .clip-both { clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%); }
}

/* ── GRAIN TEXTURE SVG ── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

/* ── RAIN ANIMATION ── */
@keyframes rain-move {
  0% { background-position: 0 0; }
  100% { background-position: 60px 120px; }
}
.rain-bg {
  position: relative;
  overflow: hidden;
}
.rain-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,.025) 6px,
    rgba(255,255,255,.025) 7px
  );
  background-size: 80px 80px;
  animation: rain-move 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.rain-bg > * { position: relative; z-index: 2; }

/* ── TYPOGRAPHY SCALE ── */
.eyebrow {
  font-family: var(--fb);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow.center::before { display: none; }
.eyebrow.center { justify-content: center; }

h1.display { font-size: clamp(2.75rem, 7vw, 5.5rem); font-weight: 400; letter-spacing: -.02em; }
h2.display { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 400; letter-spacing: -.02em; }
h3.display { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; }
.lead-copy { font-size: 1.125rem; line-height: 1.75; color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--fb);
  font-size: .875rem; font-weight: 700; letter-spacing: .04em;
  border-radius: var(--r);
  transition: var(--t);
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: #e85a25; border-color: #e85a25; box-shadow: 0 8px 24px rgba(255,107,53,.35); transform: scale(1.02) brightness(1.05); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: scale(1.02); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: scale(1.02); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .8125rem; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 500;
  height: var(--nav-h);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}
.nav-logo img { height: 60px; width: auto; display: block; }
@media (max-width: 640px) { .nav-logo img { height: 48px; } }
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
@media (max-width: 1023px) { .nav-links { display: none; } }
.nav-links a {
  font-family: var(--fb); font-size: .8125rem; font-weight: 600;
  color: rgba(255,255,255,.85); padding: 8px 14px; border-radius: 4px;
  letter-spacing: .02em; transition: var(--t);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--fb); font-size: .875rem; font-weight: 700;
  color: var(--white); display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.nav-phone:hover { color: var(--orange); }
@media (max-width: 767px) { .nav-phone span { display: none; } }
.nav-phone svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--r);
}
@media (max-width: 1023px) { .nav-hamburger { display: flex; } }
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-hamburger[aria-expanded=true] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded=true] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0;
  z-index: 499; background: var(--navy);
  display: flex; flex-direction: column; gap: 4px;
  padding: 32px 28px 40px;
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
@media (min-width: 1024px) { .nav-mobile { display: none; } }
.nav-mobile a {
  font-family: var(--fd); font-size: 2rem; font-weight: 400;
  color: var(--white); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s, padding-left .2s;
}
.nav-mobile a:hover { color: var(--orange); padding-left: 8px; }
.nav-mobile .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 120px;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,.92) 0%,
    rgba(13,31,51,.85) 40%,
    rgba(13,31,51,.6) 65%,
    transparent 100%
  );
}
/* Grain on hero */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.12); border: 1px solid rgba(255,107,53,.3);
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 28px;
  font-family: var(--fb); font-size: .6875rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  opacity: 0; animation: stagger-in .6s ease forwards;
}
@keyframes stagger-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  color: var(--white); font-size: clamp(3rem, 7.5vw, 5.75rem);
  font-weight: 400; letter-spacing: -.025em; line-height: 1.0;
  margin-bottom: 24px;
  opacity: 0; animation: stagger-in .6s ease .15s forwards;
}
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub {
  font-family: var(--fb); font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400; color: rgba(255,255,255,.75);
  margin-bottom: 32px; line-height: 1.65;
  opacity: 0; animation: stagger-in .6s ease .3s forwards;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px;
  opacity: 0; animation: stagger-in .6s ease .45s forwards;
}
/* Storm badge */
.storm-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: 100px;
  font-family: var(--fb); font-size: .8125rem; font-weight: 700;
  letter-spacing: .05em;
  opacity: 0; animation: stagger-in .6s ease .6s forwards, pulse-badge 2.5s ease 1s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,.5); }
  50% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: var(--nav-h);
  z-index: 4; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,.4);
  font-family: var(--fb); font-size: .5625rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
@media (max-width: 768px) { .scroll-indicator { display: none; } }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--orange) 50%, transparent);
  animation: scroll-pulse 2.5s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.5) translateY(-8px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--orange);
  margin-top: -3px;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: stretch;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  font-family: var(--fb); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); transition: opacity .2s;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { opacity: .8; }
.trust-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }
@media (max-width: 767px) {
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); justify-content: center; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
}

/* ── STORM DAMAGE BANNER ── */
.storm-section {
  background: var(--storm);
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.storm-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -60deg,
    transparent, transparent 6px,
    rgba(255,255,255,.018) 6px,
    rgba(255,255,255,.018) 7px
  );
  background-size: 80px 80px;
  animation: rain-move 7s linear infinite;
  pointer-events: none;
}
.storm-inner { position: relative; z-index: 2; }
.storm-layout {
  display: grid; gap: 60px; align-items: center;
}
@media (min-width: 900px) { .storm-layout { grid-template-columns: 1fr 1fr; gap: 80px; } }
.storm-left h2 { color: var(--white); margin-bottom: 20px; }
.storm-left .storm-desc { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.0625rem; }
.storm-stats {
  display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.storm-stat { }
.storm-stat .stat-num {
  font-family: var(--fd); font-size: 2.75rem; color: var(--orange);
  line-height: 1; display: block;
}
.storm-stat .stat-label {
  font-family: var(--fb); font-size: .6875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: 4px;
}
.storm-visual {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid rgba(255,107,53,.25);
}
.storm-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── SERVICES SECTION ── */
.services-section { background: var(--gray); }
.services-intro { margin-bottom: 56px; }
.services-intro-cards {
  display: grid; gap: 0;
  border: 2px solid rgba(27,58,95,.15);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .services-intro-cards { grid-template-columns: 1fr 1fr; } }
.intro-card {
  padding: 48px 44px;
  position: relative;
}
@media (max-width: 640px) { .intro-card { padding: 36px 28px; } }
.intro-card.retail { background: var(--navy); }
.intro-card.insurance { background: var(--orange); }
.intro-card .card-icon {
  width: 56px; height: 56px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.intro-card .card-icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.intro-card h3 { font-family: var(--fd); color: var(--white); font-size: 1.75rem; margin-bottom: 16px; }
.intro-card p { color: rgba(255,255,255,.85); line-height: 1.7; }

/* Service grid */
.svc-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--white); border-radius: var(--r);
  padding: 28px 24px; position: relative;
  border: 1px solid rgba(27,58,95,.1);
  transition: var(--t);
  display: flex; flex-direction: column;
  text-decoration: none;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-left: 3px solid var(--orange);
  box-shadow: var(--sh-lg);
}
.svc-card .svc-icon {
  width: 44px; height: 44px;
  background: var(--orange-alpha);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: var(--t);
}
.svc-card:hover .svc-icon { background: var(--orange); }
.svc-card .svc-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.75; }
.svc-card:hover .svc-icon svg { stroke: var(--white); }
.svc-card h3 {
  font-family: var(--fb); font-size: .9375rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px; line-height: 1.3;
}
.svc-card p { font-size: .8125rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.svc-badge {
  display: inline-block; font-size: .625rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(255,107,53,.1); color: var(--orange);
  border: 1px solid rgba(255,107,53,.2);
  margin-bottom: 12px;
}
.svc-card .svc-link {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--orange); text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 8px; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--navy); position: relative; }
.why-layout {
  display: grid; gap: 0; align-items: stretch;
}
@media (min-width: 900px) { .why-layout { grid-template-columns: 55fr 45fr; } }
.why-photo {
  position: relative; overflow: hidden; min-height: 500px;
}
@media (max-width: 899px) { .why-photo { min-height: 360px; } }
.why-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: rotate(-1deg) scale(1.05);
  transition: transform .6s ease;
}
.why-photo:hover img { transform: rotate(0) scale(1.08); }
.why-photo-border {
  position: absolute; inset: 20px;
  border: 2px solid var(--orange);
  pointer-events: none; z-index: 2;
  border-radius: var(--r);
}
.why-content {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 640px) { .why-content { padding: 56px 28px; } }
.why-content h2 { color: var(--white); margin-bottom: 40px; }
.why-props { display: flex; flex-direction: column; gap: 24px; }
.why-prop {
  display: flex; align-items: flex-start; gap: 16px;
}
.why-prop-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-prop-icon svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2.5; }
.why-prop h4 {
  font-family: var(--fb); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.why-prop p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ── GALLERY ── */
.gallery-section { background: var(--white); }
.gallery-grid {
  columns: 3; column-gap: 12px;
}
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.gallery-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden;
  border-radius: var(--r); cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-height: 90vh; max-width: 90vw; object-fit: contain; border-radius: var(--r); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,.1); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); cursor: pointer;
  background: rgba(255,255,255,.1); border: none;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .875rem; font-family: var(--fb);
}

/* ── SERVICE AREAS ── */
.areas-section { background: var(--gray); }
.areas-layout {
  display: grid; gap: 48px;
}
@media (min-width: 768px) { .areas-layout { grid-template-columns: 1fr 1fr; } }
.area-state-label {
  font-family: var(--fd); font-size: 1.75rem; color: var(--navy);
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
}
.area-county { margin-bottom: 24px; }
.area-county-name {
  font-family: var(--fb); font-size: .8125rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.area-cities {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.area-city {
  font-family: var(--fb); font-size: .8125rem;
  color: var(--dark); padding: 4px 12px;
  background: var(--white); border: 1px solid rgba(27,58,95,.15);
  border-radius: 100px; transition: var(--t);
  text-decoration: none;
}
.area-city:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.areas-note {
  margin-top: 40px; padding: 20px 24px;
  background: var(--white); border-radius: var(--r);
  border-left: 4px solid var(--orange);
  font-size: .9375rem; color: var(--dark);
}

/* ── REVIEWS ── */
.reviews-section { background: var(--navy); }
.reviews-grid {
  display: grid; gap: 24px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
  box-shadow: var(--sh-md);
  transition: var(--t);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.review-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; fill: var(--orange); }
.review-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fb); font-size: .6875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #16a34a; background: #f0fdf4; border: 1px solid #bbf7d0;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 16px;
}
.review-badge svg { width: 12px; height: 12px; fill: #16a34a; }
.review-card blockquote {
  font-size: .9375rem; color: var(--dark); line-height: 1.75;
  margin-bottom: 20px;
}
.review-card cite {
  font-family: var(--fb); font-size: .8125rem; font-weight: 700;
  color: var(--muted); font-style: normal;
  text-transform: uppercase; letter-spacing: .07em;
}
.review-card .review-platform {
  font-size: .75rem; color: var(--muted); font-weight: 400;
  text-transform: none; letter-spacing: 0; display: block; margin-top: 2px;
}

/* ── INSURANCE DEEP DIVE ── */
.insurance-section { background: var(--storm); position: relative; overflow: hidden; }
.insurance-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -60deg,
    transparent, transparent 6px,
    rgba(255,255,255,.02) 6px,
    rgba(255,255,255,.02) 7px
  );
  background-size: 80px 80px;
  animation: rain-move 9s linear infinite;
  pointer-events: none;
}
.insurance-inner { position: relative; z-index: 2; }
.insurance-header { text-align: center; max-width: 800px; margin: 0 auto 72px; }
.insurance-header h2 { color: var(--white); margin-bottom: 20px; }
.insurance-header p { color: rgba(255,255,255,.7); font-size: 1.0625rem; }
/* 3-step process */
.process-steps {
  display: grid; gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
}
.process-step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 36px 28px;
  text-align: center;
}
.process-num {
  width: 64px; height: 64px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--fd); font-size: 1.5rem; color: var(--white);
}
.process-step-icon {
  width: 40px; height: 40px; margin: 0 auto 16px;
}
.process-step-icon svg { width: 40px; height: 40px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.process-step h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 12px; }
.process-step p { color: rgba(255,255,255,.65); font-size: .9rem; }
.process-connector {
  display: none;
}
@media (min-width: 900px) {
  .process-connector {
    display: flex; align-items: center; justify-content: center;
    margin-top: 32px; padding: 0 8px;
  }
  .process-connector span {
    display: block; width: 48px; height: 2px;
    border-top: 2px dashed rgba(255,107,53,.5);
  }
}
/* Stats bar */
.stats-bar {
  background: var(--orange);
  border-radius: var(--r);
  display: grid; gap: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(3, 1fr); } }
.stats-bar-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stats-bar-item:last-child { border-right: none; }
@media (max-width: 767px) { .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); } }
.stats-bar-item .stat-n {
  font-family: var(--fd); font-size: 2.5rem; color: var(--white);
  display: block; line-height: 1;
}
.stats-bar-item .stat-l {
  font-family: var(--fb); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-top: 6px;
}
/* Urgency box */
.urgency-box {
  border: 2px solid var(--orange);
  border-radius: var(--r); padding: 28px 32px;
  background: rgba(255,107,53,.08);
  margin-bottom: 40px;
}
.urgency-box p { color: rgba(255,255,255,.85); font-size: 1rem; }
.urgency-box strong { color: var(--orange); }

/* ── FAQ ── */
.faq-section { background: var(--gray); }
.faq-accordion { margin-top: 40px; }
.faq-item { border-bottom: 1px solid rgba(27,58,95,.15); }
.faq-question {
  width: 100%; text-align: left;
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
  font-family: var(--fb); font-size: 1rem; font-weight: 600;
  color: var(--dark); cursor: pointer; background: none; border: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(27,58,95,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.faq-chevron svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2.5; transition: transform .3s; }
.faq-item.open .faq-chevron { background: var(--orange); }
.faq-item.open .faq-chevron svg { stroke: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding-bottom: 24px; color: var(--muted); line-height: 1.75; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--dark); }
.contact-layout { display: grid; gap: 60px; align-items: start; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1.2fr; gap: 80px; } }
.contact-info h2 { color: var(--white); margin-bottom: 24px; }
.contact-info p { color: rgba(255,255,255,.65); margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fb); font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 16px;
  text-decoration: none; transition: color .2s;
}
.contact-detail:hover { color: var(--orange); }
.contact-detail svg { width: 20px; height: 20px; fill: var(--orange); flex-shrink: 0; }
.contact-tel {
  font-family: var(--fd); font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--orange); display: block; margin-bottom: 8px;
  text-decoration: none; transition: opacity .2s;
}
.contact-tel:hover { opacity: .85; }
.response-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3);
  color: #4ade80; padding: 8px 16px; border-radius: 100px;
  font-size: .8125rem; font-weight: 700; font-family: var(--fb);
  margin-top: 20px;
}

/* ── FORM ── */
.estimate-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); overflow: hidden;
}
.form-header {
  padding: 24px 28px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.form-header h3 { color: var(--white); font-family: var(--fb); font-size: 1.125rem; font-weight: 700; }
.form-header p { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: 4px; }
.form-body { padding: 28px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form-row.two { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--fb); font-size: .6875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  font-family: var(--fb); font-size: .9375rem;
  color: var(--white); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r);
  transition: var(--t);
  -webkit-appearance: none;
}
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF6B35' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-field select option { background: var(--dark); color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--orange); outline-offset: 2px;
  border-color: var(--orange); background: rgba(255,107,53,.06);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.25); }
.form-field textarea { resize: vertical; min-height: 100px; }
/* A2P Consent */
.a2p-block {
  padding: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(27,58,95,.2); border-radius: var(--r);
  margin-bottom: 20px;
}
.a2p-row { display: flex; gap: 12px; align-items: flex-start; }
.a2p-check {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; min-width: 22px;
  border: 2px solid rgba(255,255,255,.3); border-radius: 4px;
  background: transparent; cursor: pointer; position: relative;
  transition: all .2s; margin-top: 2px;
}
.a2p-check:checked { background: var(--orange); border-color: var(--orange); }
.a2p-check:checked::after {
  content: ''; position: absolute;
  left: 6px; top: 2px; width: 6px; height: 11px;
  border: 2px solid var(--white); border-top: none; border-left: none;
  transform: rotate(45deg);
}
.a2p-check:focus { outline: 2px solid var(--orange); outline-offset: 2px; }
.a2p-label {
  font-size: .8125rem; color: rgba(255,255,255,.6);
  line-height: 1.6; text-transform: none; letter-spacing: 0;
}
.a2p-label a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.a2p-error {
  display: none; color: #f87171;
  font-size: .8125rem; font-weight: 600; margin-top: 6px;
}
.a2p-error.visible { display: block; }
.form-submit { width: 100%; font-size: 1rem; padding: 16px; }
.form-legal {
  text-align: center; margin-top: 14px;
  font-size: .75rem; color: rgba(255,255,255,.35);
}
.form-legal a { color: rgba(255,107,53,.8); text-decoration: underline; }
/* GHL booking reveal */
.booking-wrap { display: none; }
.booking-wrap.visible { display: block; }
.booking-intro {
  color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 20px;
  text-align: center; font-weight: 600; font-family: var(--fb);
}
.booking-iframe {
  width: 100%; min-height: 620px; border: none; overflow: hidden;
  border-radius: var(--r); background: var(--white);
}
/* Insurance toggle */
.insurance-toggle { display: flex; gap: 12px; margin-top: 4px; }
.toggle-btn {
  flex: 1; padding: 10px; text-align: center;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--r);
  color: rgba(255,255,255,.5); font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: var(--t); background: transparent;
  font-family: var(--fb);
}
.toggle-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid {
  display: grid; gap: 48px; margin-bottom: 64px;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-tagline { color: rgba(255,255,255,.55); font-size: .9375rem; margin-bottom: 12px; max-width: 26ch; }
.footer-license { color: rgba(255,255,255,.35); font-size: .8125rem; }
.footer-col h4 {
  font-family: var(--fb); font-size: .6875rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.footer-col a, .footer-col address {
  display: block; font-size: .9rem; color: rgba(255,255,255,.6);
  margin-bottom: 10px; line-height: 1.5; font-style: normal;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-trust {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 0;
}
.footer-trust a {
  font-family: var(--fb); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; color: rgba(255,255,255,.5);
  text-transform: uppercase; transition: color .2s;
}
.footer-trust a:hover { color: var(--orange); }
.footer-trust-sep { color: rgba(255,255,255,.2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: .8125rem; color: rgba(255,255,255,.35);
  font-family: var(--fb);
}
.footer-bottom a { color: rgba(255,107,53,.6); transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.social-link:hover { border-color: var(--orange); background: var(--orange-alpha); transform: scale(1.05); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.social-link:hover svg { fill: var(--orange); }

/* ── STICKY MOBILE BAR ── */
.sticky-mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 490;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(100%); transition: transform .3s ease;
}
.sticky-mobile-bar.visible { transform: translateY(0); }
@media (min-width: 768px) { .sticky-mobile-bar { display: none !important; } }
.sticky-mobile-bar a {
  padding: 16px 12px; text-align: center;
  font-family: var(--fb); font-size: .875rem; font-weight: 700;
  letter-spacing: .05em;
}
.sticky-call { background: var(--navy); color: var(--white); border-right: 1px solid rgba(255,255,255,.1); }
.sticky-estimate { background: var(--orange); color: var(--white); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── SERVICE PAGE HERO (short) ── */
.page-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 0 80px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: overlay; pointer-events: none; z-index: 0;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fb); font-size: .8125rem; color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,107,53,.7); }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero-meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--fb); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--white);
}
.page-hero-tag.orange { background: rgba(255,107,53,.2); border-color: rgba(255,107,53,.4); color: var(--orange); }

/* ── SERVICE PAGE CONTENT ── */
.service-layout {
  display: grid; gap: 60px; align-items: start;
}
@media (min-width: 900px) { .service-layout { grid-template-columns: 1fr 340px; gap: 80px; } }
.service-content h2 { color: var(--dark); margin-bottom: 20px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.service-content h3 { color: var(--dark); margin: 36px 0 14px; font-size: 1.5rem; }
.service-content p { color: var(--muted); margin-bottom: 20px; }
.service-content ul { margin-bottom: 28px; }
.service-content li {
  padding: 8px 0 8px 24px; position: relative;
  color: var(--muted); border-bottom: 1px solid rgba(27,58,95,.08);
}
.service-content li:last-child { border-bottom: none; }
.service-content li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
}
.insurance-callout {
  background: rgba(27,58,95,.06); border: 1px solid rgba(27,58,95,.15);
  border-left: 4px solid var(--navy);
  border-radius: var(--r); padding: 24px 28px; margin: 28px 0;
}
.insurance-callout h4 {
  font-family: var(--fb); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.insurance-callout p { color: var(--muted); margin-bottom: 0; }
/* Sidebar */
.service-sidebar { }
.sidebar-card {
  background: var(--white); border: 1px solid rgba(27,58,95,.12);
  border-radius: var(--r); padding: 28px; margin-bottom: 20px;
  box-shadow: var(--sh-sm);
}
.sidebar-card h4 {
  font-family: var(--fb); font-size: .9375rem; font-weight: 700;
  color: var(--dark); margin-bottom: 16px;
}
.sidebar-services { display: flex; flex-direction: column; gap: 4px; }
.sidebar-services a {
  font-size: .875rem; color: var(--muted); padding: 8px 12px;
  border-radius: 4px; transition: var(--t);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-services a:hover { background: var(--orange-alpha); color: var(--orange); }
.sidebar-services a::before { content: '→'; color: var(--orange); }
.sidebar-cta-card {
  background: var(--navy); border-radius: var(--r); padding: 32px 28px;
  text-align: center;
}
.sidebar-cta-card h4 { color: var(--white); font-family: var(--fb); font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.sidebar-cta-card p { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 20px; }
.sidebar-cta-card .sidebar-phone {
  font-family: var(--fd); font-size: 1.5rem; color: var(--orange);
  display: block; margin-bottom: 16px; text-decoration: none;
}
.cred-list { margin-top: 20px; }
.cred-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.cred-item svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; }

/* ── SECTION DIVIDERS ── */
.divider-wave {
  height: 60px; overflow: hidden; position: relative;
  background: inherit;
}

/* ── PRIVACY / TERMS PAGES ── */
.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.legal-content h1 { color: var(--dark); margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3rem); }
.legal-content .updated { color: var(--muted); font-size: .875rem; margin-bottom: 48px; }
.legal-content h2 { color: var(--dark); font-size: 1.5rem; margin: 48px 0 16px; }
.legal-content p, .legal-content li { color: var(--muted); margin-bottom: 16px; }
.legal-content li { margin-left: 24px; list-style: disc; }
.legal-callout {
  border: 2px solid var(--orange); border-radius: var(--r);
  padding: 24px 28px; margin: 32px 0; background: rgba(255,107,53,.04);
}
.legal-callout.navy-border { border-color: var(--navy); background: rgba(27,58,95,.04); }
.legal-callout h3 { font-family: var(--fb); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.legal-callout.navy-border h3 { color: var(--navy); }
.legal-callout p { margin-bottom: 0; }

/* ── UTILITIES ── */
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-auto { margin-top: auto; }
