/* ============================================================
   The Garage Roof Company — Design System
   Navy + Amber · Bricolage Grotesque / Plus Jakarta Sans
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #081a31;
  --navy-800: #0c2340;
  --navy-700: #103257;
  --navy-600: #16456f;
  --ink: #0c1a2b;
  --muted: #5a6b7b;
  --muted-2: #7c8a98;
  --line: #e6ebf1;
  --line-2: #d8e0e9;
  --paper: #f4f7fb;
  --paper-2: #eef3f9;
  --white: #ffffff;

  --amber: #ff6a2b;
  --amber-600: #f2581a;
  --amber-700: #d8480f;
  --gold: #ffb400;
  --green: #1f9d57;
  --green-bg: #e7f6ee;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(12, 35, 64, .06), 0 2px 6px rgba(12, 35, 64, .05);
  --shadow-md: 0 6px 18px rgba(12, 35, 64, .08), 0 2px 6px rgba(12, 35, 64, .05);
  --shadow-lg: 0 24px 60px -18px rgba(8, 26, 49, .35), 0 8px 24px -12px rgba(8, 26, 49, .2);
  --shadow-amber: 0 10px 26px -8px rgba(255, 106, 43, .55);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; color: var(--navy-800); }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); letter-spacing: -.01em; }
h4 { font-size: 1.12rem; letter-spacing: -.01em; }
p { color: var(--muted); }
strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--amber-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-800); color: #cdd8e6; position: relative; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 14px 0 16px; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  letter-spacing: -.01em; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--amber); color: #fff; box-shadow: var(--shadow-amber); }
.btn-primary:hover { background: var(--amber-600); transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(255,106,43,.6); }
.btn-dark { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy-800); border: 1.5px solid var(--line-2); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--navy-600); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-call { gap: 12px; }
.btn-call small { display: block; font-weight: 600; font-size: .68rem; opacity: .75; letter-spacing: .06em; text-transform: uppercase; line-height: 1; margin-bottom: 3px; }
.btn-call b { font-size: 1.05rem; letter-spacing: -.01em; line-height: 1; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.header__logo img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .96rem; color: var(--navy-800);
  transition: background .2s, color .2s;
}
.nav a:hover, .nav a.active { background: var(--paper-2); color: var(--navy-700); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; color: var(--navy-800); font-size: 1.02rem; letter-spacing: -.01em; white-space: nowrap; }
.header__phone svg { width: 18px; height: 18px; color: var(--amber); }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; }
.burger span { display: block; width: 20px; height: 2px; background: var(--navy-800); margin: 4px auto; border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 76px 0 0; z-index: 99; background: #fff;
  transform: translateX(100%); transition: transform .4s var(--ease-out);
  padding: 24px var(--gutter) 40px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 16px 14px; border-radius: 12px; font-weight: 700; font-size: 1.15rem; color: var(--navy-800); border-bottom: 1px solid var(--line); }
.mobile-nav a:active { background: var(--paper); }
.mobile-nav .btn { margin-top: 16px; }
.mobile-nav .m-phone { margin-top: 8px; text-align: center; font-weight: 800; font-size: 1.3rem; color: var(--navy-800); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-800); color: #d7e2ef; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -10%, rgba(255,106,43,.22), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(22,69,111,.6), transparent 55%),
    linear-gradient(160deg, #0c2340 0%, #081a31 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem; font-weight: 600; color: #e8eef6;
}
.pill svg { width: 15px; height: 15px; color: var(--gold); }
.pill .stars { color: var(--gold); letter-spacing: 1px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.24rem); color: #b9c7d8; max-width: 52ch; margin-bottom: 26px; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-bottom: 30px; }
.hero__ticks li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: #e8eef6; font-size: .98rem; }
.hero__ticks svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust img { height: 30px; width: auto; background: #fff; border-radius: 8px; padding: 7px 11px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.hero__trust .gr { height: 44px; padding: 5px 9px; }

/* Hero form card */
.quote-card {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: clamp(22px, 2.4vw, 32px); color: var(--ink); position: relative;
}
.quote-card__head { text-align: center; margin-bottom: 18px; }
.quote-card__head .tag { display: inline-block; background: var(--green-bg); color: var(--green); font-weight: 700; font-size: .78rem; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; }
.quote-card__head h3 { color: var(--navy-800); margin: 12px 0 4px; font-size: 1.45rem; }
.quote-card__head p { font-size: .92rem; }

/* ---------- Forms ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: .82rem; color: var(--navy-800); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 12px;
  background: #fff; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(255,106,43,.12); }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* choice chips */
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: flex; align-items: center; gap: 10px; padding: 14px 14px; border: 1.5px solid var(--line-2);
  border-radius: 12px; font-weight: 600; font-size: .94rem; transition: .2s var(--ease); height: 100%;
}
.choice span svg { width: 20px; height: 20px; color: var(--navy-600); flex: none; }
.choice input:checked + span { border-color: var(--amber); background: #fff5f0; box-shadow: 0 0 0 3px rgba(255,106,43,.12); color: var(--navy-800); }
.choice input:checked + span svg { color: var(--amber); }
.choice input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }

/* multi-step */
.form-steps { }
.step { display: none; animation: fade .4s var(--ease); }
.step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.progress { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.progress .dot { flex: 1; height: 6px; border-radius: 999px; background: var(--line-2); transition: background .3s; }
.progress .dot.done { background: var(--amber); }
.form-nav { display: flex; gap: 10px; margin-top: 6px; }
.form-nav .btn { flex: 1; }
.form-foot { text-align: center; font-size: .82rem; color: var(--muted-2); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-foot svg { width: 15px; height: 15px; color: var(--green); }
.form-success { text-align: center; padding: 20px 6px; display: none; }
.form-success.show { display: block; animation: fade .4s var(--ease); }
.form-success .tick { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-bg); display: grid; place-items: center; }
.form-success .tick svg { width: 32px; height: 32px; color: var(--green); }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 26px; height: 26px; color: var(--amber); flex: none; }
.trust-item b { display: block; color: var(--navy-800); font-size: 1rem; line-height: 1.2; }
.trust-item small { color: var(--muted); font-size: .82rem; }
.trust-item .stars { color: var(--gold); font-size: .95rem; letter-spacing: 1px; }

/* ---------- Cards / USP ---------- */
.cards { display: grid; gap: clamp(16px, 2vw, 24px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(22px, 2.4vw, 30px); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, #fff0e8, #ffe3d4); margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; color: var(--amber-600); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .96rem; }

/* numbered reasons */
.reason { display: flex; gap: 16px; align-items: flex-start; }
.reason .n { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--navy-800); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; display: grid; place-items: center; }
.reason h4 { margin-bottom: 5px; }
.reason p { font-size: .94rem; }

/* ---------- Service feature cards (with image) ---------- */
.service-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.service-card .img { aspect-ratio: 16/11; overflow: hidden; }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.service-card:hover .img img { transform: scale(1.06); }
.service-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card .body h3 { margin-bottom: 8px; }
.service-card .body p { font-size: .95rem; flex: 1; }
.service-card .link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--amber-600); font-size: .95rem; }
.service-card .link svg { width: 17px; height: 17px; transition: transform .25s; }
.service-card:hover .link svg { transform: translateX(4px); }

/* ---------- How it works ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(20px, 3vw, 30px); }
.steps .step-item { position: relative; padding-left: 0; }
.step-item .badge { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--amber); color: var(--amber-600); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.section--navy .step-item .badge { background: rgba(255,255,255,.06); }
.step-item h3 { margin-bottom: 8px; }
.step-item p { font-size: .96rem; }

/* ---------- Before / After slider ---------- */
.ba-wrap { display: grid; gap: clamp(20px, 3vw, 32px); grid-template-columns: 1fr 1fr; align-items: center; }
.ba {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: none; cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba .lbl { position: absolute; bottom: 14px; padding: 6px 13px; border-radius: 999px; background: rgba(8,26,49,.78); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(4px); }
.ba .lbl.b { left: 14px; } .ba .lbl.a { right: 14px; }
.ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(8,26,49,.15); }
.ba .handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%,-50%); background: #fff; border-radius: 50%; box-shadow: var(--shadow-md); }
.ba .handle::before { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; font-weight: 700; color: var(--navy-800); letter-spacing: 2px; font-size: .9rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,26,49,.35), transparent 50%); opacity: 0; transition: opacity .3s; }
.gallery a:hover::after { opacity: 1; }
.gallery--masonry a:nth-child(4n) { aspect-ratio: 4/5; }

/* ---------- Reviews ---------- */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--ink); font-size: 1rem; line-height: 1.65; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.review .who b { display: block; color: var(--navy-800); font-size: .96rem; }
.review .who small { color: var(--muted); font-size: .84rem; }
.review .gverified { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--muted); font-weight: 600; }
.review .gverified img { width: 16px; height: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--line-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--navy-800); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; transition: background .25s, transform .3s; }
.faq-q .pm svg { width: 16px; height: 16px; color: var(--amber-600); transition: transform .3s; }
.faq-item.open .faq-q .pm { background: var(--amber); }
.faq-item.open .faq-q .pm svg { color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a div { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span { padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .9rem; color: var(--navy-700); transition: .2s; }
.areas span:hover { border-color: var(--amber); color: var(--amber-600); transform: translateY(-2px); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat .amber { color: var(--amber); }
.stat span { display: block; margin-top: 8px; font-size: .92rem; color: #9fb0c4; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--amber) 0%, var(--amber-700) 100%); border-radius: var(--r-xl); padding: clamp(36px, 5vw, 64px); overflow: hidden; color: #fff; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); position: relative; max-width: 56ch; }
.cta-band .btn-primary { background: #fff; color: var(--amber-700); box-shadow: 0 14px 30px -10px rgba(0,0,0,.3); }
.cta-band .btn-primary:hover { background: var(--navy-800); color: #fff; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.5); }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split__media .float-badge { position: absolute; left: 20px; bottom: 20px; background: #fff; border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.split__media .float-badge svg { width: 30px; height: 30px; color: var(--green); }
.split__media .float-badge b { color: var(--navy-800); font-size: 1.05rem; display: block; line-height: 1.1; }
.split__media .float-badge small { color: var(--muted); font-size: .8rem; }
.ticklist { display: grid; gap: 13px; margin-top: 22px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.ticklist svg { width: 23px; height: 23px; color: var(--green); flex: none; margin-top: 1px; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--navy-800); color: #cdd8e6; position: relative; overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(800px 400px at 85% -20%, rgba(255,106,43,.2), transparent 60%), linear-gradient(160deg, #0c2340, #081a31); }
.page-hero__inner { padding-block: clamp(48px, 7vw, 84px); max-width: 760px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .86rem; color: #8fa3ba; margin-bottom: 18px; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { color: #b9c7d8; font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 56ch; }
.page-hero .hero__actions { margin-top: 28px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #9fb2c7; padding-top: clamp(56px, 7vw, 84px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 48px; }
.footer__brand img { height: 42px; margin-bottom: 18px; }
.footer__brand p { font-size: .94rem; color: #8da1b8; max-width: 38ch; }
.footer__contact { display: grid; gap: 12px; margin-top: 20px; }
.footer__contact a, .footer__contact div { display: flex; align-items: flex-start; gap: 11px; font-size: .94rem; color: #c2d0e0; }
.footer__contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }
.footer__contact a:hover { color: #fff; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: 0; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .94rem; color: #9fb2c7; transition: color .2s, padding .2s; }
.footer__links a:hover { color: #fff; padding-left: 4px; }
.footer__badges { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.footer__badges img { height: 38px; width: auto; background: #fff; border-radius: 8px; padding: 5px 8px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #7d92aa; }
.footer__bar a:hover { color: #fff; }
.footer__bar .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(8,26,49,.1); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 11px 6px 13px; font-weight: 700; font-size: .8rem; }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .call { color: var(--navy-800); }
.mobile-bar .wa { color: #259c4f; border-inline: 1px solid var(--line); }
.mobile-bar .quote { background: var(--amber); color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { scroll-behavior: auto; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 36px; }
.maxw-prose { max-width: 70ch; }
.hide-mobile { } .show-mobile { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 900px) {
  .header__phone { display: none; }
  .header__cta .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .quote-card { order: -1; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .ba-wrap { grid-template-columns: 1fr; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .footer__bar { padding-bottom: 78px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4, .choices, .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__actions .btn, .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { text-align: center; }
  .cta-band .hero__actions { justify-content: center; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}
