:root {
  --red: #b71924;
  --red-dark: #8d121b;
  --ink: #111318;
  --muted: #59616d;
  --line: #eceff3;
  --paper: #ffffff;
  --soft: #f7f4f2;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(17, 19, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--red); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--red-dark); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  border: 2px solid var(--red);
}
.skip-link:focus { left: 12px; }

.elementor-location-header,
.elementor-location-footer {
  display: none !important;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(840px, calc(100% - 40px)); }

.alert-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .55rem 1rem;
  color: #fff;
  background: var(--red);
  font-size: .94rem;
  font-weight: 700;
}
.alert-bar a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(160%) blur(10px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { display: block; width: min(286px, 64vw); }
.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  display: inline-flex;
  padding: .7rem .9rem;
  color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: #fff;
  background: var(--red);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: .75rem 1rem;
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1b20 0%, #421116 52%, #b71924 100%);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.45), transparent 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: 2rem;
  align-items: center;
  min-height: 660px;
  padding: 72px 0;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--red);
  font-size: .83rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero .eyebrow,
.cta .eyebrow { color: #ffd6da; }
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.9rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.lead {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero-actions,
.cta-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  border: 2px solid transparent;
}
.button.primary { color: #fff; background: var(--red); }
.button.secondary { color: #fff; border-color: rgba(255,255,255,.55); }
.button.light { color: var(--red); background: #fff; }
.button.outline-light { color: #fff; border-color: rgba(255,255,255,.75); }
.button:hover { transform: translateY(-1px); }

.service-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.service-card h2 { font-size: 1.65rem; }
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin: .7rem 0;
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 950;
}
.small { color: var(--muted); font-size: .95rem; }

.page-section { padding: 86px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading p { color: var(--muted); font-size: 1.1rem; }
.cards {
  display: grid;
  gap: 1rem;
}
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card,
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 14px 40px rgba(17,19,24,.06);
}
.card h2,
.card h3 { color: var(--red-dark); }
.card p,
.content-card p { color: var(--muted); }

.split-section { background: var(--soft); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.proof-grid {
  display: grid;
  gap: 1rem;
}
.proof-grid div {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid var(--line);
}
.proof-grid strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}
.proof-grid span { color: var(--muted); }

.service-area { background: #fff; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.area-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .85rem;
  font-weight: 850;
  background: var(--soft);
}

.cta {
  background: var(--red);
  color: #fff;
  padding: 72px 0;
}
.cta-box {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.cta p { color: rgba(255,255,255,.86); }

.page-hero {
  background: linear-gradient(135deg, #1a1b20, var(--red));
  color: #fff;
  padding: 92px 0;
}
.page-hero.compact { padding: 72px 0; }
.page-hero p { color: rgba(255,255,255,.88); }
.page-hero .eyebrow { color: #ffd6da; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.big-link {
  display: inline-block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 950;
}

.site-footer {
  background: #111318;
  color: #fff;
  padding: 64px 0 24px;
}
.footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr;
  gap: 2rem;
}
.footer-logo {
  display: block;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 12px;
}
.site-footer h2 {
  font-size: 1.1rem;
  letter-spacing: .03em;
}
.site-footer p,
.site-footer li { color: rgba(255,255,255,.76); }
.site-footer a { color: #fff; }
.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu { flex-direction: column; align-items: stretch; }
  .primary-nav a { justify-content: center; }
  .hero-grid,
  .split,
  .cta-box,
  .footer-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .cta-box { display: grid; }
  .cards.four,
  .cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container,
  .narrow { width: min(100% - 28px, 1120px); }
  .hero-grid { min-height: auto; padding: 54px 0; }
  .page-section { padding: 58px 0; }
  .cards.four,
  .cards.two { grid-template-columns: 1fr; }
  .hero-actions .button,
  .cta-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
