/* =====================================================================
   PEAK HOME SERVICES - Brand Design System
   Marine Blue & Orange · Bold. Trusted. Unforgettable.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-950: #0c1626;
  --navy-900: #0f1c30;
  --navy-800: #16263f;
  --navy-700: #1d3252;
  --navy-600: #294166;
  --navy-500: #3a567f;

  --orange:        #f26a21;
  --orange-600:    #e85d12;
  --orange-400:    #ff8a4c;
  --orange-200:    #ffd0b0;

  --ink:    #16263f;
  --slate:  #4a5a72;
  --muted:  #6e7d92;
  --line:   #e3e8ef;
  --cloud:  #f4f7fb;
  --cloud-2:#eef3f9;
  --white:  #ffffff;

  /* Functional */
  --ok: #1f9d6b;

  /* Type */
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --display: "Inter", var(--font);

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(15, 28, 48, .08);
  --sh:    0 14px 40px rgba(15, 28, 48, .12);
  --sh-lg: 0 30px 70px rgba(15, 28, 48, .22);
  --sh-orange: 0 14px 30px rgba(242, 106, 33, .35);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }

/* ---------- A11y helpers ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 12px 20px;
  font-weight: 800; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--orange); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--orange-400); }

.h-xl { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--slate); }
.lead--light { color: rgba(255,255,255,.82); }
.muted { color: var(--muted); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }

.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .lead { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 1rem; letter-spacing: .01em;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--sh-orange); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(242,106,33,.45); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border: 2px solid rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0) scale(.98); }

/* Shine sweep on primary CTAs */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -30%; width: 24%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn--primary:hover::after { left: 120%; }

/* Attention pulse for the header quote button */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,106,33,.45), var(--sh-orange); }
  50%       { box-shadow: 0 0 0 9px rgba(242,106,33,0), var(--sh-orange); }
}
.site-header .btn--primary { animation: ctaPulse 2.6s ease-in-out infinite; }

/* CTA microcopy line (under hero / form buttons) */
.cta-note {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px;
  font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.92);
}
.cta-note .n { display: inline-flex; align-items: center; gap: 7px; }
.cta-note .n svg { width: 16px; height: 16px; color: var(--orange-400); flex: none; }
.cta-note--dark { color: var(--slate); }
.cta-note--dark .n svg { color: var(--orange-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 44px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-weight: 900; font-size: 1.18rem; letter-spacing: .02em; color: var(--navy-800); }
.brand-text .b1 em { font-style: normal; color: var(--orange); }
.brand-text .b2 { font-size: .58rem; font-weight: 800; letter-spacing: .3em; color: var(--muted); margin-top: 3px; white-space: nowrap; }
.site-header.on-dark .brand-text .b1 { color: #fff; }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative; padding: 10px 14px; border-radius: 10px;
  font-weight: 600; font-size: .96rem; color: var(--slate);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--navy-800); background: var(--cloud); }
.nav a.active { color: var(--navy-800); }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.nav a.nav-lang {
  border: 2px solid var(--line); border-radius: 999px; padding: 7px 14px;
  font-weight: 800; font-size: .82rem; letter-spacing: .06em; color: var(--navy-800);
}
.nav a.nav-lang:hover { border-color: var(--orange); color: var(--orange-600); background: #fff; }
.nav a.nav-lang.active::after { display: none; }
.mobile-nav nav a.nav-lang { border-bottom: 1px solid rgba(255,255,255,.08); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--navy-800); white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }

/* Mobile nav */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); color: var(--navy-800); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }
.mobile-nav { position: fixed; inset: 0; z-index: 70; background: var(--navy-900); color: #fff; display: none; flex-direction: column; padding: 24px var(--gutter); }
.mobile-nav.open { display: flex; }
.mobile-nav .mn-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav .mn-close { color: #fff; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; display: grid; place-items: center; }
.mobile-nav nav { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a { font-size: 1.5rem; font-weight: 800; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .mn-actions { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(242,106,33,.30), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
}
.hero::after { /* mountain silhouette */
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 140px;
  background:
    linear-gradient(to top, rgba(12,22,38,.6), transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath d='M0 140 L260 40 L420 96 L620 18 L820 110 L1040 44 L1240 100 L1440 36 L1440 140 Z' fill='%230c1626'/%3E%3C/svg%3E") bottom/cover no-repeat;
  opacity: .55; pointer-events: none;
}
.hero::before { /* bold angular wrap-style beam, echoes the truck livery */
  content: ""; position: absolute; top: 0; right: 0; width: min(46vw, 620px); height: 100%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange) 55%, var(--orange-600));
  clip-path: polygon(78% 0, 100% 0, 100% 34%, 40% 100%, 22% 100%, 64% 26%);
  opacity: .95; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding-block: clamp(56px, 8vw, 104px); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); color: #fff; }
.hero h1 .stroke { color: var(--orange); }
.hero p.lead { color: rgba(255,255,255,.84); margin-top: 22px; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; }
.hero-trust .t { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .94rem; color: rgba(255,255,255,.9); }
.hero-trust .t svg { width: 22px; height: 22px; color: var(--orange-400); flex: none; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/4.4; background: var(--navy-700);
}
.hero-badge {
  position: absolute; z-index: 3; background: #fff; color: var(--ink);
  border-radius: var(--r); box-shadow: var(--sh); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .num { font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-badge .lbl { font-size: .76rem; font-weight: 700; color: var(--slate); line-height: 1.2; }
.hero-badge.b-tl { top: 18px; left: -18px; }
.hero-badge.b-br { bottom: 22px; right: -16px; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-badge.b-tl { animation: badgeFloat 5.5s ease-in-out infinite; }
.hero-badge.b-br { animation: badgeFloat 6.5s ease-in-out 1.2s infinite; }

/* ---------- Scene illustrations (SVG photo stand-ins) ---------- */
.scene { width: 100%; height: 100%; display: block; }

/* Real photos dropped into the same frames (hero card, service media, splits, gallery) */
.hero-card img, .svc-media img, .split-media img, .gcard img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-900); color: #fff; }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 30px; padding-block: 22px; }
.trust-strip .ts { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .96rem; color: rgba(255,255,255,.92); }
.trust-strip .ts svg { width: 26px; height: 26px; color: var(--orange-400); flex: none; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 8px; }
.stat .n { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--navy-800); line-height: 1; font-variant-numeric: tabular-nums; }
.stat .n em { font-style: normal; color: var(--orange); }
.stat .n::after { content: ""; display: block; width: 34px; height: 4px; border-radius: 4px; background: var(--orange); margin: 12px auto 0; }
.stat .l { margin-top: 10px; font-weight: 700; color: var(--slate); font-size: .95rem; }

/* ---------- Service cards ---------- */
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}
.svc-card::before { /* orange accent bar sweeps in on hover */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 4;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: transparent; }
.svc-media { aspect-ratio: 16/10; position: relative; background: var(--navy-700); }
.svc-media .scene { position: absolute; inset: 0; }
.svc-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--navy-800);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--orange); color: #fff; margin-top: -46px; position: relative; z-index: 3; border: 4px solid #fff; box-shadow: 0 8px 18px rgba(242,106,33,.35); }
.svc-ico svg { width: 26px; height: 26px; }
.svc-body h3 { font-size: 1.22rem; margin-top: 14px; }
.svc-body p { color: var(--slate); margin-top: 8px; font-size: .96rem; }
.svc-link { margin-top: 16px; font-weight: 800; color: var(--orange-600); display: inline-flex; align-items: center; gap: 8px; }
.svc-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* Compact icon feature tile */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 22px; transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.feature .fi { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-800); color: var(--orange-400); margin-bottom: 16px; }
.feature .fi svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; }
.feature p { color: var(--slate); margin-top: 8px; font-size: .95rem; }

/* "We do it all" pill list */
.alllist { display: flex; flex-wrap: wrap; gap: 12px; }
.alllist .pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 18px; font-weight: 700; font-size: .94rem; color: var(--navy-800);
}
.alllist .pill svg { width: 18px; height: 18px; color: var(--orange); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--flip .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 5/4; position: relative; background: var(--navy-700); }
.checklist { display: grid; gap: 14px; margin-top: 24px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ck { width: 26px; height: 26px; border-radius: 8px; background: rgba(31,157,107,.12); color: var(--ok); display: grid; place-items: center; flex: none; margin-top: 2px; }
.checklist .ck svg { width: 16px; height: 16px; }
.checklist b { display: block; color: var(--navy-800); }
.checklist span { color: var(--slate); font-size: .96rem; }

/* ---------- Process ---------- */
.process { counter-reset: step; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 36px); }
.step { position: relative; }
.step .sn { width: 56px; height: 56px; border-radius: 16px; background: var(--orange); color: #fff; font-weight: 900; font-size: 1.4rem; display: grid; place-items: center; box-shadow: var(--sh-orange); }
.step h3 { margin-top: 18px; font-size: 1.15rem; }
.step p { color: var(--slate); margin-top: 8px; font-size: .95rem; }
/* .process sits on the navy band - headings must not inherit navy ink */
.process .step h3 { color: #fff; }
.process .step p { color: rgba(255,255,255,.82); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 28px; left: 70px; right: -18px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

/* ---------- Testimonials ---------- */
.tcard {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 16px; height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tcard::before {
  content: "\201C"; position: absolute; top: 6px; right: 20px;
  font-size: 5rem; line-height: 1; font-weight: 900; color: var(--orange);
  font-family: Georgia, serif; pointer-events: none;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--orange-200); }
.stars { display: flex; gap: 3px; color: var(--orange); }
.stars svg { width: 18px; height: 18px; }
.tcard p { color: var(--ink); font-size: 1.02rem; }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tperson .av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; font-weight: 800; }
.tperson b { color: var(--navy-800); display: block; }
.tperson span { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.qa { border: 1px solid var(--line); border-radius: var(--r); background: #fff; margin-bottom: 14px; overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 800; color: var(--navy-800);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.05rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--cloud); color: var(--orange-600); display: grid; place-items: center; transition: transform .2s ease, background .2s ease; font-size: 1.3rem; line-height: 1; }
.qa[open] summary .pm { transform: rotate(45deg); background: var(--orange); color: #fff; }
.qa .qa-body { padding: 0 24px 22px; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(242,106,33,.35), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.cta-band .wrap { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding-block: clamp(48px, 7vw, 84px); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(242,106,33,.28), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.page-hero .wrap { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 96px); max-width: 820px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,.82); margin-top: 16px; font-size: 1.15rem; max-width: 60ch; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--orange-400); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh); padding: clamp(24px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--navy-800); margin-bottom: 7px; font-size: .92rem; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,106,33,.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkopt { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; font-weight: 600; color: var(--navy-800); cursor: pointer; transition: border-color .15s, background .15s; font-size: .94rem; }
.checkopt:hover { border-color: var(--orange-200); }
.checkopt input { accent-color: var(--orange); width: 18px; height: 18px; }
.checkopt.checked { border-color: var(--orange); background: rgba(242,106,33,.06); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: rgba(31,157,107,.1); border: 1.5px solid rgba(31,157,107,.4); color: #14774f; border-radius: 12px; padding: 16px 18px; font-weight: 700; margin-bottom: 18px; }
.form-success.show { display: block; }

/* Contact info cards */
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.info-card .ii { width: 50px; height: 50px; border-radius: 14px; background: var(--navy-800); color: var(--orange-400); display: grid; place-items: center; flex: none; }
.info-card .ii svg { width: 24px; height: 24px; }
.info-card b { color: var(--navy-800); display: block; font-size: 1.05rem; }
.info-card span, .info-card a { color: var(--slate); font-size: .96rem; }
.info-card a:hover { color: var(--orange-600); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gcard { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); position: relative; aspect-ratio: 4/3; background: var(--navy-700); }
.gcard .scene { position: absolute; inset: 0; }
.gcard .gcap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 18px 16px; color: #fff; background: linear-gradient(to top, rgba(12,22,38,.88), transparent); font-weight: 800; }
.gcard .gcap span { display: block; font-weight: 600; font-size: .82rem; color: rgba(255,255,255,.8); }
.ba-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .05em; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; }

/* ---------- About values ---------- */
.value { padding: 26px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.value .vi { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(242,106,33,.12); color: var(--orange-600); margin-bottom: 16px; }
.value .vi svg { width: 28px; height: 28px; }
.value h3 { font-size: 1.15rem; }
.value p { color: var(--slate); margin-top: 8px; font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding-top: clamp(56px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand .b1 { color: #fff; }
.site-footer .brand .b2 { color: rgba(255,255,255,.5); }
.footer-about { margin-top: 18px; font-size: .96rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .15s ease; }
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: .96rem; }
.footer-col a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex: none; margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-block: 24px; font-size: .88rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .hero-badge, .site-header .btn--primary { animation: none !important; }
  .btn--primary::after { display: none; }
}

/* ---------- Focus visibility (a11y + keyboard users) ---------- */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }

/* ---------- Perf: skip rendering below-fold sections until needed ---------- */
.section, .cta-band { content-visibility: auto; contain-intrinsic-size: auto 640px; }
.site-footer { content-visibility: auto; contain-intrinsic-size: auto 480px; }

/* ---------- Floating mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15,28,48,.97); backdrop-filter: blur(8px);
  border-top: 2px solid var(--orange); box-shadow: 0 -10px 30px rgba(12,22,38,.35);
}
.callbar .btn { flex: 1; padding: 15px 18px; font-size: 1.02rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cols-5 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .nav, .header-phone { display: none; }
  .hero::before { width: 58vw; height: 46%; clip-path: polygon(58% 0, 100% 0, 100% 52%, 76% 24%); }
  .site-header .btn--primary { animation: none; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .callbar { display: flex; }
  body { padding-bottom: 70px; }
  .hero-badge.b-tl { left: 0; }
  .hero-badge.b-br { right: 0; }
}
@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-5 { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .field-row, .checkgrid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; }
}
