
:root {
  --red: #b31217;
  --red-dark: #8f0d11;
  --navy: #0f1722;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 34, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
iframe { width: 100%; border: 0; border-radius: 18px; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #111827;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.topbar-inner, .header-inner, .footer-bottom, .cta-band-inner, .page-hero-inner, .hero-grid, .content-grid, .two-col-layout, .split-panel {
  display: flex;
}
.topbar-inner {
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}
.topbar-right { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.topbar a:hover, .main-nav a:hover, .socials a:hover, .footer-links a:hover { color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(229,231,235,.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand { display: inline-flex; align-items: center; max-width: 300px; }
.brand img { width: 250px; height: auto; }
.main-nav { display: flex; gap: 24px; align-items: center; font-weight: 600; }
.main-nav a { color: #273244; position: relative; }
.main-nav a:hover { color: var(--red); }
.call-pill {
  display: inline-flex;
  flex-direction: column;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: var(--red-dark);
  font-size: 13px;
}
.call-pill strong { font-size: 16px; }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 22px;
}
.hero {
  padding: 96px 0 64px;
  background-size: cover;
  background-position: center;
}
.hero-home { min-height: 760px; display: flex; align-items: center; }
.hero-grid {
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-copy { color: #fff; max-width: 620px; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
.hero-copy h1, .page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero-copy p, .page-hero p { font-size: 18px; color: rgba(255,255,255,.86); max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-actions.compact { margin-top: 24px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.hero-trust span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #d61f26); color: #fff; box-shadow: 0 16px 34px rgba(179,18,23,.22); }
.btn-secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-light { background: #fff; color: var(--red-dark); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.42); color: #fff; }
.btn-block { width: 100%; }
.quote-card, .panel, .info-card, .light-card, .map-card {
  border-radius: var(--radius);
}
.quote-card {
  background: #fff;
  padding: 28px;
  width: min(420px, 100%);
  box-shadow: var(--shadow);
}
.quote-card h2, .panel h2, .section h2, .cta-band h2, .service-card h3, .faq-item h3 { margin-top: 0; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  font: inherit;
  color: var(--text);
}
.contact-form textarea { resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.section-red {
  background: linear-gradient(135deg, #a80f14 0%, #c6181f 100%);
  color: #fff;
}
.curve-section {
  border-top-right-radius: 90px;
}
.section-heading { margin-bottom: 26px; }
.section-heading.light h2, .section-heading.light .eyebrow { color: #fff; }
.text-red { color: var(--red); }
.content-grid {
  justify-content: space-between;
  gap: 48px;
}
.content-grid > * { flex: 1; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.cards-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .info-card {
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15,23,34,.08);
}
.light-card h3 a { color: var(--navy); }
.card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.card-actions a {
  color: var(--red-dark);
  font-weight: 700;
}
.split-panel {
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}
.feature-list { display: grid; gap: 16px; flex: 1; }
.feature-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
}
.cta-band {
  position: relative;
  background: linear-gradient(135deg, #a50f14 0%, #cb1f26 100%);
  color: #fff;
  padding: 40px 0;
}
.cta-band-inner {
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.two-col-layout {
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.align-start { align-items: flex-start; }
.contact-stack p { margin: 0 0 12px; }
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(15,23,34,.08);
  min-height: 440px;
  background: #fff;
}
.map-card iframe { min-height: 440px; }
.map-tall iframe { min-height: 520px; }
.page-hero {
  padding: 104px 0 42px;
  background: linear-gradient(180deg, #fff, #fbfbfd);
}
.page-hero-tight { padding-bottom: 20px; }
.page-hero-inner { flex-direction: column; align-items: flex-start; }
.page-hero p { color: var(--muted); }
.service-hero { border-bottom: 1px solid var(--line); }
.narrow { width: min(880px, calc(100% - 32px)); }
.content-block { margin-bottom: 34px; }
.content-block h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 10px; }
.faq-list { display: grid; gap: 16px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: #fff;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 16px 40px rgba(15,23,34,.06);
}
.form-panel, .contact-panel { flex: 1; }
.site-footer {
  background: #0f1722;
  color: rgba(255,255,255,.82);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 32px;
}
.footer-logo { width: 230px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.socials a {
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
}
.socials-dark a { border-color: var(--line); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bottom {
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom-links { display: flex; gap: 18px; }
@media (max-width: 1080px) {
  .main-nav, .call-pill { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header.is-open .main-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .hero-grid, .content-grid, .two-col-layout, .split-panel, .cta-band-inner { flex-direction: column; }
  .hero-home { min-height: auto; }
  .hero-copy, .quote-card { max-width: 100%; width: 100%; }
  .cards-grid, .cards-grid-3, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .curve-section { border-top-right-radius: 46px; }
  .hero-copy h1, .page-hero h1 { font-size: 36px; }
}
