/* =========================================
   Connecticut Claims Adjusters, LLC
   Modern Professional Stylesheet
   ========================================= */

:root {
  --navy-900: #0a1e3a;
  --navy-800: #0f2a4f;
  --navy-700: #14356a;
  --navy-600: #1e4680;
  --navy-100: #e8eef7;
  --navy-50:  #f4f7fc;

  --gold-600: #b8893a;
  --gold-500: #d4a34a;
  --gold-400: #e3bc6b;
  --gold-100: #f9efd7;
  --gold-50:  #fdf8ec;

  --ink-900: #0b1320;
  --ink-700: #2a3447;
  --ink-500: #5a6577;
  --ink-400: #8793a6;
  --ink-300: #c0c8d5;
  --ink-200: #e2e7ef;
  --ink-100: #f1f4f9;
  --white:   #ffffff;

  --success: #1a8754;
  --danger:  #c0392b;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(10, 30, 58, 0.06), 0 1px 3px rgba(10, 30, 58, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 30, 58, 0.08), 0 2px 4px rgba(10, 30, 58, 0.04);
  --shadow-lg: 0 18px 40px rgba(10, 30, 58, 0.12), 0 4px 12px rgba(10, 30, 58, 0.06);
  --shadow-xl: 0 30px 60px rgba(10, 30, 58, 0.18);

  --container: 1200px;
  --container-narrow: 960px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.35s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
/* Prevent long strings (emails, URLs) from overflowing on mobile */
p, li, h1, h2, h3, h4, a, span, div { overflow-wrap: break-word; word-wrap: break-word; }
img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1.1em; }
ul { margin: 0 0 1em; padding: 0 0 0 1.2rem; }
li { margin-bottom: 0.35em; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 9vw, 120px) 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p.lede { font-size: 1.1rem; color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(212, 163, 74, 0.35);
}
.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 163, 74, 0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--ink-200);
}
.btn-secondary:hover {
  border-color: var(--navy-700);
  color: var(--navy-900);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-icon svg { width: 18px; height: 18px; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.86rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.utility-bar a { color: rgba(255,255,255,0.9); }
.utility-bar a:hover { color: var(--gold-400); }
.utility-bar .ubar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.utility-bar .ubar-item { display: inline-flex; align-items: center; gap: 6px; }
.utility-bar svg { width: 14px; height: 14px; color: var(--gold-400); }
.utility-bar .ubar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,163,74,0.15);
  color: var(--gold-400);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--navy-900); }
.brand-logo {
  width: 46px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
/* In the dark footer, invert the black logo to white */
.footer-brand .brand-logo {
  filter: invert(1) brightness(2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small { font-size: 0.72rem; font-weight: 500; color: var(--ink-500); letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.nav-links a:hover { color: var(--navy-900); background: var(--navy-50); }
.nav-links a.active { color: var(--navy-900); background: var(--navy-50); }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--navy-900);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  color: rgba(255,255,255,0.92);
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) 0 clamp(90px, 12vw, 160px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1100px 480px at 85% -10%, rgba(212,163,74,0.18), transparent 60%),
    radial-gradient(600px 320px at 10% 110%, rgba(30, 70, 128, 0.35), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-400); }
.hero .lede { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 560px;
}
.hero-stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat span { font-size: 0.86rem; color: rgba(255,255,255,0.7); }

.hero-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,163,74,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}
.hero-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.hero-card .sub { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 22px; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li svg { flex-shrink: 0; color: var(--gold-400); margin-top: 2px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy-50);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding: 28px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 56px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-item strong { color: var(--navy-900); font-weight: 700; }
.trust-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1.5px solid var(--gold-500);
  color: var(--gold-600);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.feature:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-50);
  color: var(--gold-600);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--ink-500); margin: 0; font-size: 0.95rem; }

/* ---------- Split / Two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { grid-template-columns: 0.95fr 1.05fr; }
.split-reverse .split-media { order: -1; }

.split-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.split-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-caption {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(10,30,58,0.88);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
  max-width: 72%;
}
.media-caption strong { color: var(--gold-400); display: block; margin-bottom: 2px; }

.check-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink-700);
}
.check-list li svg { color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,163,74,0.2), transparent 65%);
  border-radius: 50%;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0; max-width: 560px; }
.cta-band .btn-primary { box-shadow: 0 10px 30px rgba(212,163,74,0.4); }

/* ---------- Page header ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: clamp(70px, 9vw, 120px) 0 clamp(50px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(800px 320px at 50% -20%, rgba(212,163,74,0.18), transparent 60%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero h1 { color: var(--white); max-width: 820px; margin: 0 auto 18px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.12rem; max-width: 640px; margin: 0 auto; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: var(--gold-400); }

/* ---------- Services page specific ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--duration) var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy-600);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-card p { margin: 0; color: var(--ink-500); font-size: 0.94rem; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.step {
  position: relative;
  padding: 28px;
  background: var(--navy-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 14px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { margin: 0; font-size: 0.9rem; color: var(--ink-500); }

/* ---------- Team card ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.team-portrait {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: grid;
  place-items: center;
  color: var(--gold-400);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(212,163,74,0.25), transparent 55%);
}
.team-portrait svg { width: 58%; height: 58%; position: relative; z-index: 1; }
.team-info .eyebrow { margin-bottom: 6px; }
.team-info h2 { margin-bottom: 4px; }
.team-role {
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}
.team-creds { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; }
.team-creds span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-50);
  color: var(--navy-800);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- Testimonials / References ---------- */
.testimonial-feature {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-feature::before {
  content: "\201C";
  position: absolute;
  top: 20px; left: 40px;
  font-size: 12rem;
  color: var(--gold-400);
  opacity: 0.15;
  font-family: 'Plus Jakarta Sans', serif;
  line-height: 1;
}
.testimonial-feature p {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.5;
  position: relative;
}
.testimonial-feature cite {
  font-style: normal;
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.client-item {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--duration) var(--ease);
}
.client-item:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.client-item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.client-item .client-name { font-weight: 600; color: var(--navy-900); font-size: 0.92rem; }
.client-item .client-loc { color: var(--ink-400); font-size: 0.82rem; display: block; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,163,74,0.18), transparent 65%);
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: var(--white); margin-bottom: 8px; }
.contact-info .intro { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 32px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ci-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(212,163,74,0.15);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-list .ci-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
.contact-list .ci-value { color: var(--white); font-weight: 500; }
.contact-list a { color: var(--white); }
.contact-list a:hover { color: var(--gold-400); }

.hours-card { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
.hours-card h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; color: rgba(255,255,255,0.6); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.9);
}
.hours-row .day { font-weight: 500; }
.hours-row.closed .time { color: rgba(255,255,255,0.5); }

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(30, 70, 128, 0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.84rem; color: var(--ink-500); margin-top: -8px; margin-bottom: 22px; }
.form-submit { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer p { color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--white); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .licenses { font-size: 0.82rem; max-width: 600px; line-height: 1.5; }

/* ---------- Recoveries (claim results) ---------- */
.recoveries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 16px;
}
.recovery-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease);
}
.recovery-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.recovery-headline {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.recovery-numbers {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.recovery-figure {
  display: flex;
  flex-direction: column;
}
.recovery-figure .label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.recovery-figure .amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.recovery-figure.before .amount { color: rgba(255,255,255,0.62); text-decoration: line-through; text-decoration-color: rgba(192,57,43,0.7); text-decoration-thickness: 2px; }
.recovery-figure.after .amount { color: var(--gold-400); }
.recovery-arrow {
  color: var(--gold-400);
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.7;
}
.recovery-multiplier {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}
.recovery-image {
  background: var(--ink-100);
  padding: 24px;
  display: flex;
  justify-content: center;
}
.recovery-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-200);
}
.recovery-caption {
  padding: 18px 36px 24px;
  font-size: 0.94rem;
  color: var(--ink-500);
  border-top: 1px solid var(--ink-100);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.recovery-caption .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-50);
  color: var(--gold-600);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Damage gallery ---------- */
.damage-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.damage-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
}
.damage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.damage-tile:hover img { transform: scale(1.04); }
.damage-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,30,58,0.85) 100%);
  pointer-events: none;
}
.damage-tile .damage-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 1;
}
.damage-tile .damage-label small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Damage banner — used inside services hero or other accent strips */
.damage-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin: 0 0 48px;
  box-shadow: var(--shadow-lg);
}
.damage-banner img { width: 100%; height: 100%; object-fit: cover; }
.damage-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,30,58,0.78) 0%, rgba(10,30,58,0.35) 50%, rgba(10,30,58,0.05) 100%);
}
.damage-banner .banner-label {
  position: absolute;
  left: 36px;
  bottom: 28px;
  color: var(--white);
  z-index: 1;
  max-width: 60%;
}
.damage-banner .banner-label .eyebrow { color: var(--gold-400); margin-bottom: 8px; }
.damage-banner .banner-label h3 { color: var(--white); margin: 0; font-size: 1.4rem; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.alt-bg { background: var(--navy-50); }
.divider { height: 1px; background: var(--ink-200); margin: 48px 0; border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { order: 2; max-width: 520px; margin: 0 auto; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-media { order: 0; }
  .features, .services-grid, .client-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .damage-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .team-portrait { max-width: 260px; margin: 0 auto; }
  .cta-band { padding: 40px; }
  .contact-info, .contact-form { padding: 32px; }
  .testimonial-feature { padding: 40px 28px; }
  .testimonial-feature p { font-size: 1.15rem; }
}

@media (max-width: 768px) {
  /* Prevent iOS zoom-on-focus by ensuring form inputs are 16px min */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Utility bar gets compact */
  .utility-bar { font-size: 0.78rem; padding: 8px 0; }
  .utility-bar .container { gap: 8px; justify-content: center; }
  .utility-bar .ubar-left { gap: 10px 14px; justify-content: center; }
  .utility-bar svg { width: 12px; height: 12px; }
  .utility-bar .ubar-badge { padding: 2px 8px; font-size: 0.72rem; }

  /* Map height reduced on mobile */
  section iframe { height: 320px !important; }

  /* Testimonial feature decorative quote scaled down */
  .testimonial-feature::before { font-size: 7rem; top: 8px; left: 20px; }
}

@media (max-width: 680px) {
  /* Mobile nav */
  .nav { padding: 14px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--ink-200);
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .nav-links.open a { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 10px; }
  .nav-cta a { width: 100%; }

  /* Brand tightened */
  .brand-text small { display: none; }
  .brand { font-size: 0.95rem; gap: 10px; }
  .brand-logo { width: 40px; height: 38px; }

  /* Containers */
  .container, .container-narrow { padding: 0 18px; }

  /* Section padding */
  section { padding: 56px 0; }

  /* Grid collapses */
  .features, .services-grid, .client-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .damage-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Recovery card stacks the headline */
  .recovery-headline { padding: 22px 22px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .recovery-numbers { gap: 12px; }
  .recovery-figure .amount { font-size: 1.45rem; }
  .recovery-image { padding: 14px; }
  .recovery-caption { padding: 16px 22px 20px; font-size: 0.88rem; }
  .recovery-arrow { display: none; }

  /* Damage banner */
  .damage-banner { aspect-ratio: 16/10; }
  .damage-banner .banner-label { left: 18px; bottom: 16px; max-width: 75%; }
  .damage-banner .banner-label h3 { font-size: 1.05rem; }

  /* Hero */
  .hero { padding: 50px 0 70px; }
  .hero .lede { font-size: 1.02rem; margin-bottom: 24px; }
  .hero-cta { gap: 10px; width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 24px;
  }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-stat span { font-size: 0.74rem; line-height: 1.35; }
  .hero-card { padding: 24px 22px; }
  .hero-card h3 { font-size: 1.1rem; }
  .hero-card li { font-size: 0.9rem; padding: 10px 0; gap: 10px; }

  /* Trust strip — force clean 2x2 grid on mobile */
  .trust-strip { padding: 22px 0; }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
    justify-items: start;
    align-items: center;
  }
  .trust-item { font-size: 0.82rem; gap: 10px; width: 100%; }
  .trust-badge { width: 38px; height: 38px; font-size: 0.78rem; flex-shrink: 0; }

  /* Section heads */
  .section-head { margin-bottom: 40px; }
  .section-head p.lede { font-size: 1rem; }

  /* Cards */
  .feature { padding: 26px 22px; }
  .service-card { padding: 24px 22px; gap: 16px; }
  .service-card .icon { width: 44px; height: 44px; }
  .step { padding: 24px 22px; }

  /* CTA band */
  .cta-band {
    padding: 32px 22px;
    flex-direction: column;
    text-align: center;
    border-radius: var(--radius-lg);
  }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band > div:last-child { width: 100%; flex-direction: column; }
  .cta-band .btn { width: 100%; }

  /* Contact page */
  .contact-info, .contact-form { padding: 26px 22px; border-radius: var(--radius-lg); }
  .contact-info h3 { font-size: 1.15rem; }
  .contact-list li { padding: 12px 0; gap: 12px; }
  .contact-list .ci-icon { width: 34px; height: 34px; }
  .contact-list .ci-value { font-size: 0.94rem; }
  .hours-row { font-size: 0.9rem; }

  /* Forms */
  .form-group label { font-size: 0.82rem; }

  /* Team card */
  .team-card { padding: 28px 22px; border-radius: var(--radius-lg); }
  .team-portrait { max-width: 200px; }
  .team-creds { gap: 10px; }
  .team-creds span { font-size: 0.78rem; padding: 5px 12px; }

  /* Testimonial */
  .testimonial-feature {
    padding: 36px 22px;
    border-radius: var(--radius-lg);
  }
  .testimonial-feature p { font-size: 1.05rem; line-height: 1.5; }
  .testimonial-feature::before { font-size: 5rem; top: 4px; left: 14px; }

  /* Page hero */
  .page-hero { padding: 54px 0 40px; }
  .page-hero p { font-size: 1rem; }
  .breadcrumbs { margin-top: 18px; font-size: 0.82rem; }

  /* Utility bar — hide phone (it's in nav cta anyway), show minimal */
  .utility-bar .ubar-item span,
  .utility-bar .ubar-item:not(.ubar-badge) { font-size: 0.76rem; }

  /* Split media on mobile — compact translucent caption, bottom-left corner */
  .split-media { aspect-ratio: 16/10; border-radius: var(--radius-lg); }
  .media-caption {
    left: 12px;
    right: auto;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.72rem;
    line-height: 1.35;
    max-width: 60%;
    background: rgba(10, 30, 58, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .media-caption strong { font-size: 0.74rem; margin-bottom: 1px; }

  /* Footer cleanup */
  .site-footer { padding: 50px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom .licenses { font-size: 0.78rem; }

  /* Large buttons act naturally on mobile */
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }

  /* Client grid: make items slightly tighter */
  .client-item { padding: 14px 18px; }
}

@media (max-width: 420px) {
  /* Very small phones — tightest layout */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2.1rem; line-height: 1.15; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Stack hero stats into 1 col when really tight */
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .hero-stat strong { font-size: 1.25rem; }
  .hero-stat span { font-size: 0.7rem; }

  /* Hero CTAs stack for easier tapping */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  /* Utility bar: show only essentials */
  .utility-bar .ubar-left { font-size: 0.72rem; gap: 8px 12px; }
  .utility-bar .ubar-badge { display: none; }

  /* Tighten containers */
  .container, .container-narrow { padding: 0 14px; }

  /* Tighter feature/service cards */
  .feature { padding: 22px 18px; }
  .service-card { padding: 20px 18px; }

  /* Trust items stack to single column on very small phones */
  .trust-row { grid-template-columns: 1fr; gap: 12px; }
  .trust-item { font-size: 0.88rem; }

  /* Form inputs slightly tighter */
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; }

  /* Team card */
  .team-portrait { max-width: 160px; }
  .team-creds { gap: 8px; }
  .team-creds span { font-size: 0.74rem; padding: 4px 10px; }

  /* Testimonial */
  .testimonial-feature p { font-size: 0.98rem; }
}
