/* ============================================================
   PRIME CLEAN SOLUTIONS — Core Stylesheet
   Design direction: Dark Premium / Luxury Cleaning
   Palette derived from the company logo (deep petrol ink +
   bright aqua + ice silver).
   ============================================================ */

/* ---------- 01. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --ink-900: #061A21;
  --ink-800: #0A2028;
  --ink: #0E2A35;          /* logo background */
  --ink-700: #143A47;
  --ink-600: #1C4B5A;

  --primary: #00C2CB;      /* logo aqua */
  --primary-600: #04A6B2;
  --primary-700: #0A8290;
  --primary-050: #E3F8F9;
  --accent: #7FE7EC;       /* ice highlight */
  --silver: #98A8B0;       /* logo subtitle */
  --mist: #D6E4E8;

  /* Neutrals */
  --bg: #F5F9FA;
  --surface: #FDFEFE;
  --surface-2: #EEF5F6;
  --card: #FFFFFC;
  --border: #DCE8EB;
  --border-strong: #C4D7DC;

  --heading: #0C2632;
  --text: #24404A;
  --muted: #5E747D;
  --on-dark: #EAF4F6;
  --on-dark-muted: #A9C0C8;

  /* Gradients */
  --grad-ink: linear-gradient(160deg, #0E2A35 0%, #123845 55%, #0A2028 100%);
  --grad-aqua: linear-gradient(135deg, #00C2CB 0%, #0A8290 100%);
  --grad-ice: linear-gradient(135deg, #7FE7EC 0%, #00C2CB 100%);
  --grad-tint: linear-gradient(180deg, #F5F9FA 0%, #EAF3F5 100%);

  /* Radius (8px system) */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(14, 42, 53, .06);
  --shadow-sm: 0 4px 16px rgba(14, 42, 53, .07);
  --shadow-md: 0 12px 32px rgba(14, 42, 53, .10);
  --shadow-lg: 0 24px 64px rgba(14, 42, 53, .16);
  --shadow-glow: 0 16px 40px rgba(0, 194, 203, .28);

  /* Spacing — 8px grid */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-8: 64px;
  --s-10: 80px;
  --s-12: 96px;
  --s-16: 128px;

  /* Type */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: clamp(.8125rem, .79rem + .1vw, .875rem);
  --step-0: clamp(1rem, .97rem + .15vw, 1.0625rem);
  --step-1: clamp(1.125rem, 1.08rem + .25vw, 1.25rem);
  --step-2: clamp(1.375rem, 1.28rem + .45vw, 1.625rem);
  --step-3: clamp(1.625rem, 1.45rem + .8vw, 2.125rem);
  --step-4: clamp(2rem, 1.7rem + 1.4vw, 2.875rem);
  --step-5: clamp(2.375rem, 1.9rem + 2.4vw, 4rem);

  /* Motion */
  --t-fast: 250ms cubic-bezier(.22, .61, .36, 1);
  --t-base: 400ms cubic-bezier(.22, .61, .36, 1);
  --t-slow: 600ms cubic-bezier(.22, .61, .36, 1);

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 820px;
  --header-h: 100px;
}

/* ---------- 02. RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: clip;          /* nothing may widen the page beyond the viewport */
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video { max-width: 100%; display: block; height: auto; }

/* Brand icons are inline SVG with a 24×24 viewBox and no intrinsic size, so an
   unsized context would stretch them to fill it. This is the safety floor;
   every class-based rule below has higher specificity and overrides it. */
svg {
  width: 20px;
  height: 20px;
  flex: none;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.14;
  letter-spacing: -.02em;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 var(--s-2); }

a {
  color: var(--primary-700);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--primary-600); }

ul, ol { margin: 0 0 var(--s-2); padding-left: 1.25em; }

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  padding: 12px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top var(--t-fast);
}

.skip-link:focus { top: 0; color: #fff; }

/* ---------- 03. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--s-3);
}

.container.narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--s-12); position: relative; }
.section--tight { padding-block: var(--s-8); }
.section--tint { background: var(--grad-tint); }
.section--surface { background: var(--surface); }

.section--dark {
  background: var(--grad-ink);
  color: var(--on-dark);
  overflow: hidden;   /* clips the decorative orbs, which sit outside the edges */
}

/* belt and braces: any block that hosts a decorative orb must clip it */
.section:has(.hero-orb),
.trust-bar:has(.hero-orb) { overflow: hidden; }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section--dark p { color: var(--on-dark-muted); }

.section-head { max-width: 720px; margin-bottom: var(--s-6); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  margin-bottom: var(--s-2);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary-700);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--grad-aqua);
  border-radius: 2px;
}

.section--dark .eyebrow { color: var(--accent); }

.section-title { font-size: var(--step-4); margin-bottom: var(--s-2); }
.section-sub { font-size: var(--step-1); color: var(--muted); margin: 0; }
.section--dark .section-sub { color: var(--on-dark-muted); }

.grid { display: grid; gap: var(--s-3); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }

/* ---------- 04. BUTTONS ---------- */
.btn {
  --btn-bg: var(--grad-aqua);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 16px 32px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: #05262B;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #05262B;
}

.btn:active { transform: translateY(-1px); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-ghost {
  background: transparent;
  color: var(--heading);
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary-700);
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(234, 244, 246, .32);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .14);
  border-color: var(--accent);
  color: #fff;
  box-shadow: none;
}

.btn-sm { padding: 12px 24px; font-size: .9375rem; }
.btn-lg { padding: 20px 40px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-700);
}

.link-arrow::after {
  content: "→";
  transition: transform var(--t-fast);
}

.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- 05. HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 33, .72) 0%, rgba(6, 26, 33, 0) 100%);
  opacity: 1;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.site-header.is-stuck {
  background: rgba(9, 32, 40, .82);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: rgba(0, 194, 203, .18);
  box-shadow: 0 12px 32px rgba(6, 26, 33, .28);
}

.site-header.is-stuck::before { opacity: 0; }

.header-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--s-2) var(--s-3);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  position: relative;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: #fff;
  min-width: 0;
}

.brand-text { min-width: 0; }

/* compact tap-to-call button, only on small screens */
.header-call { display: none; }

.brand:hover { color: #fff; }

.brand img {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  box-shadow: 0 6px 18px rgba(6, 26, 33, .4);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4375rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
}

.brand-sub {
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: var(--s-1); }

.nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: rgba(234, 244, 246, .86);
  font-size: .9375rem;
  font-weight: 600;
}

.nav a:hover { color: #fff; background: rgba(255, 255, 255, .07); }

.nav a[aria-current="page"] { color: #fff; }

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-ice);
}

.header-actions { display: flex; align-items: center; gap: var(--s-2); }

.header-phone {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
}

.header-phone span {
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(234, 244, 246, .28);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .08);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  padding: calc(var(--header-h) + var(--s-3)) var(--s-3) var(--s-6);
  background: var(--grad-ink);
  border-left: 1px solid rgba(0, 194, 203, .2);
  box-shadow: -24px 0 64px rgba(6, 26, 33, .5);
  transform: translateX(103%);
  transition: transform var(--t-base);
  z-index: 99;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-panel.is-open { transform: translateX(0); visibility: visible; }

.mobile-panel nav { display: flex; flex-direction: column; gap: 4px; }

.mobile-panel nav a {
  padding: 18px 16px;
  border-radius: var(--r-md);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(234, 244, 246, .08);
}

.mobile-panel nav a:hover,
.mobile-panel nav a[aria-current="page"] {
  background: rgba(0, 194, 203, .12);
  color: #fff;
}

.mobile-cta { margin-top: var(--s-4); display: grid; gap: var(--s-2); }

.mobile-meta {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(234, 244, 246, .12);
  color: var(--on-dark-muted);
  font-size: .875rem;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 33, .58);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
  z-index: 98;
}

.scrim.is-visible { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

/* ---------- 06. HERO ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--s-10));
  padding-bottom: var(--s-12);
  background: var(--grad-ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(245, 249, 250, 0) 0%, var(--bg) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

.hero-orb--a {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 194, 203, .6) 0%, rgba(0, 194, 203, 0) 70%);
}

.hero-orb--b {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(127, 231, 236, .38) 0%, rgba(127, 231, 236, 0) 70%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .3;
  background-image: linear-gradient(rgba(234, 244, 246, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 244, 246, .06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: var(--s-8);
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: var(--s-3); }

.hero h1 em {
  font-style: normal;
  background: var(--grad-ice);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: var(--step-1);
  color: var(--on-dark-muted);
  max-width: 54ch;
  margin-bottom: var(--s-4);
}

.pill-row { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-bottom: var(--s-3); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(234, 244, 246, .16);
  color: var(--on-dark);
  font-size: .8125rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.pill svg { width: 16px; height: 16px; color: var(--accent); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  color: var(--on-dark-muted);
  font-size: .9375rem;
}

.stars { display: inline-flex; gap: 2px; color: #FFC94D; }
.stars svg { width: 18px; height: 18px; }

.hero-visual { position: relative; }

.hero-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(234, 244, 246, .16);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 194, 203, .12);
  aspect-ratio: 4 / 5;
  background: var(--ink-700);
}

.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(253, 254, 254, .92);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--t-base), box-shadow var(--t-base);
  z-index: 4;
}

.float-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.float-card .fc-ico {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-050);
  color: var(--primary-700);
}

.float-card .fc-ico svg { width: 22px; height: 22px; }

.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--heading);
  line-height: 1.1;
}

.float-card span { font-size: .75rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

.float-card--tl { top: 8%; left: -32px; }
.float-card--br { bottom: 10%; right: -28px; }
.float-card--bl { bottom: 26%; left: -40px; }

/* ---------- 07. PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--s-8));
  padding-bottom: var(--s-10);
  background: var(--grad-ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}

.page-hero .hero-orb--a { width: 440px; height: 440px; top: -180px; right: -100px; }
.page-hero .hero-orb--b { width: 320px; height: 320px; bottom: -160px; left: -100px; }

.page-hero-inner { position: relative; z-index: 2; max-width: 780px; }

/* short hero for the single-purpose booking page */
.page-hero--short { padding-bottom: var(--s-8); }
.page-hero--short .container { position: relative; z-index: 2; }
.page-hero--short h1 { font-size: var(--step-4); }
.page-hero--short p { max-width: 62ch; }
.page-hero--short .eyebrow { display: inline-flex; }

/* helper row under the booking form */
.appt-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-2);
}

.appt-help > div {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  padding: var(--s-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.appt-help h3 { font-size: .9375rem; margin-bottom: 2px; }
.appt-help p { margin: 0; font-size: .875rem; color: var(--muted); }
.appt-help a { font-weight: 700; }

.page-hero.has-visual .page-hero-inner { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-8); align-items: center; }

.page-hero h1 { color: #fff; }
.page-hero p { color: var(--on-dark-muted); font-size: var(--step-1); max-width: 60ch; }

.page-hero .btn-group { margin-top: var(--s-4); }

.page-hero-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(234, 244, 246, .16);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.page-hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: var(--s-3);
  font-size: .8125rem;
  color: var(--on-dark-muted);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: var(--on-dark-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: rgba(169, 192, 200, .5); }
.breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }

/* ---------- 08. TRUST BAR ---------- */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: var(--s-4);
}

.trust-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-weight: 600;
  font-size: .9375rem;
}

.trust-item svg { width: 22px; height: 22px; color: var(--primary-600); flex: none; }

/* ---------- 09. CARDS ---------- */
.card {
  position: relative;
  padding: var(--s-4);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 194, 203, .35);
}

.card h3 { font-size: var(--step-1); margin-bottom: var(--s-1); }
.card p { color: var(--muted); margin-bottom: 0; }
.card p + p { margin-top: var(--s-2); }

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-3);
  border-radius: var(--r-md);
  background: var(--primary-050);
  color: var(--primary-700);
  border: 1px solid rgba(0, 194, 203, .18);
}

.card-icon svg { width: 26px; height: 26px; }

.section--dark .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(234, 244, 246, .14);
  box-shadow: none;
}

.section--dark .card:hover { background: rgba(255, 255, 255, .08); border-color: rgba(0, 194, 203, .4); }
.section--dark .card p { color: var(--on-dark-muted); }

.section--dark .card-icon {
  background: rgba(0, 194, 203, .14);
  color: var(--accent);
  border-color: rgba(0, 194, 203, .3);
}

/* Service cards */
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 194, 203, .35);
}

.service-card .sc-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-700);
}

.service-card .sc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.service-card:hover .sc-media img { transform: scale(1.06); }

.sc-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(6, 26, 33, .72);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card .sc-body { padding: var(--s-4); display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: var(--step-2); margin-bottom: var(--s-1); }
.service-card p { color: var(--muted); }
.service-card .link-arrow { margin-top: auto; padding-top: var(--s-2); }

.service-card--feature { grid-column: span 2; }
.service-card--feature .sc-media { aspect-ratio: 16 / 9; }

/* Horizontal card */
.row-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-2);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.row-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.row-card img {
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.row-card h3 { font-size: var(--step-1); }
.row-card p { color: var(--muted); margin-bottom: var(--s-1); }

/* ---------- 10. IMAGE COMPOSITIONS ---------- */
.media-stack { position: relative; }

.media-stack .ms-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.media-stack .ms-main img { width: 100%; height: 100%; object-fit: cover; }
.media-stack .ms-main--portrait { aspect-ratio: 3 / 4; }

/* Founder portrait with caption overlay */
.founder-figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }

.founder-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-4) var(--s-3) var(--s-3);
  background: linear-gradient(0deg, rgba(6, 26, 33, .88) 0%, rgba(6, 26, 33, .55) 55%, rgba(6, 26, 33, 0) 100%);
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
}

.founder-figure figcaption small {
  display: block;
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.signature {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--heading);
  line-height: 1.2;
}

.signature span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-700);
}

.media-stack .ms-inset {
  position: absolute;
  right: -32px;
  bottom: -40px;
  width: 46%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
}

.media-stack .ms-inset img { width: 100%; height: 100%; object-fit: cover; }

.media-stack .ms-badge {
  position: absolute;
  left: -24px;
  top: -24px;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  background: var(--grad-aqua);
  color: #05262B;
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.ms-badge strong { display: block; font-family: var(--font-display); font-size: 1.75rem; line-height: 1; }
.ms-badge span { font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.figure-round { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.figure-round img { width: 100%; object-fit: cover; }

/* Photo strip — a row of real project photos with captions */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-3);
}

.strip-item { margin: 0; }

.strip-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.strip-item:hover img { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.strip-item figcaption {
  margin-top: var(--s-2);
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.5;
}

.section--dark .strip-item figcaption { color: var(--on-dark-muted); }

/* Inline article figures */
.prose figure { margin: var(--s-5) 0; }

.prose figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.prose figcaption {
  margin-top: var(--s-1);
  font-size: .8125rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ---------- 11. STATS ---------- */
.stats-band {
  background: var(--grad-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-band .hero-orb--a { width: 400px; height: 400px; top: -200px; right: 10%; }

/* the band sits on the dark gradient, so its type has to invert */
.stats-band h2,
.stats-band .section-title { color: #fff; }
.stats-band .eyebrow { color: var(--accent); }
.stats-band .section-sub,
.stats-band > .container > p { color: var(--on-dark-muted); }

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

.stat { text-align: center; padding: var(--s-3) var(--s-2); }
.stat + .stat { border-left: 1px solid rgba(234, 244, 246, .12); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--grad-ice);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: var(--s-1);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  font-weight: 600;
}

/* ---------- 12. PROCESS / STEPS ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
}

.step {
  position: relative;
  padding: var(--s-4) var(--s-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--s-2);
  border-radius: 14px;
  background: var(--grad-aqua);
  color: #05262B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  box-shadow: var(--shadow-sm);
}

.step h3 { font-size: var(--step-1); }
.step p { color: var(--muted); margin-bottom: 0; }

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: calc(var(--s-3) * -1 - 1px);
  width: var(--s-3);
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 194, 203, .5), rgba(0, 194, 203, .1));
}

/* Vertical timeline */
.timeline { list-style: none; margin: 0; padding: 0 0 0 var(--s-5); position: relative; }

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(0, 194, 203, .12));
}

.timeline li { position: relative; padding-bottom: var(--s-5); }

.timeline li::before {
  content: "";
  position: absolute;
  left: calc(var(--s-5) * -1);
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 194, 203, .14);
}

.timeline .t-year {
  display: block;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 4px;
}

.timeline h3 { font-size: var(--step-1); margin-bottom: 4px; }
.timeline p { color: var(--muted); margin-bottom: 0; }

/* ---------- 13. BEFORE / AFTER ---------- */
.ba-wrap { display: grid; gap: var(--s-4); }

.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: var(--ba-ratio, 16 / 10);
  user-select: none;
  touch-action: pan-y;
  background: var(--ink-700);
}

.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: rgba(253, 254, 254, .9);
  box-shadow: 0 0 14px rgba(0, 194, 203, .6);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(253, 254, 254, .94);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--primary-700);
  font-size: .875rem;
  font-weight: 800;
  pointer-events: none;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-tag {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: rgba(6, 26, 33, .74);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.ba-tag--before { left: 16px; }
.ba-tag--after { right: 16px; }

.ba-item--wide { grid-column: 1 / -1; }
.ba-item--wide .ba { aspect-ratio: 21 / 9; }

.ba-meta { margin-top: var(--s-2); }
.ba-meta h3 { font-size: var(--step-1); margin-bottom: 4px; }
.ba-meta p { color: var(--muted); margin-bottom: 0; font-size: .9375rem; }

/* ---------- 14. SERVICE AREAS ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-2); }

.area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--s-3);
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--heading);
  font-weight: 600;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.area-card svg { width: 20px; height: 20px; color: var(--primary-600); flex: none; }
.area-card small { display: block; font-weight: 500; color: var(--muted); font-size: .75rem; }

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  color: var(--primary-700);
}

.section--dark .area-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(234, 244, 246, .14);
  color: #fff;
}

.section--dark .area-card small { color: var(--on-dark-muted); }
.section--dark .area-card:hover { background: rgba(0, 194, 203, .12); color: #fff; border-color: var(--primary); }

/* Full service-area list, grouped by county */
.area-groups { display: grid; gap: var(--s-4); }

.area-groups-title {
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.area-group h3 {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  margin-bottom: var(--s-2);
  font-size: 1.0625rem;
  color: #fff;
}

.area-group h3 span {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.city-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-pills li {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(234, 244, 246, .14);
  color: var(--on-dark);
  font-size: .8125rem;
  font-weight: 500;
  margin: 0;
}

/* light sections use the same list with inverted colours */
.section:not(.section--dark) .area-groups-title { color: var(--primary-700); }
.section:not(.section--dark) .area-group h3 { color: var(--heading); }
.section:not(.section--dark) .area-group h3 span { color: var(--muted); }
.section:not(.section--dark) .city-pills li {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}

.map-frame iframe,
.map-frame img { width: 100%; height: 100%; border: 0; object-fit: cover; }

/* ---------- 15. TESTIMONIALS ---------- */
.slider { position: relative; }

.slider-track {
  display: flex;
  gap: var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--s-2);
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar { display: none; }

.quote-card {
  flex: 0 0 calc((100% - var(--s-3) * 2) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: var(--s-4);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card blockquote { margin: 0 0 var(--s-3); color: var(--text); font-size: 1.0625rem; }
.quote-card .stars { margin-bottom: var(--s-2); }

.quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-aqua);
  color: #05262B;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex: none;
}

.quote-who strong { display: block; color: var(--heading); font-size: .9375rem; }
.quote-who span { font-size: .8125rem; color: var(--muted); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s-2);
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}

.google-badge svg { width: 16px; height: 16px; }

/* Photo carousel */
.photo-carousel .slider-track { gap: var(--s-3); }

.photo-slide {
  flex: 0 0 calc((100% - var(--s-3) * 2) / 3);
  scroll-snap-align: start;
  margin: 0;
}

.photo-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.photo-slide:hover img { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.photo-slide figcaption {
  margin-top: var(--s-2);
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.5;
}

.section--dark .photo-slide figcaption { color: var(--on-dark-muted); }

.slider-nav { display: flex; gap: var(--s-1); justify-content: flex-end; margin-top: var(--s-2); }

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--heading);
  display: grid;
  place-items: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.slider-btn:hover { background: var(--grad-aqua); color: #05262B; border-color: transparent; transform: translateY(-2px); }
.slider-btn svg { width: 20px; height: 20px; }

/* ---------- 16. GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: var(--s-2);
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--ink-700);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  box-shadow: var(--shadow-xs);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 33, 0) 45%, rgba(6, 26, 33, .55) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--s-4);
  background: rgba(6, 26, 33, .9);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}

.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

.lightbox-close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(234, 244, 246, .3);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-caption { margin-top: var(--s-2); color: var(--on-dark-muted); font-size: .875rem; text-align: center; }

/* ---------- 17. FAQ ---------- */
.faq { display: grid; gap: var(--s-2); }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item:hover { border-color: rgba(0, 194, 203, .35); }
.faq-item.is-open { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: var(--s-3);
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.35;
}

.faq-ico {
  position: relative;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--primary-050);
  transition: background var(--t-fast), transform var(--t-base);
}

.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-700);
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-ico { background: var(--grad-aqua); }
.faq-item.is-open .faq-ico::before,
.faq-item.is-open .faq-ico::after { background: #05262B; }
.faq-item.is-open .faq-ico::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-base);
}

.faq-a > * { padding: 0 var(--s-3); color: var(--muted); }
.faq-a > *:last-child { padding-bottom: var(--s-3); margin-bottom: 0; }

.faq-cats { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-bottom: var(--s-5); }

.faq-cat {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--heading);
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--t-fast);
}

.faq-cat:hover { border-color: var(--primary); color: var(--primary-700); }
.faq-cat.is-active { background: var(--grad-aqua); border-color: transparent; color: #05262B; }

.faq-group + .faq-group { margin-top: var(--s-8); }
.faq-group h2 { font-size: var(--step-3); margin-bottom: var(--s-3); }

/* ---------- 18. PROSE / ARTICLE ---------- */
.prose { font-size: 1.0625rem; color: var(--text); }
.prose > h2 { font-size: var(--step-3); margin-top: var(--s-6); margin-bottom: var(--s-2); }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { font-size: var(--step-2); margin-top: var(--s-5); }
.prose p { margin-bottom: var(--s-3); }
.prose p.lead { font-size: var(--step-1); color: var(--heading); font-weight: 500; }
.prose a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; font-weight: 600; }

.prose ul,
.prose ol { margin-bottom: var(--s-3); }
.prose li { margin-bottom: var(--s-1); }

.check-list { list-style: none; padding: 0; }

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-050);
  border: 1px solid rgba(0, 194, 203, .35);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--primary-700);
  border-bottom: 2px solid var(--primary-700);
  transform: rotate(-45deg);
}

.card .check-list li { font-size: .9375rem; color: var(--muted); }

.num-list { counter-reset: n; list-style: none; padding: 0; }

.num-list li {
  counter-increment: n;
  position: relative;
  padding-left: 44px;
  margin-bottom: var(--s-2);
}

.num-list li::before {
  content: counter(n);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
}

.callout {
  margin: var(--s-4) 0;
  padding: var(--s-4);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: linear-gradient(120deg, var(--primary-050), rgba(227, 248, 249, .3));
}

.callout p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--heading);
  font-weight: 500;
}

.article-toc {
  padding: var(--s-4);
  margin-bottom: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.article-toc h2 {
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: var(--s-2);
}

.article-toc ol { counter-reset: toc; list-style: none; padding: 0; margin: 0; }
.article-toc li { counter-increment: toc; margin-bottom: 8px; }
.article-toc a { color: var(--heading); font-weight: 600; display: inline-flex; gap: 10px; text-decoration: none; }
.article-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--primary-600); font-variant-numeric: tabular-nums; }
.article-toc a:hover { color: var(--primary-700); }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
  font-size: .875rem;
  color: var(--on-dark-muted);
}

.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; }

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(0, 194, 203, .16);
  color: var(--accent);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tag--light { background: var(--primary-050); color: var(--primary-700); }

.author-box {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-4);
  margin-top: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.author-box .avatar { width: 64px; height: 64px; font-size: 1.25rem; }
.author-box h3 { font-size: var(--step-1); margin-bottom: 4px; }
.author-box p { margin: 0; color: var(--muted); font-size: .9375rem; }

/* ---------- 19. BLOG CARDS ---------- */
.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(0, 194, 203, .3); }

.post-card .pc-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-700); }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.post-card:hover .pc-media img { transform: scale(1.05); }
.post-card .pc-body { padding: var(--s-3); display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: var(--step-1); margin: var(--s-2) 0 var(--s-1); }
.post-card p { color: var(--muted); font-size: .9375rem; }
.post-card .pc-foot {
  margin-top: auto;
  padding-top: var(--s-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: .8125rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.featured-post {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.featured-post .fp-media { min-height: 380px; overflow: hidden; background: var(--ink-700); }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .fp-body { padding: var(--s-6); display: flex; flex-direction: column; justify-content: center; }
.featured-post h2 { font-size: var(--step-3); margin: var(--s-2) 0; }
.featured-post p { color: var(--muted); }

/* ---------- 20. CTA BANDS ---------- */
.cta-band {
  position: relative;
  padding-block: var(--s-12);
  background: var(--grad-ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.cta-band .hero-orb--a { width: 480px; height: 480px; top: -200px; left: 55%; }
.cta-band .hero-orb--b { width: 360px; height: 360px; bottom: -200px; left: -100px; }

.cta-band .eyebrow,
.error-page .eyebrow { color: var(--accent); }

.cta-inner { position: relative; z-index: 2; max-width: 760px; }
.cta-inner.center { margin-inline: auto; text-align: center; }
.cta-inner h2 { color: #fff; font-size: var(--step-4); }
.cta-inner p { color: var(--on-dark-muted); font-size: var(--step-1); margin-bottom: var(--s-4); }
.cta-inner.center .btn-group { justify-content: center; }

.cta-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--s-8);
  align-items: center;
}

/* ---------- 21. CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s-8); align-items: start; }

.info-list { display: grid; gap: var(--s-2); }

.info-item {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  padding: var(--s-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.info-item:hover { border-color: var(--primary); transform: translateY(-3px); }

/* standalone: works inside .info-item, .appt-help or anywhere else */
.ii-ico {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-050);
  color: var(--primary-700);
}

.ii-ico svg { width: 20px; height: 20px; }
.info-item h3 { font-size: 1rem; margin-bottom: 2px; }
.info-item p,
.info-item a { margin: 0; color: var(--muted); font-size: .9375rem; }
.info-item a { font-weight: 600; color: var(--primary-700); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.hours-table th,
.hours-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--border); }
.hours-table th { font-weight: 600; color: var(--heading); }
.hours-table td { color: var(--muted); text-align: right; }
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }

/* ---------- GoHighLevel embedded form ---------- */
.ghl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ghl-card-head {
  padding: var(--s-4) var(--s-4) var(--s-2);
  background: var(--grad-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ghl-card-head::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -140px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 203, .45) 0%, rgba(0, 194, 203, 0) 70%);
  pointer-events: none;
}

.ghl-card-head .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--accent);
  margin-bottom: var(--s-1);
}

.ghl-card-head .eyebrow::before { display: none; }
.ghl-card-head .eyebrow svg { width: 16px; height: 16px; }

.ghl-card-head h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: var(--step-2);
  margin-bottom: 8px;
}

.ghl-card-head p {
  position: relative;
  z-index: 1;
  color: var(--on-dark-muted);
  font-size: .9375rem;
  margin-bottom: var(--s-2);
}

/* the iframe resizes itself via form_embed.js; this is the floor while it loads */
.ghl-frame {
  position: relative;
  min-height: 560px;
  padding: var(--s-2);
  background: var(--surface);
}

/* visible loading state, covered by the iframe as soon as it paints */
.ghl-frame::before {
  content: "Loading the estimate form…";
  position: absolute;
  inset: var(--s-2);
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--surface-2);
  color: var(--muted);
  font-size: .875rem;
  letter-spacing: .02em;
}

.ghl-frame iframe { position: relative; z-index: 1; }

.ghl-frame iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  height: 100%;
  border: 0;
  border-radius: var(--r-md);
  background: var(--surface);
}

.ghl-card-foot {
  padding: var(--s-2) var(--s-4) var(--s-4);
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.ghl-card-foot p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: .8125rem;
  color: var(--muted);
}

.ghl-card-foot p + p { margin-top: 6px; }
.ghl-card-foot svg { width: 16px; height: 16px; color: var(--primary-600); flex: none; }
.ghl-card-foot a { font-weight: 700; }

.form-card {
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label { font-size: .875rem; font-weight: 700; color: var(--heading); }
.field label .req { color: #C0392B; }

.field input,
.field select,
.field textarea {
  padding: 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--card);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.field textarea { min-height: 148px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 194, 203, .16);
}

.field .error {
  font-size: .8125rem;
  color: #C0392B;
  min-height: 1em;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #C0392B; }
.field.has-error .error { display: block; }

.form-note { font-size: .8125rem; color: var(--muted); margin: var(--s-2) 0 0; }

.form-status {
  margin-top: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  background: var(--primary-050);
  border: 1px solid rgba(0, 194, 203, .35);
  color: var(--primary-700);
  font-weight: 600;
  font-size: .9375rem;
  display: none;
}

.form-status.is-visible { display: block; }

.widget-slot { margin-top: var(--s-4); min-height: 8px; }

.social-row { display: flex; gap: var(--s-1); }

.social-row a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--heading);
  transition: all var(--t-fast);
}

.social-row a:hover { background: var(--grad-aqua); border-color: transparent; color: #05262B; transform: translateY(-3px); }
.social-row svg { width: 20px; height: 20px; }

.site-footer .social-row a { border-color: rgba(234, 244, 246, .22); color: var(--on-dark); }
.site-footer .social-row a:hover { color: #05262B; }

/* ---------- 22. FOOTER ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--on-dark-muted);
  padding-top: var(--s-12);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 194, 203, .5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--s-6);
  padding-bottom: var(--s-8);
}

.site-footer h3 {
  color: #fff;
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer a { color: var(--on-dark-muted); font-size: .9375rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { font-size: .9375rem; }

.footer-brand { display: inline-flex; align-items: center; gap: 16px; margin-bottom: var(--s-3); }
.footer-brand img { width: 88px; height: 88px; border-radius: var(--r-lg); }
.footer-brand .brand-name { font-size: 1.625rem; }
.footer-brand .brand-sub { font-size: .75rem; }

.footer-contact { display: grid; gap: 12px; margin-top: var(--s-3); }
.footer-contact a,
.footer-contact span { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 3px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding-block: var(--s-3);
  border-top: 1px solid rgba(234, 244, 246, .1);
  font-size: .8125rem;
}

.footer-legal { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* agency credit */
.footer-credit {
  border-top: 1px solid rgba(234, 244, 246, .08);
  padding-block: var(--s-3);
  text-align: center;
}

.footer-credit p {
  margin: 0;
  font-size: .8125rem;
  letter-spacing: .02em;
  color: var(--silver);
}

.footer-credit a {
  color: var(--accent);
  font-weight: 700;
  font-size: .8125rem;
  border-bottom: 1px solid rgba(127, 231, 236, .35);
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.footer-credit a:hover { color: #fff; border-color: #fff; }

/* ---------- 23. UTILITIES ---------- */
.center { text-align: center; }
.mt-1 { margin-top: var(--s-1); }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: var(--s-3); }
.mb-6 { margin-bottom: var(--s-6); }
.mx-auto { margin-inline: auto; }
.maxw-60 { max-width: 60ch; }
.text-muted { color: var(--muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.divider { height: 1px; background: var(--border); border: 0; margin-block: var(--s-6); }

.back-to-top {
  position: fixed;
  right: var(--s-3);
  bottom: var(--s-3);
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--grad-aqua);
  color: #05262B;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* 404 */
.error-page { min-height: 100vh; display: grid; place-items: center; background: var(--grad-ink); color: var(--on-dark); text-align: center; padding: calc(var(--header-h) + var(--s-8)) var(--s-3) var(--s-8); position: relative; overflow: hidden; }
.error-page h1 { color: #fff; }
.error-page > .container > p { color: var(--on-dark-muted); }
.error-page .card h3 { color: var(--heading); }

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 14rem);
  line-height: .85;
  font-weight: 700;
  letter-spacing: -.04em;
  background: var(--grad-ice);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-body { font-size: 1.0625rem; }
.legal-body h2 { font-size: var(--step-2); margin-top: var(--s-6); }
.legal-body h3 { font-size: var(--step-1); margin-top: var(--s-4); }
.legal-body ul { margin-bottom: var(--s-3); }
