/* ============================================================
   AllRemovalz — Design System
   Palette sampled from brand logo
   ============================================================ */

:root {
  /* Brand */
  --orange: #ff6a00;
  --orange-hot: #ff4000;
  --orange-bright: #ff8000;
  --red: #e81000;
  --ink: #141414;
  --ink-soft: #2b2b2b;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --line: #e9e7e4;
  --bg: #ffffff;
  --bg-soft: #faf8f6;
  --bg-dark: #161412;
  --white: #ffffff;

  /* Gradients */
  --grad-orange: linear-gradient(135deg, #ff8000 0%, #ff4000 100%);
  --grad-orange-soft: linear-gradient(135deg, #fff2e8 0%, #ffe6d6 100%);

  /* Type */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Shape */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, .06);
  --shadow: 0 12px 34px rgba(20, 20, 20, .10);
  --shadow-orange: 0 14px 30px rgba(255, 74, 0, .28);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #f4f1ee; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--orange-bright); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--grey); max-width: 60ch; }
.section--dark .lead { color: #c8c4bf; }
.muted { color: var(--grey); }
.text-orange { color: var(--orange-hot); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 28px; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255, 74, 0, .38); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange-hot); color: var(--orange-hot); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 19px 36px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { height: 46px; width: auto; }
.brand span { font-size: 1.15rem; letter-spacing: -.02em; }
.brand b { color: var(--orange-hot); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .98rem; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg-soft); color: var(--orange-hot); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav-phone:hover { color: var(--orange-hot); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-soft); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(255, 128, 0, .16), transparent 60%),
    radial-gradient(50% 60% at 5% 100%, rgba(255, 64, 0, .10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--orange-hot); }
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.hero-trust .stars { color: var(--orange-hot); font-size: 1.1rem; letter-spacing: 2px; }
.hero-trust small { color: var(--grey); font-weight: 600; }

.hero-card {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 26px; border: 1px solid var(--line);
}
.hero-card img { border-radius: var(--radius); }

/* ---------- Badges / pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: .85rem; box-shadow: var(--shadow-sm); }
.pill svg { color: var(--orange-hot); }

/* ---------- Trust bar ---------- */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: space-between; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; }
.trust-item svg { color: var(--orange-hot); flex: none; }

/* ---------- Section heading block ---------- */
.head { max-width: 720px; margin-bottom: 48px; }
.head.center { margin-inline: auto; }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-orange-soft); color: var(--orange-hot); margin-bottom: 18px;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey); font-size: .98rem; }
.card .arrow { margin-top: 16px; font-weight: 700; color: var(--orange-hot); display: inline-flex; gap: 6px; align-items: center; }
.card .arrow svg { transition: transform .15s; }
.card:hover .arrow svg { transform: translateX(4px); }

/* Service card with top accent */
.svc-card { position: relative; overflow: hidden; }
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-orange); opacity: 0; transition: opacity .2s; }
.svc-card:hover::before { opacity: 1; }
.svc-card .tag { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-light); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step .num {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-orange); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
  box-shadow: var(--shadow-orange);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--grey); font-size: .96rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column;
}
.price.featured { border-color: var(--orange-hot); box-shadow: var(--shadow-orange); position: relative; }
.price.featured::after {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-orange); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill);
}
.price h3 { font-size: 1.3rem; }
.price .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 2px; }
.price .amount small { font-size: 1rem; font-weight: 600; color: var(--grey); }
.price .desc { color: var(--grey); font-size: .95rem; margin-bottom: 22px; }
.price ul { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.price li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; }
.price li svg { color: var(--orange-hot); flex: none; margin-top: 3px; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; height: 100%; }
.quote-card .stars { color: var(--orange-hot); letter-spacing: 2px; margin-bottom: 14px; }
.quote-card p { font-size: 1.02rem; }
.quote-card .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-orange); color: #fff; display: grid; place-items: center; font-weight: 800; }
.quote-card .who b { display: block; font-size: .95rem; }
.quote-card .who small { color: var(--grey); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--grad-orange); color: #fff; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(40px, 6vw, 72px); }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); position: relative; max-width: 52ch; }
.cta-band .hero-actions { position: relative; margin-top: 26px; margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 7px; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange-hot); box-shadow: 0 0 0 4px rgba(255, 106, 0, .12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--grey); margin-top: 6px; }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: #ecfdf3; border: 1px solid #abefc6; color: #067647; font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq + .faq { margin-top: 14px; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--orange-hot); font-size: 1.2rem; transition: transform .2s; }
.faq[open] summary .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 22px; color: var(--grey); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--orange-hot); letter-spacing: -.03em; }
.stat .l { color: var(--grey); font-weight: 600; font-size: .95rem; }
.section--dark .stat .l { color: #c8c4bf; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 100% 0%, rgba(255,74,0,.35), transparent 55%); }
.page-hero .container { position: relative; padding-block: clamp(56px, 8vw, 96px); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { color: #cfcac4; }
.breadcrumb { font-size: .9rem; color: var(--orange-bright); margin-bottom: 18px; font-weight: 600; }
.breadcrumb a { color: #b8b2ab; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Checklist ---------- */
.check { display: grid; gap: 14px; }
.check li { display: flex; gap: 12px; align-items: flex-start; }
.check li svg { color: var(--orange-hot); flex: none; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #c8c4bf; padding-block: 64px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #c8c4bf; }
.site-footer a:hover { color: var(--orange-bright); }
.footer-links { display: grid; gap: 10px; font-size: .95rem; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 32ch; }
.footer-contact { display: grid; gap: 10px; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .88rem; color: var(--grey-light); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.hide-mobile { }
.float-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 76px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 14px var(--gutter); gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-toggle { display: inline-flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .float-cta {
    display: flex; position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 60;
    gap: 10px;
  }
  .float-cta .btn { flex: 1; box-shadow: var(--shadow); }
  body { padding-bottom: 72px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ORANGE THEME v2 + IMAGERY
   ============================================================ */

/* Warmer page canvas */
body { background: #fff7f0; }

/* ---------- Hero: full-bleed photo + orange gradient ---------- */
.hero {
  background:
    linear-gradient(118deg, rgba(255,64,0,.93) 0%, rgba(255,90,0,.88) 45%, rgba(255,128,0,.78) 100%),
    url("../assets/images/hero-van.jpg") center 30% / cover no-repeat;
  color: #fff;
}
.hero::before {
  background:
    radial-gradient(55% 60% at 88% 8%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(0,0,0,.12), transparent 60%);
}
.hero .eyebrow { color: rgba(255,255,255,.92); }
.hero h1, .hero .lead, .hero .hero-trust small, .hero .stars { color: #fff; }
.hero .lead { color: rgba(255,255,255,.95); }
.hero h1 .hl { color: var(--orange-hot); background: #fff; padding: 0 .18em; border-radius: 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero .btn--primary { background: #fff; color: var(--orange-hot); box-shadow: 0 16px 32px rgba(0,0,0,.22); }
.hero .btn--primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 22px 40px rgba(0,0,0,.28); }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

/* ---------- Interior page hero: orange + London photo ---------- */
.page-hero {
  background:
    linear-gradient(120deg, rgba(255,64,0,.95) 0%, rgba(255,106,0,.86) 60%, rgba(255,128,0,.80) 100%),
    url("../assets/images/london.jpg") center / cover no-repeat;
  color: #fff;
}
.page-hero::before { background: radial-gradient(60% 130% at 100% 0%, rgba(255,255,255,.20), transparent 55%); }
.page-hero .lead { color: rgba(255,255,255,.95); }
.breadcrumb { color: rgba(255,255,255,.9); }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Soft sections get a warm orange wash ---------- */
.section--soft { background: linear-gradient(180deg, #fff3ea 0%, #ffe7d8 100%); }

/* ---------- Full orange band ---------- */
.section--orange { background: var(--grad-orange); color: #fff; position: relative; overflow: hidden; }
.section--orange::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); }
.section--orange::after { content: ""; position: absolute; left: -60px; bottom: -90px; width: 260px; height: 260px; border-radius: 50%; background: rgba(0,0,0,.06); }
.section--orange .eyebrow { color: rgba(255,255,255,.9); }
.section--orange h2, .section--orange h3, .section--orange .stat .n { color: #fff; }
.section--orange .lead, .section--orange .stat .l { color: rgba(255,255,255,.92); }

/* ---------- Image media blocks ---------- */
.media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #ffe7d8; }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--wide { aspect-ratio: 16 / 10; }
.media--tall { aspect-ratio: 4 / 5; }
.media--square { aspect-ratio: 1 / 1; }
.media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(255,64,0,.30)); pointer-events: none; }
.media--frame { border: 5px solid #fff; outline: 2px solid rgba(255,106,0,.30); outline-offset: -7px; }
.media-badge { position: absolute; left: 16px; bottom: 16px; z-index: 2; background: rgba(255,255,255,.95); color: var(--ink); font-weight: 800; font-size: .82rem; padding: 8px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }

/* ---------- Service cards with photos ---------- */
.svc-card { padding: 0; overflow: hidden; }
.svc-card::before { display: none; }
.svc-card .svc-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-card .svc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,.06) 0%, rgba(255,64,0,.42) 100%); }
.svc-card .ico { position: absolute; left: 22px; bottom: -26px; z-index: 2; margin: 0; background: var(--grad-orange); color: #fff; border: 3px solid #fff; box-shadow: var(--shadow); }
.svc-card .ico svg { color: #fff; }
.svc-card .svc-body { padding: 42px 28px 30px; }
.svc-card .tag { color: var(--orange-hot); }

/* ---------- Gallery strip ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .media { aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.gallery .media img { transition: transform .5s ease; }
.gallery .media:hover img { transform: scale(1.08); }
@media (max-width: 960px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Image + text split helper ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .media { aspect-ratio: 4 / 3; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 28px; } .split .media { aspect-ratio: 16 / 10; } }

/* ---------- Orange navbar ---------- */
.site-header {
  background: linear-gradient(120deg, #ff5400 0%, #ff7d12 100%);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 22px rgba(226,84,11,.30);
}
.brand img { height: 52px; border-radius: 9px; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.nav-links a { color: rgba(255,255,255,.92); }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.18); color: #fff; }
.nav-phone { color: #fff; }
.nav-phone:hover { color: rgba(255,255,255,.82); }
.nav-toggle { color: #fff; }
/* Nav primary CTA: white pill so it reads on orange */
.site-header .btn--primary { background: #fff; color: var(--orange-hot); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.site-header .btn--primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.24); }
/* Mobile dropdown is white, so restore dark link text there */
@media (max-width: 720px) {
  .nav-links.open { background: #fff; }
  .nav-links.open a { color: var(--ink-soft); }
  .nav-links.open a:hover, .nav-links.open a.active { background: var(--bg-soft); color: var(--orange-hot); }
}

/* ---------- Fix: primary CTA on orange page heros (was white-on-orange, low contrast) ---------- */
.page-hero .btn--primary { background: #fff; color: var(--orange-hot); }
.page-hero .btn--primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.22); }

/* ---------- WhatsApp ---------- */
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 700;
  padding: 14px 20px; border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.55); color: #fff; }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float span { font-size: .98rem; }
@media (max-width: 720px) {
  .wa-float { bottom: 84px; right: 14px; padding: 14px; }
  .wa-float span { display: none; }
}
