
:root {
  --primary: #b8152f;
  --primary-dark: #8f1024;
  --secondary: #1b1f2a;
  --text: #242833;
  --muted: #636b78;
  --line: #e7e9ee;
  --surface: #ffffff;
  --surface-alt: #fff5f5;
  --bg: #fafbfc;
  --shadow: 0 20px 50px rgba(16, 22, 36, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
iframe { width: 100%; border: 0; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: #111521;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.topbar-inner, .nav-wrap, .footer-bottom-inner, .cta-banner-inner, .topbar-right {
  display: flex;
  align-items: center;
}
.topbar-inner {
  justify-content: space-between;
  padding: .8rem 0;
  gap: 1rem;
}
.topbar-right { gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 21, 31, 0.06);
}
.nav-wrap {
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}
.brand img { height: 58px; width: auto; object-fit: contain; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 600;
}
.main-nav a:hover { color: var(--primary); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .95rem 1.35rem;
  font-weight: 700;
  transition: .25s ease;
}
.header-cta, .btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(184, 21, 47, 0.22);
}
.header-cta:hover, .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); }
.btn-light {
  background: #fff;
  color: var(--secondary);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-sm { padding: .8rem 1.1rem; font-size: .95rem; }
.btn-block { width: 100%; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.7rem;
}
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16,17,25,.82) 0%, rgba(16,17,25,.65) 48%, rgba(16,17,25,.45) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(184,21,47,.35), transparent 30%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  min-height: 720px;
  align-items: center;
  padding: 4.5rem 0;
}
.eyebrow, .section-kicker {
  display: inline-block;
  color: #ffd7de;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
}
.page-hero .eyebrow, .page-hero .section-kicker { color: #ffe0e4; }
.section-kicker {
  background: rgba(184, 21, 47, 0.08);
  color: var(--primary);
  border: 1px solid rgba(184, 21, 47, 0.12);
}
.section-kicker.light {
  background: rgba(255,255,255,.12);
  color: #ffe4e8;
  border-color: rgba(255,255,255,.18);
}
.hero h1, .page-hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero p, .page-hero p { font-size: 1.06rem; max-width: 680px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0 1.5rem; }
.hero-highlights {
  list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .9rem;
}
.hero-highlights li {
  position: relative; padding-left: 1.6rem; color: rgba(255,255,255,.88);
}
.hero-highlights li::before {
  content: '•'; position: absolute; left: .3rem; color: #ffb0bc; font-weight: 800;
}
.hero-form-card, .highlight-box, .info-panel, .contact-details-panel {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.hero-form-card h2, .highlight-box h3, .info-panel h3, .contact-details-panel h2 { margin-top: 0; }
.lead-form { display: grid; gap: 1rem; }
.lead-form label span { display: block; margin-bottom: .45rem; font-weight: 600; }
.lead-form input, .lead-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: .95rem 1rem; font: inherit; background: #fff;
}
.lead-form textarea { min-height: 130px; resize: vertical; }
.section { padding: 5.5rem 0; }
.section-muted { background: #f3f5f8; }
.section-accent {
  background: linear-gradient(135deg, #b8152f, #8d1025);
  color: #fff;
}
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.section-heading h2, .split-section h2, .map-grid h2, .cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.14; margin: .8rem 0 1rem; }
.split-section, .map-grid, .contact-page-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
}
.info-list, .footer-list, .check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-list li, .hero-highlights li, .info-list li { padding-left: 1.5rem; position: relative; }
.check-list li::before, .info-list li::before {
  content: '✓'; position: absolute; left: 0; top: .05rem; font-weight: 800; color: var(--primary);
}
.service-grid, .benefits-grid, .service-overview-grid, .contact-cards {
  display: grid;
  gap: 1.5rem;
}
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.service-pill {
  display: inline-flex; background: rgba(255,255,255,.14); color: #ffe7ea; padding: .35rem .7rem; border-radius: 999px; font-size: .85rem; font-weight: 700;
}
.service-card h3, .service-overview-content h3, .benefits-grid h3 { margin: .9rem 0 .6rem; }
.service-card p { color: rgba(255,255,255,.84); }
.service-card-actions {
  display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1rem;
}
.text-link { color: #fff; font-weight: 700; }
.text-link.external { color: #ffd6dc; }
.benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefits-grid article, .service-overview-card {
  background: #fff; border-radius: var(--radius-sm); padding: 1.5rem; box-shadow: 0 16px 36px rgba(18, 21, 31, 0.08);
}
.cta-banner {
  background: linear-gradient(90deg, #ffe9ec, #ffd8df);
  color: var(--secondary);
}
.cta-banner-inner { justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cta-banner .section-kicker { margin-bottom: .75rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.map-grid { align-items: center; }
.map-embed iframe { min-height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-embed.full iframe { min-height: 520px; }
.contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.5rem; }
.contact-card {
  display: flex; flex-direction: column; gap: .35rem; background: #fff6f7; padding: 1rem 1.1rem; border-radius: 18px; border: 1px solid #ffd7dd;
}
.contact-card.white {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.page-hero {
  position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, #171b26, #2a1020 65%, #b8152f);
}
.page-hero.small { padding: 5rem 0 4rem; }
.page-hero .container { position: relative; z-index: 1; }
.service-page-hero {
  background:
    linear-gradient(90deg, rgba(12,15,21,.85), rgba(27,31,42,.62)),
    var(--hero-image) center/cover no-repeat;
  padding: 6rem 0 5rem;
}
.service-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-overview-card { padding: 0; overflow: hidden; }
.service-overview-image { min-height: 230px; background-size: cover; background-position: center; }
.service-overview-content { padding: 1.4rem; }
.socials, .social-stack {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.socials a, .social-stack a {
  padding: .65rem .85rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
}
.social-stack a {
  background: #fff6f7; border-color: #ffd9df;
}
.site-footer {
  background: #111521; color: rgba(255,255,255,.8); padding-top: 4rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .9fr 1fr; gap: 1.8rem;
}
.footer-logo { max-width: 240px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer h3 { color: #fff; }
.footer-list a:hover, .socials a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner { justify-content: space-between; gap: 1rem; padding: 1.2rem 0; flex-wrap: wrap; }
.contact-list li::before { color: #ffb3be; }

@media (max-width: 1080px) {
  .hero-grid, .split-section, .map-grid, .contact-page-grid, .footer-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid, .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); display: none; flex-direction: column; align-items: flex-start;
    background: #fff; border-radius: 18px; padding: 1rem; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero-grid, .split-section, .map-grid, .contact-page-grid, .footer-grid, .service-grid, .service-overview-grid { grid-template-columns: 1fr; }
  .hero { background-position: center right; }
  .hero-grid { min-height: auto; padding: 4rem 0; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .topbar-right { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 1.2rem)); }
  .section { padding: 4rem 0; }
  .hero h1, .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-form-card, .highlight-box, .info-panel, .contact-details-panel, .service-card, .benefits-grid article { padding: 1.2rem; }
}
