/* Speedy Home Services — Brand System
   Derived from the design handoff: black ground, warm bone background,
   amber accent from the logo roof, Fraunces display + Inter Tight sans. */

:root {
  --ink: #0A0A0B;
  --charcoal: #1A1A1C;
  --smoke: #2A2A2E;
  --bone: #F5F2EC;
  --paper: #FAF7F1;
  --cream: #EDE7DB;
  --line: #D9D3C6;

  --amber: #F5A524;
  --amber-deep: #D98816;
  --amber-glow: #FFD074;

  --slate: #3D3D42;
  --mute: #6B6B70;

  --display: 'Fraunces', 'Recoleta', Georgia, serif;
  --sans: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;

  --maxw: 1400px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--paper); }
body {
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
a:hover { opacity: .85; }
img { max-width: 100%; }

h1, h2, h3 { margin: 0; }
.serif { font-family: var(--display); font-weight: 300; }
.italic { font-style: italic; }
.amber { color: var(--amber); }
.amber-deep { color: var(--amber-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber-deep); font-weight: 700;
}
.eyebrow.on-dark { color: var(--amber); }

/* ─── Tags / chips ─────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; white-space: nowrap;
}
.tag.sm { padding: 5px 10px; font-size: 11px; }
.tag--amber { background: var(--amber); color: var(--ink); }
.tag--dark { background: var(--ink); color: #fff; }
.tag--outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.tag--bone { background: var(--bone); color: var(--ink); }

/* ─── Phone pill ───────────────────────────────── */
.phone {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px;
  border: 1.5px solid var(--amber); background: var(--amber); color: var(--ink);
  font-weight: 600; text-decoration: none; white-space: nowrap;
}
.phone svg { width: 19px; height: 19px; flex: none; }
.phone .phone__label {
  display: block; font-size: 11px; font-weight: 500; opacity: .75;
  letter-spacing: .8px; text-transform: uppercase; line-height: 1;
}
.phone .phone__num {
  display: block; font-size: 22px; font-weight: 700; letter-spacing: -.3px;
  margin-top: 3px; line-height: 1; font-variant-numeric: tabular-nums;
}
.phone.sm { padding: 8px 14px; }
.phone.sm .phone__num { font-size: 15px; }
.phone.sm svg { width: 13px; height: 13px; }
.phone.lg { padding: 16px 26px; }
.phone.xl { padding: 20px 34px; }
.phone.xl .phone__num { font-size: 28px; }
.phone.xl svg { width: 24px; height: 24px; }
.phone--dark { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; font-family: inherit; border: 1.5px solid transparent;
}
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--amber { background: var(--amber); color: var(--ink); font-weight: 700; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.sm { padding: 11px 20px; font-size: 13px; }
.btn:disabled { background: var(--line); color: #fff; cursor: not-allowed; border-color: var(--line); }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--amber); }

/* ─── Top bar + Nav ────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__strip {
  background: #000; padding: 8px 40px; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 20px; opacity: .75;
}
.nav__bar {
  padding: 18px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav__logo img { height: 34px; display: block; }
.nav__links { display: flex; gap: 36px; font-size: 14px; font-weight: 500; }
.nav__links a {
  color: #fff; text-decoration: none; opacity: .72; padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav__links a.active { opacity: 1; border-bottom-color: var(--amber); }
.nav__actions { display: flex; gap: 14px; align-items: center; }
.nav__toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.nav__toggle svg { width: 26px; height: 26px; }

/* ─── Hero (home) ──────────────────────────────── */
.section { padding: 120px 40px; }
.hero {
  position: relative; background: var(--ink); color: #fff;
  overflow: hidden; min-height: 760px;
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  padding: 100px 40px 80px; position: relative; z-index: 2;
}
.hero__copy { max-width: 680px; }
.hero__tags { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.hero h1 {
  font-family: var(--display); font-size: 128px; font-weight: 300;
  line-height: .92; letter-spacing: -4px; margin: 0 0 32px; text-wrap: pretty;
}
.hero__lead { font-size: 20px; line-height: 1.55; opacity: .82; max-width: 560px; margin: 0 0 40px; font-weight: 300; }
.hero__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media-img { position: absolute; inset: -40px -40px -40px 40px; background-size: cover; background-position: center; }
.hero__media-fade { position: absolute; inset: -40px -40px -40px 40px; background: linear-gradient(270deg, rgba(10,10,11,0) 40%, rgba(10,10,11,.95) 100%); }
.hero__card {
  position: absolute; bottom: 10px; right: 10px; width: 300px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 22px 26px;
}
.hero__card-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: .6; margin-bottom: 12px; }
.hero__card-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hero__dot {
  width: 40px; height: 40px; border-radius: 20px; background: #22c55e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2); flex: none;
}
.hero__dot svg { width: 20px; height: 20px; stroke: #fff; }
.hero__dealer {
  border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.4);
  padding: 16px 40px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; opacity: .5; text-align: center;
}

/* ─── Trust bar ────────────────────────────────── */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trustbar__cell { padding: 32px 28px; text-align: center; border-left: 1px solid var(--line); }
.trustbar__cell:first-child { border-left: none; }
.trustbar__big { font-family: var(--display); font-size: 44px; font-weight: 400; letter-spacing: -1px; line-height: 1; }
.trustbar__small { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--mute); font-weight: 600; margin-top: 8px; }

/* ─── Section heads ────────────────────────────── */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; }
.sec-head h2,
.h-xl { font-family: var(--display); font-weight: 300; letter-spacing: -2.5px; line-height: .98; margin: 0; text-wrap: pretty; }
.h-xl { font-size: 88px; }
.link-underline { font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--amber); padding-bottom: 4px; white-space: nowrap; }

/* ─── Services grid (home) ─────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  text-decoration: none; color: inherit; display: block; background: #fff;
  border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,10,11,.12); opacity: 1; }
.svc-card__img { height: 260px; background-size: cover; background-position: center; position: relative; }
.svc-card__icon {
  position: absolute; top: 20px; left: 20px; width: 44px; height: 44px;
  background: var(--ink); color: var(--amber); border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card__body { padding: 28px 28px 32px; display: flex; justify-content: space-between; align-items: flex-end; }
.svc-card__title { font-family: var(--display); font-size: 32px; font-weight: 400; letter-spacing: -.6px; line-height: 1; }
.svc-card__sub { font-size: 14px; color: var(--mute); margin-top: 8px; }
.svc-card__arrow { width: 36px; height: 36px; border: 1.5px solid var(--line); border-radius: 18px; display: flex; align-items: center; justify-content: center; flex: none; }
.svc-card__arrow svg { width: 14px; height: 14px; stroke: var(--ink); }

/* ─── Process ──────────────────────────────────── */
.process { background: #fff; padding: 120px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; }
.process h2 { font-family: var(--display); font-size: 80px; font-weight: 300; letter-spacing: -2px; line-height: .98; margin: 0 0 24px; }
.process__intro { font-size: 17px; color: var(--slate); line-height: 1.55; max-width: 420px; }
.process__step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 32px 0; border-top: 1px solid var(--line); }
.process__step:last-child { border-bottom: 1px solid var(--line); }
.process__n { font-family: var(--display); font-size: 40px; font-weight: 400; color: var(--amber-deep); letter-spacing: -.8px; }
.process__t { font-size: 22px; font-weight: 600; letter-spacing: -.3px; margin-bottom: 8px; }
.process__b { font-size: 16px; color: var(--slate); line-height: 1.55; }

/* ─── Financing ────────────────────────────────── */
.financing { background: var(--amber); color: var(--ink); padding: 100px 40px; }
.financing__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.financing h2 { font-family: var(--display); font-size: 104px; font-weight: 300; letter-spacing: -3px; line-height: .94; margin: 24px 0; text-wrap: pretty; }
.financing__lead { font-size: 18px; line-height: 1.55; max-width: 520px; margin: 0 0 30px; }
.financing__card { background: var(--ink); color: #fff; padding: 44px; border-radius: 2px; }
.financing__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 36px; }
.financing__price .big { font-family: var(--display); font-size: 88px; font-weight: 300; letter-spacing: -2.5px; color: var(--amber); line-height: 1; }
.financing__row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }

/* ─── Testimonials ─────────────────────────────── */
.testimonials { padding: 120px 40px; background: var(--bone); }
.t-head { text-align: center; margin-bottom: 72px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { background: #fff; padding: 36px 34px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 20px; min-height: 320px; }
.t-quote { font-family: var(--display); font-size: 22px; font-weight: 400; line-height: 1.35; letter-spacing: -.3px; text-wrap: pretty; }
.t-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.t-name { font-size: 15px; font-weight: 600; }
.t-loc { font-size: 13px; color: var(--mute); margin-top: 3px; }

/* ─── CTA band ─────────────────────────────────── */
.ctaband { background: var(--ink); color: #fff; padding: 90px 40px; }
.ctaband__grid { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.ctaband h2 { font-family: var(--display); font-size: 72px; font-weight: 300; line-height: .98; letter-spacing: -2px; margin: 0 0 22px; text-wrap: pretty; }
.ctaband__sub { font-size: 18px; opacity: .7; max-width: 540px; line-height: 1.5; }
.ctaband__actions { display: flex; flex-direction: column; gap: 14px; flex: none; }

/* ─── Footer ───────────────────────────────────── */
.footer { background: var(--ink); color: #fff; padding: 72px 40px 40px; }
.footer__cta { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 60px; gap: 40px; }
.footer__cta h3 { font-family: var(--display); font-size: 56px; font-weight: 300; line-height: 1; letter-spacing: -1.5px; max-width: 720px; text-wrap: pretty; }
.footer__cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; flex: none; }
.footer__cols { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 48px; padding-bottom: 60px; }
.footer__about { font-size: 14px; opacity: .65; line-height: 1.55; margin-top: 22px; max-width: 280px; }
.footer__rating { margin-top: 20px; display: flex; gap: 10px; align-items: center; }
.footer__col-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 18px; }
.footer__col a { display: block; color: #fff; opacity: .75; text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.footer__legal { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .5; gap: 20px; }

/* ─── Service pages ────────────────────────────── */
.svc-hero { position: relative; background: var(--ink); color: #fff; min-height: 640px; overflow: hidden; }
.svc-hero__img { position: absolute; top: 0; right: 0; bottom: 0; width: 48%; background-size: cover; background-position: center; }
.svc-hero__fade { position: absolute; top: 0; right: 0; bottom: 0; width: 48%; background: linear-gradient(270deg, rgba(10,10,11,0) 20%, rgba(10,10,11,1) 100%); }
.svc-hero__inner { max-width: 760px; padding: 100px 40px; position: relative; z-index: 2; margin: 0 auto; margin-left: max(40px, calc((100% - var(--maxw)) / 2 + 40px)); }
.svc-hero h1 { font-family: var(--display); font-size: 112px; font-weight: 300; line-height: .94; letter-spacing: -3.5px; margin: 28px 0 30px; text-wrap: pretty; }
.svc-hero__lead { font-size: 20px; line-height: 1.5; opacity: .82; max-width: 540px; margin-bottom: 40px; font-weight: 300; }
.svc-hero__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.svc-list { padding: 110px 40px; background: #fff; border-bottom: 1px solid var(--line); }
.svc-list__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.svc-list h2 { font-family: var(--display); font-size: 64px; font-weight: 300; letter-spacing: -1.8px; line-height: 1; margin: 0 0 22px; text-wrap: pretty; }
.svc-list__sub { font-size: 16px; color: var(--slate); line-height: 1.55; max-width: 360px; }
.svc-list__item { display: grid; grid-template-columns: 44px 1fr auto; gap: 24px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.svc-list__item:last-child { border-bottom: 1px solid var(--line); }
.svc-list__ic { width: 44px; height: 44px; border-radius: 22px; background: var(--bone); color: var(--amber-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.svc-list__t { font-size: 20px; font-weight: 600; letter-spacing: -.3px; margin-bottom: 5px; }
.svc-list__b { font-size: 15px; color: var(--slate); line-height: 1.5; white-space: pre-line; }
.svc-list__price { font-size: 14px; color: var(--amber-deep); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }

.brandstrip { background: var(--bone); padding: 50px 40px; border-bottom: 1px solid var(--line); }
.brandstrip__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.brandstrip__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--mute); font-weight: 700; }
.brandstrip__brands { display: flex; gap: 48px; flex-wrap: wrap; }
.brandstrip__brands span { font-family: var(--display); font-size: 28px; font-weight: 400; letter-spacing: -.5px; }

.faq { padding: 110px 40px; background: var(--paper); }
.faq__inner { max-width: 1000px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 56px; }
.faq__head h2 { font-family: var(--display); font-size: 72px; font-weight: 300; letter-spacing: -2px; line-height: 1; margin: 0; }
.faq__item { padding: 30px 4px; border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q { font-family: var(--display); font-size: 26px; font-weight: 400; letter-spacing: -.4px; margin-bottom: 10px; }
.faq__a { font-size: 16px; color: var(--slate); line-height: 1.6; max-width: 780px; }

/* ─── About ────────────────────────────────────── */
.about-hero { background: var(--ink); color: #fff; padding: 100px 40px 80px; position: relative; overflow: hidden; }
.about-hero__img { position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background-size: cover; background-position: center; opacity: .6; }
.about-hero__fade { position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background: linear-gradient(270deg, rgba(10,10,11,.3) 30%, rgba(10,10,11,1) 100%); }
.about-hero h1 { font-family: var(--display); font-size: 128px; font-weight: 300; line-height: .92; letter-spacing: -4px; margin: 28px 0; max-width: 1100px; text-wrap: pretty; }
.about-hero__lead { font-size: 22px; line-height: 1.5; opacity: .82; max-width: 640px; font-weight: 300; }
.stats { background: #fff; padding: 80px 40px; border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__cell { padding: 0 32px; border-left: 1px solid var(--line); }
.stats__cell:first-child { border-left: none; }
.stats__big { font-family: var(--display); font-size: 80px; font-weight: 300; letter-spacing: -2px; line-height: 1; color: var(--amber-deep); }
.stats__small { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--mute); font-weight: 600; margin-top: 14px; }
.story { padding: 120px 40px; background: var(--paper); }
.story__inner { max-width: 1000px; margin: 0 auto; }
.story__lead { font-family: var(--display); font-size: 36px; font-weight: 400; line-height: 1.3; letter-spacing: -.6px; margin: 0 0 28px; text-wrap: pretty; }
.story__body { font-size: 17px; color: var(--slate); line-height: 1.7; }
.story__body p { margin: 0 0 20px; }
.values { padding: 120px 40px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values__head { text-align: center; margin-bottom: 60px; }
.values__head h2 { font-family: var(--display); font-size: 88px; font-weight: 300; letter-spacing: -2.5px; line-height: .98; margin: 0; }
.values__grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.values__cell { padding: 44px 40px; border-top: 1px solid var(--line); }
.values__cell:nth-child(odd) { border-left: none; }
.values__cell:nth-child(even) { border-left: 1px solid var(--line); }
.values__cell:nth-child(1), .values__cell:nth-child(2) { border-top: none; }
.values__t { font-family: var(--display); font-size: 32px; font-weight: 400; letter-spacing: -.5px; margin-bottom: 14px; }
.values__b { font-size: 16px; color: var(--slate); line-height: 1.6; }

/* ─── Booking ──────────────────────────────────── */
.booking-hero { background: var(--ink); color: #fff; padding: 80px 40px 64px; }
.booking-hero h1 { font-family: var(--display); font-size: 112px; font-weight: 300; line-height: .94; letter-spacing: -3.5px; margin: 26px 0 20px; max-width: 1000px; text-wrap: pretty; }
.booking-hero__lead { font-size: 20px; line-height: 1.5; opacity: .8; max-width: 640px; font-weight: 300; }
.booking { background: var(--paper); padding: 80px 40px; }
.booking__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; }
.booking__card { background: #fff; border: 1px solid var(--line); padding: 56px; }
.booking__steps { display: flex; gap: 10px; margin-bottom: 44px; }
.booking__steps span { flex: 1; height: 3px; background: var(--line); }
.booking__steps span.on { background: var(--amber); }
.booking__panel h2 { font-family: var(--display); font-size: 52px; font-weight: 300; letter-spacing: -1.4px; line-height: 1; margin: 0 0 36px; }
.booking label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: var(--mute); margin-bottom: 10px; }
.booking input, .booking textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 4px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.booking input:focus, .booking textarea:focus { outline: none; border-color: var(--amber); }
.booking textarea { resize: vertical; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.opt {
  padding: 18px 20px; background: #fff; color: var(--ink); border: 1.5px solid var(--line);
  border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600;
  text-align: left; display: flex; align-items: center; gap: 14px;
}
.opt svg { width: 20px; height: 20px; stroke: var(--amber-deep); flex: none; }
.opt.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.opt.on svg { stroke: var(--amber); }
.opt--urgency { display: block; padding: 16px 18px; }
.opt--urgency.on { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.opt--urgency .opt__sub { font-size: 13px; opacity: .7; margin-top: 2px; font-weight: 400; }
.opt--time { justify-content: center; padding: 14px; font-size: 14px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.booking__nav { display: flex; gap: 14px; margin-top: 8px; }
.booking__fine { font-size: 13px; color: var(--mute); margin-top: 20px; line-height: 1.5; }
.booking__error { background: #FDECEC; border: 1px solid #F3C0C0; color: #9B1C1C; font-size: 14px; font-weight: 500; padding: 14px 16px; border-radius: 6px; margin-bottom: 18px; }
.booking__done { text-align: center; padding: 24px 8px 8px; }
.booking__done-check { width: 64px; height: 64px; border-radius: 50%; background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 0 0 8px rgba(34,197,94,.15); }
.booking__done-check svg { width: 32px; height: 32px; }
.booking__done h2 { font-family: var(--display); font-size: 48px; font-weight: 300; letter-spacing: -1.4px; margin: 0 0 16px; }
.booking__done-lead { font-size: 17px; color: var(--slate); line-height: 1.6; max-width: 440px; margin: 0 auto; }
.booking__aside { display: flex; flex-direction: column; gap: 20px; }
.aside-dark { background: var(--ink); color: #fff; padding: 36px; }
.aside-dark h3 { font-family: var(--display); font-size: 32px; font-weight: 400; letter-spacing: -.8px; line-height: 1.1; margin: 0 0 18px; }
.aside-card { background: #fff; border: 1px solid var(--line); padding: 32px; }
.aside-step { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.aside-step:first-of-type { border-top: none; }
.aside-step__n { font-family: var(--display); font-size: 22px; color: var(--amber-deep); font-weight: 400; width: 32px; flex: none; }
.aside-step__t { font-size: 15px; font-weight: 600; }
.aside-step__d { font-size: 13px; color: var(--slate); margin-top: 3px; line-height: 1.45; }
.aside-amber { background: var(--amber); color: var(--ink); padding: 32px; }
.aside-amber h3 { font-family: var(--display); font-size: 40px; font-weight: 300; letter-spacing: -1px; line-height: 1.05; margin: 0 0 12px; }
.guarantee { background: #fff; padding: 80px 40px; border-top: 1px solid var(--line); }
.guarantee__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.guarantee__cell { padding: 36px 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.guarantee__cell:first-child { border-left: none; }
.guarantee__cell svg { width: 28px; height: 28px; stroke: var(--amber-deep); }
.guarantee__t { font-size: 18px; font-weight: 600; letter-spacing: -.3px; }
.guarantee__s { font-size: 14px; color: var(--slate); line-height: 1.45; }

.hidden { display: none !important; }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 1100px) {
  .hero h1 { font-size: 92px; }
  .h-xl, .values__head h2 { font-size: 64px; }
  .process h2, .financing h2 { font-size: 72px; }
  .svc-hero h1, .about-hero h1, .booking-hero h1 { font-size: 84px; }
  .ctaband h2 { font-size: 56px; }
  .financing h2 { font-size: 80px; }
}

@media (max-width: 900px) {
  .section, .process, .financing, .testimonials, .svc-list, .faq, .story, .values, .stats, .booking { padding-left: 24px; padding-right: 24px; }
  .nav__strip { padding: 8px 24px; font-size: 10px; }
  .nav__strip span:last-child { display: none; }
  .nav__bar { padding: 16px 24px; }
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink); padding: 12px 24px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; }
  .nav__toggle { display: block; }
  .nav__actions .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding: 64px 24px 60px; }
  .hero__media { display: none; }
  .hero { min-height: 0; }
  .hero h1 { font-size: 64px; letter-spacing: -2px; }
  .svc-grid, .t-grid { grid-template-columns: 1fr; }
  .process__grid, .financing__grid, .svc-list__grid, .booking__grid { grid-template-columns: 1fr; gap: 40px; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__cell:nth-child(odd) { border-left: none; }
  .trustbar__cell { border-top: 1px solid var(--line); }
  .trustbar__cell:nth-child(1), .trustbar__cell:nth-child(2) { border-top: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__cell { border-left: none; padding: 16px 0; }
  .values__grid { grid-template-columns: 1fr; }
  .values__cell { border-left: none !important; border-top: 1px solid var(--line) !important; }
  .values__cell:first-child { border-top: none !important; }
  .guarantee__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee__cell:nth-child(3) { border-left: none; }
  .ctaband__grid, .sec-head, .footer__cta { flex-direction: column; align-items: flex-start; }
  .footer__cta-actions { align-items: flex-start; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 10px; }
  .svc-hero__inner { margin-left: 24px; padding: 64px 24px; }
  .svc-hero__img, .svc-hero__fade { width: 100%; opacity: .25; }
  .svc-hero__fade { background: linear-gradient(0deg, rgba(10,10,11,.4), rgba(10,10,11,.9)); }
  .about-hero__img, .about-hero__fade { width: 100%; opacity: .3; }
  .booking__card { padding: 32px 24px; }
  .opt-grid, .time-grid, .field-row { grid-template-columns: 1fr; }
  .h-xl, .values__head h2, .process h2 { font-size: 48px; }
  .about-hero h1, .svc-hero h1, .booking-hero h1, .financing h2 { font-size: 56px; }
  .ctaband h2 { font-size: 44px; }
  .footer__cta h3 { font-size: 36px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 52px; }
  .footer__cols { grid-template-columns: 1fr; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .guarantee__cell { border-left: none; border-top: 1px solid var(--line); }
  .guarantee__cell:first-child { border-top: none; }
}
