/* =========================================================================
   Biran Paving Group — Design System
   Premium asphalt-industrial theme. Dark, bold, high-trust.
   ========================================================================= */

:root {
  /* Palette — asphalt blacks, warm amber accent, clean lights */
  --ink-900: #0b0d10;   /* deepest asphalt */
  --ink-800: #12151a;
  --ink-700: #1b2027;
  --ink-600: #2a313b;
  --ink-500: #3b4554;
  --slate-400: #6b7686;
  --slate-300: #9aa4b2;
  --mist-200: #cfd6df;
  --mist-100: #e9edf2;
  --paper: #f6f8fb;
  --white: #ffffff;

  --amber: #f7a823;     /* construction amber — primary accent */
  --amber-600: #e2940d;
  --amber-300: #ffc865;
  --amber-soft: rgba(247,168,35,0.12);

  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(11,13,16,0.10);

  /* Type */
  --font-display: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --container-wide: 1340px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(11,13,16,0.08);
  --shadow-md: 0 10px 30px rgba(11,13,16,0.12);
  --shadow-lg: 0 24px 60px rgba(11,13,16,0.22);
  --shadow-amber: 0 12px 30px rgba(247,168,35,0.35);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 78px;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink-900); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }
p { color: var(--ink-700); }
.lead { font-size: 1.2rem; color: var(--ink-600); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--amber-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }
.eyebrow.light { color: var(--amber-300); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container.wide { max-width: var(--container-wide); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section.tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--ink-900); color: var(--mist-100); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--dark p { color: var(--slate-300); }
.section--paper { background: var(--paper); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-720 { max-width: 720px; }
.maxw-820 { max-width: 820px; }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.grid { display: grid; gap: 28px; }
.muted { color: var(--slate-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--amber); color: var(--ink-900); box-shadow: var(--shadow-amber); }
.btn-primary:hover { transform: translateY(-3px); background: var(--amber-300); box-shadow: 0 18px 40px rgba(247,168,35,0.45); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--ink-700); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--ink-900); border: 1.5px solid var(--ink-600); }
.btn-outline:hover { background: var(--ink-900); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.site-header.scrolled { background: rgba(11,13,16,0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
body.has-light-header .site-header.scrolled { background: rgba(255,255,255,0.96); box-shadow: var(--shadow-sm); }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand__mark { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--amber); color: var(--ink-900); flex: none; box-shadow: var(--shadow-amber); }
.brand__mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-300); }
body.has-light-header .site-header.scrolled .brand { color: var(--ink-900); }
body.has-light-header .site-header.scrolled .brand small { color: var(--amber-600); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: rgba(255,255,255,0.86); font-weight: 500; font-size: .97rem; padding: 10px 14px; border-radius: 10px; transition: color .2s, background .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.08); }
.nav a[aria-current="page"] { color: var(--amber-300); }
body.has-light-header .site-header.scrolled .nav a { color: var(--ink-700); }
body.has-light-header .site-header.scrolled .nav a:hover { background: var(--mist-100); color: var(--ink-900); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-display); font-weight: 600; }
.header-phone svg { width: 18px; height: 18px; color: var(--amber-300); }
body.has-light-header .site-header.scrolled .header-phone { color: var(--ink-900); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: #fff; background: rgba(255,255,255,0.08); }
.nav-toggle svg { width: 26px; height: 26px; margin-inline: auto; }
body.has-light-header .site-header.scrolled .nav-toggle { color: var(--ink-900); background: var(--mist-100); }

/* mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.mobile-drawer.open { display: block; }
.mobile-drawer__scrim { position: absolute; inset: 0; background: rgba(8,10,13,0.6); backdrop-filter: blur(3px); opacity: 0; transition: opacity .3s; }
.mobile-drawer.open .mobile-drawer__scrim { opacity: 1; }
.mobile-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--ink-900); padding: 26px 24px; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-drawer.open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__panel .brand { margin-bottom: 18px; }
.mobile-drawer__panel a.m-link { color: var(--mist-100); padding: 14px 12px; border-radius: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mobile-drawer__panel a.m-link:hover { background: rgba(255,255,255,0.06); color: var(--amber-300); }
.mobile-drawer__close { align-self: flex-end; color: #fff; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); }
.mobile-drawer__panel .btn { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding-top: var(--header-h); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(8,10,13,0.94) 0%, rgba(8,10,13,0.80) 38%, rgba(8,10,13,0.30) 100%); }
.hero__inner { padding-block: 60px; max-width: 760px; }
.hero h1 { color: #fff; margin: 18px 0 22px; }
.hero h1 .accent { color: var(--amber); }
.hero p { color: var(--mist-200); font-size: 1.22rem; max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__trust .t { display: flex; align-items: center; gap: 11px; font-size: .95rem; color: var(--mist-200); }
.hero__trust .t svg { width: 22px; height: 22px; color: var(--amber); flex: none; }

/* hero entrance — CSS-only, runs on load (no JS dependency, no blank flash) */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__inner > * { animation: heroIn .7s var(--ease) both; }
.hero__inner > *:nth-child(2) { animation-delay: .08s; }
.hero__inner > *:nth-child(3) { animation-delay: .16s; }
.hero__inner > *:nth-child(4) { animation-delay: .24s; }
.hero__inner > *:nth-child(5) { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .hero__inner > * { animation: none; } }

/* sticky mobile call/estimate bar — high-intent conversion on phones */
.mobile-cta-bar { display: none; }
@media (max-width: 860px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(11,13,16,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .mobile-cta-bar .btn { padding: 13px 14px; font-size: .98rem; }
  body { padding-bottom: 76px; }
}

/* page hero (inner) */
.page-hero { position: relative; color: #fff; padding-top: calc(var(--header-h) + 56px); padding-bottom: 64px; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(8,10,13,0.86), rgba(8,10,13,0.78)); }
.page-hero h1 { color: #fff; margin-top: 10px; }
.page-hero p { color: var(--mist-200); max-width: 660px; margin-top: 14px; font-size: 1.12rem; }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--slate-300); }
.crumbs a:hover { color: var(--amber-300); }
.crumbs .sep { opacity: .5; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats .stat { padding: 38px 24px; text-align: center; border-right: 1px solid var(--line); }
.stats .stat:last-child { border-right: 0; }
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--amber); line-height: 1; }
.stat__label { margin-top: 10px; color: var(--slate-300); font-size: .94rem; }

/* ---------- Cards / services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__icon { position: absolute; left: 18px; bottom: -22px; width: 52px; height: 52px; border-radius: 14px; background: var(--amber); color: var(--ink-900); display: grid; place-items: center; box-shadow: var(--shadow-amber); }
.card__icon svg { width: 26px; height: 26px; }
.card__body { padding: 34px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { color: var(--ink-600); font-size: .98rem; }
.card__link { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--amber-600); font-family: var(--font-display); font-weight: 600; }
.card__link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(5px); }

/* feature cards (icon, no image) */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.feature { padding: 32px 28px; border-radius: var(--radius-lg); background: var(--ink-800); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s; }
.feature:hover { transform: translateY(-6px); border-color: rgba(247,168,35,0.5); }
.feature__icon { width: 56px; height: 56px; border-radius: 15px; background: var(--amber-soft); color: var(--amber); display: grid; place-items: center; margin-bottom: 18px; }
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--slate-300); font-size: .97rem; }

/* ---------- Split / alternating ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/3; }
.split__media .badge-float {
  position: absolute; right: -18px; bottom: -18px; background: var(--amber); color: var(--ink-900);
  padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-family: var(--font-display);
}
.split__media .badge-float strong { display: block; font-size: 1.8rem; line-height: 1; }
.split__media .badge-float span { font-size: .82rem; }
.list-check { display: grid; gap: 14px; margin-top: 26px; }
.list-check li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-700); }
.list-check li svg { width: 22px; height: 22px; color: var(--amber-600); flex: none; margin-top: 2px; }
.section--dark .list-check li { color: var(--mist-200); }

/* ---------- Process timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--amber); line-height: 1; opacity: .9; }
.step h4 { margin: 8px 0 8px; font-size: 1.18rem; }
.step p { font-size: .94rem; color: var(--ink-600); }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.area-chip { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: var(--radius); background: var(--ink-800); border: 1px solid var(--line); color: var(--mist-100); font-family: var(--font-display); font-weight: 600; transition: transform .25s var(--ease), border-color .25s, background .25s; }
.area-chip:hover { transform: translateY(-4px); border-color: rgba(247,168,35,.55); background: var(--ink-700); }
.area-chip svg { width: 20px; height: 20px; color: var(--amber); flex: none; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0 0; padding: 14px 16px; color: #fff; font-size: .9rem; font-weight: 600; background: linear-gradient(transparent, rgba(8,10,13,0.82)); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line-dark); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink-900); }
.faq__q .ic { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; transition: transform .3s var(--ease); }
.faq__q .ic svg { width: 18px; height: 18px; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a > div { padding: 0 4px 24px; color: var(--ink-600); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; background: var(--ink-900); }
.cta-banner__bg { position: absolute; inset: 0; opacity: .22; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 140% at 100% 0%, rgba(247,168,35,0.22), transparent 55%); }
.cta-banner__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; padding-block: clamp(48px,7vw,88px); }
.cta-banner h2 { color: #fff; max-width: 640px; }
.cta-banner p { color: var(--slate-300); margin-top: 10px; max-width: 560px; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.rating-badge { text-align: center; padding: 40px; border-radius: var(--radius-lg); background: var(--ink-800); border: 1px solid var(--line); }
.rating-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 4.4rem; color: var(--amber); line-height: 1; }
.rating-badge .stars { color: var(--amber); font-size: 1.5rem; letter-spacing: 3px; margin: 8px 0; }
.rating-badge .src { color: var(--slate-300); font-size: .9rem; }
.review-card { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.review-card .stars { color: var(--amber); letter-spacing: 2px; }
.review-card p { margin: 10px 0 14px; color: var(--ink-700); font-style: italic; }
.review-card .who { font-family: var(--font-display); font-weight: 600; color: var(--ink-900); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-info .info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.contact-info .info-row svg { width: 24px; height: 24px; color: var(--amber-600); flex: none; }
.contact-info .info-row h4 { margin-bottom: 3px; }
.contact-info .info-row a, .contact-info .info-row span { color: var(--ink-600); }
.form { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--mist-200); border-radius: 12px; font: inherit; color: var(--ink-900); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .form-note { font-size: .82rem; color: var(--slate-400); margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--slate-300); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.footer-about p { font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col a, .footer-col li { display: block; color: var(--slate-300); font-size: .94rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--amber-300); }
.footer-contact .row { display: flex; gap: 11px; margin-bottom: 14px; font-size: .94rem; }
.footer-contact .row svg { width: 19px; height: 19px; color: var(--amber); flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--amber); color: var(--ink-900); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-block: 26px; font-size: .85rem; color: var(--slate-400); }
.footer-bottom a:hover { color: var(--amber-300); }

/* ---------- Prose (service/area detail bodies) ---------- */
.prose p { margin-bottom: 18px; color: var(--ink-700); }
.prose h2 { margin: 38px 0 16px; }
.prose h3 { margin: 28px 0 12px; }
.prose ul { display: grid; gap: 12px; margin: 18px 0; }
.prose ul li { display: flex; gap: 12px; }
.prose ul li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; background: var(--amber-soft); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2940d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 13px; }

/* sidebar for detail pages */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 22px; }
.sidebar__card { background: var(--ink-900); color: #fff; border-radius: var(--radius-lg); padding: 28px; }
.sidebar__card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.sidebar__card p { color: var(--slate-300); font-size: .95rem; margin-bottom: 18px; }
.sidebar__list { background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 24px; }
.sidebar__list h4 { margin-bottom: 12px; }
.sidebar__list a { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line-dark); color: var(--ink-700); font-weight: 500; transition: color .2s; }
.sidebar__list a:last-child { border-bottom: 0; }
.sidebar__list a:hover { color: var(--amber-600); }
.sidebar__list a svg { width: 16px; height: 16px; }

/* ---------- Scroll reveal ----------
   Hidden state only applies when JS is active (.js on <html>), so content
   is always visible if JS fails or is disabled. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards, .features, .steps { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .brand { font-size: 1.06rem; }
  .brand > span { white-space: nowrap; }
  .header-phone { width: 46px; height: 46px; justify-content: center; gap: 0; border-radius: 12px; background: rgba(255,255,255,0.08); }
  .header-phone span { display: none; }
  .header-phone svg { width: 22px; height: 22px; }
  .nav-toggle { display: grid; place-items: center; }
  .split, .reviews, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats .stat:nth-child(2) { border-right: 0; }
  .stats .stat { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards, .features, .steps, .areas, .gallery-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero__actions .btn { width: 100%; }
  .split__media .badge-float { right: 12px; bottom: -14px; }
}

/* ============================================================
   Overhaul components (industries, blog, estimator, dropdowns)
   ============================================================ */

/* --- Desktop dropdown mega-menus --- */
.nav-item { position: relative; display: inline-flex; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item > a svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-item.has-mega::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.mega { position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px); min-width: 320px;
  background: rgba(18,21,26,0.98); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 16px;
  padding: 10px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); display: grid; gap: 2px; z-index: 120; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-mega:hover > a svg { transform: rotate(180deg); }
.mega a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 14px; border-radius: 10px; color: var(--mist-100); font-size: .94rem; font-weight: 500; }
.mega a svg { width: 15px; height: 15px; opacity: 0; transform: translateX(-4px); transition: .2s var(--ease); color: var(--amber-300); }
.mega a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mega a:hover svg { opacity: 1; transform: none; }
.mega__all { border-top: 1px solid var(--line); margin-top: 4px; color: var(--amber-300) !important; font-family: var(--font-display); font-weight: 600; }

/* --- Mobile drawer expandable groups --- */
.m-group { border-bottom: 1px solid var(--line); }
.m-group summary { list-style: none; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.m-group summary::-webkit-details-marker { display: none; }
.m-group summary svg { width: 18px; height: 18px; color: var(--amber-300); transition: transform .25s var(--ease); }
.m-group[open] summary svg { transform: rotate(180deg); }
.m-subs { display: grid; padding: 0 0 12px 10px; }
.m-sub { color: var(--slate-300); padding: 11px 12px; border-radius: 9px; font-weight: 500; }
.m-sub:hover { color: var(--amber-300); background: rgba(255,255,255,0.05); }

/* --- Footer 5-column --- */
.footer-grid--5 { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; }
@media (max-width: 1000px) { .footer-grid--5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid--5 { grid-template-columns: 1fr; } }

/* --- Owner note (About) --- */
.owner-note { display: flex; gap: 32px; align-items: center; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.owner-note__avatar { flex: none; width: 96px; height: 96px; border-radius: 50%; background: var(--ink-900); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; box-shadow: var(--shadow-amber); }
.owner-note__quote { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; line-height: 1.45; color: var(--ink-900); margin: 10px 0 14px; }
.owner-note__sign { color: var(--ink-600); font-weight: 600; margin-bottom: 18px; }
@media (max-width: 640px) { .owner-note { flex-direction: column; text-align: center; padding: 28px; } }

/* --- Trust pills (reviews) --- */
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--mist-200); font-size: .9rem; font-weight: 500; }
.trust-pills span svg { width: 16px; height: 16px; color: var(--amber); }

/* --- Callout (industry spotlight) --- */
.callout { border-left: 4px solid var(--amber); background: var(--paper); padding: 22px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 30px 0; }
.callout p { margin: 6px 0 0; color: var(--ink-700); }

/* --- Process ordered list (service pages) --- */
ol.proc-list { counter-reset: pl; display: grid; gap: 14px; margin: 18px 0; padding: 0; list-style: none; }
ol.proc-list li { position: relative; padding-left: 48px; color: var(--ink-700); }
ol.proc-list li::before { counter-increment: pl; content: counter(pl); position: absolute; left: 0; top: -2px; width: 32px; height: 32px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-600); font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; font-size: .92rem; }

/* --- Blog article body --- */
.post-byline { color: var(--slate-400); font-size: .9rem; font-family: var(--font-display); font-weight: 600; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.post-body h2 { margin-top: 38px; }

/* --- Sidebar assurance --- */
.sidebar__assure { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; border-radius: var(--radius); background: var(--amber-soft); color: var(--ink-700); font-size: .9rem; }
.sidebar__assure svg { width: 22px; height: 22px; color: var(--amber-600); flex: none; }

/* --- Estimator calculator --- */
.estimate-wrap { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .estimate-wrap { grid-template-columns: 1fr; } }
.est-card { background: var(--ink-900); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.est-card__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.est-card__head h2 { color: #fff; font-size: 1.5rem; }
.est-card__head p { color: var(--slate-300); font-size: .95rem; margin-top: 6px; }
.est-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--amber); color: var(--ink-900); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-amber); }
.est-card__icon svg { width: 28px; height: 28px; }
.est-card__note { color: var(--slate-400); font-size: .82rem; margin: 14px 0 18px; }
.est-field { margin-bottom: 20px; }
.est-field > label { display: block; font-family: var(--font-display); font-weight: 600; margin-bottom: 8px; color: #fff; }
.est-card select, .est-card input[type=number] { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--ink-600); background: var(--ink-800); color: #fff; font: inherit; }
.est-card select:focus, .est-card input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.est-mods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .est-mods { grid-template-columns: 1fr; } }
.est-mod { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid var(--ink-600); border-radius: 10px; color: var(--mist-200); font-size: .88rem; cursor: pointer; transition: border-color .2s, background .2s; }
.est-mod:hover { border-color: var(--amber); background: rgba(255,255,255,0.03); }
.est-mod input { accent-color: var(--amber); width: 17px; height: 17px; flex: none; }
.est-result { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 6px 0 16px; padding: 20px 24px; border-radius: 16px; background: linear-gradient(120deg, rgba(247,168,35,0.18), rgba(247,168,35,0.05)); border: 1px solid rgba(247,168,35,0.4); }
.est-result__label { color: var(--mist-200); font-family: var(--font-display); font-weight: 600; }
.est-result__range { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--amber); white-space: nowrap; }
.estimate-aside { background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 34px; }

/* --- Grid blow-out guard: let grid items shrink below content min-width --- */
.estimate-wrap, .detail-layout, .contact-grid, .split, .reviews { min-width: 0; }
.estimate-wrap > *, .detail-layout > *, .contact-grid > *, .split > *, .reviews > * { min-width: 0; }
.est-card, .est-card *, .form, .form * { min-width: 0; }
select, input, textarea { max-width: 100%; }

/* --- Header fit: keep brand on one line, tighten nav, drop phone text when tight --- */
.brand { flex: none; }
.brand > span { white-space: nowrap; }
.nav a, .nav-item > a { white-space: nowrap; }
.nav { flex-wrap: nowrap; }
@media (max-width: 1200px) {
  .header-phone { display: none; }
  .nav a, .nav-item > a { padding: 10px 11px; font-size: .92rem; }
  .site-header__inner { gap: 16px; }
}

/* --- Real logo image in brand --- */
.brand__logo { height: 40px; width: auto; display: block; }
.site-footer .brand__logo { height: 44px; }
.mobile-drawer__panel .brand__logo { height: 38px; }
@media (max-width: 560px) { .brand__logo { height: 34px; } }
.footer-tagline { color: var(--amber-300); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin: 16px 0 12px; }

/* ============================================================
   "Less images, more professional" — icon cards, plain headers
   ============================================================ */

/* Clean icon cards (replace photo service/industry cards) */
.icards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.icard { display: flex; flex-direction: column; padding: 34px 30px; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.icard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(247,168,35,.5); }
.icard__icon { width: 56px; height: 56px; border-radius: 15px; background: var(--amber-soft); color: var(--amber-600); display: grid; place-items: center; margin-bottom: 20px; }
.icard__icon svg { width: 28px; height: 28px; }
.icard h3 { font-size: 1.22rem; margin-bottom: 10px; }
.icard p { color: var(--ink-600); font-size: .96rem; flex: 1; }
.icard__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--amber-600); font-family: var(--font-display); font-weight: 600; font-size: .94rem; }
.icard__link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.icard:hover .icard__link svg { transform: translateX(5px); }
@media (max-width: 1000px) { .icards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .icards { grid-template-columns: 1fr; } }

/* Text-based project spotlights (no stock photos) */
.spotlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.spotlight { padding: 28px 30px; border: 1px solid var(--line-dark); border-left: 4px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; background: #fff; box-shadow: var(--shadow-sm); }
.spotlight__type { color: var(--amber-600); font-family: var(--font-display); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.spotlight h3 { font-size: 1.18rem; margin: 8px 0 12px; }
.spotlight p { color: var(--ink-600); font-size: .95rem; }
@media (max-width: 700px) { .spotlights { grid-template-columns: 1fr; } }

/* Plain, professional inner-page header (no photo) */
.page-hero--plain { padding-top: calc(var(--header-h) + 64px); padding-bottom: 60px;
  background: radial-gradient(120% 150% at 88% -20%, rgba(247,168,35,0.16), transparent 55%), linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%); }
.page-hero--plain::after { display: none; }
.page-hero--plain::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 26px, transparent 26px 52px); opacity: .5; }

/* Clean estimate teaser band (no image) */
.estimate-band { position: relative; overflow: hidden; background: var(--ink-900); }
.estimate-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(110% 140% at 100% 0%, rgba(247,168,35,0.18), transparent 55%); }
.estimate-band__inner { position: relative; display: grid; grid-template-columns: 1.3fr auto; gap: 36px; align-items: center; }
@media (max-width: 800px) { .estimate-band__inner { grid-template-columns: 1fr; } }

/* ============================================================
   ROSE-STYLE PASS — utility bar, bold cards, accent bands
   ============================================================ */
:root { --util-h: 44px; }

/* Top utility bar (like Rose's dark call/quote strip) */
.utility-bar { position: fixed; top: 0; left: 0; right: 0; height: var(--util-h); z-index: 101;
  background: #000; color: var(--mist-200); display: flex; align-items: center; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.utility-bar .u-phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; }
.utility-bar .u-phone .lab { color: var(--slate-300); font-weight: 500; }
.utility-bar .u-phone svg { width: 16px; height: 16px; color: var(--amber); }
.utility-bar .u-right { display: flex; align-items: center; gap: 20px; }
.utility-bar .u-social { display: flex; gap: 13px; }
.utility-bar .u-social a { color: var(--slate-300); display: inline-flex; transition: color .2s; }
.utility-bar .u-social a:hover { color: var(--amber); }
.utility-bar .u-social svg { width: 16px; height: 16px; }
.utility-bar .u-quote { background: var(--amber); color: var(--ink-900); font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .03em; text-transform: uppercase; padding: 7px 20px; border-radius: var(--radius-pill); transition: background .2s, transform .2s; }
.utility-bar .u-quote:hover { background: var(--amber-300); transform: translateY(-1px); }

/* push the fixed nav + heroes below the utility bar */
.site-header { top: var(--util-h); }
.hero { padding-top: calc(var(--util-h) + var(--header-h)); }
.page-hero { padding-top: calc(var(--util-h) + var(--header-h) + 56px); }
.page-hero--plain { padding-top: calc(var(--util-h) + var(--header-h) + 64px); }
.sidebar { top: calc(var(--util-h) + var(--header-h) + 20px); }
@media (max-width: 820px) {
  :root { --util-h: 0px; }
  .utility-bar { display: none; }
}

/* Bold service/industry cards (Rose's colored-card energy) */
.scards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scard { position: relative; display: flex; flex-direction: column; padding: 38px 30px; background: var(--ink-900); color: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.scard::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.scard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.scard:hover::before { transform: scaleX(1); }
.scard__icon { width: 60px; height: 60px; border-radius: 16px; background: var(--amber); color: var(--ink-900); display: grid; place-items: center; margin-bottom: 22px; box-shadow: var(--shadow-amber); }
.scard__icon svg { width: 30px; height: 30px; }
.scard h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.scard p { color: var(--slate-300); font-size: .96rem; flex: 1; }
.scard__link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; color: var(--amber-300); font-family: var(--font-display); font-weight: 600; font-size: .94rem; }
.scard__link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.scard:hover .scard__link svg { transform: translateX(5px); }
@media (max-width: 1000px) { .scards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .scards { grid-template-columns: 1fr; } }

/* Solid amber accent CTA band (like Rose's red bands) */
.cta-amber { background: linear-gradient(100deg, var(--amber) 0%, var(--amber-300) 100%); color: var(--ink-900); }
.cta-amber::before { display: none; }
.cta-amber h2 { color: var(--ink-900); }
.cta-amber p { color: rgba(11,13,16,.78); }
.cta-amber .btn-dark { background: var(--ink-900); color: #fff; }
.cta-amber .btn-dark:hover { background: var(--ink-700); }
.cta-amber .btn-outline-dark { background: transparent; color: var(--ink-900); border: 1.5px solid rgba(11,13,16,.55); }
.cta-amber .btn-outline-dark:hover { background: var(--ink-900); color: #fff; }

/* Big statement photo band (Rose's "we never cut corners" section) */
.statement { position: relative; overflow: hidden; color: #fff; }
.statement__bg { position: absolute; inset: 0; }
.statement__bg img { width: 100%; height: 100%; object-fit: cover; }
.statement::after { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(11,13,16,.93) 0%, rgba(11,13,16,.82) 48%, rgba(11,13,16,.45) 100%); }
.statement__inner { position: relative; padding-block: clamp(64px, 9vw, 120px); max-width: 880px; }
.statement h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.statement p { color: var(--mist-200); font-size: 1.15rem; margin-top: 18px; max-width: 680px; }
.statement .btn { margin-top: 30px; }
