/* ==========================================================================
   iTask Legal - Redesign Design System
   Brand: gold #C3AF64 · orange #FF9900 · red #DD3333 · near-black · warm cream
   Type:  Hanken Grotesk (headings/UI) + Inter (body)
   No build step - pure CSS custom properties. Loads via file:// or any host.
   ========================================================================== */

/* ----------  Design Tokens  ---------- */
:root {
  /* Brand */
  --gold:        #E0B63E;   /* bright gold */
  --gold-deep:   #9C8542;   /* readable gold on light backgrounds */
  --gold-soft:   #E7DCBE;
  --orange:      #FF9900;   /* primary action */
  --orange-deep: #E07F00;
  --red:         #DD3333;   /* sparing accent / alerts */

  /* Neutrals (warm) */
  --ink:        #14130F;    /* near-black, warm */
  --charcoal:   #1E1B15;    /* dark section background */
  --charcoal-2: #2A261D;
  --cream:      #FAF7EF;    /* warm off-white base */
  --cream-2:    #F3ECDD;
  --white:      #FFFFFF;

  /* Text */
  --text:        #36332B;
  --text-muted:  #6E6A5E;
  --text-on-dark:        #EFE9DC;
  --text-on-dark-muted:  #B7B0A0;

  /* Lines & surfaces */
  --line:       rgba(20, 19, 15, 0.10);
  --line-dark:  rgba(255, 255, 255, 0.12);
  --shadow-sm:  0 2px 8px rgba(20, 19, 15, 0.06);
  --shadow-md:  0 12px 30px rgba(20, 19, 15, 0.08);
  --shadow-lg:  0 28px 60px rgba(20, 19, 15, 0.14);
  --shadow-gold: 0 16px 40px rgba(195, 175, 100, 0.28);

  /* Type */
  --font-head: "Hanken Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Hanken Grotesk", "Inter", "Segoe UI", Arial, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --container-narrow: 880px;
  --radius:    18px;
  --radius-sm: 12px;
  --pill:      999px;
  --btn-radius: 10px;
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --gap:       clamp(1.25rem, 3vw, 2rem);

  --header-h: 86px;
  --header-h-sticky: 66px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ----------  Typography  ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
}
/* Primary headlines - refined, confident grotesk */
h1, h2 {
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.65;
}

/* gold text accent */
.t-gold { color: var(--gold-deep); }
.t-italic { font-style: italic; }

/* ----------  Layout  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }

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

/* Surfaces */
.bg-cream    { background: var(--cream); }
.bg-cream-2  { background: var(--cream-2); }
.bg-white    { background: var(--white); }
.bg-ink      { background: var(--ink); color: var(--text-on-dark); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-ink p { color: var(--text-on-dark-muted); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.92rem 1.7rem;
  border-radius: var(--btn-radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(224, 182, 62, 0.40);
}
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(224, 182, 62, 0.46); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(195, 175, 100, 0.22);
}
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
}
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row.center { justify-content: center; }

/* small text link with arrow */
.link-arrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.25s var(--ease), color 0.2s ease;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--gold-deep); gap: 0.7rem; }

/* ----------  Header  ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 239, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  height: var(--header-h-sticky);
  background: rgba(250, 247, 239, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(20, 19, 15, 0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand img { height: 38px; }

.nav { display: flex; align-items: center; gap: 0.1rem; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold-deep); }
@media (max-width: 1240px) { .header-phone { display: none; } }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(20, 19, 15, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--cream);
  padding: calc(var(--header-h) + 1rem) 1.6rem 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--gold-deep); }
.mobile-nav .btn { margin-top: 1.25rem; }
.mobile-nav-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 40px; height: 40px; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.mobile-nav-close svg { width: 26px; height: 26px; }

/* offset for fixed header */
.page { padding-top: var(--header-h); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, var(--charcoal-2) 0%, var(--ink) 55%);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.hero::before {
  /* subtle gold glow */
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(195,175,100,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  /* faint pillar/column motif lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .lead { color: var(--text-on-dark-muted); max-width: 540px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

/* Simplified centered hero */
.hero-inner { max-width: 768px; margin-inline: auto; text-align: center; }
.hero-inner .lead { margin: 1.3rem auto 0; max-width: 600px; }
.hero-inner .btn-row { margin-top: 2rem; }
.hero-inner .hero-microtrust { justify-content: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(195,175,100,0.12);
  border: 1px solid rgba(195,175,100,0.3);
  padding: 0.5rem 1rem; border-radius: var(--pill);
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero-points { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.75rem 0 2rem; }
.hero-points li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text-on-dark); }
.hero-points svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 0.18rem; }

.hero-microtrust { display: flex; align-items: center; gap: 0.55rem; margin-top: 1.1rem; font-size: 0.85rem; color: var(--text-on-dark-muted); }
.hero-microtrust svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* hero visual card */
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
}
.hero-card .emblem { width: 110px; margin: 0 auto 1.25rem; opacity: 0.95; }
.hero-card .mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; text-align: center; }
.hero-card .mini-stats .num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.hero-card .mini-stats .lbl { font-size: 0.78rem; color: var(--text-on-dark-muted); margin-top: 0.35rem; }
.hero-card .divider { height: 1px; background: var(--line-dark); margin: 1.4rem 0; }
.hero-card .quote { font-size: 0.96rem; color: var(--text-on-dark); font-style: italic; }
.hero-card .quote-by { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--gold); margin-top: 0.6rem; }

/* ----------  Trust bar  ---------- */
.trustbar { background: var(--ink); border-top: 1px solid var(--line-dark); }
.trustbar .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1rem,4vw,3rem); padding-block: 1.4rem; }
.trustbar .item { display: flex; align-items: center; gap: 0.6rem; color: var(--text-on-dark-muted); font-family: var(--font-head); font-weight: 500; font-size: 0.88rem; }
.trustbar .item svg { width: 20px; height: 20px; color: var(--gold); }

/* ----------  Cards  ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

.icon-badge {
  width: 56px; height: 56px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--gold-soft), #fff);
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.icon-badge svg { width: 28px; height: 28px; }
.card:hover .icon-badge { background: linear-gradient(145deg, var(--gold), var(--gold-deep)); color: #fff; border-color: transparent; }

/* service card with task list */
.service-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.94rem; color: var(--text-muted); }
.service-card li svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; margin-top: 0.22rem; }

/* feature row (icon + text inline) */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.feature h3 { font-size: 1.2rem; }
.feature p { margin-top: 0.35rem; }

/* ----------  Stats band  ---------- */
.stats-band { background: var(--ink); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(195,175,100,0.14), transparent);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,5vw,3.5rem); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat .num .suffix { color: var(--gold); }
.stat .lbl { color: var(--text-on-dark-muted); font-size: 0.92rem; margin-top: 0.5rem; font-family: var(--font-head); font-weight: 500; }

/* ----------  Process / steps  ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .num-tag {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--gold);
  border: 2px solid var(--gold);
  margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); }
.steps.connected .step:not(:last-child)::after {
  content: ""; position: absolute; top: calc(1rem + 26px); left: 60px; right: -1rem;
  height: 2px; background: linear-gradient(90deg, var(--gold-soft), transparent);
}

/* ----------  Split / alternating feature blocks  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.media-panel {
  border-radius: var(--radius);
  background: radial-gradient(120% 120% at 80% 10%, var(--charcoal-2), var(--ink));
  padding: clamp(2rem,4vw,3rem);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.media-panel .emblem { width: 90px; opacity: 0.9; margin-bottom: 1.5rem; }
.checklist { display: flex; flex-direction: column; gap: 0.85rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7rem; }
.checklist li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.checklist.on-light li svg { color: var(--gold-deep); }

/* ----------  Pricing  ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; align-items: stretch; }
.price-grid.cols-2 { grid-template-columns: repeat(2,1fr); max-width: 640px; margin-inline: auto; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: var(--pill);
}
.price-card .plan-name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.price-card .plan-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; min-height: 2.4em; }
.price-card .price { margin: 1.1rem 0 0.2rem; }
.price-card .price .amt { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); letter-spacing: -0.02em; }
.price-card .price .per { color: var(--text-muted); font-size: 0.9rem; }
.price-card .hours { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--gold-deep); margin-bottom: 1.25rem; }
.price-card ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; flex-grow: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.92rem; color: var(--text-muted); }
.price-card li svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; margin-top: 0.2rem; }

/* ----------  CTA band  ---------- */
.cta-band {
  background: radial-gradient(120% 140% at 15% 10%, var(--charcoal-2), var(--ink));
  color: var(--text-on-dark);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(195,175,100,0.2), transparent 65%);
  top: -200px; left: -120px; pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(195,175,100,0.055) 0 1px, transparent 1px 88px);
  -webkit-mask-image: radial-gradient(120% 120% at 50% 0%, #000 40%, transparent 75%);
  mask-image: radial-gradient(120% 120% at 50% 0%, #000 40%, transparent 75%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: var(--text-on-dark-muted); max-width: 560px; margin: 1rem auto 0; position: relative; }
.cta-band .btn-row { position: relative; margin-top: 2rem; }
.cta-assure { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.6rem; margin-top: 1.6rem; }
.cta-assure li { display: flex; align-items: center; gap: 0.45rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--text-on-dark-muted); }
.cta-assure svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ----------  Testimonial  ---------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.quote-card .stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 1rem; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.1rem; line-height: 1.6; color: var(--ink); font-family: var(--font-head); font-weight: 500; }
.quote-card .by { margin-top: 1.25rem; font-size: 0.92rem; color: var(--text-muted); }
.quote-card .by strong { display: block; color: var(--ink); font-family: var(--font-head); }

/* ----------  Brand promise statement  ---------- */
.promise {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.1vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 1.25rem auto 1.25rem;
  max-width: 18ch;
  position: relative;
}
.promise::before {
  content: "“";
  display: block;
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.promise { text-indent: 0; }

/* ----------  FAQ / accordion  ---------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq-q .chevron { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding-bottom: 1.35rem; color: var(--text-muted); }

/* ----------  Page hero (inner pages)  ---------- */
.page-hero {
  background: radial-gradient(110% 130% at 85% 0%, var(--charcoal-2), var(--ink));
  color: var(--text-on-dark);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -160px;
  background: radial-gradient(circle, rgba(195,175,100,0.18), transparent 65%); pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(195,175,100,0.05) 0 1px, transparent 1px 92px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero .lead { color: var(--text-on-dark-muted); max-width: 640px; margin: 1.1rem auto 0; position: relative; }
.breadcrumb { position: relative; font-size: 0.85rem; color: var(--text-on-dark-muted); margin-bottom: 1rem; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ----------  Contact  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(195,175,100,0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-info-card { background: var(--ink); color: var(--text-on-dark); border-radius: var(--radius); padding: clamp(1.75rem,3vw,2.5rem); }
.contact-info-card .row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-dark); }
.contact-info-card .row:last-child { border-bottom: none; }
.contact-info-card .icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(195,175,100,0.14); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .icon svg { width: 22px; height: 22px; }
.contact-info-card .row .lbl { font-size: 0.8rem; color: var(--text-on-dark-muted); }
.contact-info-card .row .val { font-family: var(--font-head); font-weight: 600; color: #fff; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer .brand img { height: 52px; margin-bottom: 1.1rem; }
.footer-about p { color: var(--text-on-dark-muted); font-size: 0.95rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-head); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a:not(.btn) { color: var(--text-on-dark-muted); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:not(.btn):hover { color: var(--gold); }
.footer-contact .row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--text-on-dark-muted); transition: background 0.2s ease, color 0.2s ease; }
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-block: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.85rem; }
.footer-bottom .legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* ----------  Scroll reveal  ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----------  Helpers  ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.divider-line { height: 1px; background: var(--line); border: none; }

/* ==========================================================================
   BESPOKE UPGRADE - duotone photos, seals, colonnade helper, matter timeline
   ========================================================================== */

/* Colonnade helper (for sections where we control markup) */
.colonnade { position: relative; }
.colonnade > .container { position: relative; z-index: 2; }
.colonnade::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(90deg, rgba(195,175,100,0.05) 0 1px, transparent 1px 92px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

/* Monogram watermark */
.watermark {
  position: absolute; pointer-events: none; opacity: 0.06; z-index: 1;
  width: clamp(260px, 36vw, 520px);
  right: -40px; bottom: -60px;
}

/* Gold/black duotone photo treatment */
.photo { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); box-shadow: var(--shadow-md); }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04) brightness(0.9); }
.photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(195,175,100,0.22), rgba(20,19,15,0.58) 52%, rgba(20,19,15,0.84));
  mix-blend-mode: multiply; }
.photo::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(155deg, rgba(231,220,190,0.16), transparent 55%); mix-blend-mode: screen; }
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 16 / 10; }

/* Floating stat seal overlapping a photo */
.photo-wrap { position: relative; }
.seal {
  position: absolute; right: -16px; bottom: -16px; z-index: 3;
  background: var(--ink); color: #fff; border: 1px solid var(--gold);
  border-radius: 16px; padding: 1rem 1.3rem; box-shadow: var(--shadow-lg); text-align: center; min-width: 120px;
}
.seal .n { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 600; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.seal .t { font-size: 0.72rem; color: var(--text-on-dark-muted); margin-top: 0.3rem; letter-spacing: 0.02em; }

/* media-panel with a background photo (gradient set inline per page) */
.media-panel.has-photo { background-size: cover; background-position: center; }

/* ---- Reviews (Google) ---- */
.g-badge { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.25rem; padding: 0.55rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--pill); box-shadow: var(--shadow-sm); }
.g-badge .g-stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.g-badge .g-label { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--text-muted); }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-sm); height: 100%; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card .stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 0.9rem; }
.review-card .stars svg { width: 18px; height: 18px; }
.review-card blockquote { font-size: 1rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.review-card .by { margin-top: 1.1rem; font-size: 0.9rem; color: var(--text-muted); }
.review-card .by strong { display: block; color: var(--ink); font-family: var(--font-head); }
.review-card.is-placeholder blockquote { color: var(--text-muted); font-style: italic; }
.review-note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }

/* ---- Matter Timeline (signature component) ---- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.timeline::before {
  content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent); opacity: 0.55;
}
.tl-step { text-align: center; position: relative; }
.tl-node {
  width: 56px; height: 56px; border-radius: 50%; background: var(--ink);
  border: 2px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem;
  position: relative; z-index: 1; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.tl-node svg { width: 24px; height: 24px; }
.tl-step:hover .tl-node { background: var(--gold); color: var(--ink); transform: translateY(-4px); }
.tl-step .lbl { font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.tl-step h4 { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 600; font-size: 1.08rem; margin: 0.4rem 0 0.35rem; color: #fff; }
.tl-step p { font-size: 0.84rem; color: var(--text-on-dark-muted); line-height: 1.5; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 0; max-width: 440px; margin-inline: auto; }
  .timeline::before { left: 27px; top: 12px; bottom: 12px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, transparent, var(--gold) 6%, var(--gold) 94%, transparent); }
  .tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.1rem; text-align: left; padding-bottom: 1.9rem; align-items: start; }
  .tl-node { margin: 0; }
  .tl-step h4 { margin-top: 0.1rem; }
}

/* ----------  Responsive  ---------- */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .stats-grid, .steps, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .price-grid, .price-grid.cols-2 { grid-template-columns: 1fr; }
  .steps.connected .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .btn-row.center .btn { width: auto; }
}

/* ==========================================================================
   GOOGLE ADS LANDING PAGES  (body.lp)
   ========================================================================== */
.lp .page { padding-top: 70px; }

/* Minimal header — logo + click-to-call only (no nav) */
.lp-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 70px; display: flex; align-items: center; background: rgba(250,247,239,0.96); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.lp-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lp-header .brand img { height: 40px; width: auto; }
.lp-head-cta { display: flex; align-items: center; gap: 0.9rem; }
.lp-call { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); white-space: nowrap; }
.lp-call svg { width: 18px; height: 18px; color: var(--gold-deep); }

/* Hero with lead form */
.lp-hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 82% 0%, var(--charcoal-2), var(--ink)); color: var(--text-on-dark); padding-block: clamp(2.25rem, 4.5vw, 3.75rem); }
.lp-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(90deg, rgba(224,182,62,0.05) 0 1px, transparent 1px 92px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.lp-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.lp-hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); }
.lp-hero h1 .hl { color: var(--gold); }
.lp-hero .lead { color: var(--text-on-dark-muted); margin-top: 1rem; }
/* Proof row: location tag + Google rating, above the headline */
.lp-proof-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.6rem; margin-bottom: 1.25rem; }
.lp-localtag { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: rgba(224,182,62,0.12); border: 1px solid rgba(224,182,62,0.32); padding: 0.45rem 0.95rem; border-radius: var(--pill); }
.lp-localtag svg { width: 15px; height: 15px; }
.lp-points { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.5rem 0 0; }
.lp-points li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--text-on-dark); font-size: 1.02rem; }
.lp-points svg { width: 21px; height: 21px; color: var(--gold); flex-shrink: 0; margin-top: 0.12rem; }
.lp-rating { display: inline-flex; align-items: center; gap: 0.55rem; }
.lp-rating .stars { color: var(--gold); letter-spacing: 1px; }
.lp-rating .meta { font-size: 0.86rem; color: var(--text-on-dark-muted); }
.lp-proof-row .lp-rating { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); padding: 0.45rem 0.95rem; border-radius: var(--pill); }
.lp-proof-row .lp-rating .stars { font-size: 0.85rem; }
.lp-proof-row .lp-rating .meta { font-size: 0.8rem; font-family: var(--font-head); font-weight: 600; color: var(--text-on-dark); white-space: nowrap; }
/* Risk-reversal under the bullets (desktop decision point; hidden on mobile to keep the form at the fold) */
.lp-risk { margin-top: 1.1rem; font-size: 0.88rem; line-height: 1.5; color: var(--text-on-dark-muted); }

/* Lead form card (above the fold) */
.lead-form-card { background: #fff; border-radius: 20px; padding: clamp(1.4rem, 2.3vw, 1.9rem); box-shadow: var(--shadow-lg); color: var(--text); border-top: 4px solid var(--gold); scroll-margin-top: 86px; }
.lead-form-card:target { box-shadow: 0 0 0 3px rgba(224,182,62,0.55), var(--shadow-lg); }
.lf-head { text-align: center; margin-bottom: 1.1rem; }
.lf-head h3 { font-size: 1.3rem; }
.lf-head p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.3rem; }
.form-progress { height: 6px; background: var(--cream-2); border-radius: 99px; overflow: hidden; margin-bottom: 1.25rem; }
.form-progress-bar { height: 100%; width: 33%; background: var(--gold); border-radius: 99px; transition: width 0.35s var(--ease); }
.form-step { display: block; }
.form-step[hidden] { display: none; }
.form-step .step-q { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.9rem; }
.choice-grid { display: grid; gap: 0.55rem; }
.choice-btn { text-align: left; width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 0.85rem 1rem; font-family: var(--font-head); font-weight: 600; font-size: 0.96rem; color: var(--ink); background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s; }
.choice-btn:hover { border-color: var(--gold); background: #fffdf4; transform: translateY(-1px); }
.choice-btn.selected { border-color: var(--gold); background: var(--gold-soft); }
.choice-btn svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }
.form-nav { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.form-nav .btn { flex: 1; }
.form-nav .btn-back { flex: 0 0 auto; }
.lf-trust { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.95rem; font-size: 0.78rem; color: var(--text-muted); }
.lf-trust svg { width: 14px; height: 14px; color: var(--gold-deep); }
.lf-note { margin-top: 0.75rem; font-size: 0.74rem; color: var(--text-muted); text-align: center; line-height: 1.4; }
.lf-note a { color: var(--gold-deep); text-decoration: underline; }

/* Sticky mobile call/book bar */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: 0.55rem; padding: 0.6rem 0.7rem; background: rgba(20,19,15,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--line-dark); }
.sticky-cta .btn { flex: 1; padding: 0.85rem 1rem; }

/* LP minimal footer */
.lp-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 2rem 0; text-align: center; font-size: 0.85rem; }
.lp-footer .container { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.lp-footer a { color: var(--text-on-dark-muted); }
.lp-footer a:hover { color: var(--gold); }
.lp-footer .legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }

@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .lead-form-card { max-width: 520px; }
  /* Mobile capture: headline + offer go straight into the form; bullets/risk are
     redundant with the lead + trustbar and would push the form below the fold */
  .lp-points, .lp-risk { display: none; }
  .sticky-cta { display: flex; }
  .lp .page { padding-bottom: 78px; }
  .lp-head-cta .btn { display: none; }   /* keep only click-to-call in header; book is in form + sticky bar */
}
@media (max-width: 720px) {
  .lp-hero { padding-block: 1.3rem 2rem; }
  .lp-hero h1 { font-size: clamp(1.78rem, 7.4vw, 2.05rem); }
  .lp-hero .lead { margin-top: 0.7rem; font-size: 0.98rem; }
  .lp-proof-row { margin-bottom: 1rem; gap: 0.45rem 0.5rem; }
  .lp-localtag, .lp-proof-row .lp-rating { padding: 0.35rem 0.75rem; }
  .lp-localtag { font-size: 0.72rem; }
  .lp-proof-row .lp-rating .stars { font-size: 0.78rem; }
  .lp-proof-row .lp-rating .meta { font-size: 0.74rem; }
}

/* ---- In-house vs iTask comparison (LP) ---- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 880px; margin-inline: auto; }
.compare-col { border-radius: var(--radius); padding: clamp(1.5rem, 2.5vw, 2rem); border: 1px solid var(--line); }
.compare-col.them { background: var(--white); }
.compare-col.us { background: radial-gradient(120% 120% at 80% 0%, var(--charcoal-2), var(--ink)); color: var(--text-on-dark); border-color: transparent; box-shadow: var(--shadow-lg); }
.compare-col .ctitle { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.compare-col.them .ctitle { color: var(--text-muted); }
.compare-col.us .ctitle { color: #fff; }
.compare-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.compare-col li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.96rem; line-height: 1.45; }
.compare-col li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 0.1rem; }
.compare-col.them li { color: var(--text-muted); }
.compare-col.them li svg { color: var(--red); }
.compare-col.us li { color: var(--text-on-dark); }
.compare-col.us li svg { color: var(--gold); }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* ---- Pain points "sound familiar" (LP) ---- */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 820px; margin-inline: auto; }
.pain-item { display: flex; gap: 0.8rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; }
.pain-item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 0.1rem; }
.pain-item p { color: var(--text); font-size: 0.96rem; line-height: 1.45; }
@media (max-width: 720px) { .pain-grid { grid-template-columns: 1fr; } }

/* ---- Quiz landing pages (lp-*-quiz) ---- */
.quiz-hero .container { position: relative; z-index: 1; }
.quiz-intro { max-width: 800px; margin-inline: auto; text-align: center; }
.quiz-intro .lp-proof-row { justify-content: center; }
.quiz-intro h1 { font-size: clamp(1.95rem, 3.4vw, 2.8rem); }
.quiz-intro .lead { max-width: 640px; margin-inline: auto; }
.quiz-card { background: #fff; border-radius: 20px; border-top: 4px solid var(--gold); box-shadow: var(--shadow-lg); color: var(--text); padding: clamp(1.4rem, 2.6vw, 2.1rem); max-width: 640px; margin: 1.9rem auto 0; scroll-margin-top: 86px; }
.quiz-card .lf-head { margin-bottom: 0.75rem; }
.quiz-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.55rem; min-height: 28px; }
.quiz-back { font-family: var(--font-head); font-weight: 600; font-size: 0.84rem; color: var(--text-muted); padding: 0.2rem 0.45rem; border-radius: 8px; }
.quiz-back:hover { color: var(--ink); background: var(--cream-2); }
.quiz-count { font-family: var(--font-head); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-deep); margin-left: auto; }
.quiz-q { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin: 0.9rem 0 1rem; line-height: 1.35; }
.quiz-choices { display: grid; gap: 0.6rem; }
.quiz-choice { text-align: left; width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 0.8rem 0.95rem; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--ink); background: #fff; display: flex; align-items: center; gap: 0.7rem; cursor: pointer; transition: border-color 0.18s, background 0.18s, transform 0.14s; }
.quiz-choice:hover { border-color: var(--gold); background: #fffdf4; transform: translateY(-1px); }
.quiz-choice .key { width: 26px; height: 26px; border-radius: 8px; background: var(--cream-2); color: var(--gold-deep); font-size: 0.78rem; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; transition: background 0.18s, color 0.18s; }
.quiz-choice.selected { border-color: var(--gold); background: var(--gold-soft); }
.quiz-choice.selected .key { background: var(--gold); color: var(--ink); }
.quiz-step.anim-in { animation: quizIn 0.32s var(--ease) both; }
.quiz-step.anim-back { animation: quizBack 0.32s var(--ease) both; }
@keyframes quizIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
@keyframes quizBack { from { opacity: 0; transform: translateX(-26px); } to { opacity: 1; transform: none; } }
/* Result screen */
.qr-badge { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: var(--pill); margin-top: 0.4rem; }
.qr-badge.tier-high { background: rgba(221,51,51,0.10); color: var(--red); }
.qr-badge.tier-mid { background: rgba(224,127,0,0.12); color: var(--orange-deep); }
.qr-badge.tier-low { background: rgba(63,122,76,0.12); color: #3F7A4C; }
.qr-title { font-size: 1.35rem; margin: 0.6rem 0 0.95rem; }
.qr-meter-head { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.35rem; }
.qr-meter-head strong { color: var(--ink); }
.qr-track { height: 10px; border-radius: 99px; background: var(--cream-2); overflow: hidden; }
.qr-fill { height: 100%; border-radius: 99px; width: 0; transition: width 0.9s var(--ease); }
.qr-fill.tier-high { background: linear-gradient(90deg, var(--gold), var(--red)); }
.qr-fill.tier-mid { background: linear-gradient(90deg, var(--gold), var(--orange-deep)); }
.qr-fill.tier-low { background: linear-gradient(90deg, #9CC2A3, #3F7A4C); }
.qr-body { font-size: 0.95rem; margin-top: 0.95rem; }
.qr-list { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.5rem; }
.qr-list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.5; }
.qr-list li::before { content: "→"; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }
.qr-divider { height: 1px; background: var(--line); margin: 1.3rem 0; }
.qr-sol-title { font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; color: var(--ink); margin-bottom: 0.6rem; }
.qr-sol-list { display: flex; flex-direction: column; gap: 0.5rem; }
.qr-sol-list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.5; }
.qr-sol-list li::before { content: "✓"; color: var(--gold-deep); font-weight: 800; flex-shrink: 0; }
.quiz-followup h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.quiz-followup > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.quiz-followup .field { margin-bottom: 0.75rem; }
.qr-call { text-align: center; font-size: 0.86rem; margin-top: 0.85rem; color: var(--text-muted); }
.qr-call a { font-weight: 700; color: var(--gold-deep); }
.qr-retake { display: block; text-align: center; margin-top: 0.9rem; font-size: 0.8rem; color: var(--text-muted); text-decoration: underline; }
.qr-retake:hover { color: var(--ink); }
.qr-thanks { text-align: center; padding: 1rem 0.25rem 0.25rem; font-family: var(--font-head); font-weight: 600; color: var(--gold-deep); line-height: 1.55; }
.qr-reveal { opacity: 0; transform: translateY(10px); animation: qrReveal 0.5s var(--ease) forwards; }
@keyframes qrReveal { to { opacity: 1; transform: none; } }
@media (max-width: 720px) {
  .quiz-intro .lead { display: none; }   /* H1 is the question; card subline covers the rest — keep the quiz at the fold */
  .quiz-intro h1 { font-size: clamp(1.62rem, 6.9vw, 1.95rem); }
  .quiz-card { margin-top: 1.2rem; padding: 1.15rem 1rem 1.4rem; }
}
/* Match mode (service-finder quiz on main site) */
.qr-badge.tier-gold { background: var(--gold-soft); color: var(--gold-deep); }
.qr-fit-price { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.qr-fit-price strong { color: var(--ink); font-size: 1.18rem; font-weight: 800; }
.qr-alt { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-top: 1.05rem; }
.qr-alt a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; }
.quiz-card .btn-row.center { justify-content: center; }

/* ==========================================================================
   LEGAL PROSE (privacy / terms)
   ========================================================================== */
.legal { max-width: 820px; margin-inline: auto; }
.legal .updated { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.75rem; }
.legal h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal h3 { font-size: 1.08rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--ink); }
.legal p { color: var(--text); line-height: 1.78; margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.45rem; margin: 0 0 1rem; }
.legal ul li { color: var(--text); line-height: 1.7; margin-bottom: 0.5rem; }
.legal a { color: var(--gold-deep); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .note { background: var(--cream-2); border-left: 3px solid var(--gold); padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.92rem; color: var(--text-muted); margin: 1.75rem 0; }
.legal .note p:last-child { margin-bottom: 0; }
