/* =========================================================================
   Stan The Man Cleaning — Design System
   Dark theme · burnt-orange signature (#E87722)
   ========================================================================= */

:root {
  /* Brand */
  --orange: #E87722;
  --orange-600: #d76a17;
  --orange-300: #f39a55;
  --ink: #0F0F0F;
  --surface-1: #161616;
  --surface-2: #1F1F1F;
  --surface-3: #262626;
  --line: #2e2c2a;
  --text: #F0EDE8;
  --muted: #A9A29B;
  --white: #ffffff;

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

  /* Layout */
  --wrap: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --shadow-orange: 0 12px 30px rgba(232, 119, 34, .28);
  --gap: clamp(1rem, 2.5vw, 2rem);
  --header-h: 72px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--orange-300); text-decoration: none; }
a:hover { color: var(--orange); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: .4rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--surface-1); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.lead { font-size: 1.12rem; color: var(--text); }
.muted { color: var(--muted); }
.center { text-align: center; }
.max-60 { max-width: 62ch; }
.center.max-60 { margin-inline: auto; }
.grad-text { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #1a1103; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-300); color: #1a1103; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(15, 15, 15, .78);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { background: rgba(15, 15, 15, .95); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); letter-spacing: -.02em; }
.brand:hover { color: var(--text); }
.brand__mark {
  width: 46px; height: 46px; flex: none; background: #fff; border-radius: 50%; padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.18);
}
.brand__name { font-size: 1.22rem; }
.brand__name b { color: var(--orange); }

/* Modern pill-style nav */
.nav__links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__links > li > a,
.nav__submenu-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--text); font-family: var(--font-body); font-weight: 500; font-size: .96rem;
  padding: .5rem .85rem; border-radius: 999px; background: none; border: 0; cursor: pointer;
  line-height: 1; transition: background .18s ease, color .18s ease;
}
.nav__links > li > a:hover,
.nav__submenu-toggle:hover, .nav__submenu-toggle.is-current,
.nav__item--has-menu:hover .nav__submenu-toggle,
.nav__item--has-menu:focus-within .nav__submenu-toggle { color: var(--orange); background: rgba(232,119,34,.1); }
.nav__links > li > a[aria-current="page"] { color: var(--orange); background: rgba(232,119,34,.12); }

/* ---- Services mega menu ---- */
.nav__item--has-menu { position: relative; }
.nav__chev { width: 15px; height: 15px; transition: transform .2s ease; }
.nav__item--has-menu:hover .nav__chev,
.nav__item--has-menu:focus-within .nav__chev,
.nav__submenu-toggle[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }
.nav__mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(14px);
  width: min(640px, 94vw);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 26px 64px -20px rgba(0,0,0,.75); padding: .7rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .3rem;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; z-index: 70;
}
.nav__mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 16px; }
.nav__item--has-menu:hover .nav__mega,
.nav__item--has-menu:focus-within .nav__mega,
.nav__submenu-toggle[aria-expanded="true"] + .nav__mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.mega-card { display: flex; gap: .75rem; align-items: center; padding: .6rem; border-radius: 12px; transition: background .16s ease; }
.mega-card:hover { background: rgba(232,119,34,.1); }
.mega-card__img { width: 88px; height: 62px; border-radius: 9px; overflow: hidden; flex: none; border: 1px solid var(--line); background: var(--surface-1); }
.mega-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega-card__title { display: block; font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--text); line-height: 1.2; }
.mega-card:hover .mega-card__title, .mega-card[aria-current="page"] .mega-card__title { color: var(--orange); }
.mega-card__desc { display: block; font-size: .8rem; color: var(--muted); line-height: 1.35; margin-top: .15rem; }
.mega-card--cta { background: rgba(232,119,34,.12); border: 1px solid rgba(232,119,34,.28); justify-content: center; text-align: center; }
.mega-card--cta:hover { background: rgba(232,119,34,.2); }
.mega-card--cta .mega-card__title { color: var(--orange); }
.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 600; color: var(--text); white-space: nowrap; }
.nav__phone:hover { color: var(--orange); }
.nav__toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; color: var(--text); }
.nav__toggle svg { width: 28px; height: 28px; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(232, 119, 34, .22), transparent 60%),
    radial-gradient(760px 460px at 5% 108%, rgba(232, 119, 34, .10), transparent 60%),
    linear-gradient(180deg, #0f0f0f 0%, #141210 100%);
}
.hero__ring {
  position: absolute; z-index: 0; top: -120px; right: -120px; width: 520px; height: 520px;
  opacity: .5; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero h1 span { color: var(--orange); }
.hero__sub { font-size: 1.16rem; color: var(--text); max-width: 52ch; margin-bottom: 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 500;
  padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-1); color: var(--text);
}
.chip svg { width: 16px; height: 16px; color: var(--orange); flex: none; }
.hero__card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--surface-1));
  border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4 / 5;
  display: grid; place-items: center; text-align: center; padding: 2rem;
}
.hero__card .ph-illus { width: min(72%, 240px); color: var(--orange); opacity: .9; }
.hero__card figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; font-size: .85rem; color: var(--muted); background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)); }

/* ---- Stat strip ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat { text-align: center; padding: 1.2rem 1rem; background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--orange); line-height: 1; }
.stat__label { font-size: .9rem; color: var(--muted); margin-top: .4rem; }

/* ---- Section head ---- */
.section-head { margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head.center { margin-inline: auto; }

/* ---- Cards / services grid ---- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .18s ease, border-color .18s ease, background .18s ease;
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: rgba(232,119,34,.5); background: var(--surface-2); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(232, 119, 34, .14); color: var(--orange); margin-bottom: 1rem; flex: none;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 1rem; }
.card__link { margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: .4rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card:hover .card__link svg { transform: translateX(3px); }

/* ---- Feature / why list ---- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(232,119,34,.14); color: var(--orange); }
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.feature p { color: var(--muted); margin: 0; }

/* ---- Process steps ---- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.step { position: relative; background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.5rem 1.5rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -18px; left: 1.5rem; font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: #1a1103; background: var(--orange); width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; box-shadow: var(--shadow-orange);
}
.step h3 { margin-top: .4rem; }
.step p { color: var(--muted); margin: 0; }

/* ---- Service areas ---- */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 1.4rem 0 0; padding: 0; }
.areas li { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .95rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; font-size: .92rem; }
.areas li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ---- Testimonials ---- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.quote { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; }
.quote__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: .7rem; }
.quote p { font-size: 1.02rem; }
.quote__by { margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--text); }
.quote__by span { display: block; font-weight: 400; font-size: .88rem; color: var(--muted); }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-1); margin-bottom: .8rem; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; padding: 1.15rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__q:hover { color: var(--orange); }
.faq__q .ic { width: 22px; height: 22px; flex: none; transition: transform .2s ease; color: var(--orange); }
.faq__q[aria-expanded="true"] .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a > div { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---- CTA band ---- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, #1a1206, #241606); border: 1px solid rgba(232,119,34,.35); border-radius: calc(var(--radius) + 6px); padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(232,119,34,.25), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: .6rem; }
.cta-band .btn-row { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---- Breadcrumb ---- */
.crumbs { font-size: .88rem; color: var(--muted); padding-top: 1.4rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--orange); }
.crumbs span { color: var(--orange); }

/* ---- Page hero (interior) ---- */
.page-hero { position: relative; overflow: hidden; padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 85% -20%, rgba(232,119,34,.18), transparent 60%), var(--ink); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero p.lead { max-width: 60ch; }

/* ---- Rich content ---- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul li::marker { color: var(--orange); }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px;
  background: var(--orange); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
}

/* ---- Split layout ---- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.split--center { align-items: center; }
.media-ph {
  border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(160deg, var(--surface-2), var(--surface-1));
  display: grid; place-items: center; aspect-ratio: 4/3; color: var(--orange); padding: 2rem;
}
.media-ph svg { width: min(60%, 200px); opacity: .9; }
.map-embed { display: block; width: 100%; height: 340px; border: 0; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 1.4rem; }

/* "Where we work" section — content + map, with faded watermark */
.areas-section { position: relative; overflow: hidden; }
.areas-section .wrap { position: relative; z-index: 1; }
.areas-watermark {
  position: absolute; left: 0; right: 0; bottom: -.12em; z-index: 0; text-align: center;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; line-height: .8;
  font-size: clamp(4rem, 15vw, 12rem); color: rgba(240, 237, 232, .035);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.map-card {
  height: 100%; min-height: 420px; overflow: hidden; background: var(--surface-2);
  border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.map-card .map-embed { margin: 0; height: 100%; min-height: 420px; border: 0; border-radius: 0; }

/* Real photo frame (replaces media-ph placeholders) */
.media-shot { margin: 0; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; aspect-ratio: 4/3; background: var(--surface-2); box-shadow: var(--shadow); }
.media-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Meet the team ---- */
.team-section .section-head { text-align: center; }
.team { display: grid; }
.team-member {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.5rem, 5vw, 4rem); align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.team-member + .team-member { border-top: 1px solid var(--line); }
.team-member__photo {
  margin: 0; width: 100%; max-width: 420px; justify-self: center;
  border-radius: var(--radius); overflow: hidden; background: var(--surface-2);
  border: 1px solid var(--line); border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow); aspect-ratio: 4/5;
}
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-member:nth-child(even) .team-member__photo { order: 2; }
.team-member__role {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--orange);
  background: rgba(232, 119, 34, .1); border: 1px solid rgba(232, 119, 34, .28);
  padding: .28rem .7rem; border-radius: 999px;
}
.team-member__body h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: .7rem 0 .6rem; }
.team-member__body p { color: var(--muted); max-width: 52ch; }

/* ---- Forms ---- */
.form-card { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .6rem; }

/* ---- Contact detail list ---- */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ic { width: 42px; height: 42px; border-radius: 12px; flex: none; background: rgba(232,119,34,.14); color: var(--orange); display: grid; place-items: center; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list b { font-family: var(--font-display); display: block; font-size: .95rem; }
.contact-list a, .contact-list span { color: var(--muted); }

/* ---- Footer ---- */
.site-footer { background: var(--surface-1); border-top: 1px solid var(--line); padding: clamp(2.8rem, 6vw, 4rem) 0 1.6rem; margin-top: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--gap); }
.footer-grid h4 { font-size: 1rem; color: var(--text); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a, .footer-grid p { color: var(--muted); font-size: .95rem; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand p { max-width: 34ch; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); }
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.2rem; padding-top: 1.3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; color: var(--muted); font-size: .85rem; }

/* =======================================================================
   Homepage v2 — immersive hero, image service cards, gallery, animations
   ======================================================================= */

/* Full-bleed hero */
.hero { min-height: 88vh; display: flex; align-items: center; padding: clamp(6rem, 13vh, 9rem) 0 clamp(3.5rem, 8vh, 6rem); }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; transform: scale(1.02); animation: kenburns 24s ease-in-out infinite alternate; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.82) 40%, rgba(10,10,10,.35) 72%, rgba(10,10,10,.12) 100%),
    linear-gradient(0deg, rgba(10,10,10,.82) 0%, transparent 55%),
    radial-gradient(900px 460px at 82% 6%, rgba(232,119,34,.20), transparent 60%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 660px; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero__badge {
  position: absolute; z-index: 3; right: clamp(1rem, 4vw, 2rem); bottom: clamp(1.4rem, 6vh, 3rem);
  display: flex; align-items: center; gap: .7rem; padding: .8rem 1.1rem;
  background: rgba(22,22,22,.86); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__badge .stars { color: var(--orange); letter-spacing: 1px; font-size: .95rem; line-height: 1; }
.hero__badge b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.hero__badge span { font-size: .8rem; color: var(--muted); }

/* Image-background service cards */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
a.service-card { text-decoration: none; color: var(--text); }
.service-card {
  position: relative; overflow: hidden; isolation: isolate; border-radius: var(--radius);
  border: 1px solid var(--line); min-height: 320px; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .2s ease, border-color .2s ease; box-shadow: var(--shadow);
}
.service-card__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.55) 48%, rgba(15,12,8,.94) 100%);
  transition: background .3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(232,119,34,.6); }
.service-card:hover .service-card__img { transform: scale(1.07); }
.service-card:hover::after { background: linear-gradient(180deg, rgba(10,10,10,.10) 0%, rgba(20,14,6,.5) 45%, rgba(20,14,6,.94) 100%); }
.service-card .card__icon { margin-bottom: .9rem; background: rgba(232,119,34,.9); color: #1a1103; }
.service-card h3 { margin: 0 0 .3rem; }
.service-card p { color: rgba(240,237,232,.82); margin: 0 0 .8rem; font-size: .95rem; }
.service-card__link { font-family: var(--font-display); font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: .4rem; }
.service-card__link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }
.service-card--cta { background: linear-gradient(160deg, #241606, #1a1206); border-color: rgba(232,119,34,.4); justify-content: center; }

/* Before/After gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.gallery figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem .95rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; background: linear-gradient(0deg, rgba(10,10,10,.9), transparent); }
.gallery__tag { position: absolute; top: .7rem; left: .7rem; background: var(--orange); color: #1a1103; font-weight: 700; font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; padding: .26rem .6rem; border-radius: 999px; }

/* Split that fills the column height with the photo (no dead space) */
.split--fill { align-items: stretch; }
.split--fill .media-shot { aspect-ratio: auto; height: 100%; min-height: 360px; }

/* Interior page hero with background image */
.page-hero--img { position: relative; overflow: hidden; }
.page-hero--img .page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero--img .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.8) 45%, rgba(10,10,10,.5) 100%), linear-gradient(0deg, rgba(10,10,10,.7), transparent 60%);
}
.page-hero--img .wrap { position: relative; z-index: 2; }

/* ---- Before / after interactive slider ---- */
.ba-slider {
  --pos: 50%;
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); background: var(--surface-2);
  touch-action: pan-y; user-select: none;
}
.ba-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; }
.ba-slider__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider__label {
  position: absolute; top: .7rem; z-index: 3; pointer-events: none;
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .05em; text-transform: uppercase; padding: .26rem .6rem; border-radius: 999px;
}
.ba-slider__label--before { left: .7rem; background: rgba(10,10,10,.72); color: #fff; }
.ba-slider__label--after { right: .7rem; background: var(--orange); color: #1a1103; }
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; z-index: 3;
  transform: translateX(-1.5px); background: #fff; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ba-slider__handle svg {
  width: 38px; height: 38px; flex: none; color: #fff; padding: 8px;
  background: var(--orange); border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.ba-slider__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; z-index: 4;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-slider__range:focus-visible { outline: none; }
.ba-slider__range:focus-visible ~ .ba-slider__handle svg { outline: 3px solid #fff; outline-offset: 3px; }
.ba-slider__range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; cursor: ew-resize; }
.ba-slider__range::-moz-range-thumb { width: 44px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba-slider__caption { margin-top: 1rem; text-align: center; }

/* Reveal: directional + stagger delay via --d (extends the base reveal) */
html.js .reveal { transition-delay: calc(var(--d, 0) * 80ms); }

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .grid--3, .quotes, .steps, .service-cards, .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--fill .media-shot { min-height: 260px; }
  .map-card, .map-card .map-embed { min-height: 300px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 78vh; }
  .hero__badge { display: none; }
  .team-member { grid-template-columns: 1fr; gap: 1.4rem; text-align: center; }
  .team-member__photo { order: 0 !important; max-width: 340px; }
  .team-member__role { margin-inline: auto; }
  .team-member__body p { margin-inline: auto; }
}
@media (max-width: 760px) {
  .nav__links, .nav__phone { display: none; }
  .nav__cta .btn--primary { display: none; }
  .nav__toggle { display: inline-flex; }
  .site-header.nav-open .nav__links {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0; background: var(--surface-1);
    border-bottom: 1px solid var(--line); padding: .5rem 1.2rem 1.2rem;
  }
  .site-header.nav-open .nav__links li { width: 100%; }
  .site-header.nav-open .nav__links > li > a { display: block; padding: .95rem 0; width: 100%; border-bottom: 1px solid var(--line); border-radius: 0; }
  /* Services: all services shown as a static list on mobile — no toggle needed */
  .nav__submenu-toggle { width: 100%; justify-content: flex-start; padding: 1rem 0 .3rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: none; pointer-events: none; cursor: default; }
  .site-header.nav-open .nav__submenu-toggle, .site-header.nav-open .nav__submenu-toggle.is-current { background: none; color: var(--muted); }
  .nav__submenu-toggle .nav__chev { display: none; }
  .nav__mega {
    position: static; transform: none !important; opacity: 1; visibility: visible; width: auto;
    box-shadow: none; background: transparent; border: 0; border-radius: 0; padding: 0 0 .4rem;
    display: flex; flex-direction: column; gap: 0;
  }
  .nav__mega::before { display: none; }
  .nav__mega .mega-card { padding: .8rem 0 .8rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__mega .mega-card__img { display: none; }
  .nav__mega .mega-card--cta { display: none; }
  .grid--3, .grid--2, .quotes, .steps, .field--row, .service-cards, .gallery { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero { min-height: 0; padding-top: 5.5rem; }
  .service-card { min-height: 260px; }
  .areas-watermark { display: none; }
  h2 { font-size: clamp(1.55rem, 6.2vw, 2.25rem); }
}

/* ---- Motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* ---- Reveal on scroll (only hidden when JS is available, so no-JS/crawlers always see content) ---- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; } }
