/* ============================================================
   CARAVAN WORX — style.css
   Brand: yellow #FFD103 on near-black ink · Sora + Roboto
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --yellow: #ffd103;
  --yellow-deep: #e6b900;
  --yellow-pale: #fff4c2;
  --ink: #141519;
  --ink-2: #1b1d24;
  --ink-3: #23262f;
  --cloud: #f5f6f9;
  --line: #e6e8ee;
  --slate: #5c6370;
  --muted: #9098a5;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(20,21,25,.06), 0 6px 18px -8px rgba(20,21,25,.14);
  --shadow-md: 0 4px 10px rgba(20,21,25,.06), 0 18px 40px -16px rgba(20,21,25,.25);
  --radius: 18px;
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Roboto", "Segoe UI", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
h1, h2, h3, h4, h5 { margin: 0 0 .6em; line-height: 1.14; font-weight: 700; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--ink); letter-spacing: -.015em; }
p { margin: 0 0 1rem; }
a { color: inherit; }
ul { padding-left: 1.2rem; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.75rem, 5vw, 4.25rem) 0; }
.section--cloud { background: var(--cloud); }
.section--dark {
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(255,209,3,.10), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(255,209,3,.06), transparent 55%),
    var(--ink);
  color: #c3c8d2;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .feature-card { color: var(--slate); }
.section-head { max-width: 760px; margin: 0 auto clamp(2.25rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 800; }
.section-head .lead { font-size: 1.1rem; margin: .75rem auto 0; max-width: 60ch; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--yellow-deep); margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--yellow); }
.eyebrow--light { color: var(--yellow); }
.text-yellow { color: var(--yellow) !important; }
.text-center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  line-height: 1; padding: .95rem 1.55rem; border-radius: 999px;
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn .ic { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(255,209,3,.75); }
.btn--yellow:hover { background: var(--yellow-deep); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--yellow); }
.btn--ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost-light:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--ghost-dark { border-color: var(--ink); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.02rem; }

/* ---------- Icons ---------- */
.ic { width: 1.25rem; height: 1.25rem; flex: none; }
.ic--sm { width: 1rem; height: 1rem; }
.honey { position: absolute !important; left: -9999px !important; opacity: 0; }

/* ---------- Small bits ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 700; font-family: var(--font-display);
  letter-spacing: .04em; color: var(--ink);
  background: var(--yellow-pale); border: 1px solid #ffe38a;
  padding: .45rem .85rem; border-radius: 999px;
}
.chip .ic { width: 1rem; height: 1rem; }
.link-more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--ink); text-decoration: none;
}
.link-more .ic { width: 1rem; height: 1rem; transition: transform .18s ease; }
.link-more:hover .ic { transform: translateX(4px); }
.link-more--yellow { color: var(--yellow); }
.stars { display: inline-flex; gap: 2px; }
.stars .ic { width: 1.05rem; height: 1.05rem; color: var(--yellow); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--ink); color: #c6cad3; font-size: .85rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar a { text-decoration: none; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .tb-item .ic { width: .95rem; height: .95rem; color: var(--yellow); }
.topbar .tb-right { display: flex; gap: 1.25rem; align-items: center; }
.topbar .tb-phone { font-weight: 700; color: #fff; }
.topbar .tb-phone:hover, .topbar .tb-fb:hover { color: var(--yellow); }
.topbar .tb-fb { display: inline-flex; align-items: center; }
.topbar .tb-fb .ic { width: 1rem; height: 1rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(20, 21, 25, .35); }
.site-header .container { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; min-width: 0; }
.brand-mark { width: 54px; height: auto; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: .35rem; margin: 0; padding: 0; }
.main-nav a {
  display: inline-block; padding: .5rem .8rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink);
  border-radius: 8px; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .1rem;
  height: 3px; border-radius: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: .9rem; margin-left: auto; }
.header-cta .btn { padding: .78rem 1.35rem; font-size: .92rem; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  align-items: center; justify-content: center; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.nav-toggle .ic { width: 22px; height: 22px; }

/* Mobile slide-in nav */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(330px, 88vw); z-index: 90;
  background: var(--ink); color: #fff; padding: 1.4rem 1.6rem 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateX(102%); transition: transform .28s ease; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); box-shadow: -30px 0 80px rgba(0, 0, 0, .35); }
.mobile-nav .mn-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mobile-nav .mn-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.nav-close {
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2); background: transparent; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-nav ul { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: .15rem; }
.mobile-nav ul a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .85rem .4rem; color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav ul a .ic { width: 1rem; height: 1rem; color: var(--yellow); }
.mobile-nav .mn-contact { margin-top: auto; display: grid; gap: .8rem; }
.mobile-nav .mn-phone {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--yellow); color: var(--ink); border-radius: 999px;
  padding: .9rem 1rem; text-decoration: none; font-family: var(--font-display); font-weight: 800;
}
.mobile-nav .mn-note { text-align: center; font-size: .82rem; color: #8b909c; }
body.nav-open::after {
  content: ""; position: fixed; inset: 0; z-index: 80;
  background: rgba(12, 13, 16, .55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #cfd4dd;
  background:
    radial-gradient(820px 460px at 78% -12%, rgba(255, 209, 3, .16), transparent 62%),
    radial-gradient(700px 480px at -6% 108%, rgba(255, 209, 3, .09), transparent 55%),
    linear-gradient(150deg, #101116 0%, var(--ink) 55%, #191b22 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(900px 500px at 30% 40%, #000, transparent 75%);
  mask-image: radial-gradient(900px 500px at 30% 40%, #000, transparent 75%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; gap: 3rem; align-items: center; padding-top: clamp(3.4rem, 7vw, 5.5rem); padding-bottom: clamp(3.4rem, 7vw, 5.5rem); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--yellow);
  border: 1px solid rgba(255, 209, 3, .4); background: rgba(255, 209, 3, .08);
  padding: .5rem 1rem; border-radius: 999px; margin: 0 0 1.4rem;
}
.hero-eyebrow .ic { width: 1rem; height: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.15rem); font-weight: 800; color: #fff; margin: 0 0 1.1rem; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--yellow); }
.hero .hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #cfd4dd; max-width: 52ch; margin: 0 0 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 0 0 2.1rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; }
.hero-fact { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: #e6e9ef; font-size: .95rem; }
.hero-fact .ic { color: var(--yellow); width: 1.05rem; height: 1.05rem; }

/* Hero photo collage */
.hero-media { position: relative; padding: 1.2rem; }
.hero-media::before {
  content: ""; position: absolute; top: 0; right: 0; width: 62%; height: 62%;
  border: 2px dashed rgba(255, 209, 3, .35); border-radius: var(--radius);
}
.photo-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7); z-index: 2;
}
.photo-main img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.photo-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(20, 21, 25, .82); color: #fff; border-radius: 999px;
  padding: .45rem .9rem; font-size: .8rem; font-weight: 600;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.photo-tag .ic { width: 1rem; height: 1rem; color: var(--yellow); }
.photo-stack { display: grid; gap: .9rem; }
.hero .photo-side { margin: -3.4rem 0 0 auto; width: min(250px, 72%); position: relative; z-index: 3; }
.hero .photo-side img { border-radius: var(--radius-sm); border: 4px solid #fff; box-shadow: var(--shadow-md); aspect-ratio: 3 / 2; object-fit: cover; }
.hero .float-badge {
  position: absolute; top: 2.4rem; right: -8px; z-index: 4;
  background: var(--yellow); color: var(--ink); border-radius: 14px;
  padding: .7rem .95rem; font-family: var(--font-display); font-weight: 800;
  line-height: 1.15; text-align: center; box-shadow: 0 18px 34px -12px rgba(0, 0, 0, .45);
}
.hero .float-badge span { display: block; font-size: 1.3rem; }
.hero .float-badge small { display: block; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

/* Trusted strip band */
.trust-band { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-band .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.5rem; padding-bottom: 1.5rem; }
.trust-copy { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.trust-copy .stars .ic { width: .95rem; height: .95rem; }
.trust-band img { max-height: 56px; width: auto; }

/* ---------- Feature cards (Large or small / Something not right) ---------- */
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #ffe38a; }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 1.15rem;
  background: var(--ink); color: var(--yellow);
}
.feature-icon .ic { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.32rem; margin-bottom: .5rem; }

/* ---------- Split image/text ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media::after {
  content: ""; position: absolute; z-index: -1; left: -18px; bottom: -18px;
  width: 62%; height: 62%; border-radius: var(--radius); background: var(--yellow);
  opacity: .85;
}
.split-media img { border-radius: var(--radius); aspect-ratio: 4 / 3.3; object-fit: cover; box-shadow: var(--shadow-md); }
.split-media .media-chip {
  position: absolute; right: -14px; bottom: 26px; background: var(--ink); color: #fff;
  border-radius: 14px; padding: .85rem 1.1rem; font-family: var(--font-display); font-weight: 800;
  line-height: 1.2; box-shadow: var(--shadow-md); border: 1px solid rgba(255, 255, 255, .12);
}
.split-media .media-chip b { color: var(--yellow); }
.split-body h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); font-weight: 800; margin-bottom: 1rem; }
.split-body .eyebrow { margin-bottom: 1rem; }

.tick-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .65rem; }
.tick-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; color: var(--ink); }
.tick-list .tick {
  flex: none; width: 24px; height: 24px; margin-top: .1rem; border-radius: 50%;
  background: var(--yellow-pale); color: var(--ink); border: 1px solid #ffe38a;
  display: inline-flex; align-items: center; justify-content: center;
}
.tick-list .tick .ic { width: .85rem; height: .85rem; }

/* ---------- Service cards ---------- */
.card-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .sc-media { position: relative; overflow: hidden; }
.service-card .sc-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .5s ease; }
.service-card:hover .sc-media img { transform: scale(1.06); }
.service-card .sc-icon {
  position: absolute; left: 18px; bottom: -22px; width: 48px; height: 48px;
  border-radius: 13px; background: var(--yellow); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.service-card .sc-icon .ic { width: 22px; height: 22px; }
.service-card .sc-body { padding: 2rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 0; }
.service-card p { flex: 1; }
.service-card .sc-more { margin-top: .6rem; }

/* ---------- Dark "why us" feature strip ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.feature-strip .fs-item { text-align: center; padding: 1.1rem; }
.feature-strip .fs-icon {
  width: 62px; height: 62px; margin: 0 auto .9rem; border-radius: 50%;
  background: rgba(255, 209, 3, .12); border: 1px solid rgba(255, 209, 3, .35);
  color: var(--yellow); display: inline-flex; align-items: center; justify-content: center;
}
.feature-strip .fs-icon .ic { width: 28px; height: 28px; }
.feature-strip h3 { font-size: 1.05rem; color: #fff; margin-bottom: .25rem; }
.feature-strip p { font-size: .92rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card .t-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.testi-card .t-quote { color: var(--ink); font-size: 1.35rem; font-family: var(--font-display); font-weight: 800; line-height: 1; height: 1.5rem; }
.testi-card blockquote { margin: 0; padding: 0; font-size: 1rem; color: var(--slate); }
.testi-card blockquote p { margin: 0; }
.testi-card .t-who { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: .4rem; }
.testi-card .t-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow); }
.testi-card .t-name { font-weight: 800; color: var(--ink); font-family: var(--font-display); font-size: .98rem; line-height: 1.2; }
.testi-card .t-src { font-size: .8rem; color: var(--muted); }
.review-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden; background: var(--yellow); color: var(--ink);
  border-radius: 22px; padding: clamp(2rem, 5vw, 3.2rem);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent 0 18px, var(--ink) 18px 34px);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin: 0 0 .5rem; }
.cta-banner p { margin: 0; font-size: 1.05rem; color: rgba(20, 21, 25, .85); }
.cta-banner .cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: flex-end; }
.cta-banner .btn--dark { background: var(--ink); color: #fff; }
.cta-banner .btn--dark:hover { background: #2a2c34; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #d5d9e1;
  background:
    radial-gradient(820px 460px at 85% -10%, rgba(255, 209, 3, .14), transparent 62%),
    radial-gradient(700px 480px at -6% 110%, rgba(255, 209, 3, .07), transparent 55%),
    linear-gradient(150deg, #101116 0%, var(--ink) 60%, #191b22 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(900px 500px at 30% 40%, #000, transparent 75%);
  mask-image: radial-gradient(900px 500px at 30% 40%, #000, transparent 75%);
}
.page-hero .container { position: relative; display: block; padding-top: clamp(3.2rem, 6vw, 4.6rem); padding-bottom: clamp(3.2rem, 6vw, 4.6rem); max-width: 1000px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; font-weight: 800; margin: 0 0 .8rem; }
.page-hero h1 .accent { color: var(--yellow); }
.page-hero .page-sub { font-size: clamp(1.05rem, 1.7vw, 1.22rem); max-width: 62ch; margin: 0 0 1.8rem; color: #cdd2db; }
.page-hero .page-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hazard-edge {
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 12px, var(--yellow) 12px 24px);
}

/* ---------- Alternating info rows (services page) ---------- */
.info-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.info-row + .info-row { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.info-row--flip .info-media { order: 2; }
.info-media { position: relative; }
.info-media img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; box-shadow: var(--shadow-md); }
.info-media::before {
  content: ""; position: absolute; z-index: -1; right: -14px; top: -14px;
  width: 58%; height: 58%; border-radius: var(--radius); background: var(--yellow); opacity: .9;
}
.info-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }
.info-body .eyebrow { margin-bottom: .8rem; }
.quote-call {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  border-left: 4px solid var(--yellow); padding-left: 1rem; margin: 1.2rem 0;
}
.call-phone {
  display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display);
  font-weight: 800; font-size: 1.25rem; color: var(--ink); text-decoration: none;
}
.call-phone .ic { color: var(--yellow); width: 1.4rem; height: 1.4rem; }
.call-phone:hover { color: var(--yellow-deep); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.6rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.price-card .p-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.price-card .p-icon .ic { width: 22px; height: 22px; }
.price-card h3 { font-size: 1.18rem; margin-bottom: .2rem; }
.price-card .p-from {
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.price-card .p-price {
  font-family: var(--font-display); font-weight: 800; font-size: 2.1rem;
  color: var(--ink); line-height: 1; margin: .4rem 0 .9rem;
  display: flex; align-items: baseline; gap: .3rem;
}
.price-card .p-price span { font-size: .95rem; font-weight: 700; color: var(--muted); }
.price-card .p-desc { font-size: .97rem; }
.price-card .p-note {
  margin-top: auto; padding-top: .8rem; font-size: .84rem; color: var(--muted);
  border-top: 1px dashed var(--line);
}
.price-card .p-cta { margin-top: 1.1rem; }
.price-card .browse {
  display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display);
  font-weight: 700; font-size: .92rem; color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--yellow);
}
.pricing-tiers { list-style: none; margin: 0 0 .6rem; padding: 0; display: grid; gap: .3rem; }
.pricing-tiers li {
  display: flex; justify-content: space-between; align-items: baseline; gap: .8rem;
  font-weight: 500; color: var(--ink); padding: .28rem 0; border-bottom: 1px dotted var(--line);
}
.pricing-tiers li b { font-family: var(--font-display); font-size: 1.15rem; }
.price-disclaimer {
  display: flex; gap: .6rem; align-items: flex-start; margin-top: 2.5rem;
  font-size: .92rem; color: var(--muted); background: #fff; border: 1px dashed var(--line);
  border-radius: 14px; padding: 1rem 1.2rem;
}
.price-disclaimer .ic { color: var(--yellow); margin-top: .15rem; flex: none; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .c-icon {
  width: 52px; height: 52px; margin: 0 auto .85rem; border-radius: 50%;
  background: var(--ink); color: var(--yellow); display: flex; align-items: center; justify-content: center;
}
.contact-card .c-icon .ic { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-card a { color: var(--ink); font-weight: 600; text-decoration: none; }
.contact-card a:hover { color: var(--yellow-deep); }
.contact-card p { margin: 0; font-size: .95rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.3rem);
}
.form-card h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .84rem; color: var(--ink); }
.field label .req { color: #e5484d; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cloud); border: 1.5px solid transparent; border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; background: #fff; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 209, 3, .22);
}
.field .hint { font-size: .8rem; color: var(--muted); }
.form-status { display: none; margin-top: .8rem; padding: .8rem 1rem; border-radius: 10px; font-size: .94rem; font-weight: 500; }
.form-status.is-success { display: block; background: #e7f8ee; color: #157347; border: 1px solid #b7e4c8; }
.form-status.is-error { display: block; background: #fdecec; color: #b02a37; border: 1px solid #f5c2c7; }
.form-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.form-actions .form-status { margin: 0; flex: 1; }

/* Contact page layout */
.contact-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 2rem; align-items: start; }
.contact-aside { display: grid; gap: 1rem; position: sticky; top: calc(var(--header-h) + 20px); }

/* ---------- Insurance promo card ---------- */
.promo-card {
  background: var(--ink); color: #cdd2db; border-radius: var(--radius);
  padding: 1.7rem; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.promo-card::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255, 209, 3, .25), transparent 70%);
}
.promo-card .p-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.promo-card h3 { color: #fff; font-size: 1.25rem; }
.promo-card p { margin-bottom: .5rem; }
.promo-card .promo-link { color: var(--yellow); font-weight: 700; text-decoration: none; }
.promo-card .promo-link:hover { text-decoration: underline; }

/* Map */
.map-wrap { position: relative; line-height: 0; }
.map-wrap iframe { width: 100%; border: 0; filter: grayscale(.9) contrast(1.02); transition: filter .3s ease; }
.map-wrap:hover iframe { filter: grayscale(0); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9aa1ad; }
.site-footer a { text-decoration: none; color: inherit; }
.footer-main { display: grid; grid-template-columns: 1.25fr .8fr 1fr 1.25fr; gap: 2.5rem; padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: 2.5rem; }
.footer-main h3 {
  color: #fff; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 800; margin-bottom: 1.1rem;
}
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: auto; }
.footer-brand .fb-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.15rem; line-height: 1.1; }
.footer-brand .fb-name small { display: block; font-weight: 600; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); }
.footer-about p { font-size: .95rem; }
.footer-social { display: flex; gap: .6rem; margin-top: .4rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center;
  justify-content: center; background: rgba(255, 255, 255, .07); color: #fff; border: 1px solid rgba(255, 255, 255, .1);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.footer-social a:hover { background: var(--yellow); color: var(--ink); transform: translateY(-3px); }
.footer-social .ic { width: 18px; height: 18px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a { font-size: .97rem; display: inline-flex; align-items: center; gap: .45rem; transition: color .15s ease; }
.footer-links a .ic { width: .85rem; height: .85rem; color: var(--yellow); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.footer-contact li { display: flex; gap: .7rem; font-size: .96rem; align-items: flex-start; }
.footer-contact .ic { width: 1.1rem; height: 1.1rem; color: var(--yellow); margin-top: .2rem; flex: none; }
.footer-contact a:hover { color: var(--yellow); }
.footer-contact .fc-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }

.footer-quick { background: var(--ink-2); }
.footer-quick .container {
  display: grid; grid-template-columns: .85fr 1.5fr; gap: 2rem; align-items: center;
  padding-top: 2rem; padding-bottom: 2rem;
}
.footer-quick h3 { color: #fff; font-family: var(--font-display); font-size: 1.35rem; text-transform: none; letter-spacing: 0; margin-bottom: .3rem; }
.footer-quick .fq-note p { font-size: .94rem; margin: 0; }
.footer-quick .fq-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: .7rem; align-items: end; }
.footer-quick .fq-form .fq-msg { grid-column: 1 / -1; }
.footer-quick .fq-form .form-status { grid-column: 1 / -1; margin: 0; }
.footer-quick .fq-form h3 { color: #fff; font-family: var(--font-display); font-size: 1.2rem; text-transform: none; letter-spacing: 0; margin-bottom: .2rem; }
.footer-quick .fq-form > p { font-size: .9rem; margin-bottom: 1rem; }
.footer-quick .fq-form .form-status { margin-top: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.15rem; padding-bottom: 1.15rem; font-size: .85rem; }
.footer-bottom a:hover { color: var(--yellow); }

/* Mini (footer) form layout */
.fq-form .form-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
.fq-form .field input, .fq-form .field textarea {
  background: var(--ink-3); color: #fff; border: 1px solid transparent;
}
.fq-form .field input::placeholder, .fq-form .field textarea::placeholder { color: #8b909c; }
.fq-form .field input:focus, .fq-form .field textarea:focus { background: var(--ink-3); border-color: var(--yellow); }
.fq-form .field label { color: #fff; }

/* ---------- Reveal on scroll ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
html.js [data-reveal].in-view { opacity: 1; transform: none; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 4rem 0; }
.error-code {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 16vw, 9rem);
  line-height: .9; color: var(--yellow); letter-spacing: -.03em;
  -webkit-text-stroke: 2px var(--ink); text-shadow: 8px 8px 0 var(--ink);
}
.error-page h1 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin: .4rem 0 .4rem; }
.error-page .error-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---------- Generic helper ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--ink); font-weight: 700; padding: .6rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.info-note {
  display: flex; gap: .7rem; align-items: flex-start; background: var(--cloud);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: .96rem;
}
.info-note .ic { color: var(--yellow); margin-top: .15rem; flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4, .feature-strip, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .card-group, .price-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero .container { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-media { max-width: 560px; }
  .split, .info-row { grid-template-columns: 1fr; }
  .split--reverse .split-media, .info-row--flip .info-media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .cta-actions { justify-content: flex-start; }
  .footer-quick .container { grid-template-columns: 1fr; }
  .footer-quick .fq-note { text-align: center; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .container { width: min(var(--container), 100% - 1.75rem); }
  .grid-2, .grid-3, .grid-4, .card-group, .price-grid, .testi-grid,
  .feature-strip, .contact-cards, .footer-main { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar .tb-left { display: none; }
  .topbar .container { justify-content: center; }
  .brand-mark { width: 44px; }
  .trust-band .container { justify-content: center; text-align: center; }
  .hero .photo-side { width: min(210px, 70%); }
  .hero .float-badge { right: 4px; top: 1.6rem; }
  .hero-actions .btn { width: 100%; }
  .review-links .btn { width: 100%; }
  .price-disclaimer { margin-top: 1.8rem; }
  .footer-quick .fq-form { grid-template-columns: 1fr; }
  .footer-quick .fq-form .fq-msg { grid-column: auto; }
  .footer-quick .fq-form button { width: 100%; }
}

@media (max-width: 400px) {
  .form-actions { flex-direction: column; align-items: stretch; }
}

/* ---------- Video tiles (click-to-play) ---------- */
.video-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 16 / 9; background: var(--ink); cursor: pointer;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: block; width: 100%; padding: 0;
  transition: transform .22s ease, box-shadow .22s ease;
}
.video-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.video-tile .vt-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.video-tile:hover .vt-thumb { transform: scale(1.06); }
.video-tile .vt-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 25, 0) 45%, rgba(20, 21, 25, .72) 100%);
}
.video-tile .vt-play {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px;
  border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 209, 3, .94); color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .6);
  transition: transform .18s ease, background .18s ease;
}
.video-tile:hover .vt-play { transform: scale(1.1); background: var(--yellow); }
.video-tile .vt-play .ic { width: 26px; height: 26px; margin-left: 3px; }
.video-tile .vt-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem .95rem;
  color: #fff; text-align: left; font-family: var(--font-display);
}
.video-tile .vt-cap b { display: block; font-size: 1.02rem; line-height: 1.25; }
.video-tile .vt-cap span { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--yellow); font-weight: 700; margin-top: .2rem; }
.video-tile .vt-cap .ic { width: .85rem; height: .85rem; }
.video-tile iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-tile:focus-visible { outline-offset: 3px; }
@media (max-width: 1080px) {
  .video-tile .vt-play { width: 60px; height: 60px; }
}










