/* ========== SOUTH COAST — Pressure Washing site ========== */
:root {
  /* Palette is driven by data-palette attribute on <html> */
  --bg: #ffffff;
  --bg-2: #f5f7fa;
  --bg-3: #e9eef4;
  --ink: #0a1726;
  --ink-2: #334155;
  --ink-3: #64748b;
  --line: rgba(10, 23, 38, 0.10);
  --line-strong: rgba(10, 23, 38, 0.18);
  --brand: #0A2540;
  --brand-deep: #061528;
  --brand-soft: #102b4a;
  --accent: #FACC15;
  --accent-ink: #1a1304;
  --hero-tint: rgba(10, 37, 64, 0.65);
  --shadow-sm: 0 1px 2px rgba(10, 23, 38, 0.06), 0 1px 1px rgba(10, 23, 38, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(10, 23, 38, 0.18), 0 4px 10px -4px rgba(10, 23, 38, 0.10);
  --shadow-lg: 0 30px 60px -20px rgba(10, 23, 38, 0.28), 0 12px 28px -8px rgba(10, 23, 38, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --h-font: "Sora", system-ui, sans-serif;
  --b-font: "Sora", system-ui, sans-serif;
  --h-weight: 700;
  --h-tracking: -0.02em;
}

/* ---- Palettes ---- */
html[data-palette="navy"] {
  --brand: #0A2540;
  --brand-deep: #051426;
  --brand-soft: #14365e;
  --accent: #FACC15;
  --accent-ink: #1a1304;
}

html[data-palette="teal"] {
  --brand: #0F4C46;
  --brand-deep: #08312D;
  --brand-soft: #186B62;
  --accent: #FB923C;
  --accent-ink: #2a1402;
}

html[data-palette="ink"] {
  --brand: #0e0f11;
  --brand-deep: #050506;
  --brand-soft: #1f2125;
  --accent: #C6F24E;
  --accent-ink: #142202;
}

html[data-palette="royal"] {
  --brand: #1E3FE0;
  --brand-deep: #0e2099;
  --brand-soft: #335cf3;
  --accent: #FFD60A;
  --accent-ink: #1d1700;
}

html[data-palette="moss"] {
  --brand: #1F3C2E;
  --brand-deep: #122318;
  --brand-soft: #2C5742;
  --accent: #E8E34A;
  --accent-ink: #1b1b04;
}

/* ---- Dark mode ---- */
html[data-mode="dark"] {
  --bg: #0a0e15;
  --bg-2: #0f141d;
  --bg-3: #161c28;
  --ink: #f1f5f9;
  --ink-2: #cbd5e1;
  --ink-3: #94a3b8;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
}

html[data-mode="dark"][data-palette="navy"] {
  --brand: #0e2c4f;
  --brand-soft: #1b4170;
}

/* ---- Fonts (display) ---- */
html[data-font="sora"] {
  --h-font: "Sora", system-ui, sans-serif;
  --b-font: "Sora", system-ui, sans-serif;
}

html[data-font="archivo"] {
  --h-font: "Archivo", system-ui, sans-serif;
  --b-font: "Archivo", system-ui, sans-serif;
}

html[data-font="grotesk"] {
  --h-font: "Space Grotesk", system-ui, sans-serif;
  --b-font: "Space Grotesk", system-ui, sans-serif;
}

html[data-font="manrope"] {
  --h-font: "Manrope", system-ui, sans-serif;
  --b-font: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Belt: clip rogue full-bleed elements at the viewport edge. Uses `clip`
   rather than `hidden` so position:sticky descendants keep working. */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

body {
  font-family: var(--b-font), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga";
  word-spacing: normal;
  letter-spacing: normal;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--h-font);
  font-weight: var(--h-weight);
  letter-spacing: var(--h-tracking);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p {
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ========== TOP BAR ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  /* Solid background — backdrop-filter was forcing a full-viewport repaint
     on every scroll frame, which made the page feel sluggish. */
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.topbar-promo {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.topbar-promo .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-promo b {
  color: var(--accent);
  font-weight: 600;
}

.topbar-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
}

.brand-wm {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--h-font);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.05em;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 55%, transparent), transparent);
  filter: blur(8px);
}

.brand-name {
  font-family: var(--h-font);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
  line-height: 1;
}

.brand-name small {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.burger svg {
  width: 20px;
  height: 20px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 18px -4px color-mix(in oklab, var(--accent) 60%, transparent);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px -6px color-mix(in oklab, var(--accent) 70%, transparent);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--brand-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-lg {
  height: 56px;
  padding: 0 28px;
  font-size: 16px;
}

.btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}

/* Variant: SPLIT (default) */
.hero.split {
  padding: clamp(36px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
}

.hero.split .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  border: 1px solid color-mix(in oklab, var(--brand) 18%, transparent);
}

html[data-mode="dark"] .hero-eyebrow {
  background: color-mix(in oklab, var(--brand) 35%, transparent);
  color: #fff;
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 0.96;
  margin: 22px 0 18px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero h1 .hl {
  display: inline-block;
  position: relative;
  color: var(--brand);
  background: linear-gradient(180deg, transparent 62%, color-mix(in oklab, var(--accent) 75%, transparent) 62%);
  padding: 0 4px;
}

html[data-mode="dark"] .hero h1 .hl {
  color: var(--accent);
  background: none;
}

.hero p.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 13px;
}

.hero-trust .stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}

.hero-trust .stars b {
  font-weight: 700;
}

.hero-trust .stars .star {
  color: #FFB400;
}

.hero-trust .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.hero-art {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #102b4a;
}

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

.hero-art .badge-card {
  position: absolute;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}

.hero-art .badge-card.tl {
  top: 22px;
  left: 22px;
}

.hero-art .badge-card.br {
  bottom: 22px;
  right: 22px;
}

.hero-art .badge-card .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.hero-art .badge-card .lbl {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-art .badge-card .val {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* Variant: FULLBLEED */
.hero.fullbleed {
  padding: 0;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.hero.fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 38, 0.15) 0%, rgba(10, 23, 38, 0.85) 88%);
  z-index: 1;
}

.hero.fullbleed .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero.fullbleed .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero.fullbleed h1,
.hero.fullbleed p.lede {
  color: #fff;
}

.hero.fullbleed p.lede {
  color: rgba(255, 255, 255, 0.85);
}

.hero.fullbleed .hero-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero.fullbleed .hero-trust {
  color: rgba(255, 255, 255, 0.7);
}

.hero.fullbleed .hero-trust .stars {
  color: #fff;
}

.hero.fullbleed .hero-art {
  display: none;
}

.hero.fullbleed .container {
  display: block;
}

.hero.fullbleed .fullbleed-meta {
  position: absolute;
  right: var(--gutter);
  top: 120px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.hero.fullbleed .fullbleed-meta .badge-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Variant: SPLIT-SLIDER — the before/after slider IS the hero art */
.hero.slider-hero .hero-art {
  padding: 0;
  background: #000;
}

.hero.slider-hero .hero-art .ba {
  border-radius: 0;
}

/* ========== TRUST BAR ========== */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.trustbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.trustbar .item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trustbar .item svg {
  width: 28px;
  height: 28px;
  color: var(--brand);
  flex-shrink: 0;
}

html[data-mode="dark"] .trustbar .item svg {
  color: var(--accent);
}

.trustbar .item .ti {
  font-weight: 700;
  font-size: 15px;
}

.trustbar .item .ts {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ========== SECTIONS ========== */
section.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}

section.tinted {
  background: var(--bg-2);
}

section.dark {
  background: var(--brand);
  color: #fff;
}

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

section.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

html[data-mode="dark"] .section-head .eyebrow {
  color: var(--accent);
}

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

.section-head .eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  max-width: 18ch;
}

.section-head .lede {
  max-width: 46ch;
}

/* ========== SERVICES GRID ========== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.svc-card .photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.svc-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.svc-card:hover .photo img {
  transform: scale(1.06);
}

.svc-card .photo .num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  font-feature-settings: "tnum";
}

.svc-card .photo .price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svc-card .photo .price b {
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: block;
  font-weight: 700;
}

.svc-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-card .body h3 {
  font-size: 22px;
  line-height: 1.15;
}

.svc-card .body p {
  font-size: 14px;
}

.svc-card .body .more {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.svc-card .body .more svg {
  transition: transform .2s ease;
}

.svc-card:hover .body .more svg {
  transform: translateX(3px);
}

/* ========== BEFORE/AFTER ========== */
.ba {
  position: relative;
  user-select: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: #000;
}

.ba .layer {
  position: absolute;
  inset: 0;
}

.ba .layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba .layer.after {
  clip-path: inset(0 0 0 var(--pct, 50%));
}

.ba .label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.ba .label.before {
  left: 16px;
}

.ba .label.after {
  right: 16px;
  background: var(--accent);
  color: var(--accent-ink);
}

.ba .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pct, 50%);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.ba .handle .knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--brand);
}

.ba .handle .knob svg {
  width: 18px;
  height: 18px;
}

/* Hover-to-reveal variant */
.ba.hover-mode .layer.after {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .6s cubic-bezier(.4, 0, .2, 1);
}

.ba.hover-mode:hover .layer.after {
  clip-path: inset(0 0 0 0);
}

.ba.hover-mode .handle {
  display: none;
}

.ba.hover-mode .hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Side-by-side variant */
.ba.side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 16/6;
  background: transparent;
}

.ba.side .layer {
  position: relative;
}

.ba.side .layer img {
  border-radius: var(--radius);
}

.ba.side .layer.after {
  clip-path: none;
}

.ba.side .handle {
  display: none;
}

.ba.side .label.before {
  left: 8px;
  top: 8px;
}

.ba.side .label.after {
  left: 8px;
  right: auto;
  top: 8px;
}

/* Gallery */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-gallery .ba-item h4 {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
}

.ba-gallery .ba-item .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ba-gallery .ba-item .loc {
  font-size: 13px;
  color: var(--ink-3);
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.step .num {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--h-font);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  position: relative;
}

.step .num .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
}

.step p {
  font-size: 14px;
}

section.tinted .step .num {
  background: var(--bg);
}

/* ========== TESTIMONIALS ========== */
.tmnls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tm {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tm .qmark {
  font-family: var(--h-font);
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent);
  font-weight: 800;
}

.tm .quote {
  font-family: var(--h-font);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.tm .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}

.tm .name {
  font-weight: 700;
  font-size: 14px;
}

.tm .loc {
  font-size: 12px;
  color: var(--ink-3);
}

.tm .stars {
  color: #FFB400;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ========== ABOUT INTRO ========== */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-intro .photo {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-intro .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro .photo .ribbon {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: var(--bg);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-intro .photo .ribbon .num {
  font-family: var(--h-font);
  font-weight: 800;
  font-size: 32px;
  color: var(--brand);
  line-height: 1;
}

.about-intro h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.about-intro ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.about-intro ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}

.about-intro ul li svg {
  color: var(--brand);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

html[data-mode="dark"] .about-intro ul li svg {
  color: var(--accent);
}

/* ========== FINAL CTA ========== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 40%, transparent), transparent);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.05;
  max-width: 22ch;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  max-width: 50ch;
}

.cta-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ========== FOOTER ========== */
footer.site {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

footer.site .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

footer.site h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

footer.site a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

footer.site a:hover {
  color: #fff;
}

footer.site .brand-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32ch;
  margin-top: 14px;
}

footer.site .brand-mark {
  background: rgba(255, 255, 255, 0.08);
}

footer.site .legal {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

footer.site .social {
  display: flex;
  gap: 10px;
}

footer.site .social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  padding: 0;
}

footer.site .social a:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

footer.site .social svg {
  width: 16px;
  height: 16px;
}

/* ========== PAGE HERO (light, used on all sub-pages) ========== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: radial-gradient(color-mix(in oklab, var(--brand) 14%, transparent) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
}

.page-hero .container {
  position: relative;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
}

.crumbs a {
  color: var(--ink-2);
}

.crumbs a:hover {
  color: var(--brand);
}

.crumbs span.sep {
  opacity: 0.5;
}

.page-hero h1,
.page-hero .page-title {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  max-width: 18ch;
  font-weight: 800;
  font-family: var(--h-font);
  margin: 0;
}

.page-hero p.lede,
.page-hero .lede {
  color: var(--ink-2);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 56ch;
  margin-top: 20px;
  line-height: 1.55;
}

.page-hero .actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

html[data-mode="dark"] .page-hero {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}

html[data-mode="dark"] .page-hero h1,
html[data-mode="dark"] .page-hero .page-title {
  color: var(--ink);
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}

.svc-block:last-of-type {
  border-bottom: none;
}

.svc-block.flip .text {
  order: 2;
}

.svc-block .photo {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.svc-block .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-block .photo .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svc-block .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.svc-block .eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

html[data-mode="dark"] .svc-block .eyebrow {
  color: var(--accent);
}

.svc-block h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.svc-block p {
  font-size: 15px;
  margin-bottom: 14px;
  max-width: 56ch;
}

.svc-block .includes {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
}

.svc-block .includes b {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.svc-block .includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}

.svc-block .includes ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
}

.svc-block .includes ul li svg {
  color: var(--brand);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

html[data-mode="dark"] .svc-block .includes ul li svg {
  color: var(--accent);
}

.svc-block .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.svc-block .svc-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-3);
  margin: 4px 0 18px;
  flex-wrap: wrap;
}
.svc-block .svc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-block .svc-meta svg {
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.why-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

html[data-mode="dark"] .why-card .ico {
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  color: var(--accent);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
}

/* ========== SERVICES LANDING — dark hero ==========
   The hero template uses inline color:#fff on the eyebrow, current
   breadcrumb label, and the ghost CTA — designed for a dark surface.
   Force the hero dark on the services landing so those elements read. */
.services-landing .page-hero {
  background: var(--brand-deep);
  color: #fff;
  border-bottom: 0;
}
.services-landing .page-hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  opacity: 0.7;
}
.services-landing .page-hero h1,
.services-landing .page-hero .page-title {
  color: #fff;
}
.services-landing .page-hero p.lede,
.services-landing .page-hero .lede {
  color: rgba(255, 255, 255, 0.78);
}
.services-landing .page-hero .crumbs,
.services-landing .page-hero .crumbs a {
  color: rgba(255, 255, 255, 0.7);
}
.services-landing .page-hero .crumbs a:hover {
  color: #fff;
}

/* ========== SERVICES LANDING — overflow guards ==========
   Grid children get min-width:0 so a wide image/word can't force the
   track wider than 1fr; long words wrap instead of horizontally
   scrolling the page. */
.services-landing .svc-block > .photo,
.services-landing .svc-block > .text,
.services-landing .section-head > * {
  min-width: 0;
}
.services-landing .svc-block .photo {
  max-width: 100%;
  box-sizing: border-box;
}
.services-landing .svc-block .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-landing .page-hero h1,
.services-landing .page-hero .page-title,
.services-landing .svc-block h2,
.services-landing .svc-block p,
.services-landing .svc-block .includes ul li,
.services-landing .why-card h4,
.services-landing .why-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.services-landing .crumbs {
  flex-wrap: wrap;
  min-width: 0;
}
.services-landing .crumbs > * {
  min-width: 0;
}

/* ========== SERVICES LANDING — intro band ========== */
.svc-intro {
  padding-top: 64px;
  padding-bottom: 24px;
}
.svc-intro-inner {
  max-width: 880px;
  text-align: center;
}
.svc-intro-kicker {
  justify-content: center;
  display: inline-flex;
}
.svc-intro-h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 12px 0 18px;
}
.svc-intro-copy {
  font-size: 17px;
  max-width: 58ch;
  margin: 0 auto;
}

/* ========== SERVICES LANDING — responsive ========== */

/* Tablet — stop the section-head from being a 2-column row */
@media (max-width: 900px) {
  .services-landing .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 36px;
  }
  .services-landing .section-head .lede {
    max-width: 60ch;
  }

  .svc-block {
    padding: clamp(40px, 8vw, 64px) 0;
    gap: 28px;
  }
  .svc-block .photo {
    aspect-ratio: 4/3;
  }
  .svc-block h2 {
    font-size: clamp(26px, 5.4vw, 38px);
  }
}

/* Phone — tighten layout, stack pairs, full-width CTAs */
@media (max-width: 640px) {
  .page-hero {
    padding: clamp(64px, 14vw, 96px) 0 clamp(48px, 10vw, 72px);
  }
  .page-hero h1,
  .page-hero .page-title {
    font-size: clamp(34px, 9vw, 52px);
    max-width: 100%;
  }
  .page-hero p.lede,
  .page-hero .lede {
    font-size: 16px;
  }
  .page-hero .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .page-hero .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .crumbs {
    font-size: 12px;
    gap: 8px;
    flex-wrap: wrap;
  }

  /* Intro band tightens up */
  .svc-intro {
    padding-top: 40px;
    padding-bottom: 8px;
  }
  .svc-intro-h2 {
    font-size: clamp(24px, 6.5vw, 32px);
    margin: 10px 0 14px;
  }
  .svc-intro-copy {
    font-size: 15px;
  }

  .svc-block {
    padding: 40px 0;
    gap: 22px;
    border-bottom-width: 1px;
  }
  .svc-block .photo {
    aspect-ratio: 16/11;
    border-radius: var(--radius);
  }
  .svc-block .photo .badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 11px;
  }
  .svc-block .eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .svc-block h2 {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.1;
  }
  .svc-block p {
    font-size: 15px;
  }
  .svc-block .includes {
    padding: 14px 16px;
    margin: 18px 0;
  }
  .svc-block .includes ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .svc-block .svc-meta {
    gap: 12px;
    font-size: 12px;
  }
  .svc-block .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .svc-block .actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Why-us — full single column with tighter padding */
  .why-grid {
    gap: 14px;
  }
  .why-card {
    padding: 22px 20px;
  }
  .why-card .ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .why-card h4 {
    font-size: 17px;
  }
}

/* Very small phones — single-column why-grid kicks in earlier
   via the existing global @media (max-width: 640px) rule */
@media (max-width: 380px) {
  .page-hero h1,
  .page-hero .page-title {
    font-size: 30px;
  }
  .svc-block h2 {
    font-size: 22px;
  }
  .why-card {
    padding: 18px;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.info-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.info-card .lbl {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-card .val {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.info-card .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
}

.info-card.phone .val {
  font-size: 28px;
}

.info-card.map {
  padding: 0;
  overflow: hidden;
}

.info-card.map .map-frame {
  aspect-ratio: 16/9;
  background: var(--bg-2);
  position: relative;
}

.info-card.map .map-frame svg {
  width: 100%;
  height: 100%;
}

.info-card.map .map-foot {
  padding: 16px 20px;
}

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}

.form h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.form .form-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field label .req {
  color: #dc2626;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--bg);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 18%, transparent);
}

.input.err,
.select.err,
.textarea.err {
  border-color: #dc2626;
  background: color-mix(in oklab, #dc2626 6%, var(--bg-2));
}

.field .err-msg {
  font-size: 12px;
  color: #dc2626;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}

.svc-pill:hover {
  border-color: var(--ink);
}

.svc-pill.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.honey {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 8px;
}

.form-footer .priv {
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-success {
  background: color-mix(in oklab, #16a34a 8%, var(--bg));
  border: 1px solid color-mix(in oklab, #16a34a 30%, transparent);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.form-success .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-success h4 {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}

.form-success p {
  color: var(--ink-2);
  font-size: 14px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq .q {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq .q.open {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.faq .q summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--h-font);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq .q summary::-webkit-details-marker {
  display: none;
}

.faq .q .chev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq .q.open .chev {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--accent-ink);
}

.faq .q .a {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== MOBILE PREVIEW ========== */
.mp-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-md);
}

.mp-toggle button {
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mp-toggle button.active {
  background: var(--brand);
  color: #fff;
}

.mp-toggle button svg {
  width: 14px;
  height: 14px;
}

body.mobile-preview {
  background: linear-gradient(180deg, #1a1f2a, #0a0e15);
  overflow: hidden;
  min-height: 100vh;
}

body.mobile-preview .site-shell {
  width: 390px;
  margin: 32px auto 24px;
  height: calc(100vh - 64px);
  border-radius: 44px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 0 0 12px #111, 0 0 0 13px #333;
  position: relative;
}

body.mobile-preview .site-shell .scroller {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.mobile-preview .site-shell .scroller::-webkit-scrollbar {
  width: 0;
}

body.mobile-preview .site-shell::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 100;
}

body.mobile-preview {
  --maxw: 100%;
}

body.mobile-preview .site-shell .nav-links,
body.mobile-preview .site-shell .nav-cta .btn:not(.btn-primary) {
  display: none;
}

body.mobile-preview .site-shell .burger {
  display: inline-flex;
}

body.mobile-preview .site-shell .hero.split .container,
body.mobile-preview .site-shell .about-intro,
body.mobile-preview .site-shell .svc-block,
body.mobile-preview .site-shell .contact-grid,
body.mobile-preview .site-shell .cta-banner {
  grid-template-columns: 1fr !important;
}

body.mobile-preview .site-shell .services,
body.mobile-preview .site-shell .why-grid,
body.mobile-preview .site-shell .tmnls,
body.mobile-preview .site-shell .steps,
body.mobile-preview .site-shell .trustbar .container,
body.mobile-preview .site-shell footer.site .row,
body.mobile-preview .site-shell .form-row,
body.mobile-preview .site-shell .ba-gallery {
  grid-template-columns: 1fr !important;
}

body.mobile-preview .site-shell .steps::before {
  display: none;
}

body.mobile-preview .site-shell .hero h1 {
  font-size: 44px;
}

body.mobile-preview .site-shell .page-hero h1 {
  font-size: 40px;
}

body.mobile-preview .site-shell .section-head {
  grid-template-columns: 1fr;
}

body.mobile-preview .site-shell .topbar-promo {
  display: none;
}

body.mobile-preview .site-shell .svc-block.flip .text {
  order: 0;
}

body.mobile-preview .site-shell .hero-art {
  aspect-ratio: 4/5;
}

/* ========== Responsive (when NOT in mobile preview, real responsive) ========== */
@media (max-width: 1024px) {

  .services,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tmnls {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero.split .container,
  .about-intro,
  .svc-block,
  .contact-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .svc-block.flip .text {
    order: 0;
  }

  footer.site .row {
    grid-template-columns: 1fr 1fr;
  }

  .ba-gallery {
    grid-template-columns: 1fr;
  }

  .trustbar .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .services,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar-promo {
    display: none;
  }

  footer.site .row {
    grid-template-columns: 1fr;
  }

  .trustbar .container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 44px;
  }
}

/* Page transitions */
.page-fade {
  animation: pageFade .35s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tweaks hide by default - panel itself handles */

/* ============================================================
   WordPress theme additions — page templates, footer, forms, etc.
   ============================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Page-hero eyebrow + search (sub-page heroes) */
.page-hero.compact {
  padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

html[data-mode="dark"] .page-hero .eyebrow {
  color: var(--accent);
}

.page-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.page-hero-search {
  margin-top: 22px;
  max-width: 480px;
}

.post-meta {
  display: flex;
  gap: 10px;
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 16px;
}

/* Generic prose */
.page-prose {
  max-width: 70ch;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}

.page-prose h2,
.page-prose h3,
.page-prose h4 {
  color: var(--ink);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.page-prose h2 {
  font-size: 28px;
}

.page-prose h3 {
  font-size: 22px;
}

.page-prose p {
  margin: 0.8em 0;
}

.page-prose ul,
.page-prose ol {
  padding-left: 1.2em;
  margin: 0.8em 0;
}

.page-prose li {
  margin: 0.25em 0;
}

.page-prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

html[data-mode="dark"] .page-prose a {
  color: var(--accent);
}

.page-prose img {
  border-radius: var(--radius);
  margin: 1em 0;
}

.page-prose blockquote {
  border-left: 4px solid var(--accent);
  padding: 8px 18px;
  margin: 1em 0;
  font-style: italic;
  color: var(--ink);
  background: var(--bg-2);
  border-radius: 0 12px 12px 0;
}

.page-prose code {
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}

.page-prose pre {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 16px;
  overflow-x: auto;
}

.page-thumb {
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post grid (blog/archive/search) */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.post-card-thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post-card-body .eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.post-card-body h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: var(--h-font);
  margin: 0;
}

.post-card-body h3 a {
  color: var(--ink);
}

.post-card-body p {
  color: var(--ink-2);
  font-size: 14px;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
}

.post-card-meta .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
}

/* Pagination */
.sc-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.sc-pagination ul {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.sc-pagination a,
.sc-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.sc-pagination a:hover {
  border-color: var(--ink);
}

.sc-pagination .current {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
}

.mobile-drawer[hidden] {
  display: none;
}

.mobile-drawer.open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(10, 23, 38, 0.85);
  z-index: 70;
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: var(--bg);
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 14px 6px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-cta {
  width: 100%;
}

.hidden-mobile {
  display: inline-flex;
}

@media (max-width: 900px) {
  .hidden-mobile {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }
}

/* Mode toggle */
.mode-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  position: relative;
}

.mode-toggle:hover {
  border-color: var(--ink);
}

.mode-toggle .moon {
  display: none;
}

html[data-mode="dark"] .mode-toggle .sun {
  display: none;
}

html[data-mode="dark"] .mode-toggle .moon {
  display: inline-block;
}

/* Site footer */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
  margin-top: 0px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col .brand-mark {
  background: var(--accent);
  color: var(--brand);
}

.footer-col .brand-name,
.footer-col .brand-name small {
  color: #fff;
}

.footer-col .brand-name small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}

.footer-title {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li,
.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.footer-list svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.footer-bar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* 404 page */
.section-404 {
  padding: clamp(80px, 12vw, 160px) 0;
}

.four-oh-four {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.four-oh-four-num {
  font-family: var(--h-font);
  font-weight: 800;
  font-size: clamp(120px, 22vw, 240px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.four-oh-four-num .droplet {
  color: var(--accent);
  transform: rotate(-10deg);
  display: inline-grid;
  place-items: center;
}

.four-oh-four-num .droplet svg {
  width: 0.5em;
  height: 0.5em;
}

.four-oh-four .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.four-oh-four .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

html[data-mode="dark"] .four-oh-four .eyebrow {
  color: var(--accent);
}

.four-oh-four-search {
  max-width: 480px;
  margin: 36px auto 0;
}

.four-oh-four-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.four-oh-four-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.four-oh-four-links h4 {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.four-oh-four-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.four-oh-four-links a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html[data-mode="dark"] .four-oh-four-links a {
  color: var(--accent);
}

/* Search form */
.search-form {
  display: flex;
  gap: 8px;
}

.search-form input[type="search"] {
  flex: 1;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--ink);
}

/* Service block (services page) */
.service-blocks .service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}

.service-blocks .service-block:last-child {
  border-bottom: none;
}

.service-blocks .service-block.flip .service-block-media {
  order: 2;
}

.service-block-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--bg-3);
  box-shadow: var(--shadow-lg);
}

.service-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-price-chip {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--h-font);
}

.service-block-body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.service-block-body .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

html[data-mode="dark"] .service-block-body .eyebrow {
  color: var(--accent);
}

.service-block-body .lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  margin-top: 16px;
  line-height: 1.55;
}

.service-block-content {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

.service-block-content p {
  margin: 0.7em 0;
}

.service-included-title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.service-block-body .btn {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .service-blocks .service-block {
    grid-template-columns: 1fr;
  }

  .service-blocks .service-block.flip .service-block-media {
    order: 0;
  }
}

.service-included {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-included h3 {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  margin-top: 32px;
  border: 1px solid var(--line);
}

.service-price-card .price {
  font-family: var(--h-font);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 6px 0;
}

.service-price-card small {
  display: block;
  color: var(--ink-3);
  font-size: 13px;
}

@media (max-width: 640px) {
  .service-price-card {
    grid-template-columns: 1fr;
  }
}

/* Why-choose grid */
.why-choose {
  padding-top: 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.why-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.why-card h4 {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* Contact section */
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

@media (min-width: 901px) {
  .contact-section .contact-info {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

@media (max-width: 900px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h3 {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color .25s ease, transform .15s ease;
  color: inherit;
}

.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.contact-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card .t {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-card .v {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.contact-map {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--h-font);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.contact-form .form-lede {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 22px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form .field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 12%, transparent);
}

.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .contact-form .field-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .field.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form .pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-form .pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form .pill span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .2s ease;
}

.contact-form .pill input:checked+span {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.contact-form .pill span:hover {
  border-color: var(--ink);
}

.contact-form .field.error input,
.contact-form .field.error textarea {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}

.contact-form .sc-submit {
  margin-top: 8px;
  min-width: 200px;
}

.contact-form .form-feedback {
  margin-top: 14px;
  min-height: 22px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form .form-feedback.success {
  color: #15803d;
}

.contact-form .form-feedback.error {
  color: #be123c;
}

.contact-form.success {
  text-align: center;
  padding: 40px 20px;
}

.form-trust {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ========== CONTACT PAGE — phone responsive ========== */
@media (max-width: 640px) {
  .contact-section {
    padding: clamp(36px, 8vw, 56px) 0;
  }
  .contact-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .contact-card {
    padding: 14px 14px;
    gap: 12px;
    margin-bottom: 10px;
  }
  .contact-card .ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .contact-card .t {
    font-size: 11px;
  }
  .contact-card .v {
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .contact-map {
    aspect-ratio: 4/3;
    margin-top: 14px;
  }
  .contact-form-wrap {
    padding: 22px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }
  .contact-form h3 {
    font-size: 22px;
  }
  .contact-form .form-lede {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .contact-form .field {
    margin-bottom: 12px;
  }
  .contact-form .field input,
  .contact-form .field textarea {
    padding: 12px 14px;
    font-size: 16px; /* 16px keeps iOS Safari from zooming on focus */
  }
  .contact-form .field-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .contact-form .pill span {
    font-size: 13px;
    padding: 8px 12px;
  }
  .contact-form .sc-submit {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ accordion */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 36px auto 0;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .q {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 18px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.faq-item summary .ico-open,
.faq-item summary .ico-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  place-items: center;
  flex-shrink: 0;
  background: var(--bg-2);
  color: var(--ink);
  transition: background .2s ease;
}

.faq-item summary .ico-open {
  display: grid !important;
}

.faq-item summary .ico-close {
  display: none !important;
  background: var(--ink);
  color: var(--bg);
}

.faq-item summary:hover .ico-open {
  background: var(--accent);
  color: var(--accent-ink);
}

.faq-item[open]>summary .ico-open {
  display: none !important;
}

.faq-item[open]>summary .ico-close {
  display: grid !important;
}

.faq-item .answer {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

/* Reveal animation hook */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stat counter — give immediate space to avoid layout shift */
.stat-num {
  font-variant-numeric: tabular-nums;
}

/* Comments */
.sc-comments {
  max-width: 70ch;
  margin: 64px auto 0;
}

.comments-title {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
}

.comment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comment-list .comment-body {
  padding: 18px 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
}

.comment-form .comment-form-cookies-consent {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
}

.post-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.post-nav a {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--h-font);
}

/* Single project before/after */
.ba.ba-single {
  aspect-ratio: 16/10;
  max-width: 100%;
  border-radius: var(--radius-lg);
}

.ba-loc {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Service link card override for archive */
.v2-svc-link {
  color: inherit;
  text-decoration: none;
}

/* No-results */
.no-results {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
}

.no-results .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.no-results .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.no-results h2 {
  font-family: var(--h-font);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.no-results p {
  color: var(--ink-2);
  margin-bottom: 24px;
}

.no-results-search {
  max-width: 400px;
  margin: 0 auto 22px;
}

/* Generic sections fallback (some old class names from styles.css already cover; this is just safety) */
.section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section.tinted {
  background: var(--bg-2);
}

.section.dark {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.85);
}

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

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
  }
}

.section-head .lede {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 52ch;
}

/* Generic eyebrow used across sections */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

html[data-mode="dark"] .eyebrow {
  color: var(--accent);
}

/* Lede */
.lede {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-2);
  line-height: 1.6;
}

/* BA fallback (the v2-tile already has .ba styles in styles.css but ensure cursor + handle visibility) */
.ba {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  cursor: ew-resize;
  user-select: none;
}

.ba .layer {
  position: absolute;
  inset: 0;
}

.ba .layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba .layer.after {
  clip-path: inset(0 0 0 var(--pct, 50%));
}

.ba .label {
  position: absolute;
  top: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
}

.ba .label.before {
  left: 12px;
}

.ba .label.after {
  right: 12px;
  background: var(--accent);
  color: var(--accent-ink);
}

.ba .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  left: var(--pct, 50%);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.ba .knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

/* CTA dark ghost variant */
.cta-ghost-dark {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.cta-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
}

/* Footer in dark mode */
html[data-mode="dark"] .site-footer {
  background: #04080d;
}

/* ============================================================
   FIXES — wp_nav_menu output, breakpoints, footer polish
   ============================================================ */

/* wp_nav_menu emits a <ul class="nav-list"> inside <nav class="nav-links">.
   Reset list defaults and flex the actual list. */
.nav-links ul,
.nav-links .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links ul li,
.nav-links .nav-list li {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.nav-links ul a,
.nav-links .nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 0;
  display: inline-block;
  position: relative;
}

.nav-links ul a:hover,
.nav-links .nav-list a:hover {
  color: var(--ink);
}

.nav-links .current-menu-item>a,
.nav-links .current_page_item>a {
  color: var(--ink);
  font-weight: 600;
}

.nav-links .current-menu-item>a::after,
.nav-links .current_page_item>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Sub-menus */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 80;
}

.nav-links li:hover>.sub-menu,
.nav-links li:focus-within>.sub-menu {
  display: flex;
}

.nav-links .sub-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.nav-links .sub-menu a:hover {
  background: var(--bg-2);
}

/* Unify breakpoint: nav hides + burger shows at the SAME width as topbar-main wraps. */
@media (max-width: 980px) {
  .nav-links {
    display: none !important;
  }

  .burger {
    display: inline-flex !important;
  }

  .hidden-mobile {
    display: none !important;
  }
}

/* Mobile nav menu (wp_nav_menu inside drawer) */
.mobile-drawer .mobile-nav,
.mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer .mobile-nav li,
.mobile-drawer ul li {
  list-style: none;
}

.mobile-drawer .mobile-nav a,
.mobile-drawer ul a {
  display: block;
  padding: 14px 6px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.mobile-drawer .sub-menu {
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  margin: 4px 0 4px 6px;
}

.mobile-drawer .sub-menu a {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 6px;
  border-bottom: 1px dashed var(--line);
}

/* Burger button — make sure it's visible and styled on mobile */
.burger {
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.burger:hover {
  border-color: var(--ink);
}

/* Topbar promo hides below 720px instead of 640 — feels cleaner */
@media (max-width: 720px) {
  .topbar-promo {
    display: none;
  }

  .topbar-main .container {
    height: 64px;
    gap: 12px;
  }

  .brand-name small {
    display: none;
  }
}

/* Ensure mobile drawer is correctly hidden when JS hasn't fired */
.mobile-drawer:not(.open) {
  display: none;
}

.mobile-drawer.open {
  display: block;
}

/* Footer polish — bigger contrast, better stacking on mobile, ensure SVG icon alignment */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-grid {
  padding-bottom: 8px;
}

.footer-col h4.footer-title {
  color: var(--accent);
  margin-top: 0;
}

.footer-col .brand-wm {
  cursor: default;
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list li {
  list-style: none;
}

.footer-list svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 36px 0 20px;
  }
}

/* Topbar promo content alignment on link */
.topbar-promo a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.topbar-promo a:hover {
  color: var(--accent);
}

/* Brand link inherits ink color */
.brand-wm {
  color: var(--ink);
  text-decoration: none;
}

/* ===== Custom-logo constraints =====
 * WordPress emits <a class="custom-logo-link"><img class="custom-logo"></a> at the
 * image's intrinsic dimensions (we use flex-height/width). Clamp it everywhere.
 */
.brand-wm.has-logo {
  display: inline-flex;
  align-items: center;
  max-height: 100%;
}

.brand-wm .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.brand-wm img.custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 220px;
  object-fit: contain;
}

/* Footer: dark background, give the logo a soft card so a light/transparent logo stays legible. */
.site-footer .footer-brand .custom-logo-link {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.site-footer .footer-brand img.custom-logo {
  max-height: 56px;
  max-width: 220px;
}

/* Tablet */
@media (max-width: 900px) {
  .brand-wm img.custom-logo {
    max-height: 42px;
    max-width: 180px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .brand-wm img.custom-logo {
    max-height: 36px;
    max-width: 150px;
  }

  .site-footer .footer-brand img.custom-logo {
    max-height: 48px;
    max-width: 180px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .brand-wm img.custom-logo {
    max-height: 32px;
    max-width: 130px;
  }
}

/* Logged-in admin bar — push the sticky topbar down so it doesn't overlap */
.admin-bar .topbar {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .topbar {
    top: 46px;
  }
}

/* Hero collage on small screens — keep aspect ratio sane */
@media (max-width: 640px) {
  .v2-hero-collage {
    aspect-ratio: 1/1;
    min-height: 320px;
  }

  .v2-hero-collage .float-chip {
    padding: 8px 10px;
  }

  .v2-hero-collage .float-chip .v {
    font-size: 12px;
  }
}

/* Section head on tablet — keep heading & lede stacked nicely */
@media (max-width: 900px) {
  .section-head {
    gap: 16px;
  }
}

/* Buttons full-width inside mobile drawer */
.mobile-drawer .btn {
  width: 100%;
}

/* When mode-toggle is the only thing in nav-cta (mobile), nudge sizing */
@media (max-width: 980px) {
  .nav-cta {
    gap: 6px;
  }
}

/* ========================================================== */
/* Trust badges row                                            */
/* ========================================================== */
.v2-trust {
  padding-top: 24px;
}

.v2-trust-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.v2-trust-head .v2-h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.v2-trust-head .lede {
  margin: 8px auto 0;
  color: var(--ink-2);
}

.v2-trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.v2-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  color: var(--ink);
  min-height: 120px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.v2-trust-item:hover {
  transform: translateY(-2px);
  border-color: var(--ink-3);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .18);
}

.v2-trust-item img {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.v2-trust-item svg {
  color: var(--brand);
}

.v2-trust-item span {
  font-family: var(--h-font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  line-height: 1.3;
}

/* ========================================================== */
/* Calendar / contact strip                                    */
/* ========================================================== */
.v2-calendar {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}

.v2-calendar-inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 0;
}

.v2-calendar-inner .v2-h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.v2-calendar-inner .v2-h2 i {
  color: var(--accent-strong, var(--brand));
  font-style: italic;
  font-weight: 700;
}

.v2-calendar-inner .lede {
  max-width: 60ch;
  margin: 16px auto 26px;
  color: var(--ink-2);
  font-size: 16px;
}

.v2-calendar-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
  margin-bottom: 28px;
}

.v2-cal-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease;
  text-decoration: none;
}

a.v2-cal-item:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.v2-cal-ico {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--accent);
}

.v2-cal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ========================================================== */
/* Newsletter band                                             */
/* ========================================================== */
.v2-newsletter {
  background: var(--brand-deep);
  color: #fff;
}

.v2-nl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.v2-nl-inner .v2-h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 0;
}

.v2-nl-inner .v2-h2 i {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

.v2-nl-inner .lede {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  max-width: 42ch;
}

.v2-nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.v2-nl-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}

.v2-nl-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.v2-nl-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.10);
}

.v2-nl-form .btn {
  flex: 0 0 auto;
}

.v2-nl-msg {
  flex: 1 1 100%;
  color: var(--accent);
  font-weight: 600;
  margin: 6px 0 0;
}

@media (max-width: 820px) {
  .v2-nl-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v2-calendar-contacts {
    gap: 12px;
  }

  .v2-cal-item {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .v2-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-trust-item {
    min-height: 110px;
    padding: 16px 10px;
  }
}