/* Apex Build Pro — one stylesheet, token-driven. Colours are by role, not by logo. */

:root {
  --navy: #0b1d36;        /* logo ink, hero and dark bands */
  --navy-2: #122a4b;      /* raised dark surface */
  --navy-3: #1b3a63;      /* dark border/hover */
  --ink: #0f1f33;         /* body text on light */
  --muted: #56637a;       /* secondary text on light */
  --paper: #f4f1ea;       /* warm section ground */
  --raised: #fbfaf7;      /* cards on paper */
  --line: #ddd7ca;        /* hairlines on light */
  --line-dark: rgba(255, 255, 255, 0.14);
  --bone: #f4f1ea;        /* text on dark */
  --bone-muted: rgba(244, 241, 234, 0.72);
  --accent: #c0602a;      /* logo orange, actions only */
  --accent-deep: #a24e1f; /* hover, and text on paper (5.1:1) */
  --accent-ink: #98471a;  /* orange as text on paper (6:1) */
  --ok: #1d6b3a;
  --err: #a12d2d;

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wrap: 78rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r: 0.5rem;
  --r-lg: 0.875rem;
  --shadow: 0 1px 2px rgba(11, 29, 54, 0.06), 0 12px 32px -12px rgba(11, 29, 54, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 320ms;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font: 500 1.0625rem/1.6 var(--font); color: var(--ink); background: var(--raised); -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.16em; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.25rem, 5.2vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.25; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: 0.6rem 1rem; background: var(--accent); color: #fff; border-radius: var(--r); }
.skip:focus { top: 1rem; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.narrow { max-width: 46rem; }

/* ------------------------------------------------------------------ type helpers */
.kicker { margin: 0 0 0.75rem; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); }
.kicker-light { color: #f0a06a; }
.lede { font-size: clamp(1.125rem, 1.6vw, 1.3125rem); line-height: 1.55; color: var(--muted); max-width: 40rem; }
.on-dark .lede, .on-dark p { color: var(--bone-muted); }
.on-dark h2 { color: var(--bone); }
.sec-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.sec-head h2 + .lede { margin-top: 0.875rem; }
.sec-more { margin-top: 2rem; }
.link { font-weight: 700; color: var(--accent-ink); text-decoration: none; }
.link::after { content: " →"; }
.link:hover { text-decoration: underline; }
.note { font-size: 0.9375rem; color: var(--muted); }
.prose h2 { font-size: 1.375rem; margin: 2rem 0 0.5rem; }
.prose h2:first-child { margin-top: 0; }

/* ------------------------------------------------------------------ buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 3rem; padding: 0.75rem 1.375rem; border: 1.5px solid transparent; border-radius: var(--r); font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border-color: rgba(244, 241, 234, 0.45); color: var(--bone); background: rgba(11, 29, 54, 0.25); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(244, 241, 234, 0.1); }
.btn-ghost-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost-dark:hover { background: var(--navy); color: var(--bone); }
.btn-sm { min-height: 2.5rem; padding: 0.5rem 1rem; font-size: 0.9375rem; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* ------------------------------------------------------------------ header */
.site-head { position: sticky; top: 0; z-index: 50; background: var(--raised); border-bottom: 1px solid var(--line); transition: background var(--t) var(--ease), border-color var(--t) var(--ease); }
.head-row { display: flex; align-items: center; gap: 1.5rem; min-height: 4.5rem; }
.brand { flex: none; display: block; }
.brand img { height: 2.5rem; width: auto; }
.brand-light { display: none; }
.site-nav { margin-left: auto; }
.site-nav > ul { display: flex; gap: 0.25rem; }
.site-nav li { position: relative; }
.site-nav a { display: block; padding: 0.625rem 0.875rem; font-weight: 700; font-size: 0.9375rem; text-decoration: none; border-radius: var(--r); }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(11, 29, 54, 0.06); }
.site-nav .sub { position: absolute; left: 0; top: 100%; min-width: 16rem; padding: 0.5rem; background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms; }
.site-nav li:hover > .sub, .site-nav li:focus-within > .sub { opacity: 1; visibility: visible; transform: none; }
.site-nav .sub a { font-weight: 600; }
.head-actions { display: flex; align-items: center; gap: 1rem; }
.head-phone { font-weight: 800; text-decoration: none; letter-spacing: 0.01em; }
.burger { display: none; margin-left: auto; width: 2.75rem; height: 2.75rem; padding: 0; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span:not(.sr) { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t) var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav { display: none; padding: 0.5rem var(--gutter) 1.5rem; border-top: 1px solid var(--line); background: var(--raised); }
.mnav ul { display: grid; gap: 0.125rem; margin-bottom: 1rem; }
.mnav a:not(.btn) { display: block; padding: 0.75rem 0.25rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); }
.mnav .sub-item a { padding-left: 1.25rem; font-weight: 600; color: var(--muted); }
.mnav .btn { width: 100%; }

/* transparent over the home hero, solid once scrolled */
.site-head.is-home:not(.is-scrolled):not(.is-open) { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; color: var(--bone); }
.site-head.is-home:not(.is-scrolled):not(.is-open) .brand-dark { display: none; }
.site-head.is-home:not(.is-scrolled):not(.is-open) .brand-light { display: block; }
.site-head.is-home:not(.is-scrolled):not(.is-open) .site-nav a:hover,
.site-head.is-home:not(.is-scrolled):not(.is-open) .site-nav a[aria-current="page"] { background: rgba(244, 241, 234, 0.12); }
.site-head.is-home:not(.is-scrolled):not(.is-open) .site-nav .sub { color: var(--ink); }
.site-head.is-home.is-scrolled { position: fixed; left: 0; right: 0; box-shadow: 0 1px 0 var(--line), 0 8px 24px -16px rgba(11, 29, 54, 0.3); }
body.is-home { padding-top: 0; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 7rem 0 4rem; background: var(--navy); color: var(--bone); overflow: hidden; isolation: isolate; }
.hero-video, .hero-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11, 29, 54, 0.88) 0%, rgba(11, 29, 54, 0.62) 55%, rgba(11, 29, 54, 0.45) 100%), linear-gradient(180deg, rgba(11, 29, 54, 0.55), rgba(11, 29, 54, 0) 30%, rgba(11, 29, 54, 0.4) 100%); }
.hero-ph { background-color: #0d2242; background-image: repeating-linear-gradient(135deg, rgba(244, 241, 234, 0.05) 0 2px, transparent 2px 22px), radial-gradient(120% 80% at 80% 20%, #1b3a63 0%, #0b1d36 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { color: #fff; max-width: 13ch; }
.hero-sub { margin-top: 1.25rem; max-width: 34rem; font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: var(--bone-muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 2rem; font-size: 0.875rem; font-weight: 700; color: var(--bone-muted); }
.hero-proof li::before { content: ""; display: inline-block; width: 0.5rem; height: 0.5rem; margin-right: 0.5rem; background: var(--accent); transform: rotate(45deg); vertical-align: 0.05em; }
.hero-form { justify-self: end; width: 100%; max-width: 30rem; }

/* placeholder slots */
.ph { position: relative; display: grid; place-content: end start; gap: 0.35rem; padding: 1rem; border: 1.5px dashed rgba(11, 29, 54, 0.35); border-radius: var(--r-lg); background-color: #e9e4d8; background-image: repeating-linear-gradient(135deg, rgba(11, 29, 54, 0.06) 0 2px, transparent 2px 18px); color: var(--navy); overflow: hidden; }
.ph-tag, .hero-ph .ph-tag { display: inline-block; width: max-content; padding: 0.15rem 0.5rem; border-radius: 999px; background: var(--navy); color: var(--bone); font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-badge { position: absolute; left: var(--gutter); bottom: 1.25rem; z-index: 1; display: grid; gap: 0.3rem; padding: 0.75rem 0.9rem; border: 1.5px dashed rgba(244, 241, 234, 0.45); border-radius: var(--r); background: rgba(11, 29, 54, 0.7); color: var(--bone); }
.hero-badge .ph-tag { background: var(--accent); color: #fff; }
.hero-badge .ph-label { color: var(--bone-muted); }
.ph-label { font-size: 0.8125rem; font-weight: 700; line-height: 1.35; max-width: 28ch; }
.sec-navy .ph { border-color: rgba(244, 241, 234, 0.35); background-color: #0f2646; color: var(--bone); background-image: repeating-linear-gradient(135deg, rgba(244, 241, 234, 0.06) 0 2px, transparent 2px 18px); }
.sec-navy .ph .ph-tag { background: var(--accent); }

/* ------------------------------------------------------------------ bands & sections */
.sec { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.sec-paper { background: var(--paper); }
.sec-navy { background: var(--navy); color: var(--bone); }
.sec-navy .kicker { color: #f0a06a; }
.band { padding: 1.5rem 0; }
.band-trust { background: var(--navy-2); color: var(--bone); border-top: 1px solid var(--line-dark); }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust li { display: grid; gap: 0.15rem; padding-left: 1rem; border-left: 2px solid var(--accent); }
.trust strong { font-size: 0.9375rem; }
.trust span { font-size: 0.8125rem; color: var(--bone-muted); }
.band-cta { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--navy); color: var(--bone); }
.cta-row { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-row h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-row p { color: var(--bone-muted); max-width: 36rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1, .page-hero h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
.page-hero-tight { padding-bottom: 1.5rem; }
.page-hero .sec-head { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.two-col .sec-head { margin-bottom: 1rem; }
.two-col .sec-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

/* frames, photos */
.frame { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--paper); }
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------------ services */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.svc { display: grid; grid-template-rows: auto 1fr; overflow: hidden; border-radius: var(--r-lg); background: var(--raised); border: 1px solid var(--line); text-decoration: none; color: inherit; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.svc .frame, .svc .ph { border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.svc .frame img { transition: transform 600ms var(--ease); }
.svc:hover .frame img { transform: scale(1.04); }
.svc-body { display: grid; gap: 0.5rem; padding: 1.25rem; align-content: start; }
.svc-body p { color: var(--muted); font-size: 0.9375rem; }
.num { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; color: var(--accent-ink); }
.svc-list { display: grid; gap: 1.25rem; }
.svc-row { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); grid-template-rows: none; }
.svc-row .svc-body { padding: 2rem; align-content: center; }
.svc-row h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.svc-row p { font-size: 1.0625rem; }

.svc-hero { padding: clamp(2.5rem, 6vw, 5rem) 0; background: var(--navy); color: var(--bone); }
.svc-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.svc-hero h1 { color: #fff; font-size: clamp(2.25rem, 4.6vw, 3.75rem); }
.svc-hero .lede { color: var(--bone-muted); margin-top: 1rem; }
.svc-hero-img { aspect-ratio: 4 / 3; }
.ticks li { position: relative; padding: 0.4rem 0 0.4rem 1.75rem; border-bottom: 1px solid var(--line); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 0.95rem; width: 0.55rem; height: 0.55rem; background: var(--accent); transform: rotate(45deg); }
.cannot { padding: 1.5rem; border-radius: var(--r-lg); background: var(--paper); border-left: 4px solid var(--navy); }
.side { display: grid; gap: 1.5rem; align-content: start; }
.side-card, .side-block { padding: 1.5rem; border-radius: var(--r-lg); background: var(--paper); }
.side-block h2 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.side-links h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.side-links a { display: block; padding: 0.4rem 0; font-weight: 600; text-decoration: none; color: var(--accent-ink); }

/* ------------------------------------------------------------------ proof */
.stage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.stage-fig { margin: 0; }
.stage-fig figcaption { display: grid; gap: 0.35rem; padding: 0.875rem 0.25rem 0; font-size: 0.9375rem; color: var(--muted); }
.stage { display: inline-block; width: max-content; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--navy); }
.stage-initial { background: #6b4a2b; }
.stage-work { background: var(--accent); }
.stage-finished { background: var(--ok); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-item { margin: 0; }
.g-item a, .g-item .frame { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-lg); background: var(--paper); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.g-item a:hover img { transform: scale(1.04); }
.g-item figcaption { display: grid; gap: 0.25rem; padding: 0.625rem 0.125rem 0; }
.g-cap { font-size: 0.875rem; color: var(--muted); line-height: 1.35; }
.g-item[hidden] { display: none; }
.filters { display: grid; gap: 0.75rem; margin-bottom: 1.75rem; }
.filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.filter-label { width: 4rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.chip { padding: 0.45rem 0.9rem; border: 1.5px solid var(--line); border-radius: 999px; background: var(--raised); font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease); }
.chip:hover { border-color: var(--navy); }
.chip.is-on { background: var(--navy); border-color: var(--navy); color: var(--bone); }
.empty { padding: 2rem; text-align: center; color: var(--muted); }
.case { padding: 2rem; margin-bottom: 1.5rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--raised); }
.case dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1rem 0 1.5rem; }
.case dt { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.case dd { margin: 0.25rem 0 0; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1rem; background: rgba(11, 29, 54, 0.94); }
.lb[hidden] { display: none; }
.lb img { max-width: min(96vw, 110rem); max-height: 82vh; width: auto; height: auto; border-radius: var(--r); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.lb figcaption { margin-top: 0.875rem; color: var(--bone-muted); font-size: 0.9375rem; text-align: center; }
.lb figure { margin: 0; display: grid; justify-items: center; }
.lb-close, .lb-prev, .lb-next { position: absolute; width: 3rem; height: 3rem; border: 0; border-radius: 50%; background: rgba(244, 241, 234, 0.12); color: var(--bone); font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(244, 241, 234, 0.24); }

/* ------------------------------------------------------------------ process */
.process-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.process-intro .sec-head { margin-bottom: 1.5rem; }
.steps { display: grid; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 0 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps h3 { grid-column: 2; }
.steps p { grid-column: 2; margin-top: 0.4rem; color: var(--muted); }
.step-n { grid-row: span 2; font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent-ink); padding-top: 0.35rem; }
.steps-tight li { grid-template-columns: 2.5rem 1fr; padding: 0.75rem 0; font-weight: 600; }
.steps-tight .step-n { grid-row: auto; padding-top: 0.15rem; }
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.principles li { display: grid; gap: 0.5rem; align-content: start; padding: 1.75rem; border-radius: var(--r-lg); background: var(--raised); border: 1px solid var(--line); }
.principles p { color: var(--muted); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.facts div { padding: 0.875rem 1rem; border-radius: var(--r); background: var(--paper); }
.facts dt { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0.2rem 0 0; font-weight: 700; }

/* fleet, team */
.fleet-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.fleet-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.fleet-facts li { display: grid; gap: 0.15rem; padding: 1rem; border-radius: var(--r); background: var(--navy-2); border: 1px solid var(--line-dark); }
.fleet-facts strong { font-size: 1rem; }
.fleet-facts span { font-size: 0.8125rem; color: var(--bone-muted); }
.team-teaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.team-teaser .sec-head { margin-bottom: 1.5rem; }

/* ------------------------------------------------------------------ form */
.qf { display: grid; gap: 1.25rem; padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--r-lg); background: var(--raised); color: var(--ink); box-shadow: var(--shadow); }
.qf-compact { gap: 1rem; padding: 1.5rem; }
.qf-head h2 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.qf-head p { font-size: 0.9375rem; color: var(--muted); }
.qf-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.875rem 1rem; }
.qf-compact .qf-grid { gap: 0.75rem; }
.f { display: grid; gap: 0.3rem; }
.f > span { font-size: 0.8125rem; font-weight: 700; color: var(--ink); }
.f > span b { color: var(--accent-ink); font-weight: 800; }
.f > span em { font-style: normal; font-weight: 500; color: var(--muted); }
.f-wide { grid-column: 1 / -1; }
.f input:not([type="checkbox"]):not([type="file"]), .f select, .f textarea { width: 100%; min-height: 2.875rem; padding: 0.6rem 0.8rem; border: 1.5px solid var(--line); border-radius: var(--r); background: #fff; font: inherit; color: var(--ink); transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.f textarea { resize: vertical; min-height: 6rem; }
.f input:focus, .f select:focus, .f textarea:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11, 29, 54, 0.12); }
.f.is-error input, .f.is-error select, .f.is-error textarea { border-color: var(--err); }
.f-msg { font-size: 0.8125rem; color: var(--err); font-weight: 600; }
.f-file input { font-size: 0.875rem; }
.check { display: grid; grid-template-columns: 1.25rem 1fr; gap: 0.6rem; align-items: start; font-size: 0.875rem; line-height: 1.4; color: var(--muted); }
.check input { margin: 0.15rem 0 0; width: 1.125rem; height: 1.125rem; accent-color: var(--accent); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.qf-foot { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; }
.qf-note { font-size: 0.8125rem; color: var(--muted); }
.qf-status { padding: 0.875rem 1rem; border-radius: var(--r); font-size: 0.9375rem; background: var(--paper); border-left: 4px solid var(--navy); }
.qf-status.is-ok { border-color: var(--ok); }
.qf-status.is-fail { border-color: var(--err); }
.qf.is-sent .qf-grid, .qf.is-sent .qf-foot { display: none; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { display: grid; gap: 0.5rem; }
.contact-line { display: grid; gap: 0.1rem; text-decoration: none; font-weight: 700; }
.contact-line > span:first-child { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
a.contact-line:hover { color: var(--accent-ink); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 1.75rem; height: 1.75rem; display: grid; place-items: center; border-radius: 50%; background: var(--paper); font-weight: 800; transition: transform var(--t) var(--ease); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 1.25rem; color: var(--muted); max-width: 60ch; }

/* ------------------------------------------------------------------ footer */
.site-foot { background: var(--navy); color: var(--bone); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.foot-brand p { margin-top: 1.25rem; max-width: 30rem; color: var(--bone-muted); font-size: 0.9375rem; }
.foot-h { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #f0a06a; margin-bottom: 1rem; }
.site-foot ul { display: grid; gap: 0.5rem; }
.site-foot a:not(.btn) { text-decoration: none; color: var(--bone); font-weight: 600; }
.site-foot a:not(.btn):hover { text-decoration: underline; }
.foot-contact li:last-child { margin-top: 0.5rem; }
.foot-contact .contact-line > span:first-child { color: var(--bone-muted); }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem; padding-top: 1.5rem; font-size: 0.8125rem; color: var(--bone-muted); }

/* ------------------------------------------------------------------ motion */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 68rem) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .gallery-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form { justify-self: stretch; max-width: none; }
  .hero { min-height: 0; padding-top: 6.5rem; }
}
@media (max-width: 60rem) {
  .site-nav, .head-actions { display: none; }
  .burger { display: flex; }
  .mnav.is-open { display: block; }
  .site-head.is-open { background: var(--raised); color: var(--ink); }
  .svc-hero-grid, .two-col, .process-grid, .fleet-grid, .team-teaser, .contact-grid { grid-template-columns: 1fr; }
  .svc-hero-img { order: -1; }
  .cta-row { grid-template-columns: 1fr; }
  .case dl { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: 1fr; }
}
@media (max-width: 40rem) {
  body { font-size: 1rem; }
  .svc-grid, .stage-grid, .gallery, .gallery-4 { grid-template-columns: 1fr; }
  .gallery-4, .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust { grid-template-columns: 1fr; gap: 1rem; }
  .qf-grid { grid-template-columns: 1fr; }
  .qf-foot { grid-template-columns: 1fr; }
  .qf-foot .btn { width: 100%; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .svc-body { padding: 1.25rem; }
  .fleet-facts { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .brand img { height: 2.125rem; }
}

/* ================================================================== v2: white ground, islands, big imagery (4 Sep) */
:root { --raised: #ffffff; --paper: #f4f5f7; --line: #e3e6ea; --wrap: 86rem; }
body { background: #fff; }
.sec { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.sec-paper { background: var(--paper); }
.sec-flush { padding-bottom: 0; }

/* chapters, Dukes-style numbered labels */
.chapter { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); }
.chapter-rule { width: 2.5rem; height: 1px; background: currentColor; opacity: 0.6; }
.island-navy .chapter, .split-panel .chapter { color: #f0a06a; }
.sec-head-row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 1rem 3rem; align-items: end; max-width: none; margin-bottom: 1.75rem; }
.sec-head-row .lede { max-width: none; margin: 0; }

/* islands */
.island { padding: clamp(1.5rem, 4vw, 3.5rem); border-radius: 1.25rem; }
.island-grey { background: var(--paper); }
.island-navy { background: var(--navy); color: var(--bone); }
.island-navy h2 { color: #fff; }
.island-navy p { color: var(--bone-muted); }

/* half-height hero as an inset island */
.hero-half { min-height: 0; margin: 0.75rem; border-radius: 1.25rem; padding: 5.25rem 0 1.75rem; }
.hero-half .hero-grid { align-items: center; grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr); }
.hero-half h1 { font-size: clamp(2.25rem, 4.2vw, 3.5rem); max-width: 14ch; }
.hero-half .hero-form { margin-bottom: 0; }
.hero-half .hero-copy { padding-bottom: 1rem; }
.site-head.is-home:not(.is-scrolled):not(.is-open) { padding: 0.75rem 0.75rem 0; }
.band-trust { padding: 2.25rem 0 1rem; background: #fff; border-top: 0; color: var(--ink); }
.band-trust .trust { grid-template-columns: repeat(4, 1fr); }
.band-trust .trust span { color: var(--muted); }

/* 01 mosaic */
.mosaic { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.mosaic-tile { position: relative; display: block; overflow: hidden; border-radius: 1rem; background: var(--paper); aspect-ratio: 4 / 3; }
.mosaic-lead { grid-row: span 2; aspect-ratio: auto; min-height: 30rem; }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.mosaic-tile:hover img { transform: scale(1.035); }
.tile-cap { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 0.35rem; padding: 2.5rem 1.25rem 1.125rem; background: linear-gradient(180deg, rgba(11, 29, 54, 0) 0%, rgba(11, 29, 54, 0.78) 100%); color: #fff; font-size: 0.9375rem; font-weight: 600; }
.mosaic-lead .tile-cap { font-size: 1.125rem; padding: 3rem 1.5rem 1.5rem; }

/* 02 routes */
.routes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.route { display: grid; overflow: hidden; border-radius: 1rem; background: var(--navy); color: var(--bone); text-decoration: none; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.route:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(11, 29, 54, 0.5); }
.route-media { aspect-ratio: 3 / 2; overflow: hidden; }
.route-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.route:hover .route-media img { transform: scale(1.04); }
.route-body { display: grid; gap: 0.5rem; padding: 1.5rem 1.75rem 1.75rem; }
.route-body h3 { color: #fff; font-size: 1.5rem; }
.route-body p { color: var(--bone-muted); }
.num-light { color: #f0a06a; }
.route-link { margin-top: 0.25rem; font-weight: 700; color: #f0a06a; }
.route-link::after { content: " →"; }

/* 03 tabs */
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.tab { display: grid; gap: 0.4rem; justify-items: start; padding: 1rem 1.125rem; border: 1.5px solid var(--line); border-radius: 0.875rem; background: #fff; text-align: left; cursor: pointer; transition: border-color var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease); }
.tab:hover { border-color: var(--navy); }
.tab.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }
.tab-n { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; color: var(--accent-ink); }
.tab.is-on .tab-n { color: #f0a06a; }
.tab strong { font-size: 1.0625rem; }
.tab-panel { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2rem; align-items: center; padding: 1.5rem; border-radius: 1rem; background: #fff; }
.tab-panel[hidden] { display: none; }
.tab-img { aspect-ratio: 3 / 2; border-radius: 0.875rem; }
.tab-copy h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.points { display: grid; gap: 0.5rem; }
.points li { display: grid; grid-template-columns: 2rem 1fr; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: 0.625rem; background: var(--paper); font-weight: 600; }
.points li span { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent-ink); padding-top: 0.2rem; }
.points-light li { background: rgba(255, 255, 255, 0.08); color: var(--bone); }
.points-light li span { color: #f0a06a; }

/* 04 split: big photo + dark panel */
.split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 1rem; align-items: stretch; }
.split-media { border-radius: 1.25rem; min-height: 30rem; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-panel { display: grid; gap: 1rem; align-content: center; padding: clamp(1.5rem, 4vw, 3rem); border-radius: 1.25rem; background: var(--navy); color: var(--bone); }
.split-panel h2 { color: #fff; }
.split-panel p { color: var(--bone-muted); }
.split-panel .btn { justify-self: start; margin-top: 0.5rem; }

/* 06 work wall */
.wall { overflow: hidden; margin-top: 0.5rem; padding: 0.5rem 0 1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.wall-row { overflow: hidden; margin-bottom: 0.75rem; }
.wall-track { display: flex; gap: 0.75rem; width: max-content; animation: wall-scroll 70s linear infinite; }
.wall-row-rev .wall-track { animation-direction: reverse; }
.wall:hover .wall-track { animation-play-state: paused; }
.wall-card { flex: none; width: 24rem; margin: 0; }
.wall-card .frame { aspect-ratio: 4 / 3; border-radius: 0.875rem; }
.wall-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.wall-card figcaption { padding: 0.5rem 0.125rem 0; }
@keyframes wall-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wall-track { animation: none; } .wall { overflow-x: auto; } }

/* team teaser bigger */
.team-teaser { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
.team-teaser .team-img { aspect-ratio: 3 / 2; border-radius: 1.25rem; }
.team-teaser .lede { margin-bottom: 1.5rem; }
.process-intro h2 { margin-bottom: 1.5rem; }

/* service pages: bigger hero image band and larger galleries */
.svc-hero { padding: clamp(2rem, 4vw, 3rem) 0 0; background: #fff; color: var(--ink); }
.svc-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
.svc-hero h1 { color: var(--ink); }
.svc-hero .lede { color: var(--muted); }
.svc-hero-img { aspect-ratio: 21 / 9; border-radius: 1.25rem; }
.svc-hero-copy { max-width: 52rem; }
.gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.gallery .g-item:first-child { grid-column: 1 / -1; }
.gallery .g-item:first-child a { aspect-ratio: 21 / 9; }
.gallery-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-4 .g-item:first-child { grid-column: auto; }
.gallery-4 .g-item:first-child a, .gallery-4 .g-item:first-child .frame { aspect-ratio: 4 / 3; }
.page-hero { background: #fff; border-bottom: 0; padding-bottom: 1rem; }
.svc-list .svc-row .frame { aspect-ratio: 3 / 2; }
.side-card, .side-block, .cannot { background: var(--paper); }

@media (max-width: 68rem) {
  .band-trust .trust { padding-right: 0; grid-template-columns: repeat(2, 1fr); }
  .hero-half .hero-form { margin-bottom: 0; }
  .hero-half .hero-grid { grid-template-columns: 1fr; }
  .sec-head-row { grid-template-columns: 1fr; }
}
@media (max-width: 60rem) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .mosaic-lead { grid-row: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .routes { grid-template-columns: 1fr; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-panel { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 0; aspect-ratio: 4 / 3; }
  .team-teaser { grid-template-columns: 1fr; }
  .wall-card { width: 17rem; }
  .gallery-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-half { margin: 0; border-radius: 0; }
  .site-head.is-home:not(.is-scrolled):not(.is-open) { padding: 0; }
}
@media (max-width: 40rem) {
  .band-trust .trust { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-item:first-child a { aspect-ratio: 4 / 3; }
  .island { padding: 1.25rem; border-radius: 1rem; }
}

.svc-hero .btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.svc-hero .btn-ghost:hover { background: var(--navy); color: var(--bone); }

/* compact form: tighter so the hero can sit at half height */
.hero-half .qf-compact { padding: 1.25rem 1.375rem; gap: 0.75rem; }
.hero-half .qf-compact .qf-grid { gap: 0.55rem 0.75rem; }
.hero-half .qf-compact .qf-head h2 { font-size: 1.25rem; }
.hero-half .qf-compact .f input:not([type="checkbox"]):not([type="file"]), .hero-half .qf-compact .f select { min-height: 2.5rem; padding: 0.4rem 0.7rem; }
.hero-half .qf-compact .f textarea { min-height: 4.25rem; }
.hero-half .qf-compact .check { font-size: 0.8125rem; }
.hero-half .qf-compact .qf-note { display: none; }
.band-trust { padding-top: 1.5rem; }
.hero-half .hero-badge { position: static; display: inline-flex; align-items: center; gap: 0.6rem; width: max-content; max-width: 100%; margin-top: 1.25rem; padding: 0.4rem 0.6rem; }
.hero-half .hero-badge .ph-label { max-width: none; }
.hero-half .hero-copy { padding-bottom: 0; }
.hero-half .hero-sub { margin-top: 0.875rem; }
.hero-half .hero-actions { margin-top: 1.25rem; }

/* glass quote card in the hero */
.qf-glass { gap: 0.85rem; padding: 1.375rem 1.5rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 1rem; box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6); color: var(--bone); -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2); }
.qf-glass .qf-head h2 { font-size: 1.375rem; color: #fff; }
.qf-glass .qf-head p { color: var(--bone-muted); }
.qf-glass .qf-grid { gap: 0.6rem 0.75rem; }
.qf-glass .f > span { color: var(--bone); font-size: 0.78rem; }
.qf-glass .f > span b { color: #f0a06a; }
.qf-glass .f input:not([type="checkbox"]), .qf-glass .f select, .qf-glass .f textarea { min-height: 2.5rem; padding: 0.4rem 0.7rem; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.qf-glass .f input::placeholder, .qf-glass .f textarea::placeholder { color: rgba(244, 241, 234, 0.55); }
.qf-glass .f select option { color: var(--ink); }
.qf-glass .f input:focus, .qf-glass .f select:focus, .qf-glass .f textarea:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18); }
.qf-glass .f textarea { min-height: 3.75rem; }
.qf-glass .check { color: var(--bone-muted); font-size: 0.8rem; }
.qf-glass .check a { color: var(--bone); }
.qf-glass .qf-foot { grid-template-columns: auto 1fr; }
.qf-glass .qf-note { display: block; color: var(--bone-muted); font-size: 0.8rem; }
.qf-glass .qf-note a { color: var(--bone); }
.qf-glass .qf-status { background: rgba(255, 255, 255, 0.12); color: #fff; }
.qf-glass .f-msg { color: #ffb4a8; }
.qf-glass .f.is-error input, .qf-glass .f.is-error select, .qf-glass .f.is-error textarea { border-color: #ffb4a8; }

/* five route cards: three across, then two wide */
.routes { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.route { grid-column: span 2; }
.route:nth-child(4), .route:nth-child(5) { grid-column: span 3; }
.route:nth-child(4) .route-media, .route:nth-child(5) .route-media { aspect-ratio: 2 / 1; }
.chips-all { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chips-all a { display: inline-block; padding: 0.45rem 0.85rem; border: 1.5px solid var(--line); border-radius: 999px; font-size: 0.875rem; font-weight: 700; text-decoration: none; color: var(--ink); transition: border-color var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease); }
.chips-all a:hover { background: var(--navy); border-color: var(--navy); color: var(--bone); }
.included { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1rem; }
.included li { display: grid; gap: 0.4rem; align-content: start; padding: 1.375rem; border-radius: 0.875rem; background: #fff; border: 1px solid var(--line); scroll-margin-top: 6rem; }
.included h3 { font-size: 1.125rem; }
.included p { color: var(--muted); font-size: 0.9375rem; }
.included:target li, .included li:target { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192, 96, 40, 0.18); }
.all-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.5rem; }
.fam h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.fam h3 a { text-decoration: none; color: var(--navy); }
.fam h3 a:hover { color: var(--accent-ink); }
.fam ul { display: grid; gap: 0.25rem; }
.fam li a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.9375rem; }
.fam li a:hover { color: var(--accent-ink); }
@media (max-width: 60rem) { .route, .route:nth-child(4), .route:nth-child(5) { grid-column: 1 / -1; } .route:nth-child(4) .route-media, .route:nth-child(5) .route-media { aspect-ratio: 3 / 2; } }

/* hero v3 (5 Sep): flush to the top, blue behind the header, deeper, content centred, smaller headline */
.hero-half { margin: 0; border-radius: 0 0 1.5rem 1.5rem; min-height: 78vh; padding: 7.5rem 0 4.5rem; }
.hero-half .hero-grid { align-items: center; min-height: calc(78vh - 12rem); }
.hero-half h1 { font-size: clamp(2rem, 3.6vw, 3.1rem); max-width: 15ch; }
.hero-half .hero-sub { font-size: clamp(1rem, 1.25vw, 1.125rem); max-width: 30rem; }
.site-head.is-home:not(.is-scrolled):not(.is-open) { padding: 0.5rem 0 0; }
@media (max-width: 60rem) { .hero-half { min-height: 0; padding: 6rem 0 2.5rem; border-radius: 0 0 1rem 1rem; } .hero-half .hero-grid { min-height: 0; } }

/* ================================================================== BNL-style top: utility bar, white header, photo hero, tiles (5 Sep) */
.util { background: var(--navy); color: var(--bone); }
.util-row { display: flex; align-items: center; justify-content: center; gap: 1.25rem; min-height: 3.25rem; padding: 0.5rem 0; flex-wrap: wrap; }
.util-row p { margin: 0; font-weight: 700; font-size: 1rem; }
.util-actions { display: flex; gap: 0.6rem; }
.btn-util { border-color: rgba(244, 241, 234, 0.55); color: var(--bone); background: transparent; }
.btn-util:hover { background: var(--bone); color: var(--navy); }
.site-head { background: #fff; border-bottom: 1px solid var(--line); }
.head-row { min-height: 5rem; }
.brand img { height: 2.75rem; }

.hero-photo { position: relative; min-height: 74vh; display: grid; align-items: center; justify-items: center; text-align: center; color: #fff; overflow: hidden; isolation: isolate; padding: 4rem 0; }
.hero-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; z-index: -2; }
.hero-photo-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 29, 54, 0.35) 0%, rgba(11, 29, 54, 0.55) 60%, rgba(11, 29, 54, 0.7) 100%); }
.hero-photo-copy { display: grid; justify-items: center; gap: 0.25rem; max-width: 56rem; }
.hero-photo h1 { color: #fff; font-size: clamp(2.25rem, 4.6vw, 3.75rem); max-width: 20ch; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.hero-photo .hero-sub { margin-top: 0.75rem; max-width: 40rem; color: rgba(255, 255, 255, 0.92); font-size: clamp(1.0625rem, 1.4vw, 1.25rem); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4); }
.btn-xl { flex-direction: column; gap: 0.1rem; margin-top: 1.5rem; padding: 0.9rem 2.25rem; font-size: 1.125rem; box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5); }
.btn-xl small { font-size: 0.8125rem; font-weight: 600; opacity: 0.9; }
.hero-badge-static { position: static; display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.5rem; padding: 0.4rem 0.6rem; background: rgba(11, 29, 54, 0.55); }
.hero-badge-static .ph-label { max-width: none; }

.tiles-band { background: var(--navy); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); }
.tiles li { display: grid; grid-template-columns: 2.75rem 1fr; gap: 0.35rem 1rem; align-content: start; padding: 1.75rem clamp(1.25rem, 2.5vw, 2.5rem); color: #fff; background: var(--navy-2); }
.tiles li:nth-child(even) { background: var(--accent); }
.tile-ic { grid-row: span 2; width: 2.75rem; height: 2.75rem; }
.tile-ic svg { width: 100%; height: 100%; }
.tiles h3 { font-size: 0.9375rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.tiles p { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.85); line-height: 1.5; }

.quote-band { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.quote-intro h2 { margin-bottom: 0.75rem; }
.quote-intro .ticks { margin-top: 1.25rem; max-width: 26rem; }
.quote-form .qf-glass { background: var(--navy); border-color: var(--navy); -webkit-backdrop-filter: none; backdrop-filter: none; }

@media (max-width: 68rem) { .tiles { grid-template-columns: repeat(2, 1fr); } .quote-grid { grid-template-columns: 1fr; } }
@media (max-width: 40rem) { .tiles { grid-template-columns: 1fr; } .util-row { justify-content: flex-start; } .util-row p { display: none; } .hero-photo { min-height: 0; padding: 4rem 0 3rem; } }

/* stars in the hero, and the "what happens next" strip (5 Sep) */
.stars-pill { display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 0 1rem; padding: 0.45rem 0.9rem; border-radius: 999px; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.35); color: #fff; font-weight: 700; font-size: 0.9375rem; text-decoration: none; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.stars { color: #ffb400; letter-spacing: 0.08em; font-size: 1rem; }
.stars-count { color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.next-strip { background: #fff; border-bottom: 1px solid var(--line); }
.ns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ns li { position: relative; display: grid; grid-template-columns: 4.5rem 1fr; gap: 0.15rem 1rem; align-content: start; padding: 1.75rem 1.5rem 1.75rem 0; margin-right: 1.5rem; border-right: 1px solid var(--line); }
.ns li:last-child { border-right: 0; margin-right: 0; }
.ns-thumb { grid-row: span 2; width: 4.5rem; height: 4.5rem; border-radius: 50%; overflow: hidden; background: var(--paper); }
.ns-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ns-n { position: absolute; left: 3.25rem; top: 1.5rem; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 800; border: 2px solid #fff; }
.ns h3 { font-size: 1.0625rem; }
.ns p { font-size: 0.9375rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 68rem) { .ns { grid-template-columns: repeat(2, 1fr); } .ns li:nth-child(2) { border-right: 0; margin-right: 0; } }
@media (max-width: 40rem) { .ns { grid-template-columns: 1fr; } .ns li { border-right: 0; margin-right: 0; padding: 1.25rem 0; border-bottom: 1px solid var(--line); } .ns li:last-child { border-bottom: 0; } }

/* hero v4 (5 Sep): original split layout under the white header and utility bar */
.hero-half { margin: 0; border-radius: 0 0 1.5rem 1.5rem; min-height: 0; padding: 3.5rem 0 3.5rem; }
.hero-half .hero-grid { min-height: 0; align-items: center; }
.hero-half .stars-pill { margin-bottom: 1.25rem; }
.hero-half .hero-badge { margin-top: 1.25rem; }
@media (max-width: 60rem) { .hero-half { padding: 2.5rem 0 2rem; } }

/* ================================================================== WIREFRAME MODE (5 Sep): layout only, grey palette, labelled media slots */
.brand-text { font-weight: 800; letter-spacing: 0.08em; font-size: 1.125rem; }
.brand-text-light { color: var(--bone); }
.ph-img { width: 100%; height: 100%; min-height: 6rem; aspect-ratio: auto; border-radius: inherit; }
.frame .ph-img, .mosaic-tile .ph-img, .route-media .ph-img, .g-item a .ph-img, .ns-thumb .ph-img, .wall-card .frame .ph-img { height: 100%; }
.ns-thumb .ph-img { padding: 0.25rem; }
.ns-thumb .ph-img .ph-label, .ns-thumb .ph-img .ph-tag { display: none; }
.wire { --navy: #262a30; --navy-2: #32373e; --navy-3: #3d434b; --accent: #5f6772; --accent-deep: #4b525c; --accent-ink: #4b525c; --paper: #f2f3f5; --line: #d9dce1; --bone: #f2f3f5; --bone-muted: rgba(242, 243, 245, 0.72); --muted: #5f6772; --ok: #4b525c; }
.wire .kicker, .wire .kicker-light, .wire .chapter, .wire .num, .wire .num-light, .wire .tab-n, .wire .route-link, .wire .foot-h, .wire .step-n, .wire .points li span, .wire .link { color: #6b7280; }
.wire .stars { color: #9ca3af; }
.wire .stage, .wire .ph-tag, .wire .ns-n { background: #6b7280; }
.wire .hero-ph { background-color: #2e333b; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 22px); }
.wire .ph { background-color: #e5e7eb; border-color: #9ca3af; color: #374151; background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 18px); }
.wire .island-navy .ph, .wire .sec-navy .ph { background-color: #3d434b; border-color: #9ca3af; color: #f2f3f5; }
.wire .btn-primary { background: #4b525c; }
.wire .btn-primary:hover { background: #262a30; }
.wire .tiles li:nth-child(even) { background: #4b525c; }
/* layout mode chrome (wireframe only) */
.lm-sec { position: relative; outline: 1px dashed rgba(107, 114, 128, 0.5); outline-offset: -1px; }
.lm-sec:hover { outline-color: #374151; }
.lm-bar { position: absolute; top: 0.5rem; left: 0.5rem; z-index: 40; display: flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.4rem 0.3rem 0.7rem; border-radius: 0.5rem; background: #111827; color: #fff; font-size: 0.75rem; font-weight: 700; box-shadow: 0 6px 20px rgba(0,0,0,0.3); cursor: grab; }
.lm-name { max-width: 22rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lm-btns button { width: 1.6rem; height: 1.6rem; border: 0; border-radius: 0.3rem; background: #374151; color: #fff; cursor: pointer; font-size: 0.7rem; margin-left: 0.15rem; }
.lm-btns button:hover { background: #6b7280; }
.lm-hidden { opacity: 0.25; max-height: 6rem; overflow: hidden; }
.lm-hidden .lm-bar { opacity: 1; }
.lm-dragging { opacity: 0.4; }
.lm-over { box-shadow: inset 0 4px 0 #111827; }
.lm-toolbar { position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 60; display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.9rem; border-radius: 999px; background: #111827; color: #fff; font-size: 0.8125rem; box-shadow: 0 10px 30px rgba(0,0,0,0.35); white-space: nowrap; }
.lm-toolbar span { color: #9ca3af; }
.lm-toolbar button { border: 0; border-radius: 999px; padding: 0.4rem 0.8rem; background: #fff; color: #111827; font-weight: 700; cursor: pointer; }
.lm-toolbar button:last-child { background: #374151; color: #fff; }
@media (max-width: 40rem) { .lm-toolbar span { display: none; } }
/* edit mode */
.em-text { outline: 1px dashed transparent; outline-offset: 2px; cursor: text; transition: outline-color 120ms; }
.em-text:hover { outline-color: rgba(107, 114, 128, 0.7); }
.em-text:focus { outline: 2px solid #111827; background: rgba(255, 255, 255, 0.6); }
.em-panel { position: absolute; top: 2.4rem; left: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.75rem; min-width: 22rem; padding: 0.75rem; border-radius: 0.6rem; background: #111827; color: #fff; font-size: 0.75rem; cursor: default; }
.em-panel label { display: grid; gap: 0.2rem; font-weight: 700; }
.em-panel select { padding: 0.25rem; border-radius: 0.3rem; border: 0; font: inherit; color: #111827; }
.em-panel [data-close] { grid-column: 1 / -1; border: 0; border-radius: 0.4rem; padding: 0.4rem; background: #fff; color: #111827; font-weight: 700; cursor: pointer; }
.em-global { display: flex; align-items: center; gap: 0.6rem; }
.em-global label { display: flex; align-items: center; gap: 0.3rem; color: #fff; font-weight: 700; font-size: 0.75rem; }
.em-global input[type=color] { width: 1.6rem; height: 1.6rem; padding: 0; border: 0; border-radius: 0.3rem; background: none; cursor: pointer; }
.em-global input[type=range] { width: 5rem; }
/* section settings */
[data-embg="white"] { background: #fff !important; }
[data-embg="grey"] { background: var(--paper) !important; }
[data-embg="dark"] { background: var(--navy) !important; color: var(--bone); }
[data-embg="dark"] h2, [data-embg="dark"] h3 { color: #fff; }
[data-embg="dark"] p, [data-embg="dark"] li { color: var(--bone-muted); }
[data-emwidth="narrow"] > .wrap { max-width: 56rem; width: min(56rem, 100% - 2 * var(--gutter)); }
[data-emwidth="wide"] > .wrap { width: min(100rem, 100% - 2 * var(--gutter)); }
[data-emwidth="full"] > .wrap { width: 100%; max-width: none; padding: 0 var(--gutter); }
[data-empad="tight"] { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
[data-empad="roomy"] { padding-top: 7rem !important; padding-bottom: 7rem !important; }
[data-empad="none"] { padding-top: 0 !important; padding-bottom: 0 !important; }
[data-emalign="centre"] .sec-head, [data-emalign="centre"] .sec-head-row, [data-emalign="centre"] .chapter, [data-emalign="centre"] .hero-copy { text-align: center; justify-content: center; margin-inline: auto; }
[data-emalign="centre"] .sec-head-row { grid-template-columns: 1fr; justify-items: center; }
[data-emalign="left"] .hero-photo-copy { text-align: left; justify-items: start; }
[data-emcols] .routes, [data-emcols] .ns, [data-emcols] .mosaic, [data-emcols] .stage-grid, [data-emcols] .gallery, [data-emcols] .two-col, [data-emcols] .tab-list, [data-emcols] .fleet-facts, [data-emcols] .principles, [data-emcols] .svc-grid { grid-template-rows: none; }
[data-emcols="1"] .routes, [data-emcols="1"] .ns, [data-emcols="1"] .mosaic, [data-emcols="1"] .stage-grid, [data-emcols="1"] .gallery, [data-emcols="1"] .two-col, [data-emcols="1"] .tab-list, [data-emcols="1"] .principles, [data-emcols="1"] .svc-grid { grid-template-columns: 1fr !important; }
[data-emcols="2"] .routes, [data-emcols="2"] .ns, [data-emcols="2"] .mosaic, [data-emcols="2"] .stage-grid, [data-emcols="2"] .gallery, [data-emcols="2"] .two-col, [data-emcols="2"] .tab-list, [data-emcols="2"] .principles, [data-emcols="2"] .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
[data-emcols="3"] .routes, [data-emcols="3"] .ns, [data-emcols="3"] .mosaic, [data-emcols="3"] .stage-grid, [data-emcols="3"] .gallery, [data-emcols="3"] .two-col, [data-emcols="3"] .tab-list, [data-emcols="3"] .principles, [data-emcols="3"] .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
[data-emcols="4"] .routes, [data-emcols="4"] .ns, [data-emcols="4"] .mosaic, [data-emcols="4"] .stage-grid, [data-emcols="4"] .gallery, [data-emcols="4"] .two-col, [data-emcols="4"] .tab-list, [data-emcols="4"] .principles, [data-emcols="4"] .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
[data-emcols] .route, [data-emcols] .mosaic-lead { grid-column: auto !important; grid-row: auto !important; }
.ph-img { place-content: start start; }

/* ================================================================== STAGE 2 COLOUR (5 Sep): simple palette built from the logo, flat surfaces, transparent captions */
:root { --navy: #0b1d36; --navy-2: #12284a; --accent: #c0602a; --accent-deep: #a24e1f; --accent-ink: #9a4a1c; --paper: #f6f5f2; --line: #e6e3dd; --muted: #5a6473; }
.hero-scrim { display: none; }
.hero-ph { background-image: none; background-color: var(--navy); }
.hero.hero-half { background: var(--navy); }
.qf-glass { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
.stars-pill { background: transparent; border-color: rgba(255, 255, 255, 0.3); -webkit-backdrop-filter: none; backdrop-filter: none; }
.stars { color: #f2a93b; }
.route { box-shadow: none; }
.route:hover { box-shadow: none; transform: none; }
.route-body { background: var(--navy); }
.tile-cap { background: none; padding: 1rem 1.125rem; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6); }
.g-item figcaption, .wall-card figcaption { padding-top: 0.5rem; }
.stage { background: rgba(11, 29, 54, 0.55); }
.stage-initial { background: rgba(107, 74, 43, 0.6); }
.stage-work { background: rgba(192, 96, 40, 0.75); }
.stage-finished { background: rgba(29, 107, 58, 0.7); }
.ph-img .ph-tag { background: rgba(11, 29, 54, 0.6); }
.island-navy, .split-panel, .band-cta, .site-foot, .util { background: var(--navy); }
.island-grey { background: var(--paper); }
.btn-primary { background: var(--accent); box-shadow: none; }
.btn-primary:hover { background: var(--accent-deep); }
.chapter { color: var(--accent-ink); }
.site-head { background: #fff; }
.brand img { height: 2.75rem; }
.ph { background-color: #eceef1; border-color: #b8bec7; color: #2b3440; background-image: repeating-linear-gradient(135deg, rgba(11, 29, 54, 0.05) 0 2px, transparent 2px 18px); }
.island-navy .ph, .sec-navy .ph { background-color: #1a3050; border-color: rgba(255, 255, 255, 0.35); color: var(--bone); }

/* ================================================================== STAGE 2b (5 Sep): trade trust palette. Logo keeps navy+orange; UI uses blue, slate, pale blue-grey, green */
:root { --navy: #1f2f44; --navy-2: #27394f; --navy-3: #33475f; --ink: #1f2933; --muted: #5b6776; --paper: #f3f7fb; --raised: #ffffff; --line: #dbe3ec; --accent: #2b74b5; --accent-deep: #245f94; --accent-ink: #21609a; --ok: #3d9a50; --bone: #f5f8fb; --bone-muted: rgba(245, 248, 251, 0.74); }
.kicker, .chapter, .num, .tab-n, .step-n, .points li span, .link, .route-link, .num-light { color: var(--accent-ink); }
.island-navy .chapter, .split-panel .chapter, .kicker-light, .num-light, .route-link, .foot-h { color: #8fc1ea; }
.util, .hero.hero-half, .hero-ph, .island-navy, .split-panel, .band-cta, .site-foot, .route-body, .tab.is-on { background: var(--navy); }
.tab.is-on { border-color: var(--navy); }
.tab.is-on .tab-n { color: #8fc1ea; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost-dark { border-color: var(--accent); color: var(--accent-ink); }
.btn-ghost-dark:hover { background: var(--accent); color: #fff; }
.stars { color: #f2b01e; }
.stage { background: rgba(31, 47, 68, 0.6); }
.stage-initial { background: rgba(91, 103, 118, 0.75); }
.stage-work { background: rgba(217, 139, 31, 0.85); }
.stage-finished { background: rgba(61, 154, 80, 0.85); }
.chip.is-on, .chips-all a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.tab:hover { border-color: var(--accent); }
.f input:focus, .f select:focus, .f textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(43, 116, 181, 0.18); }
.hero-half .qf-glass { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.2); }
.ns-n, .ph-tag { background: var(--accent); }
.island-navy .ph, .sec-navy .ph { background-color: #2b3f58; }
.ticks li::before, .hero-proof li::before { background: var(--accent); }
.cannot { border-left-color: var(--accent); }
.qf-status { border-left-color: var(--accent); }
.site-head .btn-primary { background: var(--accent); }

/* service cards: the photo is the card, text is a small label over its bottom edge (5 Sep) */
.route { position: relative; background: var(--paper); }
.route-media { aspect-ratio: 4 / 3; }
.route:nth-child(4) .route-media, .route:nth-child(5) .route-media { aspect-ratio: 16 / 8; }
.route-media .ph-img { height: 100%; }
.route-body { position: absolute; left: 0; right: 0; bottom: 0; gap: 0.2rem; padding: 2.5rem 1.25rem 1.125rem; background: linear-gradient(180deg, rgba(31, 47, 68, 0) 0%, rgba(31, 47, 68, 0.55) 100%); color: #fff; }
.route-body .num-light { font-size: 0.7rem; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); }
.route-body h3 { font-size: 1.375rem; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55); }
.route-body p { display: none; }
.route-link { margin-top: 0; font-size: 0.9375rem; color: #fff; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); opacity: 0.9; }
.route:hover .route-media img, .route:hover .route-media .ph-img { transform: scale(1.03); }
@media (max-width: 60rem) { .route:nth-child(4) .route-media, .route:nth-child(5) .route-media { aspect-ratio: 4 / 3; } }

/* twelve-service photo grid (5 Sep) */
.stiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.stile { position: relative; display: block; aspect-ratio: 4 / 3.5; overflow: hidden; border-radius: 0.875rem; background: var(--paper); text-decoration: none; color: #fff; }
.stile img, .stile .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.stile .ph-img { border-radius: 0; }
.stile-shade { position: absolute; inset: 0; background: rgba(31, 47, 68, 0.42); transition: background var(--t) var(--ease); }
.stile-label { position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; text-align: center; font-size: 1.25rem; font-weight: 800; line-height: 1.2; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55); }
.stile:hover .stile-shade { background: rgba(31, 47, 68, 0.28); }
.stile:hover img, .stile:hover .ph-img { transform: scale(1.04); }
.stile:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.stile .ph-img .ph-tag, .stile .ph-img .ph-label { position: absolute; left: 0.75rem; }
.stile .ph-img .ph-tag { top: 0.75rem; }
.stile .ph-img .ph-label { top: 2.4rem; max-width: 60%; font-size: 0.7rem; }
@media (max-width: 60rem) { .stiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .stiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; } .stile-label { font-size: 1rem; } }

/* auto-advancing stage steps (ported from 21st.dev Feature Section, vanilla) */
.fsteps { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: stretch; }
.fs-stage { position: relative; min-height: 30rem; border-radius: 1rem; overflow: hidden; background: var(--paper); perspective: 1200px; }
.fs-media { position: absolute; inset: 0; margin: 0; opacity: 0; transform: translateY(40px); transition: opacity 520ms var(--ease), transform 520ms var(--ease); pointer-events: none; }
.fs-media.is-on { opacity: 1; transform: none; pointer-events: auto; }
.fs-media.is-out { opacity: 0; transform: translateY(-40px); }
.fs-media img, .fs-media .ph-img { width: 100%; height: 100%; object-fit: cover; }
.fs-media figcaption { position: absolute; left: 1rem; bottom: 1rem; }
.fs-list { display: grid; align-content: center; gap: 0.5rem; }
.fs-item { position: relative; border-radius: 0.875rem; background: #fff; border: 1.5px solid var(--line); opacity: 0.55; transition: opacity 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease); overflow: hidden; }
.fs-item.is-on { opacity: 1; border-color: var(--accent); box-shadow: 0 10px 30px -18px rgba(31, 47, 68, 0.45); }
.fs-item.is-done { opacity: 0.8; }
.fs-btn { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; width: 100%; padding: 1.125rem 1.25rem 1.25rem; border: 0; background: none; text-align: left; cursor: pointer; font: inherit; color: inherit; }
.fs-n { position: relative; display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 2px solid var(--line); font-weight: 800; color: var(--muted); transition: background 300ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease); }
.fs-tick { display: none; }
.fs-item.is-on .fs-n { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.08); }
.fs-item.is-done .fs-n { background: var(--ok); border-color: var(--ok); color: #fff; }
.fs-item.is-done .fs-num { display: none; }
.fs-item.is-done .fs-tick { display: block; }
.fs-body { display: grid; gap: 0.35rem; }
.fs-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.fs-copy { font-size: 0.9375rem; color: var(--muted); line-height: 1.5; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 450ms var(--ease), opacity 350ms var(--ease); }
.fs-item.is-on .fs-copy { max-height: 8rem; opacity: 1; }
.fs-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--line); }
.fs-bar i { display: block; height: 100%; width: 0; background: var(--accent); }
.fs-item.is-on .fs-bar i { animation: fs-fill var(--fs-interval, 4500ms) linear forwards; }
.fsteps.is-paused .fs-item.is-on .fs-bar i { animation-play-state: paused; }
@keyframes fs-fill { from { width: 0; } to { width: 100%; } }
@media (max-width: 60rem) { .fsteps { grid-template-columns: 1fr; } .fs-stage { min-height: 0; aspect-ratio: 4 / 3; } }
@media (prefers-reduced-motion: reduce) { .fs-media, .fs-item, .fs-copy { transition: none; } .fs-item.is-on .fs-bar i { animation: none; width: 100%; } }

/* anchored sections (5 Sep): centred headings with a rule, boards instead of floating tiles */
.sec-head-centre { max-width: none; text-align: center; margin-bottom: 2rem; }
.sec-head-centre .chapter { justify-content: center; margin-bottom: 0.75rem; }
.sec-head-centre h2::after { content: ""; display: block; width: 3.5rem; height: 3px; margin: 1rem auto 0; background: var(--accent); border-radius: 2px; }
.sec-services { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stiles-board { padding: 0.5rem; background: #fff; border: 1px solid var(--line); border-radius: 0.75rem; }
.stiles { gap: 0.5rem; }
.stile { border-radius: 0.375rem; }
.stile-shade { background: rgba(31, 47, 68, 0.38); }
.stile-label { font-size: 1.1875rem; }
.sec-work { border-top: 1px solid var(--line); }
.sec-work .wall { padding-bottom: 2.5rem; }
.island-grey { border: 1px solid var(--line); }
.split-media, .split-panel, .team-teaser .team-img { border-radius: 0.75rem; }
.fs-stage, .fs-item { border-radius: 0.625rem; }
.route, .g-item a, .g-item .frame, .wall-card .frame { border-radius: 0.5rem; }
@media (max-width: 40rem) { .stiles-board { padding: 0.35rem; } .stiles { gap: 0.35rem; } }

/* per-section custom colours, shade and size (edit mode) */
.em-panel { grid-template-columns: 1fr 1fr; min-width: 30rem; gap: 0.6rem 1rem; }
.em-col { display: grid; gap: 0.4rem; align-content: start; }
.em-col strong { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9ca3af; }
.em-row { display: flex; align-items: center; gap: 0.4rem; }
.em-row input[type=color] { width: 2rem; height: 1.6rem; padding: 0; border: 0; background: none; cursor: pointer; }
.em-row input[type=range] { flex: 1; }
.em-row button { width: 1.4rem; height: 1.4rem; border: 0; border-radius: 0.3rem; background: #374151; color: #fff; cursor: pointer; font-size: 0.8rem; }
.em-bg, .em-bg > .wrap.island { background: var(--em-bg) !important; }
.em-h h1, .em-h h2, .em-h h3, .em-h .fs-title, .em-h .stile-label { color: var(--em-h) !important; }
.em-t p, .em-t li, .em-t .lede, .em-t .fs-copy, .em-t .g-cap, .em-t figcaption { color: var(--em-t) !important; }
.em-a { --accent: var(--em-a); --accent-ink: var(--em-a); --accent-deep: var(--em-a); }
.em-a .chapter, .em-a .kicker, .em-a .num, .em-a .link, .em-a .route-link { color: var(--em-a) !important; }
.em-a .sec-head-centre h2::after, .em-a .fs-bar i, .em-a .ns-n { background: var(--em-a) !important; }
.em-shade .stile-shade { background: rgba(31, 47, 68, var(--em-shade)) !important; }
.em-shade .route-body, .em-shade .tile-cap { background: linear-gradient(180deg, rgba(31, 47, 68, 0) 0%, rgba(31, 47, 68, var(--em-shade)) 100%) !important; }
.em-shade .hero-scrim { display: block !important; background: rgba(31, 47, 68, var(--em-shade)) !important; }
.em-shade .stage { opacity: calc(0.4 + var(--em-shade)); }

/* Dukes-style section labels: rule, label, rule. No numbers. (5 Sep) */
.chapter { justify-content: center; gap: 1.25rem; margin-bottom: 1.25rem; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--muted); }
.chapter .chapter-n { display: none; }
.chapter .chapter-rule { display: none; }
.chapter::before, .chapter::after { content: ""; width: 4.5rem; height: 1px; background: currentColor; opacity: 0.45; }
.island-navy .chapter, .split-panel .chapter, .band-cta .kicker-light { color: rgba(245, 248, 251, 0.75); }
.sec-head:not(.sec-head-centre) .chapter, .split-panel .chapter, .team-teaser .chapter, .process-intro .chapter, .quote-intro .chapter { justify-content: flex-start; }
.sec-head:not(.sec-head-centre) .chapter::before, .split-panel .chapter::before, .team-teaser .chapter::before, .process-intro .chapter::before { display: none; }
.sec-head-centre h2::after { display: none; }
.sec-head-centre { margin-bottom: 1.75rem; }
/* boards: sit on the band, not float on it */
.stiles-board { padding: 1.5rem; border-radius: 0.5rem; background: #fff; border: 1px solid var(--line); box-shadow: none; }
.sec-services { padding-top: 3rem; padding-bottom: 3.5rem; }
/* edit-mode board controls */
[data-emboard="no-border"] .stiles-board, [data-emboard="no-border"] .island { border: 0; }
[data-emboard="plain"] .stiles-board, [data-emboard="plain"] .island { background: transparent; border: 0; padding: 0; }
[data-emboard="full"] > .wrap { width: 100%; max-width: none; }
[data-emboard="full"] .stiles-board, [data-emboard="full"] .island { border-radius: 0; border-left: 0; border-right: 0; }
.em-boardbg .stiles-board, .em-boardbg .island { background: var(--em-boardbg) !important; }
.em-boardpad .stiles-board, .em-boardpad .island { padding: var(--em-boardpad) !important; }
.em-shade .fs-media figcaption .stage { opacity: 1; }
/* left-aligned contexts: rule then label, no dangling rule after */
.sec-head:not(.sec-head-centre) .chapter::before, .split-panel .chapter::before, .team-teaser .chapter::before, .process-intro .chapter::before { display: block; width: 2.5rem; }
.sec-head:not(.sec-head-centre) .chapter::after, .split-panel .chapter::after, .team-teaser .chapter::after, .process-intro .chapter::after { display: none; }

/* ================================================================== PALETTE FINAL (5 Sep, Aarav): black, blue, logo. No grey surfaces. */
:root { --navy: #0a0a0b; --navy-2: #161617; --navy-3: #242426; --ink: #111214; --muted: #55585e; --paper: #ffffff; --raised: #ffffff; --line: #e4e6ea; --accent: #1a6ef5; --accent-deep: #1257c9; --accent-ink: #1257c9; --bone: #f7f8fa; --bone-muted: rgba(247, 248, 250, 0.72); }
.util, .hero.hero-half, .hero-ph, .island-navy, .split-panel, .band-cta, .site-foot, .route-body, .tab.is-on { background: var(--navy); }
.sec-paper, .island-grey, .quote-band, .side-card, .side-block, .cannot, .points li, .fs-item, .stiles-board { background: #fff; }
.sec-services, .sec-work { background: #fff; }
.island-grey { border: 1px solid var(--line); }
.stiles-board { border: 1px solid var(--line); }
.stile-shade { background: rgba(0, 0, 0, 0.42); }
.stile:hover .stile-shade { background: rgba(0, 0, 0, 0.3); }
.tile-cap, .route-body { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%); }
.stage { background: rgba(0, 0, 0, 0.62); }
.stage-initial { background: rgba(0, 0, 0, 0.62); }
.stage-work { background: rgba(26, 110, 245, 0.9); }
.stage-finished { background: rgba(34, 160, 84, 0.9); }
.fs-item.is-on { border-color: var(--accent); box-shadow: none; }
.fs-item.is-done .fs-n { background: var(--navy); border-color: var(--navy); }
.points li, .fs-item { border: 1px solid var(--line); }
.points-light li { background: rgba(255, 255, 255, 0.08); border: 0; }
.chapter { color: var(--muted); }
.island-navy .chapter, .split-panel .chapter { color: rgba(255, 255, 255, 0.7); }
.kicker-light, .num-light, .route-link, .foot-h, .tab.is-on .tab-n { color: #7fb0ff; }
.hero-half .qf-glass { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.16); }
.stars-pill { border-color: rgba(255, 255, 255, 0.28); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost-dark { border-color: var(--navy); color: var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }
.site-head { border-bottom-color: var(--line); }
.f input:focus, .f select:focus, .f textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 110, 245, 0.2); }
.island-navy .ph, .sec-navy .ph { background-color: #1c1c1e; }
/* the board behind the service tiles: black, so it reads on the white page */
.stiles-board { background: var(--navy); border: 0; padding: 1.25rem; border-radius: 0.5rem; }
.stiles { gap: 0.75rem; }

/* ================================================================== TYPE + TONE (5 Sep): Fraunces display, Manrope text; a tonal scale instead of one black */
:root {
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ink: #0f1218; --text: #3a3f48; --muted: #6b7280;
  --black: #0a0b0d;          /* utility bar, footer */
  --hero: #0b1220;           /* hero: ink with a blue undertone */
  --panel-dk: #12203a;       /* dark panels: deep navy-blue */
  --board: #15181e;          /* tile board: charcoal */
  --cta: #0f2a55;            /* cta band: blue-black */
  --tint: #f6f8fc;           /* faint blue-white for light islands */
  --accent: #1a6ef5; --accent-2: #0f4fc2; --accent-ink: #0f4fc2; --accent-soft: #e6efff;
  --line: #e3e6ec;
}
body { color: var(--text); }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.04; color: var(--ink); font-variation-settings: "opsz" 144; }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3, .fs-title, .stile-label, .route-body h3 { font-family: var(--font); font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.hero-half h1 { font-size: clamp(2.6rem, 4.4vw, 3.9rem); color: #fff; }
.hero-sub { font-weight: 400; color: rgba(255, 255, 255, 0.78); }
.lede { font-weight: 400; color: var(--muted); font-size: clamp(1.0625rem, 1.4vw, 1.2rem); }
p { color: var(--text); }
.chapter { font-family: var(--font); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.24em; color: #8a90a0; }
.chapter::before, .chapter::after { opacity: 0.35; }
.stile-label { font-size: 1.125rem; font-weight: 700; letter-spacing: 0; }
.qf-head h2 { font-family: var(--font); font-weight: 700; letter-spacing: -0.01em; }
.foot-h { letter-spacing: 0.2em; }
/* tonal surfaces */
.util { background: var(--black); }
.hero.hero-half, .hero-ph { background: var(--hero); }
.split-panel, .island-navy { background: var(--panel-dk); }
.band-cta { background: var(--cta); }
.site-foot { background: var(--black); }
.stiles-board { background: var(--board); }
.route-body, .tab.is-on { background: var(--panel-dk); }
.island-grey { background: var(--tint); border: 1px solid #e9edf5; }
.fs-item { background: #fff; }
.points li { background: var(--accent-soft); border: 0; color: var(--ink); }
.points li span { color: var(--accent-ink); }
.points-light li { background: rgba(255, 255, 255, 0.08); }
.sec-work { background: var(--tint); }
.hero-half .qf-glass { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.14); }
/* buttons: two blues */
.btn-primary { background: var(--accent); }
.btn-primary:hover { background: var(--accent-2); }
.site-head .btn-primary, .util .btn-primary { background: var(--accent-2); }
.site-head .btn-primary:hover, .util .btn-primary:hover { background: var(--accent); }
.kicker-light, .num-light, .route-link, .foot-h, .tab.is-on .tab-n { color: #8fb8ff; }
.stage-work { background: rgba(26, 110, 245, 0.92); }
.stage-finished { background: rgba(23, 143, 82, 0.92); }
.stage-initial { background: rgba(10, 11, 13, 0.7); }
.stars { color: #f5b92b; }
.points-light li { background: rgba(255, 255, 255, 0.08); color: var(--bone); }
.points-light li span { color: #8fb8ff; }
.util-row p, .band-cta p, .split-panel p, .island-navy p, .hero-half p { color: var(--bone-muted); }
.util-row p { color: var(--bone); }
.band-cta h2, .split-panel h2, .island-navy h2 { color: #fff; }

/* ================================================================== premium quote card (5 Sep) */
.qf-premium { gap: 1.1rem; padding: 1.75rem; border-radius: 1rem; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7); }
.qf-premium .qf-head h2 { font-size: 1.5rem; color: #fff; }
.qf-premium .qf-head p { color: rgba(255, 255, 255, 0.6); font-size: 0.9375rem; }
.qf-premium .qf-grid { gap: 0.8rem 0.9rem; }
.qf-premium .f > span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.qf-premium .f > span b { display: none; }
.qf-premium .f input:not([type="checkbox"]):not([type="file"]), .qf-premium .f select, .qf-premium .f textarea { min-height: 3rem; padding: 0.7rem 0.9rem; border-radius: 0.625rem; background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.12); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); font-size: 0.9875rem; transition: border-color 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease); }
.qf-premium .f input::placeholder, .qf-premium .f textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.qf-premium .f input:hover, .qf-premium .f select:hover, .qf-premium .f textarea:hover { border-color: rgba(255, 255, 255, 0.24); }
.qf-premium .f input:focus, .qf-premium .f select:focus, .qf-premium .f textarea:focus { background: rgba(255, 255, 255, 0.08); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(26, 110, 245, 0.22); }
.qf-premium .f textarea { min-height: 5.5rem; }
.qf-premium .f-select select { -webkit-appearance: none; appearance: none; padding-right: 2.75rem; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 0.9rem center; cursor: pointer; }
.qf-premium .f-select select option { background: #14181f; color: #fff; }
.f-drop { position: relative; }
.f-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.drop { display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.9rem; align-items: center; padding: 0.9rem 1rem; border: 1px dashed rgba(255, 255, 255, 0.22); border-radius: 0.625rem; background: rgba(255, 255, 255, 0.03); color: #fff; cursor: pointer; transition: border-color 160ms var(--ease), background 160ms var(--ease); }
.drop:hover, .f-drop input:focus-visible + .drop { border-color: var(--accent); background: rgba(26, 110, 245, 0.08); }
.drop-ic { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(26, 110, 245, 0.18); color: #8fb8ff; }
.drop-ic svg { width: 1.25rem; height: 1.25rem; }
.drop-txt { display: grid; gap: 0.1rem; }
.drop-txt strong { font-size: 0.9375rem; font-weight: 700; }
.drop-txt em { font-style: normal; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }
.drop-list { grid-column: 1 / -1; display: none; font-size: 0.8125rem; color: #8fb8ff; }
.drop-list:not(:empty) { display: block; }
.qf-premium .check { color: rgba(255, 255, 255, 0.65); font-size: 0.8125rem; }
.qf-premium .check a { color: #fff; }
.qf-premium .check input { width: 1.1rem; height: 1.1rem; accent-color: var(--accent); }
.qf-premium .qf-foot { grid-template-columns: 1fr; gap: 0.6rem; }
.btn-lg { width: 100%; min-height: 3.375rem; font-size: 1.0625rem; gap: 0.75rem; border-radius: 0.7rem; box-shadow: 0 12px 28px -10px rgba(26, 110, 245, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.btn-lg .btn-arrow { transition: transform 200ms var(--ease); }
.btn-lg:hover .btn-arrow { transform: translateX(4px); }
.qf-premium .qf-note { text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 0.8125rem; }
.qf-premium .f-msg { color: #ffb4a8; }
/* the rest of the site: same finish on buttons and selects */
.btn-primary { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14); }
.btn { border-radius: 0.6rem; }
.f select { -webkit-appearance: none; appearance: none; padding-right: 2.5rem; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111214' stroke-opacity='0.6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 0.8rem center; }
@media (max-width: 40rem) { .qf-premium { padding: 1.25rem; } }

/* ================================================================== TYPE v3 (5 Sep): Plus Jakarta Sans headings, everything centred, stronger contrast */
:root { --display: "Plus Jakarta Sans", "Manrope", ui-sans-serif, system-ui, sans-serif; --muted: #4b5563; --text: #2f3540; }
h1, h2, h3, .fs-title, .stile-label, .route-body h3, .qf-head h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; font-variation-settings: normal; }
h1 { font-size: clamp(2.5rem, 4.8vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.3vw, 2.8rem); }
h3 { font-weight: 700; }
.hero-half h1 { font-size: clamp(2.5rem, 4.2vw, 3.6rem); }
.chapter { color: #3d4350; letter-spacing: 0.22em; font-weight: 700; }
.chapter::before, .chapter::after { opacity: 0.5; }
.island-navy .chapter, .split-panel .chapter, .band-cta .kicker-light { color: rgba(255, 255, 255, 0.85); }
.lede { color: var(--text); }
/* centre every section head */
.sec-head, .sec-head-row { max-width: 52rem; margin-left: auto; margin-right: auto; text-align: center; }
.sec-head-row { display: grid; grid-template-columns: 1fr; gap: 0.75rem; justify-items: center; }
.sec-head-row .lede { max-width: 42rem; }
.sec-head .chapter, .sec-head-row .chapter { justify-content: center; }
.sec-head:not(.sec-head-centre) .chapter::before, .sec-head:not(.sec-head-centre) .chapter::after { display: block; width: 4.5rem; }
.sec-more { text-align: center; }
.split-panel, .team-teaser > div:last-child, .process-intro { text-align: center; }
.split-panel .chapter, .team-teaser .chapter, .process-intro .chapter { justify-content: center; }
.split-panel .chapter::before, .split-panel .chapter::after, .team-teaser .chapter::before, .team-teaser .chapter::after, .process-intro .chapter::after { display: block; width: 3rem; }
.split-panel .points { text-align: left; }
.split-panel .btn, .team-teaser .btn { justify-self: center; }
.team-teaser > div:last-child { display: grid; justify-items: center; }
.fs-list { text-align: left; }
.cta-row { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.cta-row p { max-width: 40rem; }
.page-hero .sec-head { text-align: center; }
.two-col .sec-head { text-align: left; margin-left: 0; }
.two-col .sec-head .chapter { justify-content: flex-start; }
.svc-hero-copy { text-align: center; margin-inline: auto; }
.svc-hero-copy .hero-actions { justify-content: center; }
.svc-hero .lede { margin-inline: auto; }

/* tile labels stay white on the photo */
.stile-label, .route-body h3, .tile-cap, .tile-cap > span { color: #fff !important; }
.stile .ph-img { background-color: #2a2f3a; border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.stile .ph-img .ph-label { color: rgba(255, 255, 255, 0.8); }

/* ================================================================== services cards v2 (5 Sep): bright photos, caption bar, obviously clickable */
.sec-services { background: #fff; border: 0; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.sec-services .sec-head-centre { margin-bottom: 2.25rem; }
.sec-services .lede { margin-top: 0.6rem; }
.stiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.stile { display: grid; grid-template-rows: auto auto; aspect-ratio: auto; overflow: hidden; border-radius: 0.875rem; background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(15, 18, 24, 0.04); color: var(--ink); text-decoration: none; transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease); }
.stile:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(15, 18, 24, 0.35); border-color: #cfd6e0; }
.stile-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #eef1f5; }
.stile-media img, .stile-media .ph-img { position: static; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.stile:hover .stile-media img { transform: scale(1.05); }
.stile-shade, .stile-label { display: none; }
.stile-cap { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.9rem 1rem 0.95rem; border-top: 1px solid var(--line); }
.stile-txt { display: grid; gap: 0.1rem; min-width: 0; }
.stile-fam { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.stile-name { font-family: var(--display); font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink) !important; }
.stile-arrow { flex: none; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); font-weight: 700; transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease); }
.stile:hover .stile-arrow { background: var(--accent); color: #fff; transform: translateX(2px); }
.stile .ph-img { background-color: #eef1f5; border: 0; border-radius: 0; color: var(--muted); }
.stile .ph-img .ph-tag { background: #cfd6e0; color: var(--ink); position: static; }
.stile .ph-img .ph-label { position: static; color: var(--muted); font-size: 0.75rem; max-width: none; }
.stiles-board { background: transparent; border: 0; padding: 0; }
@media (max-width: 60rem) { .stiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .stiles { grid-template-columns: 1fr; gap: 1rem; } }

/* ================================================================== THEME: Trust & Authority (ui-ux-pro-max, 5 Sep) */
:root {
  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --display: "Lexend", "Segoe UI", system-ui, sans-serif;
  --primary: #1e40af; --primary-2: #1d4ed8; --secondary: #3b82f6;
  --accent: var(--primary); --accent-2: #172f8f; --accent-deep: #172f8f; --accent-ink: #1e40af; --accent-soft: #dbe7ff;
  --tint: #eff5ff; --tint-2: #e5eefc; --line: #cfdcf3; --line-soft: #dfe8f7;
  --navy: #0f1f4a; --navy-2: #16296a; --hero: #0b1a44; --panel-dk: #14265f; --cta: #1e40af; --black: #0a1330; --board: #0f1f4a;
  --ink: #0b1a44; --text: #2b3550; --muted: #56627f;
  --bone: #f6f9ff; --bone-muted: rgba(246, 249, 255, 0.78);
  --ok: #15803d;
  --r: 0.5rem; --r-lg: 0.75rem;
}
body { font-family: var(--font); font-size: 1.0625rem; line-height: 1.6; color: var(--text); background: #fff; }
h1, h2, h3, .fs-title, .stile-name, .route-body h3, .qf-head h2, .foot-h { font-family: var(--display); }
h1, h2 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
h3, .fs-title, .stile-name { font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 4.6vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.65rem); }
.hero-half h1 { font-size: clamp(2.4rem, 4.2vw, 3.5rem); }
.lede { font-size: clamp(1.0625rem, 1.35vw, 1.2rem); color: var(--text); margin-left: auto; margin-right: auto; }
.chapter { color: var(--primary); letter-spacing: 0.2em; font-weight: 600; font-family: var(--display); font-size: 0.72rem; }
.chapter::before, .chapter::after { opacity: 0.35; background: var(--primary); }
.island-navy .chapter, .split-panel .chapter, .band-cta .kicker-light { color: #9db8ff; }
.island-navy .chapter::before, .island-navy .chapter::after, .split-panel .chapter::before, .split-panel .chapter::after { background: #9db8ff; }
/* surfaces: white, then a light blue tint, then navy. never black */
.util { background: var(--navy); }
.site-head { background: #fff; border-bottom: 1px solid var(--line-soft); }
.hero.hero-half, .hero-ph { background: var(--hero); }
.hero-ph { background-image: radial-gradient(120% 90% at 85% 10%, rgba(59, 130, 246, 0.22) 0%, rgba(11, 26, 68, 0) 60%); }
.sec-services { background: var(--tint); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.island-grey { background: #fff; border: 1px solid var(--line-soft); }
.split-panel, .island-navy, .route-body, .tab.is-on { background: var(--panel-dk); }
.sec-work { background: var(--tint); border-top: 1px solid var(--line-soft); }
.band-cta { background: var(--navy); }
.site-foot { background: var(--black); }
.stiles-board { background: transparent; }
/* cards */
.stile { border-color: var(--line-soft); border-radius: 0.75rem; background: #fff; }
.stile:hover { border-color: var(--line); box-shadow: 0 16px 36px -22px rgba(15, 31, 74, 0.35); }
.stile-cap { border-top-color: var(--line-soft); }
.stile-fam { color: var(--muted); }
.stile-arrow { background: var(--accent-soft); color: var(--primary); }
.stile:hover .stile-arrow { background: var(--primary); color: #fff; }
.fs-item { border-color: var(--line-soft); }
.fs-item.is-on { border-color: var(--primary); }
.fs-item.is-on .fs-n { background: var(--primary); border-color: var(--primary); }
.fs-item.is-on .fs-bar i { background: var(--primary); }
.points li { background: var(--accent-soft); }
.points li span { color: var(--primary); }
/* buttons */
.btn { border-radius: 0.5rem; font-family: var(--display); font-weight: 600; letter-spacing: 0; }
.btn-primary { background: var(--primary); box-shadow: 0 1px 2px rgba(15, 31, 74, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.btn-primary:hover { background: var(--primary-2); }
.site-head .btn-primary, .util .btn-primary { background: var(--primary); }
.btn-lg { box-shadow: 0 10px 24px -10px rgba(30, 64, 175, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.14); }
.btn-ghost-dark { border-color: var(--primary); color: var(--primary); }
.btn-ghost-dark:hover { background: var(--primary); color: #fff; }
.link, .route-link { color: var(--primary); }
.kicker-light, .num-light, .route-link, .tab.is-on .tab-n { color: #9db8ff; }
.foot-h { color: #9db8ff; letter-spacing: 0.18em; font-weight: 600; }
.stars { color: #f5b301; }
.stage-work { background: rgba(30, 64, 175, 0.92); }
.stage-finished { background: rgba(21, 128, 61, 0.92); }
.stage-initial { background: rgba(15, 31, 74, 0.8); }
/* phone in the chrome */
.head-phone { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--display); font-weight: 600; color: var(--ink); }
.head-phone::before { content: ""; width: 1rem; height: 1rem; background: currentColor; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.4 1.8.7 2.7a2 2 0 0 1-.5 2.1L8 9.8a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.7.7a2 2 0 0 1 1.7 2z'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.4 1.8.7 2.7a2 2 0 0 1-.5 2.1L8 9.8a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.7.7a2 2 0 0 1 1.7 2z'/></svg>") center / contain no-repeat; }
.btn-util { border-color: rgba(255, 255, 255, 0.45); }
.cta-call { margin-top: 1rem; color: var(--bone-muted); font-size: 1rem; }
.cta-call a { color: #fff; font-family: var(--display); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.foot-contact .contact-line { color: var(--bone); }
/* placeholders in this theme: quiet, tinted, obviously "photo to come" */
.ph, .stile .ph-img, .ph-img { background-color: var(--tint-2); border: 1px dashed var(--line); color: var(--ink); background-image: repeating-linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0 2px, transparent 2px 18px); }
.ph-tag, .stile .ph-img .ph-tag { background: var(--primary); color: #fff; }
.ph-label, .stile .ph-img .ph-label { color: var(--muted); }
.island-navy .ph, .sec-navy .ph, .split .ph-img, .fs-stage .ph-img { background-color: var(--tint-2); }
.hero-ph { border: 0; background-image: radial-gradient(120% 90% at 85% 10%, rgba(59, 130, 246, 0.22) 0%, rgba(11, 26, 68, 0) 60%); }
/* headings: centred blocks with even rhythm */
.sec-head-centre { max-width: 46rem; margin-bottom: 2.5rem; }
.sec-head-centre .chapter { margin-bottom: 0.9rem; }
.sec-head-centre .lede { margin-top: 0.75rem; }
.sec { padding: clamp(3.5rem, 7vw, 6rem) 0; }
/* dark-panel points keep light text whatever the theme layer says */
.points-light li { background: rgba(255, 255, 255, 0.08) !important; color: var(--bone) !important; border: 0; }
.points-light li span { color: #9db8ff !important; }
/* utility bar on phones: compact */
@media (max-width: 40rem) { .util-row { gap: 0.5rem; } .util-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; } .util-actions .btn { width: 100%; padding-left: 0.5rem; padding-right: 0.5rem; font-size: 0.85rem; white-space: nowrap; } }
/* hero on phones: one column, nothing wider than the screen */
@media (max-width: 60rem) { .hero-half .hero-grid { grid-template-columns: minmax(0, 1fr) !important; } .hero-copy, .hero-form, .hero-sub, .hero-half h1 { max-width: 100% !important; min-width: 0 !important; width: auto; } .hero-half .qf-glass { width: 100%; } }
/* closing band: everything on one centre line */
.cta-row { display: grid; grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.5rem; }
.cta-row > div { display: grid; justify-items: center; width: 100%; }
.cta-row h2, .cta-row p { margin-left: auto; margin-right: auto; text-align: center; }
.cta-row h2 { max-width: 46rem; }
.cta-row p { max-width: 40rem; }
.cta-actions { justify-content: center; }
.cta-call { text-align: center; width: 100%; }

/* ================================================================== closing contact panel (5 Sep) */
.band-cta { background: var(--tint); border-top: 1px solid var(--line-soft); padding: clamp(3rem, 6vw, 5rem) 0; }
.cta-panel { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(2rem, 4vw, 3.5rem); border-radius: 1rem; background: var(--navy); color: var(--bone); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 30px 60px -40px rgba(15, 31, 74, 0.6); }
.cta-left { text-align: left; }
.cta-left .chapter { justify-content: flex-start; color: #9db8ff; margin-bottom: 0.9rem; }
.cta-left .chapter::before { display: block; width: 2.5rem; background: #9db8ff; }
.cta-left .chapter::after { display: none; }
.cta-left h2 { color: #fff; font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin: 0 0 0.75rem; max-width: none; }
.cta-left p { color: var(--bone-muted); max-width: 34rem; margin: 0; }
.cta-points { display: grid; gap: 0.5rem; margin-top: 1.5rem; }
.cta-points li { position: relative; padding-left: 1.75rem; color: var(--bone); font-size: 0.9875rem; }
.cta-points li::before { content: ""; position: absolute; left: 0; top: 0.35rem; width: 1rem; height: 1rem; border-radius: 50%; background: rgba(157, 184, 255, 0.2); -webkit-mask: none; }
.cta-points li::after { content: ""; position: absolute; left: 0.3rem; top: 0.62rem; width: 0.4rem; height: 0.22rem; border-left: 2px solid #9db8ff; border-bottom: 2px solid #9db8ff; transform: rotate(-45deg); }
.cta-card { display: grid; gap: 0.6rem; padding: 1.75rem; border-radius: 0.75rem; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); text-align: left; }
.cta-card-label { font-family: var(--display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #9db8ff; }
.cta-phone { font-family: var(--display); font-size: clamp(1.75rem, 2.6vw, 2.25rem); font-weight: 700; letter-spacing: -0.01em; color: #fff; text-decoration: none; line-height: 1.1; }
.cta-phone:hover { color: #cfe0ff; }
.cta-hours { color: var(--bone-muted); font-size: 0.9375rem; }
.cta-card-actions { display: grid; gap: 0.6rem; margin-top: 0.75rem; }
.cta-card-actions .btn { width: 100%; }
.cta-card-actions .btn-lg { min-height: 3.125rem; }
.cta-card-foot { margin-top: 0.5rem; font-size: 0.75rem; color: rgba(246, 249, 255, 0.5); }
@media (max-width: 60rem) { .cta-panel { grid-template-columns: 1fr; } }
/* RULE (Aarav, 5 Sep): every section label is rule, label, rule. Both lines, always, everywhere. */
.chapter::before, .chapter::after { content: ""; display: block !important; width: 3rem; height: 1px; background: currentColor; opacity: 0.45; }
.chapter { display: inline-flex; align-items: center; gap: 1rem; }
.sec-head-centre .chapter, .sec-head .chapter, .island-grey .chapter, .quote-intro .chapter { display: flex; justify-content: center; }
.two-col .sec-head .chapter, .cta-left .chapter, .split-panel .chapter, .team-teaser .chapter, .process-intro .chapter, .page-hero .chapter { display: inline-flex; justify-content: flex-start; }
.cta-left .chapter::before, .cta-left .chapter::after, .split-panel .chapter::before, .split-panel .chapter::after { background: #9db8ff; opacity: 0.6; }

/* our work: symmetrical section, centred head, wall full-bleed underneath */
.sec-work { padding-left: 0 !important; padding-right: 0 !important; }
.sec-work .sec-head-centre { margin-bottom: 2rem; }
.sec-work .wall { padding: 0.25rem 0 1.5rem; }
.sec-work .sec-more { margin: 1.5rem 0 3rem; text-align: center; }

/* ================================================================== service pages to the home standard (5 Sep) */
.svc-hero { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(6rem, 12vw, 9rem); background: var(--hero); color: var(--bone); text-align: center; }
.svc-hero .svc-hero-copy { display: grid; justify-items: center; max-width: 52rem; margin-inline: auto; }
.svc-hero .chapter { color: #9db8ff; justify-content: center; }
.svc-hero .chapter::before, .svc-hero .chapter::after { background: #9db8ff; }
.svc-hero h1 { color: #fff; font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
.svc-hero .lede { color: var(--bone-muted); margin-top: 0.75rem; }
.svc-hero .hero-actions { justify-content: center; margin-top: 1.5rem; }
.svc-hero .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.svc-hero-img-wrap { margin-top: clamp(-5rem, -9vw, -7rem); position: relative; z-index: 2; }
.svc-hero-img { aspect-ratio: 21 / 9; border-radius: 1rem; border: 1px solid var(--line-soft); box-shadow: 0 30px 60px -40px rgba(15, 31, 74, 0.5); background: var(--tint-2); }
.svc-hero-img img, .svc-hero-img .ph-img { width: 100%; height: 100%; object-fit: cover; }
.sec-included { padding-top: clamp(3rem, 6vw, 4.5rem); }
.included li { border-color: var(--line-soft); border-radius: 0.75rem; padding: 1.5rem; }
.included .num { color: var(--primary); }
.two-col-cards { gap: 1.25rem; align-items: stretch; }
.tc-card { padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: 0.875rem; background: #fff; border: 1px solid var(--line-soft); }
.sec-paper .tc-card { background: #fff; }
.sec:not(.sec-paper) .two-col-cards .tc-card { background: var(--tint); }
.tc-card .sec-head { margin-bottom: 1rem; text-align: left; margin-left: 0; max-width: none; }
.tc-card .sec-head .chapter { justify-content: flex-start; margin-bottom: 0.6rem; }
.tc-card .sec-head h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.tc-card-dark { background: var(--panel-dk) !important; color: var(--bone); border-color: var(--panel-dk); }
.tc-card-dark h2 { color: #fff; }
.tc-card-dark p { color: var(--bone-muted); }
.tc-card-dark .chapter { color: #9db8ff; }
.tc-card-dark .chapter::before, .tc-card-dark .chapter::after { background: #9db8ff; }
.ticks li { border-bottom-color: var(--line-soft); }
.ticks li::before { background: var(--primary); }
.steps-tight li { border-top-color: var(--line-soft); }
.steps-tight li:last-child { border-bottom-color: var(--line-soft); }
.step-n { color: var(--primary); }
.gallery-uniform { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-uniform .g-item:first-child { grid-column: auto; }
.gallery-uniform .g-item:first-child a, .gallery-uniform .g-item a { aspect-ratio: 4 / 3; }
.gallery-uniform .g-item a { border: 1px solid var(--line-soft); border-radius: 0.75rem; }
.two-col-faq { grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr); align-items: start; }
.two-col-faq .sec-head { text-align: left; margin-left: 0; }
.two-col-faq .sec-head .chapter { justify-content: flex-start; }
.faq { border-top-color: var(--line-soft); }
.faq:last-child { border-bottom-color: var(--line-soft); }
.faq summary::after { background: var(--accent-soft); color: var(--primary); }
.side-card-navy { padding: 0; background: var(--hero); border-radius: 1rem; }
.side-card-navy .qf-premium { box-shadow: none; }
.side-links { margin-top: 2rem; }
.side-links h3 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; font-family: var(--display); }
.side-links .chips-all { margin-top: 0; }
.side-links .chips-all a { color: var(--primary); border-color: var(--line); }
@media (max-width: 60rem) { .two-col-faq { grid-template-columns: 1fr; } .gallery-uniform { grid-template-columns: repeat(2, minmax(0, 1fr)); } .svc-hero-img-wrap { margin-top: -3rem; } }
@media (max-width: 40rem) { .gallery-uniform { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ services index + about + contact to the home standard (5 Sep) */
.notsure-panel { background: var(--tint); border: 1px solid var(--line-soft); border-radius: 1rem; padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem); }
.notsure-panel .sec-head-centre { margin-bottom: 1.5rem; max-width: 52rem; }
.notsure-panel .sec-more { margin-top: 0; text-align: center; }
.two-col > div > .sec-head { text-align: left; margin-left: 0; max-width: none; margin-bottom: 1rem; }
.two-col > div > .sec-head .chapter { justify-content: flex-start; margin-bottom: 0.6rem; }
.contact-grid-premium { grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem); gap: 2.5rem; align-items: start; }
.contact-grid-premium .contact-form { padding: 0; border-radius: 1rem; }
.contact-grid-premium .side-block { background: #fff; border: 1px solid var(--line-soft); border-radius: 0.875rem; padding: 1.5rem; margin-bottom: 1rem; }
.contact-grid-premium .side-block .chapter { justify-content: flex-start; margin-bottom: 0.5rem; }
.contact-grid-premium .side-block h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.contact-grid-premium .side-block .ticks li { border-bottom-color: var(--line-soft); padding: 0.55rem 0 0.55rem 1.4rem; }
.contact-grid-premium .contact-list li { border-bottom: 1px solid var(--line-soft); padding: 0.55rem 0; }
.contact-grid-premium .contact-list li:last-child { border-bottom: 0; }
.contact-list .contact-line { display: grid; gap: 0.1rem; color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list .contact-line span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-family: var(--display); font-weight: 600; }
@media (max-width: 60rem) { .contact-grid-premium { grid-template-columns: 1fr; } }

/* about: team wall, four uniform tiles in one row (5 Sep) */
.gallery-team { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.gallery-team .g-item .frame, .gallery-team .g-item .ph { border: 1px solid var(--line-soft); border-radius: 0.75rem; }
@media (max-width: 60rem) { .gallery-team { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ================================================================== LABEL FOLLOWS HEADING + tonal bands (5 Sep, pass 2) */
/* a label sits on the same centre line as the heading under it. Centred blocks: centred label. Left blocks: left label. */
.chapter { display: flex; justify-content: center; }
.split-panel .chapter, .page-hero .chapter, .sec-head .chapter, .island-grey .chapter, .quote-intro .chapter, .sec-fulllist .chapter, .notsure-panel .chapter { display: flex; justify-content: center; }
.tc-card .chapter, .two-col > div > .sec-head .chapter, .cta-left .chapter, .team-teaser .chapter, .process-intro .chapter, .side-block .chapter, .two-col-faq .sec-head .chapter { display: inline-flex; justify-content: flex-start; }
.split-panel { text-align: center; }
.split-panel .points { text-align: left; }
/* bands: white, tint, navy. "paper" is the tint, not white */
.sec-paper { background: var(--tint); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sec-paper + .sec-paper { border-top: 0; }
.page-hero { background: var(--tint); border-bottom: 1px solid var(--line-soft); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-hero-tight { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.svc-list .svc-row { background: #fff; border: 1px solid var(--line-soft); }
.svc-list .svc-row .frame { background: var(--tint-2); }
.sec-fulllist { background: var(--panel-dk); color: var(--bone); }
.sec-fulllist h2 { color: #fff; }
.sec-fulllist .lede { color: var(--bone-muted); }
.sec-fulllist .chapter { color: #9db8ff; }
.sec-fulllist .chapter::before, .sec-fulllist .chapter::after { background: #9db8ff; }
.sec-fulllist .all-services { gap: 1rem; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.sec-fulllist .fam { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 0.75rem; padding: 1.25rem; }
.sec-fulllist .fam h3 { margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.sec-fulllist .fam h3 a { color: #fff; }
.sec-fulllist .fam h3 a:hover { color: #9db8ff; }
.sec-fulllist .fam li a { color: var(--bone-muted); font-weight: 500; }
.sec-fulllist .fam li a:hover { color: #fff; }
.contact-grid-premium .side-block { background: var(--tint); }
.contact-grid-premium .contact-list li { border-bottom-color: var(--line); }
.svc-hero-img-wrap + .sec-included { border-top: 0; }
@media (max-width: 70rem) { .sec-fulllist .all-services { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .sec-fulllist .all-services { grid-template-columns: 1fr; } }

/* ================================================================== our work: finished work only, centred filters, load more; label fix at 0,3,0 (5 Sep) */
/* the old ".sec-head:not(.sec-head-centre) .chapter" rule (0,3,0) forced page-hero labels left. These win on specificity + order. */
.wrap > .sec-head .chapter, .page-hero .sec-head .chapter, .sec-head.sec-head-centre .chapter, .notsure-panel .sec-head .chapter, .sec-head.sec-head-row .chapter { display: flex; justify-content: center; }
.wrap > .sec-head, .page-hero .sec-head, .notsure-panel .sec-head { text-align: center; margin-inline: auto; }
.tc-card .sec-head .chapter, .two-col > div > .sec-head .chapter, .two-col-faq .sec-head .chapter, .side-block .sec-head .chapter, .two-col .sec-head .chapter { display: inline-flex; justify-content: flex-start; }
.filters-centre { justify-items: center; margin-bottom: 2rem; }
.filters-centre .filter-row { justify-content: center; }
.filters-centre .filter-label { width: auto; margin-right: 0.5rem; }
.gallery-work { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.gallery-work .g-item a, .gallery-work .g-item .ph { aspect-ratio: 4 / 3; border: 1px solid var(--line-soft); border-radius: 0.75rem; overflow: hidden; }
.gallery-work .g-item figcaption { padding: 0.6rem 0.125rem 0; }
.gallery-work .g-cap { color: var(--muted); }
.notsure-panel-white { background: #fff; }
.sec-more { text-align: center; margin-top: 2rem; }
.wall-card figcaption { display: none; }
@media (max-width: 60rem) { .gallery-work { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .gallery-work { grid-template-columns: 1fr; } }

.gallery-work .g-item:first-child { grid-column: auto; }
.gallery-work .g-item:first-child a { aspect-ratio: 4 / 3; }

/* hero film (5 Sep): the film sits behind the copy with a navy scrim so the white copy and the form stay readable */
.hero.hero-half:has(.hero-video) .hero-scrim { display: block; background: linear-gradient(90deg, rgba(11, 26, 68, 0.86) 0%, rgba(11, 26, 68, 0.62) 50%, rgba(11, 26, 68, 0.42) 100%), linear-gradient(180deg, rgba(11, 26, 68, 0.35), rgba(11, 26, 68, 0) 35%, rgba(11, 26, 68, 0.45) 100%); }
.hero-video { z-index: -2; object-fit: cover; }
@media (max-width: 60rem) { .hero.hero-half:has(.hero-video) .hero-scrim { background: rgba(11, 26, 68, 0.78); } }

/* ================================================================== page heroes with film or photograph behind a navy scrim (5 Sep) */
.page-hero-media { position: relative; isolation: isolate; overflow: hidden; background: var(--hero); color: var(--bone); border-bottom: 0; padding: clamp(4.5rem, 10vw, 8rem) 0; }
.page-hero-media .hero-video, .page-hero-media .page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.page-hero-media .page-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-media .hero-video { object-fit: cover; }
.page-hero-media .hero-scrim { display: block; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 26, 68, 0.78) 0%, rgba(11, 26, 68, 0.62) 55%, rgba(11, 26, 68, 0.82) 100%); }
.page-hero-media h1, .page-hero-media h2 { color: #fff; }
.page-hero-media .lede { color: var(--bone-muted); }
.page-hero-media .chapter { color: #9db8ff; }
.page-hero-media .chapter::before, .page-hero-media .chapter::after { background: #9db8ff; }
.page-hero-media + .sec { border-top: 0; }
/* real photographs in cards: cover, never letterbox */
.stile-media img, .g-item img, .route-media img, .fs-media img, .team-img img, .svc-hero-img img, .wall-card img, .split-media img { object-fit: cover; width: 100%; height: 100%; }

/* ================================================================== PHONE FIRST (5 Sep): straight to the point. No film on phones (iOS Low Power Mode paints a play button), solid navy hero, compact copy, solid form card */
@media (max-width: 60rem) {
  .hero.hero-half .hero-video, .page-hero-media .hero-video { display: none !important; }
  .hero.hero-half:has(.hero-video) .hero-scrim { display: none !important; }
  .hero.hero-half { background: linear-gradient(180deg, #0b1a44 0%, #10236a 100%) !important; padding: 1.75rem 0 2rem !important; border-radius: 0; }
  .hero-half .hero-grid { gap: 1.5rem; }
  .hero-half h1 { font-size: clamp(1.9rem, 8.5vw, 2.35rem) !important; line-height: 1.08; letter-spacing: -0.02em; margin-top: 0.75rem; }
  .hero-copy .lede, .hero-copy p, .hero-sub { font-size: 1rem !important; line-height: 1.5; margin-top: 0.6rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.1rem; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 0.85rem 0.5rem; font-size: 0.95rem; white-space: nowrap; }
  .hero-actions .btn-ghost { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.45); }
  .hero-rating, .hero-review { font-size: 0.8rem; }
  .hero-half .hero-form { margin-top: 0.25rem; }
  .hero-half .qf-premium, .hero-half .qf-glass { background: #132a6e !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; border: 1px solid rgba(255, 255, 255, 0.16) !important; box-shadow: 0 16px 36px -22px rgba(0, 0, 0, 0.6); padding: 1.15rem 1rem 1.25rem !important; border-radius: 0.9rem; }
  .hero-half .qf-head h2 { font-size: 1.35rem; }
  .hero-half .qf-head p { font-size: 0.9rem; }
  .hero-half .qf-premium .qf-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem 0.6rem; }
  .hero-half .qf-premium .f span { font-size: 0.66rem; letter-spacing: 0.12em; }
  .hero-half .qf-premium input, .hero-half .qf-premium select { padding: 0.7rem 0.75rem; font-size: 16px; min-height: 2.75rem; }
  .hero-half .qf-premium textarea { font-size: 16px; min-height: 5rem; }
  .hero-half .qf-premium .f-wide { grid-column: 1 / -1; }
  .hero-half .qf-premium .drop { padding: 0.7rem 0.8rem; }
  .hero-half .qf-premium .drop-txt em { display: none; }
  .hero-half .qf-premium .btn-lg { padding: 0.9rem; font-size: 1rem; }
  /* page heroes on phones: poster still instead of film, tighter */
  .page-hero-media { padding: 2.75rem 0 3rem; background: var(--hero); }
  .page-hero-media.has-film { background-size: cover; background-position: center; }
  .page-hero-media h2 { font-size: clamp(1.8rem, 7.5vw, 2.2rem); }
}
@media (max-width: 40rem) {
  /* phone: two tiles per row so twelve services fit in six rows, not twelve */
  .stiles { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 0.75rem !important; }
  .stile-cap { padding: 0.6rem 0.7rem; }
  .stile-fam { font-size: 0.6rem; }
  .stile-name { font-size: 0.95rem; }
  .stile-arrow { width: 1.6rem; height: 1.6rem; }
  .sec { padding: 2.75rem 0; }
  .sec-head-centre { margin-bottom: 1.5rem; }
  h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .lede { font-size: 1rem; }
  .cta-panel { padding: 1.5rem 1.15rem; }
  .cta-card .cta-phone { font-size: 1.6rem; }
}

/* ================================================================== PHONE HERO = Dukes-style cinema card (6 Sep): the film sits in a rounded card with the copy centred on it, the form is its own card under it */
.hero-stage { display: contents; }
.hero-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-video.is-still { opacity: 0; }
video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
video::-webkit-media-controls { display: none !important; }
@media (max-width: 60rem) {
  .hero.hero-half .hero-video, .page-hero-media .hero-video { display: block !important; }
  .hero.hero-half { background: var(--tint) !important; padding: 1rem 0 1.25rem !important; }
  .hero-half .hero-grid { gap: 0.9rem; }
  .hero-stage { display: flex; flex-direction: column; justify-content: center; position: relative; isolation: isolate; overflow: hidden; border-radius: 1rem; min-height: min(78vh, 34rem); padding: 1.5rem 1.15rem 1.6rem; background: var(--hero); box-shadow: 0 24px 48px -30px rgba(11, 26, 68, 0.6); }
  .hero-stage .hero-video, .hero-stage .hero-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
  .hero.hero-half:has(.hero-video) .hero-scrim, .hero-stage .hero-scrim { display: block !important; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 26, 68, 0.55) 0%, rgba(11, 26, 68, 0.72) 45%, rgba(11, 26, 68, 0.9) 100%) !important; }
  .hero-stage .hero-copy { text-align: center; max-width: 100% !important; margin: 0 auto; display: grid; justify-items: center; }
  .hero-stage .hero-copy .hero-rating, .hero-stage .hero-copy > a:first-child { margin-inline: auto; }
  .hero-stage h1 { font-size: clamp(1.95rem, 8.6vw, 2.4rem) !important; margin-top: 0.85rem; }
  .hero-stage .hero-sub { max-width: 30rem; }
  .hero-stage .hero-actions { width: 100%; }
  .hero-half .hero-form { margin-top: 0 !important; }
  .hero-half .qf-premium, .hero-half .qf-glass { background: var(--hero) !important; }
  /* page heroes on phones: the film comes back, short band */
  .page-hero-media { padding: 3rem 0 3.25rem; }
  .page-hero-media .hero-scrim { background: linear-gradient(180deg, rgba(11, 26, 68, 0.72), rgba(11, 26, 68, 0.8)) !important; }
}

@media (min-width: 60.01rem) { .hero-half .hero-grid { position: static; } }  /* desktop: the film positions against the hero, not the grid, so it fills edge to edge */

/* ================================================================== HEADER v2 (6 Sep): port of the 21st.dev Header1 block. Three columns, dropdown panels, centred logo, actions right, burger panel on phones */
.util { background: var(--navy); }
.util-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.5rem; padding: 0.35rem 0; }
.util-msg { margin: 0; font-size: 0.875rem; font-weight: 500; color: var(--bone-muted) !important; }
.util-actions { display: flex; align-items: center; gap: 1rem; }
.util-hours { font-size: 0.8rem; color: var(--bone-muted); }
.util-call { display: inline-flex; align-items: center; gap: 0.4rem; color: #fff; font-family: var(--display); font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.util-call svg { width: 0.95rem; height: 0.95rem; }
.util-call:hover { color: #9db8ff; }
.site-head.hd2 { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line-soft); }
.hd2-row { display: flex; align-items: center; gap: 1rem; min-height: 5rem; position: relative; }
.hd2-brand img { height: 2.5rem; width: auto; display: block; }
.hd2-nav { display: none; }
.hd2-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.hd2-link, .hd2-trigger { display: inline-flex; align-items: center; gap: 0.35rem; height: 2.5rem; padding: 0 1rem; border-radius: 0.5rem; border: 0; background: none; font: inherit; font-family: var(--display); font-weight: 600; font-size: 0.9375rem; color: var(--ink); text-decoration: none; cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.hd2-link:hover, .hd2-trigger:hover, .hd2-link[aria-current="page"], .hd2-trigger[aria-expanded="true"] { background: var(--tint); color: var(--primary); }
.hd2-chev { width: 0.8rem; height: 0.8rem; transition: transform 0.25s ease; }
.hd2-trigger[aria-expanded="true"] .hd2-chev { transform: rotate(180deg); }
.hd2-has-menu { position: relative; }
.hd2-panel { position: absolute; left: 0; top: calc(100% + 0.5rem); width: 30rem; max-width: calc(100vw - 2rem); padding: 1.25rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 0.875rem; box-shadow: 0 24px 48px -24px rgba(11, 26, 68, 0.35), 0 2px 6px rgba(11, 26, 68, 0.06); z-index: 70; animation: hd2-in 0.18s ease; }
@keyframes hd2-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.hd2-has-menu::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 0.6rem; }   /* hover bridge between trigger and panel */
.hd2-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hd2-panel-intro { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.hd2-panel-title { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.hd2-panel-desc { margin: 0.35rem 0 0; font-size: 0.875rem; line-height: 1.5; color: var(--muted); }
.hd2-panel-intro .btn { align-self: flex-start; }
.hd2-panel-links { display: flex; flex-direction: column; justify-content: flex-end; font-size: 0.9rem; }
.hd2-panel-link { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.5rem 0.75rem; border-radius: 0.5rem; color: var(--ink); font-weight: 500; text-decoration: none; }
.hd2-panel-link:hover, .hd2-panel-link[aria-current="page"] { background: var(--tint); color: var(--primary); }
.hd2-arrow { width: 1rem; height: 1rem; color: var(--muted); flex: none; }
.hd2-panel-link:hover .hd2-arrow { color: var(--primary); }
.hd2-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; margin-left: auto; }
.hd2-phone { display: none; align-items: center; gap: 0.45rem; height: 2.5rem; padding: 0 0.75rem; border-radius: 0.5rem; font-family: var(--display); font-weight: 600; color: var(--ink); text-decoration: none; }
.hd2-phone svg { width: 1rem; height: 1rem; color: var(--primary); }
.hd2-phone:hover { background: var(--tint); color: var(--primary); }
.hd2-divider { display: none; width: 1px; height: 1.5rem; background: var(--line); }
.btn-outline { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.btn-outline:hover { background: var(--tint); border-color: var(--line); color: var(--primary); }
.hd2-outline { display: none; }
.hd2-actions .btn { height: 2.5rem; padding: 0 1.1rem; font-size: 0.9375rem; }
.hd2-burger-wrap { display: flex; align-items: center; }
.hd2-burger { display: inline-flex !important; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; margin: 0; border-radius: 0.5rem; color: var(--ink); }
.hd2-burger:hover { background: var(--tint); }
.hd2-burger svg { width: 1.35rem; height: 1.35rem; }
.hd2-burger .hd2-ic-x, .hd2-burger[aria-expanded="true"] .hd2-ic-menu { display: none; }
.hd2-burger[aria-expanded="true"] .hd2-ic-x { display: block; }
.hd2-mnav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: 1.25rem 0 1.5rem; background: #fff; border-top: 1px solid var(--line-soft); box-shadow: 0 30px 40px -30px rgba(11, 26, 68, 0.4); max-height: calc(100vh - 8rem); overflow: auto; }
.hd2-mnav.is-open { display: block; }
.hd2-mnav-in { display: grid; gap: 1.5rem; }
.hd2-mgroup { display: grid; gap: 0.25rem; }
.hd2-mtitle { margin: 0 0 0.25rem; font-family: var(--display); font-weight: 600; font-size: 1.125rem; color: var(--ink); }
.hd2-mlink, .hd2-msub { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; text-decoration: none; border-bottom: 0 !important; font-weight: 500 !important; }
.hd2-mlink { font-family: var(--display); font-weight: 600 !important; font-size: 1.125rem; color: var(--ink); }
.hd2-msub { color: var(--muted); font-size: 1rem; padding-left: 0 !important; }
.hd2-msub .hd2-arrow { color: var(--line); }
.hd2-mactions { display: grid; gap: 0.6rem; padding-top: 0.5rem; border-top: 1px solid var(--line-soft); }
.hd2-mactions .btn { width: 100%; }
@media (min-width: 40rem) { .hd2-outline { display: inline-flex; } }
@media (min-width: 64rem) {
  .hd2-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; }
  .hd2-nav { display: block; }
  .hd2-brand { justify-self: center; }
  .hd2-burger-wrap, .hd2-mnav { display: none !important; }
  .hd2-actions { margin-left: 0; }
}
@media (min-width: 75rem) { .hd2-phone { display: inline-flex; } .hd2-divider { display: block; } }
@media (max-width: 40rem) {
  .util-row { flex-direction: row; justify-content: center; min-height: 2.25rem; }
  .util-msg { display: none; }
  .util-hours { display: none; }
  .hd2-row { min-height: 4rem; gap: 0.5rem; }
  .hd2-brand img { height: 2.125rem; }
  .hd2-actions .btn { height: 2.4rem; padding: 0 0.8rem; font-size: 0.875rem; }
}
body[data-menu-open], body.is-menu-open { overflow: hidden; }
/* header v2 fixes */
.hd2-brand .brand-light { display: none; }
.hd2-mnav a.hd2-msub, .hd2-mnav a.hd2-mlink { display: flex !important; align-items: center; justify-content: space-between; padding: 0.55rem 0 !important; border-bottom: 0 !important; }
.hd2-mnav .hd2-mgroup { gap: 0; }
.hd2-mnav .hd2-mnav-in { gap: 1.25rem; }
@media (max-width: 40rem) { .util-actions { width: auto; display: flex; justify-content: center; } .util-row { justify-content: center; } }

/* ================================================================== HERO v3 (6 Sep): port of the 21st.dev dark gradient hero. Centred stack, chip, gradient headline, pill buttons, the quote form as a vivid blue card, project photo strip */
.hero.hero-v3 { position: relative; isolation: isolate; overflow: hidden; background: var(--hero); color: var(--bone); text-align: center; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); border-radius: 0; }
.hero-v3 .hero-video, .hero-v3 .hero-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-v3 .hero-scrim { display: block; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 60% at 50% 0%, rgba(59, 130, 246, 0.28) 0%, rgba(11, 26, 68, 0) 60%), linear-gradient(180deg, rgba(11, 26, 68, 0.78) 0%, rgba(11, 26, 68, 0.86) 55%, rgba(11, 26, 68, 0.96) 100%); }
.hero-v3-in { display: grid; justify-items: center; gap: 1.1rem; }
.hero-chip { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.45rem 1rem; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06); border-radius: 999px; color: #fff; font-size: 0.875rem; text-decoration: none; transition: border-color 0.2s ease, background 0.2s ease; }
.hero-chip:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.1); }
.hero-chip-stars { color: #f5b301; letter-spacing: 0.05em; }
.hero-chip-sep { width: 1px; height: 1rem; background: rgba(255, 255, 255, 0.25); }
.hero-chip-link { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 600; }
.hero-chip-link svg { width: 1rem; height: 1rem; }
.hero-v3-h1 { max-width: 48rem; margin: 0.25rem 0 0; font-size: clamp(2.5rem, 5.2vw, 4.25rem); line-height: 1.05; letter-spacing: -0.025em; background: linear-gradient(90deg, #ffffff 20%, #9db8ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-v3-sub { max-width: 42rem; margin: 0; font-size: clamp(1.0625rem, 1.3vw, 1.2rem); line-height: 1.6; color: rgba(246, 249, 255, 0.82); }
.hero-v3-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 0.5rem; }
.btn-pill { border-radius: 999px !important; padding: 0.85rem 1.75rem; }
.btn-glass { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.btn-glass:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.hero-v3 .btn-primary { box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.25), 0 12px 30px -10px rgba(30, 64, 175, 0.8); }
/* the quote generator: a vivid blue card so it reads on the dark hero */
.hero-quote { width: 100%; max-width: 66rem; margin-top: 1.5rem; text-align: left; }
.hero-quote .qf-premium { background: linear-gradient(135deg, #1e40af 0%, #2563eb 55%, #3b82f6 100%) !important; border: 1px solid rgba(255, 255, 255, 0.3) !important; border-radius: 1.25rem; padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem) !important; box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.14), 0 40px 70px -30px rgba(37, 99, 235, 0.75) !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
.hero-quote .qf-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-quote .qf-head h2 { color: #fff; font-size: 1.5rem; margin: 0; }
.hero-quote .qf-head p { color: #dbe7ff; margin: 0; }
.hero-quote .qf-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.85rem 0.9rem; }
.hero-quote .f-wide { grid-column: span 4; }
.hero-quote .f-select { grid-column: span 1; }
.hero-quote .f:has(textarea) { grid-column: span 3; }
.hero-quote .f-drop, .hero-quote .f-consent { grid-column: span 2; }
.hero-quote .f span { color: #dbe7ff; }
.hero-quote input, .hero-quote select, .hero-quote textarea { background: #fff !important; color: var(--ink) !important; border: 1px solid rgba(255, 255, 255, 0.7) !important; }
.hero-quote input::placeholder, .hero-quote textarea::placeholder { color: #7b88a8; }
.hero-quote input:focus, .hero-quote select:focus, .hero-quote textarea:focus { outline: 3px solid rgba(255, 255, 255, 0.55); outline-offset: 1px; }
.hero-quote textarea { min-height: 3.25rem; }
.hero-quote .drop { background: rgba(255, 255, 255, 0.12); border: 1px dashed rgba(255, 255, 255, 0.55); color: #fff; }
.hero-quote .drop-ic { background: rgba(255, 255, 255, 0.18); color: #fff; }
.hero-quote .drop-txt strong { color: #fff; }
.hero-quote .drop-txt em { color: #dbe7ff; }
.hero-quote .check, .hero-quote .check span { color: #fff; }
.hero-quote .check a { color: #fff; }
.hero-quote .btn-lg, .hero-quote .qf-submit { background: var(--navy) !important; color: #fff; box-shadow: 0 12px 24px -12px rgba(11, 26, 68, 0.8); }
.hero-quote .btn-lg:hover { background: #0b1a44 !important; }
.hero-quote .qf-note, .hero-quote .qf-foot { color: #dbe7ff; }
/* photo strip */
.hero-strip { display: flex; gap: 1.25rem; justify-content: safe center; width: 100%; margin-top: 1.5rem; padding: 0.25rem 0 0.5rem; overflow-x: auto; scrollbar-width: none; }
.hero-strip::-webkit-scrollbar { display: none; }
.hero-card { flex: none; width: 9rem; height: 11rem; border-radius: 0.75rem; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); transition: transform 0.3s ease, border-color 0.3s ease; }
.hero-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.4); }
.hero-card img, .hero-card .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card .ph { background-color: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.hero-card .ph-label { color: rgba(255, 255, 255, 0.75); font-size: 0.6rem; }
@media (max-width: 60rem) {
  .hero.hero-v3 { padding: 2.25rem 0 1.5rem; }
  .hero-v3-h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-v3-sub { font-size: 1rem; }
  .hero-v3-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-v3-actions .btn { justify-content: center; white-space: nowrap; padding: 0.85rem 0.5rem; }
  .hero-quote .qf-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .hero-quote .f-wide, .hero-quote .f-select, .hero-quote .f:has(textarea), .hero-quote .f-drop, .hero-quote .f-consent { grid-column: span 2; }
  .hero-quote .qf-head { display: block; }
  .hero-quote input, .hero-quote select, .hero-quote textarea { font-size: 16px; }
  .hero-strip { justify-content: flex-start; gap: 0.75rem; }
  .hero-card { width: 7.5rem; height: 9.25rem; }
}

/* hero v3: the service select keeps input height instead of stretching to the message row */
.hero-quote .f { align-content: start; }
.hero-quote .f-select select { height: 3rem; }
.hero-quote .qf-grid { align-items: start; }

/* ================================================================== TRUST BADGES (6 Sep): port of the 21st.dev Awards badge variant. Rosette, big title, subtitle, small line */
.sec-trust { padding: 1.75rem 0 !important; background: #fff; border-bottom: 1px solid var(--line-soft); }
.tb-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.tb { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 3px solid var(--line-soft); border-radius: 0.75rem; background: #fff; text-decoration: none; color: var(--ink); transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.tb:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 16px 30px -20px rgba(30, 64, 175, 0.5); }
.tb-rosette { width: 3.25rem; height: 4rem; flex: none; fill: var(--primary); }
.tb-body { display: grid; gap: 0.1rem; padding-left: 1rem; border-left: 1px solid var(--line); min-width: 0; }
.tb-title { font-family: var(--display); font-weight: 700; font-size: 1.75rem; line-height: 1.05; letter-spacing: -0.02em; color: var(--primary); }
.tb-sub { font-size: 1rem; color: var(--text); }
.tb-line { font-size: 0.78rem; color: var(--muted); font-style: italic; }
@media (max-width: 60rem) { .tb-row { grid-template-columns: 1fr; gap: 0.6rem; } .tb { padding: 0.75rem 1rem; } .tb-rosette { width: 2.5rem; height: 3.1rem; } .tb-title { font-size: 1.4rem; } .tb-sub { font-size: 0.9375rem; } }
/* ================================================================== WORK LINKS (6 Sep): port of the 21st.dev interactive hover links. Big rows, letters shift, the photo follows the cursor, arrow slides in */
.ihl-list { max-width: 64rem; margin: 0 auto; border-top: 2px solid var(--line-soft); }
.ihl { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: clamp(1.25rem, 3vw, 2rem) 0.25rem; border-bottom: 2px solid var(--line-soft); text-decoration: none; color: var(--muted); transition: border-color 0.5s ease, color 0.5s ease; }
.ihl:hover { border-bottom-color: var(--ink); color: var(--ink); }
.ihl-text { position: relative; z-index: 2; display: grid; gap: 0.35rem; }
.ihl-h { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1; letter-spacing: -0.03em; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.ihl:hover .ihl-h { transform: translateX(-16px); }
.ihl-l { display: inline-block; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.ihl:hover .ihl-l { transform: translateX(16px); }
.ihl-l:nth-child(1) { transition-delay: 0.25s; } .ihl-l:nth-child(2) { transition-delay: 0.325s; } .ihl-l:nth-child(3) { transition-delay: 0.4s; } .ihl-l:nth-child(4) { transition-delay: 0.475s; } .ihl-l:nth-child(5) { transition-delay: 0.55s; } .ihl-l:nth-child(6) { transition-delay: 0.625s; } .ihl-l:nth-child(7) { transition-delay: 0.7s; } .ihl-l:nth-child(8) { transition-delay: 0.775s; } .ihl-l:nth-child(9) { transition-delay: 0.85s; } .ihl-l:nth-child(10) { transition-delay: 0.925s; } .ihl-l:nth-child(11) { transition-delay: 1s; }
.ihl-sub { font-size: 1rem; color: var(--muted); max-width: 34rem; transition: color 0.5s ease; }
.ihl:hover .ihl-sub { color: var(--text); }
.ihl-img { position: absolute; z-index: 1; left: 50%; top: 50%; width: 16rem; height: 12rem; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 24px 48px -20px rgba(11, 26, 68, 0.5); transform: translate(-10%, -50%) scale(0) rotate(-12.5deg); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); pointer-events: none; }
.ihl:hover .ihl-img { transform: translate(-10%, -50%) scale(1) rotate(12.5deg); }
.ihl-img img, .ihl-img .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.ihl-img .ph-label { font-size: 0.65rem; }
.ihl-arrow-wrap { position: relative; z-index: 2; overflow: hidden; flex: none; }
.ihl-arrow { display: block; padding: 1rem; transform: translateX(100%); opacity: 0; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease; }
.ihl:hover .ihl-arrow { transform: none; opacity: 1; }
.ihl-arrow svg { width: 3rem; height: 3rem; color: var(--ink); }
@media (max-width: 60rem) {
  .ihl-img { display: none; }
  .ihl-h { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .ihl:hover .ihl-h, .ihl:hover .ihl-l { transform: none; }
  .ihl-arrow { transform: none; opacity: 1; padding: 0.5rem; }
  .ihl-arrow svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
  .ihl-sub { font-size: 0.9375rem; }
}

/* ================================================================== SERVICE CARDS (6 Sep): port of the 21st.dev course/design cards. 3x2 bento of feature cards, white on tint, blue accents only */
.scards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.scard { --a: var(--primary); --a-soft: rgba(30, 64, 175, 0.1); position: relative; display: grid; grid-template-rows: auto 1fr auto; gap: 1rem; padding: 1.5rem 1.5rem 1.25rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 1rem; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.scard::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--a); }
.scard:hover { transform: translateY(-4px); border-color: var(--a); box-shadow: 0 24px 44px -26px rgba(11, 26, 68, 0.45); }
.scard.a-blue { --a: #1e40af; --a-soft: rgba(30, 64, 175, 0.1); }
.scard.a-sky { --a: #0ea5e9; --a-soft: rgba(14, 165, 233, 0.12); }
.scard.a-royal { --a: #2563eb; --a-soft: rgba(37, 99, 235, 0.1); }
.scard.a-navy { --a: #0f1f4a; --a-soft: rgba(15, 31, 74, 0.1); }
.scard.a-teal { --a: #0d9488; --a-soft: rgba(13, 148, 136, 0.12); }
.scard.a-indigo { --a: #4f46e5; --a-soft: rgba(79, 70, 229, 0.1); }
.scard-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.scard-kicker { font-family: var(--display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--a); }
.scard-ic { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: var(--a-soft); color: var(--a); }
.scard-ic svg { width: 1.25rem; height: 1.25rem; }
.scard-body { display: grid; gap: 0.6rem; align-content: start; }
.scard-body h3 { font-size: 1.35rem; line-height: 1.15; margin: 0; }
.scard-body h3 a { color: var(--ink); text-decoration: none; }
.scard-body h3 a::after { content: ""; position: absolute; inset: 0; }   /* whole card clickable */
.scard-body h3 a:hover { color: var(--a); }
.scard-body p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.scard-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; position: relative; z-index: 1; }
.scard-chip { display: inline-flex; align-items: center; padding: 0.3rem 0.65rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; font-weight: 600; color: var(--text); text-decoration: none; background: #fff; transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease; }
.scard-chip:hover { border-color: var(--a); color: var(--a); background: var(--a-soft); }
.scard-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); position: relative; z-index: 1; }
.scard-photos { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.scard-photos li { width: 2.25rem; height: 2.25rem; border-radius: 50%; overflow: hidden; border: 2px solid #fff; background: var(--tint-2); margin-left: -0.6rem; box-shadow: 0 0 0 1px var(--line-soft); }
.scard-photos li:first-child { margin-left: 0; }
.scard-photos img, .scard-photos .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.scard-photos .ph { border: 0; background-image: none; }
.scard-photos .ph-tag, .scard-photos .ph-label { display: none; }
.scard-add { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--a); font-weight: 700; font-size: 1.1rem; text-decoration: none; background: var(--a-soft); }
.scard-cta { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.9rem; border-radius: 999px; background: var(--a-soft); color: var(--a); font-family: var(--display); font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.scard:hover .scard-cta { background: var(--a); color: #fff; }
@media (max-width: 64rem) { .scards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .scards { grid-template-columns: 1fr; gap: 0.9rem; } .scard { padding: 1.25rem 1.15rem 1rem; } .scard-body h3 { font-size: 1.2rem; } }

/* ================================================================== BEFORE / AFTER SLIDERS (6 Sep): replaces the by-stage tabs */
.sec-ba { background: var(--tint); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.ba-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.ba-item { margin: 0; display: grid; gap: 0.75rem; }
.ba-title { text-align: center; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.ba { position: relative; aspect-ratio: 4 / 3; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line-soft); background: var(--tint-2); box-shadow: 0 24px 48px -30px rgba(11, 26, 68, 0.45); user-select: none; touch-action: pan-y; cursor: ew-resize; }
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img, .ba-after .ph, .ba-before .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos) * 1%) 0 0); }
.ba-before .ph { background-color: #dfe8f7; }
.ba-after .ph { background-color: #e4f3ea; border-color: rgba(22, 163, 74, 0.35); }
.ba-line { position: absolute; top: 0; bottom: 0; left: calc(var(--pos) * 1%); width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 0 1px rgba(11, 26, 68, 0.15); pointer-events: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: #fff; color: var(--primary); box-shadow: 0 8px 20px -6px rgba(11, 26, 68, 0.5), 0 0 0 2px var(--primary); transition: transform 0.15s ease; }
.ba-handle svg { width: 1.25rem; height: 1.25rem; }
.ba.is-dragging .ba-handle { transform: translate(-50%, -50%) scale(1.08); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-range:focus-visible ~ .ba-line .ba-handle, .ba:has(.ba-range:focus-visible) .ba-handle { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--primary); }
.ba-badge { position: absolute; bottom: 0.9rem; z-index: 2; padding: 0.4rem 0.75rem; border-radius: 0.5rem; font-family: var(--display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; pointer-events: none; box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.5); }
.ba-badge-before { left: 0.9rem; background: rgba(31, 42, 68, 0.92); }
.ba-badge-after { right: 0.9rem; background: rgba(22, 163, 74, 0.95); }
@media (max-width: 60rem) { .ba-grid { grid-template-columns: 1fr; gap: 1.25rem; } .ba-badge { font-size: 0.62rem; padding: 0.35rem 0.55rem; bottom: 0.6rem; } .ba-badge-before { left: 0.6rem; } .ba-badge-after { right: 0.6rem; } .ba-handle { width: 2.5rem; height: 2.5rem; } }

.ba-range { pointer-events: none; }  /* the container handles pointer drags; the range keeps keyboard and screen-reader control */

@media (max-width: 60rem) { .ba-badge-before { top: 0.6rem; bottom: auto; } }  /* phone: before badge top-left, after badge bottom-right, never overlapping */

/* ================================================================== ROOF AND LOFT (6 Sep): one light panel, tabs swap the photo, accent on the headline, high-contrast CTA */
.sec-roof { background: #fff; }
.rl-panel { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(1.5rem, 3.5vw, 2.5rem); background: var(--tint); border: 1px solid var(--line-soft); border-radius: 1.25rem; }
.rl-media { position: relative; aspect-ratio: 4 / 3; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line-soft); background: var(--tint-2); box-shadow: 0 24px 48px -30px rgba(11, 26, 68, 0.45); }
.rl-img { position: absolute; inset: 0; opacity: 0; transform: scale(1.03); transition: opacity 0.45s ease, transform 0.6s ease; }
.rl-img.is-on { opacity: 1; transform: none; }
.rl-img img, .rl-img .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.rl-copy { display: grid; gap: 1rem; text-align: left; }
.rl-copy .chapter { justify-content: flex-start; color: var(--primary); margin-bottom: 0; }
.rl-copy .chapter::before, .rl-copy .chapter::after { background: var(--primary); }
.rl-h2 { font-size: clamp(2.25rem, 3.4vw, 2.75rem); line-height: 1.08; color: var(--ink); margin: 0; }
.rl-hl { font-style: normal; color: #059669; }
.rl-p { margin: 0; color: var(--text); font-size: 1.0625rem; line-height: 1.6; }
.rl-tabs { display: grid; gap: 0.6rem; margin-top: 0.25rem; }
.rl-tab { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; width: 100%; padding: 0.9rem 1rem 0.9rem 0.9rem; background: #fff; border: 1px solid var(--line-soft); border-left: 4px solid transparent; border-radius: 0.75rem; text-align: left; font: inherit; color: var(--ink); cursor: pointer; transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.rl-tab:hover { border-color: var(--line); transform: translateX(2px); }
.rl-tab.is-on { border-color: var(--line); border-left-color: var(--primary); box-shadow: 0 14px 28px -22px rgba(11, 26, 68, 0.5); }
.rl-tab:focus-visible { outline: 3px solid rgba(30, 64, 175, 0.35); outline-offset: 2px; }
.rl-tab-n { font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--muted); padding-top: 0.2rem; }
.rl-tab.is-on .rl-tab-n { color: var(--primary); }
.rl-tab-body { display: grid; gap: 0.2rem; }
.rl-tab-t { font-family: var(--display); font-weight: 600; font-size: 1rem; line-height: 1.3; color: var(--ink); }
.rl-tab-d { font-size: 0.875rem; color: var(--muted); display: none; }
.rl-tab.is-on .rl-tab-d { display: block; }
.rl-cta { justify-self: start; gap: 0.5rem; margin-top: 0.25rem; }
.rl-cta span { transition: transform 0.2s ease; display: inline-block; }
.rl-cta:hover span { transform: translateX(3px); }
@media (max-width: 60rem) { .rl-panel { grid-template-columns: 1fr; padding: 1rem; } .rl-copy { text-align: left; } .rl-h2 { font-size: clamp(1.9rem, 7.5vw, 2.3rem); } .rl-cta { width: 100%; justify-content: center; } }

@media (max-width: 40rem) { .rl-copy .chapter { letter-spacing: 0.12em; font-size: 0.68rem; gap: 0.6rem; } .rl-copy .chapter::before, .rl-copy .chapter::after { width: 1.75rem; } .rl-copy .chapter-label { white-space: nowrap; } }  /* phone: the roof label stays on one line */

/* ================================================================== WORK ROWS v2 (7 Sep): structured rows, fixed thumbnail, circular arrow, calm hover */
.wl-list { max-width: 64rem; margin: 0 auto; border-top: 1px solid var(--line); }
.wl { display: grid; grid-template-columns: 3rem minmax(0, 1fr) 11rem 3rem; align-items: center; gap: 1.5rem; padding: 1.25rem 0.5rem; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: background 0.25s ease; }
.wl:hover { background: rgba(255, 255, 255, 0.7); }
.wl-n { font-family: var(--display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--muted); }
.wl-text { display: grid; gap: 0.3rem; min-width: 0; }
.wl-h { font-family: var(--display); font-weight: 700; font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); transition: color 0.25s ease; }
.wl:hover .wl-h { color: var(--primary); }
.wl-sub { font-size: 0.95rem; line-height: 1.5; color: var(--muted); max-width: 36rem; }
.wl-img { display: block; width: 11rem; height: 7rem; border-radius: 0.6rem; overflow: hidden; border: 1px solid var(--line-soft); background: var(--tint-2); }
.wl-img img, .wl-img .ph { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.wl:hover .wl-img img { transform: scale(1.04); }
.wl-img .ph-label { font-size: 0.6rem; }
.wl-arrow { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.wl-arrow svg { width: 1.2rem; height: 1.2rem; }
.wl:hover .wl-arrow { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateX(3px); }
@media (max-width: 60rem) {
  .wl { grid-template-columns: 2rem minmax(0, 1fr) 2.5rem; gap: 0.9rem; padding: 1rem 0.25rem; }
  .wl-img { display: none; }
  .wl-h { font-size: 1.2rem; }
  .wl-sub { font-size: 0.9rem; }
  .wl-arrow { width: 2.5rem; height: 2.5rem; }
}

/* ================================================================== TEAM SPLIT v2 (7 Sep): centred split, overlay tag, micro-trust stats, primary CTA */
.sec-team { background: #fff; }
.team-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.team-media { position: relative; }
.team-media .team-img { aspect-ratio: 4 / 3; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: 0 24px 48px -30px rgba(11, 26, 68, 0.45); }
.team-media .team-img img, .team-media .team-img .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-tag { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(11, 26, 68, 0.92); color: #fff; font-family: var(--display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.02em; box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.6); }
.team-tag svg { width: 1rem; height: 1rem; color: #34d399; }
.team-copy { display: grid; gap: 1rem; text-align: center; justify-items: center; }
.team-copy .chapter { justify-content: center; margin-bottom: 0; }
.team-copy h2 { margin: 0; }
.team-copy .lede { margin: 0; max-width: 32rem; }
.team-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; width: 100%; max-width: 30rem; list-style: none; margin: 0.5rem 0 0; padding: 0; }
.team-stats li { display: grid; gap: 0.15rem; padding: 0.85rem 0.5rem; background: var(--tint); border: 1px solid var(--line-soft); border-radius: 0.75rem; text-align: center; }
.team-stats strong { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--primary); line-height: 1.1; }
.team-stats span { font-size: 0.8rem; color: var(--muted); }
.team-cta { gap: 0.5rem; margin-top: 0.5rem; }
.team-cta span { display: inline-block; transition: transform 0.2s ease; }
.team-cta:hover span { transform: translateX(3px); }
@media (max-width: 60rem) { .team-split { grid-template-columns: 1fr; gap: 1.5rem; } .team-stats { gap: 0.5rem; } .team-stats strong { font-size: 1rem; } .team-cta { width: 100%; justify-content: center; } }
/* ================================================================== CLOSING BANNER v2 (7 Sep): roomier panel, glass phone card, bigger number, live badge, emerald primary, icon bullets */
.cta-panel-v2 { padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) !important; gap: clamp(2rem, 4vw, 3.5rem); }
.cta-card-v2 { background: rgba(255, 255, 255, 0.07) !important; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.22) !important; border-radius: 1rem; padding: 1.75rem !important; display: grid; gap: 0.75rem; box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.cta-live { display: inline-flex; align-items: center; gap: 0.5rem; justify-self: start; padding: 0.35rem 0.75rem; border-radius: 999px; background: rgba(16, 185, 129, 0.16); border: 1px solid rgba(16, 185, 129, 0.45); color: #a7f3d0; font-family: var(--display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; }
.cta-live-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: cta-pulse 1.8s ease-out infinite; }
@keyframes cta-pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
.cta-card-v2 .cta-card-label { margin-top: 0.25rem; }
.cta-card-v2 .cta-phone { font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: #fff; text-decoration: none; }
.cta-card-v2 .cta-card-actions { display: grid; gap: 0.6rem; margin-top: 0.5rem; }
.btn-accent { background: #10b981 !important; color: #052e1c !important; border: 0; box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.18), 0 12px 28px -12px rgba(16, 185, 129, 0.9); }
.btn-accent:hover { background: #34d399 !important; color: #052e1c !important; }
.btn-outline-light { border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.cta-card-v2 .cta-card-foot { margin-top: 0.25rem; }
.cta-points-v2 { display: grid; gap: 0.7rem; list-style: none; margin: 1.25rem 0 0; padding: 0; }
.cta-points-v2 li { display: flex; align-items: center; gap: 0.65rem; color: var(--bone); font-weight: 500; }
.cta-points-v2 li::before { display: none !important; content: none !important; }
.cta-tick { width: 1.35rem; height: 1.35rem; flex: none; color: #34d399; }
.reduce-motion .cta-live-dot { animation: none; }
@media (prefers-reduced-motion: reduce) { .cta-live-dot { animation: none; } }
@media (max-width: 60rem) { .cta-panel-v2 { padding: 1.75rem 1.15rem !important; } .cta-card-v2 { padding: 1.25rem !important; } .cta-card-v2 .cta-phone { font-size: 1.9rem; } }

.cta-points-v2 li { padding-left: 0 !important; background: none !important; }
.cta-points-v2 li::before, .cta-points-v2 li::after { display: none !important; content: none !important; -webkit-mask: none !important; mask: none !important; }

/* ================================================================== 7 Sep: nothing that looks generated. No pulse, no neon, no halos. Site blue only. */
.cta-card-v2 { background: rgba(255, 255, 255, 0.06) !important; -webkit-backdrop-filter: none; backdrop-filter: none; border-color: rgba(255, 255, 255, 0.18) !important; box-shadow: none; }
.cta-hours-line { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--bone-muted); font-size: 0.9rem; }
.cta-hours-line svg { width: 1rem; height: 1rem; color: #9db8ff; }
.cta-card-v2 .cta-card-label { margin-top: 0.5rem; }
.cta-card-v2 .cta-primary { background: var(--primary) !important; color: #fff !important; box-shadow: none !important; }
.cta-card-v2 .cta-primary:hover { background: var(--primary-2) !important; }
.cta-tick { color: #9db8ff; }
.team-tag svg { color: #fff; }
.rl-hl { color: var(--primary); }
.hero-v3 .btn-primary { box-shadow: none; }

/* ================================================================== ABOUT PAGE (7 Sep): company split, stat band, principle cards, job steps, team grid */
.sec-about { background: #fff; }
.about-copy { text-align: left; justify-items: start; }
.about-copy .chapter { justify-content: flex-start; }
.about-copy p { margin: 0; color: var(--text); line-height: 1.65; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; width: 100%; margin: 0.5rem 0 0; }
.facts-grid div { padding: 0.85rem 1rem; background: var(--tint); border: 1px solid var(--line-soft); border-radius: 0.75rem; }
.facts-grid dt { font-family: var(--display); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.2rem; }
.facts-grid dd { margin: 0; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.sec-stats { padding: 0 0 clamp(2.5rem, 5vw, 4rem) !important; background: #fff; }
.stat-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; list-style: none; margin: 0; padding: 0; border: 1px solid var(--line-soft); border-radius: 1rem; overflow: hidden; background: var(--navy); }
.stat-band li { display: grid; gap: 0.25rem; padding: 1.5rem 1rem; text-align: center; color: var(--bone); border-left: 1px solid rgba(255, 255, 255, 0.12); }
.stat-band li:first-child { border-left: 0; }
.stat-band strong { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.05; color: #fff; }
.stat-band span { font-size: 0.875rem; color: var(--bone-muted); }
.pcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.pcard { position: relative; display: grid; gap: 0.6rem; padding: 1.75rem 1.5rem 1.5rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 1rem; overflow: hidden; }
.pcard::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--primary); }
.pcard-ic { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: var(--tint); color: var(--primary); }
.pcard-ic svg { width: 1.25rem; height: 1.25rem; }
.pcard-n { position: absolute; top: 1.4rem; right: 1.5rem; font-family: var(--display); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--muted); }
.pcard h3 { margin: 0.25rem 0 0; font-size: 1.2rem; }
.pcard p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }
.jsteps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.jstep { display: grid; justify-items: center; text-align: center; gap: 0.5rem; padding: 1.5rem 1rem; background: var(--tint); border: 1px solid var(--line-soft); border-radius: 1rem; }
.jstep-thumb { position: relative; width: 6rem; height: 6rem; border-radius: 50%; overflow: visible; margin-bottom: 0.25rem; }
.jstep-thumb img, .jstep-thumb .ph { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line-soft); }
.jstep-thumb .ph-tag, .jstep-thumb .ph-label { display: none; }
.jstep-n { position: absolute; right: -0.25rem; bottom: -0.25rem; display: inline-flex; align-items: center; justify-content: center; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.85rem; border: 2px solid #fff; }
.jstep h3 { margin: 0; font-size: 1.05rem; }
.jstep p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 64rem) { .pcards { grid-template-columns: 1fr; } .jsteps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 60rem) { .about-split { grid-template-columns: 1fr; } .stat-band { grid-template-columns: 1fr 1fr; } .stat-band li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); } .stat-band li:nth-child(-n+2) { border-top: 0; } .stat-band li:nth-child(2n) { border-left: 1px solid rgba(255, 255, 255, 0.12); } .sec-stats { padding-top: 0 !important; } }
@media (max-width: 40rem) { .jsteps { grid-template-columns: 1fr; } .facts-grid { grid-template-columns: 1fr; } }

/* ================================================================== OUR WORK v3 (7 Sep): stats under the hero, animated filter bar with counts, badged cards, case-study lightbox */
.sec-stats-work { padding: clamp(2rem, 4vw, 3rem) 0 0 !important; }
.fbar-wrap { display: flex; justify-content: center; margin-bottom: 1rem; }
.fbar { position: relative; display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem; padding: 0.3rem; background: var(--tint); border: 1px solid var(--line-soft); border-radius: 999px; }
.fbar-ind { position: absolute; top: 0.3rem; left: 0.3rem; height: calc(100% - 0.6rem); width: 0; border-radius: 999px; background: var(--primary); opacity: 0; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s cubic-bezier(0.22, 1, 0.36, 1); pointer-events: none; }
.fbar-ind.is-ready { opacity: 1; }
.fchip { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 1rem; border: 0; border-radius: 999px; background: transparent; font: inherit; font-family: var(--display); font-weight: 600; font-size: 0.875rem; color: var(--ink); cursor: pointer; transition: color 0.25s ease; }
.fchip.is-on { color: #fff; }
.fcount { display: inline-flex; align-items: center; justify-content: center; min-width: 1.35rem; height: 1.35rem; padding: 0 0.35rem; border-radius: 999px; background: rgba(15, 31, 74, 0.08); font-size: 0.72rem; color: var(--muted); transition: background 0.25s ease, color 0.25s ease; }
.fchip.is-on .fcount { background: rgba(255, 255, 255, 0.22); color: #fff; }
.trust-line { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 0 auto 1.75rem; max-width: 44rem; text-align: center; font-size: 0.9rem; color: var(--muted); }
.trust-line svg { width: 1.1rem; height: 1.1rem; color: var(--primary); flex: none; }
.gallery-work .g-item a { position: relative; display: block; }
.g-badge { position: absolute; top: 0.6rem; right: 0.6rem; z-index: 2; padding: 0.3rem 0.6rem; border-radius: 999px; background: rgba(11, 26, 68, 0.9); color: #fff; font-family: var(--display); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.04em; pointer-events: none; }
.gallery-work .g-item:hover a img { transform: scale(1.03); }
.gallery-work .g-item a img { transition: transform 0.5s ease; }
.lb-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 0.75rem; }
.lb-svc { padding: 0.3rem 0.7rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.3); color: var(--bone); font-family: var(--display); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.04em; }
.lb .btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
@media (max-width: 40rem) { .fbar { border-radius: 1rem; } .fbar-ind { border-radius: 0.75rem; } .fchip { padding: 0.5rem 0.75rem; font-size: 0.8rem; } .trust-line { font-size: 0.85rem; } }

.fbar-ind { top: 0; left: 0; height: auto; }
.g-item a .ph-label, .g-item a .ph-tag { text-decoration: none; }

/* ================================================================== CONTACT v3 (7 Sep): white form, prominent drop zone, assessor card, photo guide, coverage map */
.sec-contact { background: #fff; }
.contact-promise { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: 0 0 1.75rem; }
.contact-promise span { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.85rem; border-radius: 999px; background: var(--tint); border: 1px solid var(--line-soft); font-family: var(--display); font-weight: 600; font-size: 0.8rem; color: var(--ink); }
.contact-promise span::before { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--primary); }
.contact-grid-v3 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(19rem, 24rem); gap: 2rem; align-items: start; }
/* light form */
.qf-light { background: #fff !important; border: 1px solid var(--line) !important; border-radius: 1.25rem; box-shadow: 0 30px 60px -40px rgba(11, 26, 68, 0.35) !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; padding: clamp(1.5rem, 3vw, 2.25rem) !important; }
.qf-light .qf-head h2 { color: var(--ink); }
.qf-light .qf-head p { color: var(--muted); }
.qf-light .f span { color: var(--ink); }
.qf-light input, .qf-light select, .qf-light textarea { background: #fff !important; color: var(--ink) !important; border: 1px solid #c3d0ea !important; }
.qf-light input::placeholder, .qf-light textarea::placeholder { color: #8a96b3; }
.qf-light input:focus, .qf-light select:focus, .qf-light textarea:focus { outline: 3px solid rgba(30, 64, 175, 0.25); outline-offset: 1px; border-color: var(--primary) !important; }
.qf-light .drop { background: var(--tint); border: 2px dashed #60a5fa; color: var(--ink); border-radius: 0.9rem; padding: 1.1rem 1.25rem; transition: background 0.2s ease, border-color 0.2s ease; }
.qf-light .f-drop.is-drag .drop, .qf-light .drop:hover { background: #e5eefc; border-color: var(--primary); }
.qf-light .drop-ic { background: var(--primary); color: #fff; }
.qf-light .drop-txt strong { color: var(--ink); }
.qf-light .drop-txt em { color: var(--muted); }
.qf-light .check, .qf-light .check span { color: var(--text); }
.qf-light .check a { color: var(--primary); }
.qf-light .btn-lg { background: var(--primary) !important; color: #fff; box-shadow: none; }
.qf-light .btn-lg:hover { background: var(--primary-2) !important; }
.qf-light .qf-note, .qf-light .qf-foot { color: var(--muted); }
.drop-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.drop-thumb { width: 3.5rem; height: 3.5rem; object-fit: cover; border-radius: 0.5rem; border: 1px solid var(--line); background: #fff; }
.f-drop.has-files .drop-list { margin-top: 0.75rem; }
/* sidebar */
.contact-side { display: grid; gap: 1rem; }
.contact-side .side-block { background: var(--tint); border: 1px solid var(--line-soft); border-radius: 1rem; padding: 1.35rem; }
.contact-side .side-block .chapter { justify-content: flex-start; margin-bottom: 0.6rem; }
.contact-side .side-block h2 { font-size: 1.15rem; line-height: 1.25; margin: 0 0 0.5rem; }
.assessor-row { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; align-items: start; }
.assessor-photo { width: 4.5rem; height: 4.5rem; border-radius: 50%; overflow: hidden; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line-soft); }
.assessor-photo img, .assessor-photo .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.assessor-photo .ph-tag, .assessor-photo .ph-label { display: none; }
.assessor-row p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.assessor-call { width: 100%; justify-content: center; gap: 0.5rem; margin-top: 1rem; background: #fff; }
.assessor-call svg { width: 1rem; height: 1rem; color: var(--primary); }
.photo-guide { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.photo-guide li { display: grid; grid-template-columns: 3.75rem 1fr; gap: 0.85rem; align-items: center; padding: 0.6rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 0.75rem; }
.pg-thumb { width: 3.75rem; height: 3.75rem; border-radius: 0.5rem; overflow: hidden; }
.pg-thumb img, .pg-thumb .ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-thumb .ph-tag, .pg-thumb .ph-label { display: none; }
.pg-body { display: grid; gap: 0.15rem; }
.pg-body strong { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.pg-body span { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.map-card { position: relative; border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--line-soft); background: #e8eef8; aspect-ratio: 4 / 3; }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.75); }
.map-tag { position: absolute; left: 0.6rem; bottom: 0.6rem; right: 0.6rem; padding: 0.45rem 0.7rem; border-radius: 0.5rem; background: rgba(11, 26, 68, 0.9); color: #fff; font-family: var(--display); font-weight: 600; font-size: 0.75rem; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; margin: 0.85rem 0 0; padding: 0; }
.micro-trust li { padding: 0.3rem 0.6rem; border-radius: 999px; background: #fff; border: 1px solid var(--line-soft); font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.side-foot { margin: 0.85rem 0 0; font-size: 0.75rem; color: var(--muted); }
@media (max-width: 60rem) { .contact-grid-v3 { grid-template-columns: 1fr; } .contact-promise { gap: 0.4rem; } .contact-promise span { font-size: 0.72rem; padding: 0.35rem 0.65rem; } }

.assessor-row { align-items: center; }
.assessor-row p { margin: 0; }

/* ================================================================== CONTACT: coverage map as its own wide band at the bottom (7 Sep) */
.sec-map { background: var(--tint); border-top: 1px solid var(--line-soft); }
.map-band { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(1.5rem, 3vw, 2.5rem); background: #fff; border: 1px solid var(--line-soft); border-radius: 1.25rem; }
.map-copy { display: grid; gap: 0.85rem; }
.map-copy .chapter { justify-content: flex-start; margin-bottom: 0; }
.map-copy h2 { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.map-copy p { margin: 0; color: var(--text); line-height: 1.6; }
.map-copy .micro-trust { margin-top: 0.25rem; }
.map-copy .micro-trust li { background: var(--tint); }
.map-big { position: relative; height: clamp(18rem, 32vw, 26rem); border-radius: 1rem; overflow: hidden; border: 1px solid var(--line-soft); background: #e8eef8; }
.map-big iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.8); }
.contact-side { align-self: start; }
@media (max-width: 60rem) { .map-band { grid-template-columns: 1fr; padding: 1rem; } .map-big { height: 16rem; } }

/* ================================================================== RESPONSIVE PASS (7 Sep): 12px floor, 44px tap targets on touch, scroll hint on the hero strip */
.chapter { font-size: 0.75rem; }
.fcount { font-size: 0.75rem; min-width: 1.5rem; height: 1.5rem; }
.facts-grid dt { font-size: 0.75rem; letter-spacing: 0.1em; }
.util-call, .util-hours { min-height: 2.5rem; display: inline-flex; align-items: center; }
.hd2-brand { display: inline-flex; align-items: center; min-height: 2.75rem; }
.cta-card-v2 .cta-phone { display: inline-block; padding: 0.25rem 0; }
.fchip { min-height: 2.75rem; }
.check a { padding: 0.25rem 0; }
@media (max-width: 60rem) {
  .hero-strip { mask-image: linear-gradient(90deg, #000 85%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); padding-right: 1.5rem; }
  .btn, .fchip, .hd2-burger, .wl-arrow, .scard-cta, .scard-add, .ba-handle { min-height: 2.75rem; }
  .scard-chip { min-height: 2.25rem; }
  .hd2-mnav a { min-height: 2.75rem; }
}

.cta-card-label, .scard-kicker, .g-badge, .side-links h3 { font-size: 0.75rem; }
.chips-all a { display: inline-flex; align-items: center; min-height: 2.5rem; }

@media (max-width: 60rem) { .ba-badge { font-size: 0.75rem; letter-spacing: 0.04em; } .rl-copy .chapter { font-size: 0.75rem; } }

/* ================================================================== FINISH PASS (7 Sep): depth and detail on every content card; phones centre the label and heading of every block on one line */
.tc-card, .pcard, .scard, .jstep, .side-block, .included li, .notsure-panel, .rl-panel, .map-band { box-shadow: 0 18px 40px -32px rgba(11, 26, 68, 0.35); }
.tc-card { position: relative; overflow: hidden; }
.tc-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--primary); }
.tc-card-dark::before { background: #9db8ff; }
.included li { position: relative; padding-top: 1.35rem; }
.included .num { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--tint); color: var(--primary); font-family: var(--display); font-weight: 700; font-size: 0.8rem; margin-bottom: 0.6rem; }
.steps-tight li { display: grid; grid-template-columns: 2rem 1fr; gap: 0.85rem; align-items: start; padding: 0.8rem 0; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--tint); color: var(--primary); font-family: var(--display); font-weight: 700; font-size: 0.78rem; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before { content: "" !important; position: absolute; left: 0; top: 0.55rem; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--primary) !important; transform: none !important; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10' fill='black' stroke='none'/><path d='m8.5 12.5 2.5 2.5 5-5' stroke='white'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10' fill='black' stroke='none'/><path d='m8.5 12.5 2.5 2.5 5-5' stroke='white'/></svg>") center / contain no-repeat; }
.ticks li::after { display: none !important; }
.facts-grid div { border-left: 3px solid var(--primary); }
.faq { background: #fff; border: 1px solid var(--line-soft) !important; border-radius: 0.75rem; margin-bottom: 0.6rem; padding: 0 1rem; }
.faq summary { padding: 0.9rem 0; font-weight: 600; }
.faq[open] { border-color: var(--line) !important; box-shadow: 0 14px 30px -24px rgba(11, 26, 68, 0.35); }
.side-links .chips-all a { background: #fff; }
@media (max-width: 60rem) {
  .sec { padding: 3rem 0; }
  .tc-card, .pcard, .side-block { padding: 1.5rem 1.25rem; }
  /* one centre line per block on phones: label, heading, lede, paragraphs */
  .tc-card .sec-head, .two-col > div > .sec-head, .two-col-faq .sec-head, .about-copy, .rl-copy, .cta-left, .side-block, .map-copy, .team-copy { text-align: center; }
  .tc-card .sec-head .chapter, .two-col > div > .sec-head .chapter, .two-col-faq .sec-head .chapter, .about-copy .chapter, .rl-copy .chapter, .cta-left .chapter, .side-block .chapter, .map-copy .chapter, .contact-side .side-block .chapter { display: flex !important; justify-content: center !important; }
  .about-copy { justify-items: center; }
  .about-copy .facts-grid div { text-align: left; }
  .rl-copy { justify-items: center; }
  .rl-tab { text-align: left; }
  .rl-cta { justify-self: center; }
  .cta-left h2, .cta-left p { text-align: center; }
  .cta-points-v2 { justify-items: center; }
  .cta-points-v2 li { text-align: left; }
  .tc-card p, .tc-card .ticks, .tc-card .steps-tight { text-align: left; }
  .tc-card > p { text-align: center; }
  .contact-side .side-block .assessor-row, .contact-side .side-block .photo-guide li, .pg-body { text-align: left; }
  .map-copy .micro-trust { justify-content: center; }
  .side-links { text-align: center; }
  .side-links .chips-all { justify-content: center; }
  .faqs { text-align: left; }
}

@media (max-width: 60rem) { .tc-card .chapter, .side-block .chapter, .pcard .chapter { gap: 0.6rem; letter-spacing: 0.12em; } .tc-card .chapter::before, .tc-card .chapter::after, .side-block .chapter::before, .side-block .chapter::after { width: 1.5rem; flex: none; } .tc-card .chapter-label, .side-block .chapter-label { white-space: nowrap; } }

/* ================================================================== TRUST BADGES v2 (7 Sep): real marks. Google G + stars, certification seal, the van from the footage */
.tb-mark { display: inline-flex; align-items: center; justify-content: center; width: 4.5rem; height: 4rem; flex: none; border-radius: 0.75rem; background: var(--tint); }
.tb-g { width: 2.4rem; height: 2.4rem; }
.tb-mark-seal { color: var(--primary); }
.tb-seal { width: 2.4rem; height: 2.4rem; }
.tb-mark-van { overflow: hidden; background: #dfe8f7; }
.tb-van { width: 100%; height: 100%; object-fit: cover; display: block; }
.tb-title { display: inline-flex; align-items: baseline; gap: 0.5rem; }
.tb-stars { color: #f5b301; font-size: 1rem; letter-spacing: 0.04em; }
.tb .tb-rosette { display: none; }
@media (max-width: 60rem) { .tb-mark { width: 3.75rem; height: 3.25rem; } .tb-g, .tb-seal { width: 2rem; height: 2rem; } .tb-stars { font-size: 0.85rem; } }

/* ================================================================== SERVICE CARDS v2 (7 Sep): image-led, one line of copy */
.scard-img { padding: 0; gap: 0; grid-template-rows: auto 1fr auto; }
.scard-img::before { display: none; }
.scard-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--tint-2); }
.scard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.scard-img:hover .scard-media img { transform: scale(1.04); }
.scard-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 26, 68, 0.35) 0%, rgba(11, 26, 68, 0) 45%); pointer-events: none; }
.scard-img .scard-kicker { position: absolute; left: 1rem; top: 1rem; z-index: 2; padding: 0.35rem 0.65rem; border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--a); font-size: 0.7rem; }
.scard-img .scard-ic { position: absolute; right: 1rem; top: 1rem; z-index: 2; width: 2.25rem; height: 2.25rem; background: rgba(255, 255, 255, 0.92); }
.scard-img .scard-body { padding: 1.25rem 1.5rem 0.75rem; gap: 0.4rem; }
.scard-img .scard-body h3 { font-size: 1.3rem; }
.scard-img .scard-body p { font-size: 0.95rem; }
.scard-inc { font-size: 0.82rem !important; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scard-inc span { font-family: var(--display); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--a); margin-right: 0.25rem; }
.scard-img .scard-foot { padding: 0.75rem 1.5rem 1.25rem; border-top: 0; justify-content: flex-end; }
@media (max-width: 40rem) { .scard-img .scard-body { padding: 1rem 1.15rem 0.5rem; } .scard-img .scard-foot { padding: 0.5rem 1.15rem 1.1rem; } }

.page-hero-media .page-hero-img img { object-position: center 22%; }  /* keep faces in frame when the still is cropped to the band */
