:root {
  --ink: #171a1f;
  --muted: #66717d;
  --paper: #f4f0ea;
  --white: #fff;
  --line: #ddd6cc;
  --red: #b73b2f;
  --blue: #1f4668;
  --green: #566f4d;
  --shadow: 0 24px 70px rgba(20, 24, 30, 0.17);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.header.is-scrolled {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(20, 24, 30, .12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
}

.brand span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  font-weight: 900;
}

nav a { text-decoration: none; }

.lang {
  min-width: 46px;
  min-height: 36px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
  padding: 136px clamp(18px, 5vw, 70px) clamp(34px, 6vw, 76px);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,24,30,.94), rgba(20,24,30,.62) 50%, rgba(20,24,30,.26)),
    linear-gradient(0deg, rgba(20,24,30,.82), rgba(20,24,30,.14) 56%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy { max-width: 860px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0;
}

.hero .eyebrow { color: #f0b66d; }

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 23px);
}

.actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--red); color: var(--white); }
.btn.secondary { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.12); }
.btn.outline { background: var(--white); border-color: var(--line); color: var(--ink); }

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.93);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.hero-panel span, .quick span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong, .quick strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}

.hero-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick a {
  min-height: 114px;
  padding: clamp(18px,3vw,32px);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}

.quick a:hover { background: #ede6dd; }

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 70px);
}

.trust {
  display: grid;
  grid-template-columns: minmax(260px,.9fr) minmax(300px,1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.section-copy p:not(.eyebrow), .request p, .service-list p, .contact-grid p {
  color: var(--muted);
}

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

.proof-grid article {
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-grid strong {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .9;
  color: var(--blue);
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}

.service {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(300px, 1.14fr);
  gap: clamp(28px, 5vw, 80px);
  background: var(--white);
  align-items: center;
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.service-list article {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.request {
  display: grid;
  grid-template-columns: minmax(260px,.82fr) minmax(320px,1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(20,24,30,.08);
}

label span {
  display: block;
  margin-bottom: 7px;
  font-weight: 950;
}

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

textarea { resize: vertical; min-height: 120px; }

.prepared {
  white-space: pre-wrap;
  padding: 16px;
  border-radius: 8px;
  background: #eef3ee;
  color: var(--ink);
}

.location {
  background: var(--blue);
  color: var(--white);
}

.location .eyebrow { color: #f0b66d; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-grid article {
  padding: clamp(20px,3vw,30px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

.contact-grid p { color: rgba(255,255,255,.78); }
.contact-grid a { color: #f0b66d; font-weight: 900; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 70px);
  background: #0e1116;
  color: rgba(255,255,255,.76);
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .header { min-height: 68px; }
  .hero, .trust, .service, .request { grid-template-columns: 1fr; }
  .quick, .proof-grid, .contact-grid { grid-template-columns: 1fr; }
  .quick a {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 560px) {
  .header { position: absolute; }
  .brand strong, nav a { display: none; }
  .hero { min-height: auto; padding-top: 108px; }
  .actions .btn, .form-actions .btn { width: 100%; }
  footer { display: block; }
  footer p + p { margin-top: 10px; }
}
