/* ===========================================================
   Boilr+  —  premium dark heating / plumbing / projects site
   Design system from the Boilr+ style guide
   =========================================================== */

:root {
  --color-bg: #050B12;
  --color-bg-soft: #0A121C;
  --color-panel: #101A24;
  --color-panel-light: #152231;

  --color-text: #FFFFFF;
  --color-text-muted: #AEB7C2;
  --color-text-soft: #D8DEE6;

  --color-accent: #FF5A1F;
  --color-accent-hover: #FF6F35;
  --color-accent-dark: #C93F12;

  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-strong: rgba(255, 90, 31, 0.55);

  --font-heading: "Sora", "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 1.25rem;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-weight: 700;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  font-family: var(--font-heading);
}
.eyebrow .dot { color: var(--color-accent); margin: 0 0.4em; }

.section { padding: 5.5rem 0; }
.section--tight { padding: 4rem 0; }
.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  margin: 0.7rem 0 0.9rem;
}
.section-sub { color: var(--color-text-muted); font-size: 1.05rem; }

.divider-line { height: 1px; background: var(--color-border); border: 0; }
.accent-rule { width: 56px; height: 3px; background: var(--color-accent); border: 0; border-radius: 2px; }

/* ----- Skip link ----- */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 2000;
  background: var(--color-accent); color: #fff; padding: 0.6rem 1rem;
  border-radius: 0.5rem; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: var(--radius-pill); padding: 0.9rem 1.5rem;
  cursor: pointer; transition: background .2s, border-color .2s, transform .2s, color .2s;
  border: 1px solid transparent; min-height: 48px; line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); transform: translateY(-2px); }
/* Secondary buttons are solid orange too; hover inverts to outline for hierarchy */
.btn-secondary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-secondary:hover { background: transparent; color: var(--color-accent); border-color: var(--color-accent); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* ===================== Header ===================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5, 11, 18, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--color-border); background: rgba(5, 11, 18, 0.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

/* Logo (CSS recreation of the BOILR+ wordmark) */
.logo { display: inline-flex; align-items: center; gap: 0.55rem; }
.logo-word {
  font-family: var(--font-heading); font-weight: 700; color: #fff;
  font-size: 1.45rem; letter-spacing: 0.34em; padding-left: 0.06em;
}
.logo-plus {
  width: 1.55rem; height: 1.55rem; border: 2.5px solid var(--color-accent);
  border-radius: 4px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.15rem; line-height: 1;
}
.logo--sm .logo-word { font-size: 1.15rem; }
.logo--sm .logo-plus { width: 1.25rem; height: 1.25rem; font-size: 0.95rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--color-text-soft); font-size: 0.92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-heading); font-weight: 700; color: #fff; }
.header-phone svg { width: 16px; height: 16px; color: var(--color-accent); }

/* Mobile-only tap-to-call (shown when nav collapses) */
.header-call { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--color-accent); color: #fff; flex-shrink: 0; }
.header-call:hover { background: var(--color-accent-hover); }
.header-call svg { width: 21px; height: 21px; }

.menu-toggle { display: none; align-items: center; justify-content: center; flex-direction: column; min-width: 46px; min-height: 46px; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; inset: 76px 0 auto 0; z-index: 999;
  background: var(--color-bg-soft); border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.5rem 1.75rem; flex-direction: column; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.85rem 0.25rem; color: var(--color-text-soft); border-bottom: 1px solid var(--color-border); font-weight: 500; }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 0.9rem; }

/* ===================== Hero ===================== */
.hero { position: relative; padding: 140px 0 70px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 420px at 78% 8%, rgba(255,90,31,0.16), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(21,34,49,0.9), transparent 60%),
    var(--color-bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); margin: 1.1rem 0; }
.hero h1 .accent { color: var(--color-accent); }
.hero-sub { color: var(--color-text-muted); font-size: 1.12rem; max-width: 36ch; margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.1rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-soft); font-size: 0.9rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; max-height: 560px;
  border-radius: var(--radius); border: 1px solid var(--color-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.hero-media::after {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,90,31,0.18); pointer-events: none;
}

/* ===================== Trust strip ===================== */
.trust-strip { background: var(--color-bg-soft); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-border); }
.trust-item { background: var(--color-bg-soft); padding: 1.5rem 1.25rem; display: flex; align-items: center; gap: 0.8rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--color-accent); flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-heading); font-size: 0.98rem; }
.trust-item span { color: var(--color-text-muted); font-size: 0.82rem; }

/* ===================== Service cards ===================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  background: linear-gradient(180deg, var(--color-panel), var(--color-bg-soft));
  border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.6rem; transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: var(--color-border-strong); transform: translateY(-3px); }
.service-ico {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,90,31,0.1); border: 1px solid rgba(255,90,31,0.25); margin-bottom: 1.1rem;
}
.service-ico svg { width: 24px; height: 24px; color: var(--color-accent); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--color-text-muted); font-size: 0.94rem; }

/* Clickable service cards */
a.service-card { display: flex; flex-direction: column; }
.card-link { margin-top: auto; padding-top: 1rem; color: var(--color-accent); font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; }

/* Before / after pair + caption */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.ba-pair figure { position: relative; margin: 0; border-radius: 0.9rem; overflow: hidden; border: 1px solid var(--color-border); }
.ba-pair img { width: 100%; height: 320px; object-fit: cover; display: block; }
.media-caption { color: var(--color-text-muted); font-size: 0.85rem; margin-top: 0.8rem; text-align: center; }

/* Before / after comparison slider (drag the handle to reveal) */
.sliders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.slider-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--color-text-soft); }
.ba-slider { width: 100%; }
.ba-slider-wrap { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--color-border); cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.ba-img { display: block; width: 100%; height: auto; object-fit: cover; }
.ba-img-overlay { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; clip-path: inset(0 50% 0 0); }
.ba-img--before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; transform: translateX(-50%); z-index: 10; cursor: ew-resize; }
.ba-handle-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.4); }
.ba-handle-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; background: var(--color-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 14px rgba(0,0,0,0.4); color: #fff; }
.ba-handle-btn svg { width: 16px; height: 16px; margin: -3px; }
.ba-tag { position: absolute; top: 0.7rem; z-index: 5; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: var(--radius-pill); }
.ba-tag--before { left: 0.7rem; background: rgba(5,11,18,0.85); border: 1px solid var(--color-border); color: var(--color-text-soft); }
.ba-tag--after { right: 0.7rem; background: var(--color-accent); color: #fff; }
@media (max-width: 720px) { .sliders-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Page hero (subpages) */
.page-hero { position: relative; padding: 132px 0 56px; border-bottom: 1px solid var(--color-border); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(720px 360px at 82% 0%, rgba(255,90,31,0.14), transparent 60%), var(--color-bg-soft); }
.page-hero .crumb { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.page-hero .crumb a { color: var(--color-text-muted); }
.page-hero .crumb a:hover { color: var(--color-accent); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); max-width: 16ch; }
.page-hero p { color: var(--color-text-muted); font-size: 1.08rem; max-width: 56ch; margin-top: 1rem; }
.page-hero .hero-cta { margin-top: 1.75rem; }
.page-hero--split .ph-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.page-hero--split .ph-copy h1, .page-hero--split .ph-copy p { max-width: none; }
.ph-media { position: relative; }
.ph-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.65); }
.ph-media--person img { object-position: top center; }

/* Video (click-to-play) */
.video-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); background: #000; }
.video-wrap video { width: 100%; display: block; }
.video-wrap .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.video-wrap .play-btn { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%; border: none; background: var(--color-accent); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,0.4); transition: transform .2s, background .2s; }
.video-wrap .play-btn:hover { background: var(--color-accent-hover); transform: scale(1.06); }
.video-wrap .play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-wrap.playing .poster, .video-wrap.playing .play-btn { display: none; }

/* CTA band (subpage footers) */
.cta-band { padding: 4rem 0; text-align: center; background: linear-gradient(180deg, var(--color-panel-light), var(--color-bg-soft)); border-top: 1px solid var(--color-border); }
.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 0.75rem; }
.cta-band p { color: var(--color-text-muted); margin-bottom: 1.6rem; }
.cta-band .hero-cta { justify-content: center; }

@media (max-width: 560px) { .ba-pair img { height: 220px; } }

/* ===================== Split feature sections ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); border: 1px solid var(--color-border); width: 100%; }
.split h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0.7rem 0 1rem; }
.split p { color: var(--color-text-muted); margin-bottom: 1rem; }
.check-list { display: grid; gap: 0.7rem; margin: 1.25rem 0 1.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--color-text-soft); }
.check-list .plus {
  flex-shrink: 0; width: 20px; height: 20px; border: 1.5px solid var(--color-accent); border-radius: 4px;
  color: var(--color-accent); display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}

/* Managed projects — highlighted panel */
.managed { background: linear-gradient(180deg, var(--color-panel-light), var(--color-bg-soft)); border: 1px solid var(--color-border-strong); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 3rem); }
.managed .eyebrow { color: var(--color-accent); }

/* ===================== Why choose ===================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-item { padding: 1.5rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-bg-soft); }
.why-item .num { font-family: var(--font-heading); color: var(--color-accent); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; }
.why-item h3 { font-size: 1.08rem; margin: 0.6rem 0 0.45rem; }
.why-item p { color: var(--color-text-muted); font-size: 0.9rem; }

/* ===================== Gallery ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; margin: 0; border-radius: 0.9rem; overflow: hidden; border: 1px solid var(--color-border); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .4s var(--ease-out, ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tag {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff;
}
.gallery-tag--before { background: rgba(5, 11, 18, 0.85); border: 1px solid var(--color-border); color: var(--color-text-soft); }

/* ===================== Reviews ===================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { background: var(--color-panel); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; }
.review-card .stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-card p { color: var(--color-text-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.review-card .who { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; }
.review-card .src { color: var(--color-text-muted); font-size: 0.8rem; }
.placeholder-note { color: var(--color-accent); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===================== Areas ===================== */
.areas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.area-chips li { background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 0.5rem 1.05rem; font-size: 0.9rem; color: var(--color-text-soft); }

/* ===================== Contact / form ===================== */
.contact { background: var(--color-bg-soft); border-top: 1px solid var(--color-border); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.contact-info p { color: var(--color-text-muted); margin-bottom: 1.75rem; }
.contact-list { display: grid; gap: 1.1rem; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 0.85rem; color: var(--color-text-soft); }
.contact-list svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }

.form { background: var(--color-panel); border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--color-text-soft); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 0.7rem;
  padding: 0.8rem 0.9rem; color: #fff; font-family: var(--font-body); font-size: 0.95rem;
}
.field input::placeholder, .field textarea::placeholder { color: #6c7886; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-border-strong); }
.field textarea { resize: vertical; min-height: 110px; }
.form-help { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 1.25rem; }
.form .btn { width: 100%; }

/* ===================== Footer ===================== */
.footer { padding: 3.5rem 0 2rem; border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-desc { color: var(--color-text-muted); font-size: 0.9rem; margin: 1rem 0; max-width: 30ch; }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); margin-bottom: 1rem; font-family: var(--font-heading); }
.footer-col a, .footer-col li { display: block; color: var(--color-text-soft); font-size: 0.92rem; padding: 0.3rem 0; }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.75rem; border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--color-text-muted); }

/* ===================== Taste pass (homepage) ===================== */
/* Tactile button feedback */
.btn:active { transform: translateY(1px) scale(0.985); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1); transition-delay: calc(var(--i, 0) * 80ms); will-change: transform, opacity; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Hero: brand device + load-in choreography */
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
.hero-mark { position: absolute; top: -14%; right: -3%; z-index: 0; font-family: var(--font-heading); font-weight: 800; font-size: clamp(20rem, 46vw, 46rem); line-height: 1; color: rgba(255,90,31,0.05); pointer-events: none; user-select: none; }
.hero h1 { letter-spacing: -0.045em; }
.hero-copy > * { animation: tasteIn .7s cubic-bezier(0.16,1,0.3,1) both; }
.hero-copy > *:nth-child(1){ animation-delay:.04s } .hero-copy > *:nth-child(2){ animation-delay:.12s }
.hero-copy > *:nth-child(3){ animation-delay:.2s } .hero-copy > *:nth-child(4){ animation-delay:.28s }
.hero-copy > *:nth-child(5){ animation-delay:.36s }
.hero-media { animation: tasteIn .8s cubic-bezier(0.16,1,0.3,1) .18s both; }
@keyframes tasteIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ===================== Thank-you page ===================== */
.ty-hero { position: relative; overflow: hidden; padding: clamp(4rem, 10vw, 7rem) 0; text-align: center; }
.ty-hero .hero-mark { top: 50%; right: 50%; transform: translate(50%, -50%); font-size: clamp(22rem, 60vw, 40rem); color: rgba(255,90,31,0.03); }
.ty-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.ty-inner h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin: 0.4rem 0 1.1rem; }
.ty-inner > p { color: var(--color-text-soft); margin: 0 auto; max-width: 520px; }
.ty-inner .hero-cta { margin-top: 2.1rem; }
.ty-badge {
  width: 92px; height: 92px; margin: 0 auto 1.9rem; border-radius: 22px;
  background: var(--color-accent); display: grid; place-items: center; color: #fff;
  box-shadow: 0 22px 55px -14px rgba(255,90,31,0.6); animation: tyPop .6s cubic-bezier(0.16,1,0.3,1) both;
}
.ty-badge svg { width: 46px; height: 46px; }
.ty-inner > .eyebrow, .ty-inner > h1, .ty-inner > p, .ty-inner > .hero-cta { animation: tasteIn .7s cubic-bezier(0.16,1,0.3,1) both; }
.ty-inner > .eyebrow { animation-delay: .1s; }
.ty-inner > h1 { animation-delay: .18s; letter-spacing: -0.04em; }
.ty-inner > p { animation-delay: .26s; }
.ty-inner > .hero-cta { animation-delay: .34s; justify-content: center; }
.ty-accent { width: 56px; height: 3px; background: var(--color-accent); border: 0; border-radius: 2px; margin: 1.4rem auto 0; }
@keyframes tyPop { from { opacity: 0; transform: scale(0.6) rotate(-8deg); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .ty-badge, .ty-inner > * { animation: none !important; }
}

/* Bento services grid (asymmetric) */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.bento-item { position: relative; display: flex; flex-direction: column; min-height: 232px; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, var(--color-panel), var(--color-bg-soft)); transition: border-color .25s, transform .25s, box-shadow .25s; }
.bento-item:hover { transform: translateY(-3px); border-color: var(--color-border-strong); box-shadow: 0 34px 60px -32px rgba(0,0,0,0.65); }
.b7 { grid-column: span 7; } .b6 { grid-column: span 6; } .b5 { grid-column: span 5; }
/* text tile */
.bento-text { padding: 1.7rem; }
.bento-text h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.bento-text p { color: var(--color-text-muted); font-size: 1rem; max-width: 46ch; }
.bento-text .card-link { margin-top: auto; padding-top: 1rem; }
.spotlight::before { content:""; position:absolute; inset:0; border-radius:inherit; opacity:0; transition:opacity .3s; pointer-events:none; background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(255,90,31,0.12), transparent 60%); }
.spotlight:hover::before { opacity:1; }
/* image tile */
.bento-img { min-height: 304px; justify-content: flex-end; }
.bento-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .55s cubic-bezier(0.16,1,0.3,1); }
.bento-img:hover img { transform: scale(1.045); }
.bento-img::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(5,11,18,0.12) 0%, rgba(5,11,18,0.5) 52%, rgba(5,11,18,0.93) 100%); }
.bento-overlay { position: relative; z-index: 2; padding: 1.7rem; }
.bento-overlay h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.bento-overlay p { color: var(--color-text-soft); font-size: 1rem; max-width: 40ch; }
.bento-overlay .card-link { color: #fff; margin-top: 0.85rem; display: inline-block; }
.bento-overlay .card-link span { color: var(--color-accent); }

/* Why: de-boxed homepage variant (line rule + ghosted number, no card) */
.why-grid--bare { gap: 0 1.5rem; }
.why-grid--bare .why-item { background: none; border: 0; border-top: 2px solid var(--color-border); border-radius: 0; padding: 1.4rem 0 0; }
.why-grid--bare .why-item .num { font-family: var(--font-heading); font-weight: 800; font-size: 2.3rem; color: rgba(255,255,255,0.10); margin-bottom: 0.5rem; }
.why-grid--bare .why-item:hover { border-top-color: var(--color-border-strong); }

@media (max-width: 940px) {
  .b7, .b6, .b5 { grid-column: span 6; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .b7, .b6, .b5 { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .hero-media { animation: none; }
}

/* ===================== FAQ ===================== */
.faq { display: grid; gap: 0.9rem; max-width: 860px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-panel); padding: 0 1.4rem; transition: border-color .25s; }
.faq-item[open], .faq-item:hover { border-color: var(--color-border-strong); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: #fff; padding: 1.2rem 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--color-accent); font-size: 1.6rem; line-height: 1; transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--color-text-muted); padding: 0 0 1.3rem; max-width: 72ch; }
.faq-item a { color: var(--color-accent); }

/* ===================== Responsive ===================== */
@media (max-width: 940px) {
  .nav-links, .header-phone { display: none; }
  .header-call { display: inline-flex; margin-left: auto; margin-right: 0.6rem; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .page-hero--split .ph-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero--split .ph-media img { aspect-ratio: 16 / 10; }
  .page-hero--split .ph-media--person img { aspect-ratio: 4 / 5; }
  .cards, .reviews-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .split, .areas-wrap, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .cards, .reviews-grid, .gallery-grid, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 116px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; transition: none !important; } }
