:root {
  --ink: #172126;
  --muted: #5c686d;
  --paper: #f4f1ea;
  --white: #fff;
  --accent: #ef4d27;
  --accent-dark: #c93919;
  --line: #d8d4cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(244, 241, 234, .94);
  border-bottom: 1px solid rgba(23, 33, 38, .12);
  backdrop-filter: blur(14px);
}
.brand { width: 220px; }
.brand img { width: 100%; height: auto; }
nav { display: flex; gap: 34px; font-weight: 700; font-size: .92rem; }
nav a, footer a { transition: color .2s ease; }
nav a:hover, footer a:hover { color: var(--accent); }
.header-cta {
  justify-self: end;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 130px) clamp(24px, 8vw, 120px) 150px;
  color: var(--white);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 21, .92) 0%, rgba(12, 18, 21, .72) 45%, rgba(12, 18, 21, .1) 100%);
}
.hero-content { position: relative; max-width: 760px; z-index: 1; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: "Arial Black", "Segoe UI", sans-serif; letter-spacing: -.04em; }
h1 { max-width: 720px; font-size: clamp(3.2rem, 7.2vw, 7rem); line-height: .94; }
.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #dde1df;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  font: 800 .92rem "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-ghost { color: var(--white); border: 1px solid rgba(255, 255, 255, .45); }
.button-ghost:hover { background: rgba(255, 255, 255, .1); }
.hero-facts {
  position: absolute;
  z-index: 1;
  inset: auto clamp(24px, 5vw, 76px) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .28);
}
.hero-facts span { padding: 25px 30px; color: #cbd0cf; font-size: .85rem; }
.hero-facts span + span { border-left: 1px solid rgba(255, 255, 255, .28); }
.hero-facts strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 1rem; }

.section { padding: clamp(84px, 11vw, 160px) clamp(24px, 7vw, 108px); }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; }
.section-heading > p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
}
.service-card-wide { grid-column: 1 / -1; min-height: 510px; }
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover > img { transform: scale(1.025); }
.service-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9, 16, 19, .9), transparent 75%); }
.service-copy { position: absolute; inset: auto 34px 32px; }
.service-copy span { color: var(--accent); font-size: .75rem; font-weight: 900; }
.service-copy h3 { margin-top: 7px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.service-copy p { max-width: 560px; margin: 10px 0 0; color: #d9dedd; line-height: 1.55; }
.service-more {
  display: inline-block;
  margin-top: 17px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  font-size: .82rem;
  font-weight: 800;
}
.service-more:hover { color: var(--accent); border-color: var(--accent); }
.service-card-assistance > img { object-position: center 60%; }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 76px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-detail-grid article {
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
  background: var(--paper);
  scroll-margin-top: 110px;
}
.service-detail-grid h3 { font-size: clamp(1.45rem, 2.3vw, 2.1rem); line-height: 1.08; }
.service-detail-grid article > p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); line-height: 1.75; }
.service-detail-grid article > a {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent-dark);
  font-size: .86rem;
  font-weight: 800;
}

.service-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  padding: clamp(90px, 12vw, 160px) clamp(24px, 8vw, 120px) clamp(70px, 9vw, 120px);
  color: var(--white);
  overflow: hidden;
}
.service-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-hero-content { position: relative; z-index: 1; max-width: 880px; }
.service-hero-content h1 { max-width: 850px; font-size: clamp(3rem, 6.4vw, 6rem); }
.service-hero-content > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: #dde1df;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}
.breadcrumbs { margin: 0 0 28px; color: #cbd0cf; font-size: .78rem; font-weight: 700; }
.breadcrumbs a { border-bottom: 1px solid rgba(255, 255, 255, .5); }
.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(84px, 11vw, 150px) clamp(24px, 8vw, 120px);
}
.service-article { max-width: 820px; }
.service-article section + section { margin-top: 68px; padding-top: 68px; border-top: 1px solid var(--line); }
.service-article h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.06; }
.service-article p { margin: 26px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.85; }
.service-summary {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 34px;
  background: var(--white);
  border-top: 4px solid var(--accent);
}
.service-summary h2 { font: 800 1.45rem "Segoe UI", Arial, sans-serif; letter-spacing: 0; }
.service-summary ul { margin: 24px 0 30px; padding: 0; list-style: none; }
.service-summary li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); line-height: 1.45; }
.service-process { padding: clamp(84px, 10vw, 140px) clamp(24px, 8vw, 120px); background: var(--white); }
.service-process ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 0; background: var(--line); list-style: none; }
.service-process li { min-width: 0; padding: clamp(28px, 4vw, 48px); background: var(--white); }
.service-process li > span { color: var(--accent); font-size: .76rem; font-weight: 900; }
.service-process h3 { margin-top: 18px; font-size: 1.5rem; }
.service-process li p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
.service-cta {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  padding: clamp(76px, 9vw, 120px) clamp(24px, 8vw, 120px);
  color: var(--white);
  background: var(--ink);
}
.service-cta h2 { max-width: 780px; }
.service-cta > div:last-child { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.button-dark { color: var(--white); border: 1px solid #637075; }
.button-dark:hover { background: #243137; }

.about {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 8vw, 130px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.about-number {
  align-self: start;
  color: transparent;
  font: 800 clamp(5.5rem, 14vw, 12rem)/.8 "Arial Black", "Segoe UI", sans-serif;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .22);
}
.about-copy { position: relative; z-index: 1; }
.about-lead { margin: 32px 0 48px; color: #e5e8e7; font-size: 1.25rem; line-height: 1.7; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; color: #aeb7b8; line-height: 1.75; }
.about-columns p { margin: 0; }

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(56px, 9vw, 140px);
  padding: clamp(84px, 11vw, 160px) clamp(24px, 7vw, 108px);
  background: var(--white);
}
.contact-info > p:not(.eyebrow) { max-width: 480px; color: var(--muted); line-height: 1.7; }
address { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 40px; font-style: normal; font-weight: 800; }
address a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: flex; flex-direction: column; gap: 9px; font-size: .84rem; font-weight: 800; }
label > span { color: var(--muted); font-weight: 500; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  background: #faf9f6;
  color: var(--ink);
  font: inherit;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(239, 77, 39, .12); }
textarea { resize: vertical; }
.privacy-check { flex-direction: row; align-items: flex-start; font-weight: 500; line-height: 1.45; }
.privacy-check input { width: 18px; height: 18px; margin: 1px 4px 0 0; accent-color: var(--accent); }
.contact-form .button { align-self: flex-start; }
.form-note, .form-status { margin: 0; color: var(--muted); font-size: .88rem; }
.website-field { position: absolute; left: -9999px; width: 1px; height: 1px; }
.form-privacy { margin-top: 4px; padding-top: 22px; border-top: 1px solid var(--line); }
.form-privacy h3 { font: 800 .95rem "Segoe UI", Arial, sans-serif; letter-spacing: 0; }
.form-privacy p { margin: 9px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.form-privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy details { margin-top: 14px; }
.form-privacy summary {
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}
.form-privacy summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.form-privacy details[open] summary { margin-bottom: 12px; }

footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 30px;
  align-items: end;
  padding: 54px clamp(24px, 5vw, 76px);
  color: #bdc5c5;
  background: #0e1619;
  font-size: .78rem;
  line-height: 1.7;
}
footer img { width: 180px; height: auto; filter: brightness(0) invert(1); }
footer p { margin: 0; }
footer div { display: flex; flex-direction: column; align-items: flex-end; }

@media (max-width: 800px) {
  .site-header { height: 74px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .brand { width: 185px; }
  nav { display: none; }
  .header-cta { padding: 10px 12px; font-size: .8rem; }
  .hero { min-height: 720px; padding: 82px 24px 180px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(12, 18, 21, .88), rgba(12, 18, 21, .45)); }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-facts { inset-inline: 24px; grid-template-columns: 1fr; }
  .hero-facts span { padding: 12px 0; }
  .hero-facts span + span { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .2); }
  .hero-facts strong { display: inline; margin-right: 7px; }
  .section-heading, .about, .contact { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-wide { grid-column: auto; min-height: 360px; }
  .service-detail-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .service-hero { min-height: 560px; padding-inline: 24px; }
  .service-content { grid-template-columns: 1fr; padding-inline: 24px; }
  .service-summary { position: static; }
  .service-process { padding-inline: 24px; }
  .service-process ol { grid-template-columns: 1fr; }
  .service-cta { flex-direction: column; align-items: flex-start; padding-inline: 24px; }
  .service-cta > div:last-child { justify-content: flex-start; }
  .about-number { position: absolute; top: 30px; right: -20px; }
  .about-columns, .field-row { grid-template-columns: 1fr; }
  .contact { gap: 50px; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer div { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
