:root {
  --ink: #111827;
  --muted: #5d6675;
  --line: #dfe4ea;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --navy: #172033;
  --red: #e51620;
  --gold: #f2b515;
  --silver: #c4cbd3;
  --green: #1d6d5c;
  --shadow: 0 24px 70px rgba(20, 31, 48, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  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(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 32px, var(--max));
  margin: 16px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(223, 228, 234, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 40px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 22px;
  color: #354052;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--red);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-call {
  padding: 0 20px;
  color: white;
  background: var(--red);
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn:hover,
.header-call:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 16px 36px rgba(229, 22, 32, 0.22);
}

.btn-secondary {
  color: var(--navy);
  background: white;
  border-color: var(--line);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 58px;
  align-items: center;
  width: min(100% - 32px, var(--max));
  min-height: calc(100vh - 84px);
  margin: -24px auto 0;
  padding: 88px 0 44px;
}

.service-area,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.75vw, 4.45rem);
}

h1 span {
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-text,
.section-copy p,
.feature-panel p,
.lead-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.proof-row {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.proof-row div {
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
}

.proof-row dt {
  font-weight: 900;
}

.proof-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 54% center;
}

.hero-quote-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  width: min(340px, calc(100% - 48px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.card-heading {
  min-width: 0;
}

.card-heading strong {
  display: block;
  font-size: 1.12rem;
}

.card-heading p,
.hero-quote-card .form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-quote-card label,
.hero-quote-card button,
.hero-quote-card .form-note {
  grid-column: 1 / -1;
}

.hero-quote-card label {
  gap: 5px;
  font-size: 0.78rem;
}

.hero-quote-card input {
  padding: 10px 12px;
}

.hero-quote-card .btn {
  width: 100%;
  min-height: 42px;
  font-size: 0.9rem;
}

.trust-band,
.section,
.image-feature,
.cta-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-band div {
  padding: 24px;
  background: white;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 100px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.section-copy {
  max-width: 500px;
}

.section-copy.narrow {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.service-grid p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f0;
  font-weight: 900;
}

.image-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
  padding: 0 0 80px;
}

.image-feature > img {
  width: 100%;
  height: 570px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}

.feature-panel p {
  color: #d2dae5;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.lead-section {
  padding-top: 0;
}

.lead-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.lead-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.lead-copy {
  padding: 56px;
}

label {
  display: grid;
  gap: 8px;
  color: #2d3748;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(242, 181, 21, 0.35);
  border-color: var(--gold);
}

.lead-form,
.quote-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-note.success {
  color: var(--green);
  font-weight: 800;
}

.process {
  padding-top: 20px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 72px;
  padding: 54px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 32, 51, 0.94), rgba(17, 24, 39, 0.9)),
    radial-gradient(circle at top right, rgba(242, 181, 21, 0.4), transparent 34%);
}

.cta-section .section-label {
  color: var(--gold);
}

.cta-section p {
  color: #d5dde8;
}

.contact-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel label {
  color: #edf2f7;
}

.contact-line {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
}

.contact-line span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: 1.15rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
  color: var(--red);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--soft);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav,
  .header-call {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .split,
  .image-feature,
  .lead-card,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    min-height: 0;
    padding-top: 64px;
  }

  .hero-media,
  .proof-row {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 500px;
  }

  .proof-row,
  .trust-band,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 18px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .hero,
  .section {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .proof-row {
    margin-top: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .hero-quote-card {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .image-feature > img,
  .lead-image img {
    height: 360px;
    min-height: 360px;
  }

  .feature-panel,
  .lead-copy,
  .cta-section {
    padding: 28px;
  }
}
