/* ============================================================
   DESIRE Marketing — dark, minimal, editorial.
   Redesign v2: Outfit display + Inter body, single gold accent,
   whitespace-led, hairline structure, one signature number moment.
   ============================================================ */

:root {
  /* Palette — from the logo: black field, white wordmark, gold dot */
  --bg: #060606;
  --bg-2: #0d0d0c;
  --surface: #121211;
  --text: #f4f3ef; /* warm off-white */
  --text-muted: #9c9c95; /* ~6:1 on --bg */
  --text-faint: #6e6e68; /* large/decorative only */
  --line: rgba(244, 243, 239, 0.1);
  --line-2: rgba(244, 243, 239, 0.18);

  --gold: #fcc304;
  --gold-bright: #fed00c;
  --gold-soft: rgba(252, 195, 4, 0.1);
  --ink: #0a0a06; /* text on gold fills */

  /* Type */
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --fs-hero: clamp(2.85rem, 8.5vw, 8rem);
  --fs-mega: clamp(4.5rem, 20vw, 17rem); /* signature number */
  --fs-h2: clamp(2.1rem, 5vw, 4.25rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-lead: clamp(1.15rem, 1.7vw, 1.6rem);
  --fs-body: 1.0625rem;
  --fs-label: 0.75rem;

  /* Spacing — 4 / 8 / 16 / 24 / 32 / 48 / 64 */
  --sp-4: 0.25rem;
  --sp-8: 0.5rem;
  --sp-16: 1rem;
  --sp-24: 1.5rem;
  --sp-32: 2rem;
  --sp-48: 3rem;
  --sp-64: 4rem;
  --sp-96: 6rem;
  --sp-section: clamp(5.5rem, 13vw, 11rem);

  --gutter: clamp(1.5rem, 6vw, 6rem);
  --maxw: 78rem;
  --measure: 38rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.25s;
  --dur: 0.55s;

  --z-nav: 100;
  --z-menu: 200;
}

/* ============================================================
   Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-16);
  z-index: 1000;
  padding: var(--sp-8) var(--sp-16);
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  border-radius: 6px;
}
.skip-link:focus {
  top: var(--sp-16);
}

/* ============================================================
   Layout primitives
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--sp-section);
  border-top: 1px solid var(--line);
}
.section--plain {
  border-top: 0;
}

/* ------------------------------------------------------------
   Section themes — tonal rhythm so the page isn't one flat tone.
   Each theme locally overrides the colour tokens its children read.
   ------------------------------------------------------------ */
[data-theme="elevated"] {
  background: #121210;
}
[data-theme="light"] {
  background: #f4f3ef; /* bright close, magnet-style */
  color: #0c0c0a;
  --text: #0c0c0a;
  --text-muted: #54544d;
  --text-faint: #76766e;
  --line: rgba(12, 12, 10, 0.14);
  --line-2: rgba(12, 12, 10, 0.26);
  border-top-color: transparent;
}
/* Gold reads as text fine on dark, but not on the light surface — ink it there.
   Buttons keep their explicit gold fill (handled in .btn--primary). */
[data-theme="light"] .eyebrow {
  color: #8a6d00;
}
[data-theme="light"] .field input:focus,
[data-theme="light"] .field textarea:focus {
  border-color: #8a6d00;
}

/* Eyebrow — echoes the logo's wide-tracked "MARKETING" lockup */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-32);
}
.section__head {
  max-width: 44rem;
  margin-bottom: var(--sp-64);
}
.section__title {
  font-size: var(--fs-h2);
}
.section__lead {
  margin-top: var(--sp-24);
  max-width: var(--measure);
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--text-muted);
}
.accent {
  color: var(--gold);
}
.dot {
  color: var(--gold);
}
/* Emphasis fragment inside headings — gold via .accent, same Outfit type as the heading */
.em {
  font-style: normal;
}

/* ============================================================
   Buttons & text links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-16) var(--sp-32);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg {
  padding: var(--sp-24) var(--sp-48);
  font-size: 1.0625rem;
}
.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Underlined text link */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-2);
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.tlink:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
  padding: var(--sp-24) var(--gutter);
  background: color-mix(in srgb, var(--bg) 65%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
    padding var(--dur) var(--ease);
}
.nav.is-scrolled {
  padding-block: var(--sp-16);
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
}
.nav__brand img {
  height: 26px;
  width: auto;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-32);
}
.nav__links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover {
  color: var(--text);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}
.nav__cta {
  display: none;
}
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  cursor: pointer;
}
.nav__burger span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
body.menu-open .nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.menu-open .nav__burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-32);
  padding: var(--gutter);
  background: var(--bg-2);
  transform: translateY(-100%);
  transition: transform var(--dur) var(--ease);
}
body.menu-open .menu {
  transform: translateY(0);
}
.menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 10vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.menu__links a:hover {
  color: var(--gold);
}
.menu__meta {
  margin-top: var(--sp-16);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  color: var(--text-muted);
}
.menu__meta a:hover {
  color: var(--gold);
}

/* ============================================================
   Hero — editorial typographic thesis
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(7rem, 15vh, 11rem);
  padding-bottom: var(--sp-96);
  overflow: hidden;
}
/* Gold "dawn" glow rising from below — premium ambient depth.
   Spans the full hero (no transform, so GSAP can drift it cleanly); the bright
   point sits low-centre and fades up through the headline. */
.hero__aurora {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15vw;
  right: -15vw;
  background: radial-gradient(
    58% 52% at 50% 74%,
    rgba(252, 195, 4, 0.24) 0%,
    rgba(252, 195, 4, 0.09) 38%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
/* Fine film grain for texture/depth over the flat black */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Edge vignette to focus the centre */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(125% 95% at 50% 28%, transparent 52%, rgba(0, 0, 0, 0.55));
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(3rem, 9.5vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 15ch;
}
.hero__kw {
  position: relative;
  color: var(--gold);
  white-space: nowrap;
}
.hero__kw-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.07em;
  background: var(--gold);
  border-radius: 999px;
  transform-origin: left;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: block;
}
.hero__lead {
  max-width: var(--measure);
  margin-top: var(--sp-32);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}
/* Hero is single-column by default (copy, then the deck below);
   it becomes two columns at >=64rem (see the responsive block). */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-64);
  align-items: center;
}
.hero__copy {
  max-width: 40rem;
}

/* ------------------------------------------------------------
   Hero visual — a fanned, auto-cycling deck of real client sites.
   JS (animations.js) drives the cycle + hover-pop; this CSS provides
   the static fan used under reduced-motion / no-JS.
   ------------------------------------------------------------ */
.hero__visual {
  position: relative;
}
.hero__stage {
  position: relative;
  height: clamp(340px, 74vw, 500px);
  perspective: 1600px;
}
.hero__cap {
  margin-top: var(--sp-24);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.phone {
  position: absolute;
  inset: 0;
  margin: auto;
  height: clamp(300px, 66vw, 460px);
  width: auto;
  aspect-ratio: 46 / 100;
  padding: 6px;
  border-radius: 30px;
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.75);
  transform-origin: center center;
  will-change: transform, opacity;
  transition: box-shadow var(--dur) var(--ease);
}
.phone.is-front {
  box-shadow: 0 40px 90px -26px rgba(252, 195, 4, 0.32), 0 30px 60px -22px rgba(0, 0, 0, 0.75);
}
/* Carousel pauses on hover — lift the hovered card so the focus reads */
.phone:hover {
  box-shadow: 0 44px 100px -22px rgba(252, 195, 4, 0.5), 0 30px 60px -22px rgba(0, 0, 0, 0.8);
}
/* Static fan (no-JS / reduced motion): middle card front, two each side */
.phone:nth-child(1) { transform: translateX(-99%) scale(0.66) rotateY(19deg); z-index: 30; opacity: 0.5; }
.phone:nth-child(2) { transform: translateX(-54%) scale(0.84) rotateY(13deg); z-index: 40; opacity: 0.9; }
.phone:nth-child(3) { transform: translateX(0) scale(1) rotateY(0); z-index: 50; opacity: 1; }
.phone:nth-child(4) { transform: translateX(54%) scale(0.84) rotateY(-13deg); z-index: 40; opacity: 0.9; }
.phone:nth-child(5) { transform: translateX(99%) scale(0.66) rotateY(-19deg); z-index: 30; opacity: 0.5; }

.phone__screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0b0d;
}
.phone__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: #efefef;
  font-family: var(--font-body);
  font-size: 8.5px;
  line-height: 1;
  color: #74746f;
}
.phone__lock {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c3c3c3;
}
.phone__url {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* Real client-site screenshot fills the screen below the faux address bar */
.phone__screen picture {
  display: flex;
  flex: 1;
  min-height: 0;
}
.phone__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: #0b0b0d;
}

/* ============================================================
   Sub-page hero (service + location pages)
   ============================================================ */
.subhero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(8rem, 17vh, 12rem);
  padding-bottom: var(--sp-section);
  border-bottom: 1px solid var(--line);
}
.subhero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(55% 60% at 15% -5%, rgba(252, 195, 4, 0.16), transparent 60%);
}
.subhero__inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
}
.subhero__title {
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-top: var(--sp-24);
  max-width: 18ch;
}
.subhero__lead {
  margin-top: var(--sp-32);
  max-width: var(--measure);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-muted);
}
.subhero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-16) var(--sp-24);
  margin-top: var(--sp-48);
}
.subhero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-24);
  margin-top: var(--sp-48);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Breadcrumb (sub-pages) */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-faint);
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb__sep {
  color: var(--line-2);
}
.breadcrumb [aria-current] {
  color: var(--text);
}

/* Sibling-service cards reuse .svc-grid/.svc-card; their link navigates to another
   page (not the audit form), so it uses .svc-card__more — NOT .svc-card__link — to
   stay out of the AuditCTAClick tracking selector in main.js. */
.svc-card__more {
  margin-top: auto;
}

/* ============================================================
   Legal pages (privacy / terms) — readable prose
   ============================================================ */
.legal {
  padding-block: var(--sp-section);
}
.legal__body {
  max-width: 46rem;
}
.legal__body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--sp-48);
  margin-bottom: var(--sp-16);
}
.legal__body h2:first-child {
  margin-top: 0;
}
.legal__body p {
  color: var(--text-muted);
  margin-bottom: var(--sp-16);
}
.legal__body ul {
  list-style: disc;
  padding-left: var(--sp-24);
  margin-bottom: var(--sp-16);
  color: var(--text-muted);
}
.legal__body li {
  margin-bottom: var(--sp-8);
}
.legal__body a {
  color: var(--gold);
  border-bottom: 1px solid var(--line-2);
  transition: border-color var(--dur-fast) var(--ease);
}
.legal__body a:hover {
  border-color: var(--gold);
}
.legal__updated {
  margin-top: var(--sp-24);
  font-size: 0.875rem;
  color: var(--text-faint);
}
.legal__note {
  margin-top: var(--sp-32);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-faint);
}

/* Footer legal links */
.footer__legal {
  display: flex;
  gap: var(--sp-16);
}
.footer__legal a {
  color: var(--text-faint);
  transition: color var(--dur-fast) var(--ease);
}
.footer__legal a:hover {
  color: var(--gold);
}

/* ============================================================
   Results — big gold figures, hairline columns
   ============================================================ */
.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-48) var(--sp-32);
}
.metric {
  display: grid;
  gap: var(--sp-8);
}
.metric__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
}
.metric__label {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 16rem;
}
.pullquote {
  margin-top: var(--sp-96);
  max-width: 40rem;
}
.pullquote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pullquote__by {
  margin-top: var(--sp-24);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}

/* ============================================================
   Process — numbered (a real sequence)
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-24);
  align-items: baseline;
  padding: var(--sp-48) 0;
  border-bottom: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}
.step__name {
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--sp-8);
}
.step__copy {
  color: var(--text-muted);
  max-width: var(--measure);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
  padding: var(--sp-32) 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--gold);
}
.faq__icon::before {
  width: 100%;
  height: 1.5px;
}
.faq__icon::after {
  width: 1.5px;
  height: 100%;
  transition: transform var(--dur-fast) var(--ease);
}
.faq__item.is-open .faq__icon::after {
  transform: scaleY(0);
}
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height var(--dur) var(--ease);
}
.faq__a-inner {
  padding-bottom: var(--sp-32);
  color: var(--text-muted);
  max-width: 46rem;
}

/* ============================================================
   Contact
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  bottom: -45%;
  left: 50%;
  transform: translateX(-50%);
  width: 95vw;
  height: 60vw;
  max-width: 1100px;
  max-height: 600px;
  background: radial-gradient(circle, var(--gold-soft), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-64);
}
.cta__title {
  font-size: var(--fs-h2);
  max-width: 14ch;
}
.cta__lead {
  margin-top: var(--sp-24);
  max-width: var(--measure);
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.cta__alt {
  margin-top: var(--sp-24);
  color: var(--text-muted);
}
.cta__alt .tlink {
  margin-left: var(--sp-8);
}
.form {
  display: grid;
  gap: var(--sp-16);
}
.field {
  display: grid;
  gap: var(--sp-8);
}
.field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: var(--sp-16) 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea {
  min-height: 64px;
  resize: vertical;
}
.form__note {
  font-size: 0.8125rem;
  color: var(--text-faint);
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: var(--sp-8);
  font-size: 0.9375rem;
  font-weight: 500;
}
.form__status.is-pending {
  color: var(--text-muted);
}
.form__status.is-ok {
  color: #1f7a3d;
}
.form__status.is-err {
  color: #b4232a;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding-block: var(--sp-64) var(--sp-32);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-48);
  padding-bottom: var(--sp-48);
  border-bottom: 1px solid var(--line);
}
.footer__brand img {
  height: 30px;
  width: auto;
  margin-bottom: var(--sp-24);
}
.footer__tag {
  color: var(--text-muted);
  max-width: 24rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-32);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--sp-16);
}
.footer__col ul {
  display: grid;
  gap: var(--sp-8);
}
.footer__col a,
.footer__col span {
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-16);
  padding-top: var(--sp-32);
  font-size: 0.8125rem;
  color: var(--text-faint);
}

/* ============================================================
   Outlined watermark word (Farsiight-style) behind section heads
   ============================================================ */
.has-wm {
  position: relative;
  overflow: hidden;
}
.has-wm .shell {
  position: relative;
  z-index: 1;
}
.watermark {
  position: absolute;
  left: -0.06em;
  top: clamp(2.5rem, 9vw, 7rem);
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 24vw, 21rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
  text-stroke: 1px var(--line-2);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Ask-yourself hook block + Google rating badge
   ============================================================ */
.ask__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  align-items: start;
}
.ask__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 17ch;
  margin-top: var(--sp-16);
}
.ask__sub {
  margin-top: var(--sp-24);
  max-width: var(--measure);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-muted);
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-16);
  padding: var(--sp-16) var(--sp-24);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: var(--bg-2);
}
.gbadge__g {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.gbadge__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gbadge__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.gbadge__score {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.gbadge__stars {
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-32) var(--sp-24);
  margin-top: var(--sp-64);
  padding-top: var(--sp-48);
  border-top: 1px solid var(--line);
}
.stat {
  display: grid;
  gap: var(--sp-8);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 17rem;
}

/* ============================================================
   Services — card grid
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-16);
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: var(--sp-32);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.svc-card:hover {
  border-color: rgba(252, 195, 4, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.8);
}
.svc-card__icon {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: var(--sp-24);
}
.svc-card__icon svg {
  width: 30px;
  height: 30px;
}
.svc-card__title {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
}
.svc-card__copy {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-24);
}
.svc-card__link {
  margin-top: auto;
}
@media (min-width: 40rem) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Floating Book-a-Call (pinned to the right edge)
   ============================================================ */
.floatcta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(110%, -50%);
  z-index: var(--z-nav);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-16) var(--sp-8);
  width: 64px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.15;
  text-align: center;
  border-radius: 12px 0 0 12px;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease),
    background var(--dur-fast) var(--ease);
}
.floatcta.is-visible {
  transform: translate(0, -50%);
  opacity: 1;
}
.floatcta:hover {
  background: var(--gold-bright);
}
.floatcta__icon {
  width: 20px;
  height: 20px;
}
@media (prefers-reduced-motion: reduce) {
  .floatcta {
    transition: opacity var(--dur) var(--ease), background var(--dur-fast) var(--ease);
    transform: translate(0, -50%);
  }
}

/* ============================================================
   Reveal states (GSAP drives these; no-JS shows everything)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
  }
  .js [data-reveal-x] {
    opacity: 0.12;
    transform: translateX(-72px);
  }
  .js .hero__title .line > span {
    transform: translateY(110%);
  }
  .js .hero__kw-line {
    transform: scaleX(0);
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 48rem) {
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
  }
  .nav__burger {
    display: none;
  }
  .menu {
    display: none;
  }
  .ask__inner {
    grid-template-columns: 1.7fr 1fr;
  }
  .ask__aside {
    justify-self: end;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .results__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .step {
    grid-template-columns: 5rem 1fr;
  }
  .cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-96);
    align-items: start;
  }
  .footer__top {
    grid-template-columns: 1.4fr 2fr;
  }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 64rem) {
  .stats {
    grid-template-columns: repeat(6, 1fr);
  }
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--sp-48);
  }
  /* Smaller hero type in the narrower column so the masked lines never wrap/clip */
  .hero__title {
    font-size: clamp(2.9rem, 5vw, 4.25rem);
  }
  .hero__copy {
    max-width: none;
  }
  .hero__cap {
    text-align: left;
  }
}
