/*
Theme Name: Boomerang
Theme URI: https://teamboomerang.io
Description: Custom theme for Boomerang - Operational Support for Law Firms.
Version: 1.0.0
Author: Team Boomerang
Author URI: https://teamboomerang.io
Text Domain: boomerang
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --navy:          #0e1520;
  --navy-mid:      #131d2e;
  --navy-card:     #192336;
  --navy-border:   rgba(201,165,71,0.13);
  --gold:          #c9a547;
  --gold-light:    #dfc070;
  --gold-dim:      rgba(201,165,71,0.55);
  --gold-subtle:   rgba(201,165,71,0.08);
  --cream:         #f5f2ec;
  --cream-dark:    #ece7dd;
  --white:         #ffffff;
  --on-dark:       #cdd1d9;
  --on-dark-muted: #8c98a8;
  --on-light:      #0e1520;
  --on-light-mid:  #2d3748;
  --on-light-muted:#4d5660;

  --font-display:  'DM Serif Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --max:    1160px;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-body); background: var(--cream); color: var(--on-light); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--gold); color: var(--navy); }

/* =============================================
   ACCESSIBILITY
============================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: .5rem 1.2rem; background: var(--gold); color: var(--navy);
  font-weight: 600; font-size: .875rem; text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* =============================================
   LAYOUT
============================================= */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* =============================================
   TYPOGRAPHY UTILITIES
============================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--gold); line-height: 1;
}
.eyebrow::before {
  content: ''; width: 1.75rem; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--center::before { display: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  margin-top: .6rem;
  color: var(--on-light);
  letter-spacing: -.02em;
}
.section-title--light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  margin-top: .9rem;
  font-size: .975rem; font-weight: 300; line-height: 1.8;
  color: var(--on-light-muted);
  max-width: 580px;
}
.section-sub--light { color: var(--on-dark); }
.section-sub--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-center { text-align: center; }
.how__header { text-align: center; margin-bottom: 3.75rem; }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 600; cursor: pointer;
  transition: all .22s var(--ease); border: none; white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,165,71,.28); }

.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.22); }
.btn--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

.btn--ghost-dark { background: transparent; color: var(--on-light); border: 1px solid rgba(14,21,32,.18); }
.btn--ghost-dark:hover { border-color: rgba(14,21,32,.4); background: rgba(14,21,32,.04); }

.btn--lg { padding: 1.05rem 2.5rem; font-size: 1rem; }

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.5rem 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,17,27,.96);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  padding: .95rem 0;
  border-bottom-color: rgba(201,165,71,.09);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav__logo {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  letter-spacing: -.01em; color: var(--white);
  display: inline-flex; align-items: center;
  min-height: 44px; flex-shrink: 0; text-decoration: none;
}
.nav__logo strong {
  font-family: var(--font-display); color: var(--gold);
  font-size: 1.2rem; font-weight: 400; letter-spacing: -.01em;
}

.nav__links { display: flex; align-items: center; gap: 1.65rem; list-style: none; }
.nav__links a { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.58); transition: color .2s; min-height: 44px; display: inline-flex; align-items: center; }
.nav__links a:hover { color: var(--white); }
.nav__links .nav__cta-link {
  padding: .5rem 1.15rem; background: var(--gold); color: var(--navy);
  border-radius: var(--r-sm); font-size: .8rem; font-weight: 600;
  transition: background .2s, transform .2s;
}
.nav__links .nav__cta-link:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 11px;
  flex-shrink: 0; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 1px; transition: all .3s var(--ease); }

/* =============================================
   MOBILE DRAWER
============================================= */
.nav__drawer {
  position: fixed; inset: 0; z-index: 199;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.nav__drawer.open { opacity: 1; visibility: visible; }

.nav__drawer__close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--on-dark-muted);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: color .2s; min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav__drawer__close:hover { color: var(--white); }

.nav__drawer a.drawer-link {
  font-family: var(--font-display); font-size: 2rem; color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav__drawer a.drawer-link:hover { color: var(--gold); }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100svh; background: var(--navy);
  display: flex; align-items: center;
  padding-top: 8rem; padding-bottom: 5.5rem;
  position: relative; overflow: hidden;
}

.hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,165,71,.065);
  pointer-events: none; will-change: transform;
}
.hero__ring--1 { width: 80vmax; height: 80vmax; right: -32vmax; top: -28vmax; }
.hero__ring--2 { width: 62vmax; height: 62vmax; right: -23vmax; top: -20vmax; border-color: rgba(201,165,71,.045); }
.hero__ring--3 { width: 46vmax; height: 46vmax; right: -15vmax; top: -13vmax; border-color: rgba(201,165,71,.03); }
.hero__glow {
  position: absolute; right: -8%; top: 0; bottom: 0; width: 60%;
  background: radial-gradient(ellipse 55% 65% at 70% 38%, rgba(201,165,71,.052) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; max-width: 780px; }

.hero__h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.25rem);
  color: var(--white); letter-spacing: -.028em;
  margin: 1.5rem 0 1.75rem; line-height: 1.08;
}
.hero__h1 em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: clamp(.975rem, 1.5vw, 1.1rem); font-weight: 300; line-height: 1.8;
  color: var(--on-dark); max-width: 600px; margin-bottom: 2.5rem;
}

.hero__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero__divider { height: 1px; background: rgba(201,165,71,.15); margin-bottom: 2.5rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 0; }
.hero__stat { flex: 1; padding: 0 1.75rem; border-right: 1px solid rgba(201,165,71,.15); text-align: center; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; padding-right: 0; }

.hero__stat-val {
  font-family: var(--font-display); font-size: 2rem; color: var(--gold);
  line-height: 1; margin-bottom: .35rem; letter-spacing: -.02em;
}
.hero__stat-lbl { font-size: .78rem; font-weight: 400; color: var(--on-dark-muted); line-height: 1.5; white-space: nowrap; }

/* =============================================
   PROBLEM STRIP
============================================= */
.problem {
  background: var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 5.5rem 0;
}
.problem__grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 5rem; align-items: start;
}

.problem__pull {
  font-family: var(--font-display); font-style: normal;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--on-light-mid); line-height: 1.4;
  margin-top: .75rem; padding-top: .75rem;
  border-top: 1px solid rgba(14,21,32,.1);
}

.problem__list { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; margin-top: .5rem; }
.problem__item {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .925rem; color: var(--on-light-muted); line-height: 1.7;
}
.problem__item::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); margin-top: .56em;
}

/* =============================================
   SERVICES
============================================= */
.services { background: var(--navy); padding: 6rem 0; }

.services__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5px; background: rgba(201,165,71,.1);
  border: 1.5px solid rgba(201,165,71,.1);
  border-radius: var(--r-md); overflow: hidden;
  margin-top: 3.5rem;
}

.svc {
  background: var(--navy-card); padding: 2.75rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 2px solid transparent;
}
.svc::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); opacity: 0;
  transition: opacity .3s var(--ease);
}
.svc:hover {
  background: #1e2f45;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  z-index: 1;
  border-bottom-color: rgba(201,165,71,.2);
}
.svc:hover::after { opacity: 1; }

.svc__num {
  font-family: var(--font-display); font-size: .78rem; color: rgba(201,165,71,.3);
  letter-spacing: .07em; margin-bottom: 1rem;
}
.svc__icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1rem; }
.svc__title { font-size: 1.2rem; color: var(--white); margin-bottom: .6rem; line-height: 1.2; }
.svc__body { font-size: .95rem; font-weight: 300; color: var(--on-dark); line-height: 1.75; margin-bottom: 1.25rem; }
.svc__link {
  display: inline-flex; align-items: center;
  font-size: .78rem; font-weight: 600; color: var(--gold);
  letter-spacing: .04em; text-decoration: none;
  transition: opacity .2s, gap .2s; gap: .3rem;
  margin-top: auto;
}
.svc__link:hover { opacity: .75; gap: .55rem; }
.svc { display: flex; flex-direction: column; }


/* =============================================
   WHY BOOMERANG
============================================= */
.why { background: var(--cream); padding: 6.5rem 0; }

.why__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: start;
}

.why__sticky { position: sticky; top: 7.5rem; }

.why__sticky-title {
  font-size: clamp(1.75rem, 2.7vw, 2.4rem);
  color: var(--navy); margin-top: .6rem; margin-bottom: 1.1rem;
  line-height: 1.1;
}
.why__sticky-body {
  font-size: .95rem; font-weight: 300; color: var(--on-light-muted);
  line-height: 1.8; margin-bottom: 2rem;
}

.why__zero {
  background: var(--navy); border-radius: var(--r-md);
  padding: 2rem 2.25rem; margin-bottom: 2rem;
  border: 1px solid rgba(201,165,71,.1);
}
.why__zero-num {
  font-family: var(--font-display);
  font-size: 6.5rem; color: var(--gold);
  line-height: .9; letter-spacing: -.04em;
  margin-bottom: .25rem; display: block;
}
.why__zero-sub {
  font-size: .78rem; font-weight: 500; color: rgba(201,165,71,.7);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .9rem;
}
.why__zero-explain {
  padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .82rem; font-weight: 300; color: var(--on-dark-muted); line-height: 1.7;
}

.why__points { display: flex; flex-direction: column; gap: 2.5rem; padding-top: .5rem; }
.why__point {
  padding-left: 1.4rem; border-left: 2px solid var(--cream-dark);
  transition: border-color .3s;
}
.why__point:hover { border-left-color: var(--gold); }
.why__point-title { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.why__point-body { font-size: .875rem; font-weight: 300; color: var(--on-light-muted); line-height: 1.7; }

/* =============================================
   HOW IT WORKS
============================================= */
.how { background: var(--navy-mid); padding: 5.5rem 0; }

.how__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how__steps::before {
  content: ''; position: absolute;
  top: 2.65rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,165,71,.22) 20%, rgba(201,165,71,.22) 80%, transparent);
}
.how__step { padding: 0 2.25rem; text-align: center; }
.how__dot {
  width: 5.3rem; height: 5.3rem; border-radius: 50%;
  border: 1px solid rgba(201,165,71,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
  background: var(--navy-mid); position: relative; z-index: 1;
  transition: border-color .3s, background .3s;
}
.how__step:hover .how__dot { border-color: var(--gold); background: rgba(201,165,71,.08); }
.how__step-title { font-size: 1.12rem; color: var(--white); margin-bottom: .6rem; }
.how__step-body { font-size: .86rem; font-weight: 300; color: var(--on-dark); line-height: 1.75; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials { background: var(--cream-dark); padding: 6rem 0; }

.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }

.testimonial {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem 2.25rem; border-top: 3px solid var(--gold);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(14,21,32,.06);
}
.testimonial__mark {
  font-family: var(--font-display); font-size: 3rem; line-height: .8;
  color: var(--gold); opacity: .22; margin-bottom: .75rem; display: block;
}
.testimonial__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: .975rem; color: var(--navy); line-height: 1.65;
  flex: 1; margin-bottom: 1.5rem;
}
.testimonial__source {
  font-size: .72rem; font-weight: 600; color: var(--on-light-muted);
  text-transform: uppercase; letter-spacing: .08em;
}

/* =============================================
   RESOURCES / STAY IN THE LOOP
============================================= */
.resources { background: var(--navy); padding: 5.5rem 0; }

/* Centered stay-in-the-loop panel */
.stay-loop {
  max-width: 760px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.stay-loop .eyebrow { justify-content: center; }
.stay-loop__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white); line-height: 1.1; letter-spacing: -.02em;
}
.stay-loop__title em { color: var(--gold); font-style: italic; }
.stay-loop__sub {
  font-size: .95rem; font-weight: 300; color: var(--on-dark);
  line-height: 1.7; max-width: 580px;
}

/* Guide / stay-in-loop form */
.guide-form { display: flex; flex-direction: column; gap: .65rem; width: 100%; }
.guide-form--centered { max-width: 480px; margin: 0 auto; }
.guide-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.guide-form__input {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); padding: .65rem .9rem;
  font-family: var(--font-body); font-size: .84rem; color: var(--white);
  transition: border-color .2s; outline: none; width: 100%;
}
.guide-form__input::placeholder { color: var(--on-dark-muted); }
.guide-form__input:focus { border-color: rgba(201,165,71,.45); background: rgba(255,255,255,.09); }
.guide-form__input--full { grid-column: 1 / -1; }
.guide-form__btn { width: 100%; justify-content: center; margin-top: .25rem; font-size: .875rem; padding: .85rem 1.5rem; }
.guide-form__success {
  padding: .9rem 1rem; background: rgba(201,165,71,.1);
  border: 1px solid rgba(201,165,71,.25); border-radius: var(--r-sm);
  font-size: .84rem; color: var(--gold); text-align: center; line-height: 1.5;
}

/* =============================================
   TRUST STRIP
============================================= */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  gap: 0;
}
.trust-strip__item {
  display: flex; align-items: center; gap: .6rem;
  padding: .4rem 2.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--on-dark-muted);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item svg { color: var(--gold); flex-shrink: 0; }

/* =============================================
   ABOUT
============================================= */
.about { background: var(--cream); padding: 5.5rem 0; }

.about__mission {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 300; color: var(--on-light-mid);
  line-height: 1.65; margin-top: 1.5rem; margin-bottom: 3.5rem;
}

.about__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }

.person {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem; border: 1px solid rgba(14,21,32,.07);
}
.person__photo {
  flex-shrink: 0; width: 70px; height: 70px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--cream-dark);
}
.person__photo svg { display: block; width: 100%; height: 100%; }
.person__name { font-size: 1.15rem; color: var(--navy); margin-bottom: .15rem; }
.person__role {
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: .65rem;
}
.person__bio { font-size: .86rem; font-weight: 300; color: var(--on-light-muted); line-height: 1.7; }

/* =============================================
   FAQ
============================================= */
.faq { background: var(--navy-mid); padding: 6rem 0; }

.faq__list { max-width: 760px; margin: 3.5rem auto 0; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.065); }

.faq__q {
  width: 100%; background: none; border: none;
  padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  text-align: left; cursor: pointer; color: var(--white);
  font-size: .955rem; font-weight: 500; line-height: 1.45;
}
.faq__q:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.faq__icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(201,165,71,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem; line-height: 1;
  transition: transform .3s var(--ease), background .2s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: rgba(201,165,71,.1); }

.faq__body { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq__body-inner {
  padding-bottom: 1.4rem;
  font-size: .875rem; font-weight: 300; color: var(--on-dark); line-height: 1.8;
}
.faq__body-inner a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,165,71,.35); }

/* =============================================
   FINAL CTA
============================================= */
.cta-section {
  background: var(--navy); padding: 7rem 0 8rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(201,165,71,.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section__content { position: relative; z-index: 1; }
.cta-section__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white); margin: 1.25rem auto 1.25rem;
  max-width: 680px; line-height: 1.05; letter-spacing: -.025em;
}
.cta-section__title em { font-style: italic; color: var(--gold); }
.cta-section__sub {
  font-size: .975rem; font-weight: 300; color: var(--on-dark);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.cta-section__btns { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.cta-section__contact {
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.065);
}
.cta-section__contact a { font-size: .84rem; color: var(--on-dark-muted); transition: color .2s; min-height: 44px; display: inline-flex; align-items: center; }
.cta-section__contact a:hover { color: var(--white); }

/* Consult form — used in mid-page and potentially CTA */
.consult-form { display: flex; flex-direction: column; gap: 1.25rem; }
.consult-form--centered { max-width: 700px; margin: 0 auto; width: 100%; }
.consult-form__card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md); padding: 2.75rem 3rem; margin-top: .5rem; width: 100%;
}
.consult-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.consult-form__field { display: flex; flex-direction: column; gap: .5rem; }
.consult-form__field label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.consult-form__optional { font-weight: 400; color: var(--on-dark-muted); text-transform: none; letter-spacing: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consult-form__field input,
.consult-form__field textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm); padding: .875rem 1.1rem;
  font-family: var(--font-body); font-size: .95rem; color: var(--white);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none; width: 100%; resize: vertical;
}
.consult-form__field input::placeholder,
.consult-form__field textarea::placeholder { color: rgba(255,255,255,.28); }
.consult-form__field input:focus,
.consult-form__field textarea:focus {
  border-color: rgba(201,165,71,.65);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(201,165,71,.14);
}
.consult-form__divider {
  border: none; border-top: 1px solid rgba(255,255,255,.07); margin: .25rem 0;
}
.consult-form__btn { align-self: flex-start; margin-top: .5rem; font-size: .875rem; padding: .95rem 2rem; }
.consult-form__btn--center { align-self: center; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: #070c13;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr;
  gap: 3rem; align-items: start;
}

.footer__logo {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  letter-spacing: -.01em; color: var(--white);
  display: inline-flex; align-items: center; text-decoration: none;
}
.footer__logo strong {
  font-family: var(--font-display); color: var(--gold);
  font-size: 1.2rem; font-weight: 400; letter-spacing: -.01em;
}

.footer__addr {
  margin-top: .9rem; font-size: .78rem; font-style: normal;
  color: var(--on-dark-muted); line-height: 1.95;
}
.footer__addr a { color: var(--on-dark-muted); transition: color .2s; display: inline-flex; align-items: center; min-height: 44px; }
.footer__addr a:hover { color: var(--gold); }

.footer__col-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .85rem;
}
.footer__nav-links { display: flex; flex-direction: column; gap: 0; list-style: none; }
.footer__nav-links a {
  font-size: .82rem; color: var(--on-dark-muted); transition: color .2s;
  display: inline-flex; align-items: center; min-height: 44px; padding: .2rem 0;
}
.footer__nav-links a:hover { color: var(--gold); }

.footer__promise {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.5;
  margin-bottom: 1.25rem;
}
.footer__promise em { color: var(--gold); font-style: normal; }

.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.04);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
  font-size: .71rem; color: rgba(255,255,255,.42);
}
.footer__bottom a { color: rgba(255,255,255,.55); transition: color .2s; min-height: 44px; display: inline-flex; align-items: center; padding: 0 .15rem; }
.footer__bottom a:hover { color: rgba(255,255,255,.85); }

/* =============================================
   RESPONSIVE - 1024px
============================================= */
@media (max-width: 1024px) {
  .why__layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .why__sticky { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* =============================================
   RESPONSIVE - 900px
============================================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .problem__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__steps::before { display: none; }
  .how__step { text-align: left; }
  .how__dot { margin: 0 0 1.25rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .resources__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }

  .guide-form__row { grid-template-columns: 1fr; }
  .hero__stat { padding: 0 1rem; }
  .consult-form__row { grid-template-columns: 1fr; }
  .consult-form__btn, .consult-form__btn--center { width: 100%; justify-content: center; align-self: stretch; }
  .consult-form__card { padding: 2rem 1.75rem; }
}

/* =============================================
   RESPONSIVE - 480px
============================================= */
@media (max-width: 480px) {
  .wrap { padding: 0 1.25rem; }
  .hero__h1 { font-size: 2.75rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 5rem 0 6rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .why__zero-num { font-size: 5rem; }
  .person { flex-direction: column; }
  .trust-strip { gap: 1rem; padding-top: 2rem; }
  .trust-strip__item { border-right: none; padding: 0 1rem; justify-content: center; }
  .consult-form__card { padding: 1.75rem 1.25rem; }
}

/* =============================================
   WORDPRESS OVERRIDES
   Force our colors over WP global styles / theme.json
============================================= */
.wp-site-blocks { padding: 0 !important; }
body.page, body.home { margin: 0; padding: 0; }
#wpadminbar ~ .nav { top: 32px; }
@media (max-width: 782px) {
  #wpadminbar ~ .nav { top: 46px; }
}

/* WP global styles inject color on headings — override them all */
body h1, body h2, body h3,
body .hero__h1,
body .section-title,
body .section-title--light,
body .why__sticky-title,
body .how__step-title,
body .cta-section__title,
body .svc__title,
body .resource__title,
body .person__name,
body .testimonial__quote {
  color: inherit;
}

/* Explicit hero heading color */
body .hero__h1 { color: #ffffff !important; }
body .hero__h1 em { color: #c9a547 !important; }

/* Section titles on dark backgrounds */
body .section-title--light { color: #ffffff !important; }
body .section-title--light em { color: #c9a547 !important; }
body .section-title em { color: #c9a547 !important; }

/* Service cards */
body .svc__title { color: #ffffff !important; }

/* How it works */
body .how__step-title { color: #ffffff !important; }

/* CTA */
body .cta-section__title { color: #ffffff !important; }
body .cta-section__title em { color: #c9a547 !important; }

/* Why section */
body .why__sticky-title { color: #0e1520 !important; }

/* Resources */
body .resource__title { color: #ffffff !important; }

/* Testimonials */
body .testimonial__quote { color: #0e1520 !important; }

/* About */
body .person__name { color: #0e1520 !important; }

/* FAQ */
body .faq__q { color: #ffffff !important; }

/* Nav */
body .nav__links .nav__cta-link { background: #c9a547 !important; color: #0e1520 !important; }

/* Buttons — ensure gold fill renders */
body .btn--gold { background: #c9a547 !important; color: #0e1520 !important; }
body .btn--gold:hover { background: #dfc070 !important; }
body .btn--ghost { background: transparent !important; color: #ffffff !important; border: 1px solid rgba(255,255,255,.22) !important; }
body .btn--ghost:hover { border-color: rgba(255,255,255,.5) !important; background: rgba(255,255,255,.05) !important; }

/* Hero stat values */
body .hero__stat-val { color: #c9a547 !important; }

/* Eyebrow */
body .eyebrow { color: #c9a547 !important; }

/* =============================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
============================================= */
.legal-page { background: var(--cream); color: var(--on-light); }
.legal-page .nav { position: static; border-bottom: 1px solid rgba(14,21,32,.08); }
.legal-page .nav__inner { padding: 1.25rem 0; }

.legal-wrap { padding: 5rem 0 7rem; }
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); letter-spacing: -.02em;
  line-height: 1.1; margin-bottom: .75rem;
}
.legal-meta {
  font-size: .8rem; color: var(--on-light-mid);
  letter-spacing: .04em; margin-bottom: 3rem;
}
.legal-body { max-width: 720px; }
.legal-body p { font-size: .95rem; line-height: 1.8; margin-bottom: 1.25rem; color: var(--on-light); }
.legal-body h2 {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--navy); margin: 2.5rem 0 .75rem;
  letter-spacing: -.01em;
}
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-body ul li { font-size: .95rem; line-height: 1.75; margin-bottom: .4rem; color: var(--on-light); }
.legal-body address { font-style: normal; font-size: .95rem; line-height: 1.8; color: var(--on-light); }
.legal-body a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(14,21,32,.25); }
.legal-body a:hover { text-decoration-color: var(--navy); }

/* =============================================
   COOKIE NOTICE BANNER
============================================= */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(14,21,32,.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(0); transition: transform .3s ease;
}
.cookie-notice.is-hidden { transform: translateY(110%); }
.cookie-notice__text {
  font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.6;
  max-width: 680px; text-align: center;
}
.cookie-notice__text a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,165,71,.4); }
.cookie-notice__text a:hover { text-decoration-color: var(--gold); }
.cookie-notice__btn {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: var(--r-sm);
  padding: .5rem 1.25rem; font-family: var(--font-body);
  font-size: .78rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  min-height: 44px; min-width: 44px;
  transition: background .2s;
}
.cookie-notice__btn:hover { background: #dfc070; }

/* Zero cost display number */
body .why__zero-num { color: #c9a547 !important; }

/* =============================================
   INNER SEO PAGES — shared styles
============================================= */

/* Hero */
.inner-hero {
  background: var(--navy); padding: 9rem 0 5.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.inner-hero__eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.inner-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white); line-height: 1.15; letter-spacing: -.02em;
  max-width: 820px; margin: 0 auto 1.25rem;
}
.inner-hero__sub {
  font-size: 1.05rem; color: var(--on-dark-muted);
  max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.inner-hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: .5rem; align-items: center; justify-content: center;
  font-size: .75rem; color: rgba(255,255,255,.35); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,.2); }

/* Sections */
.inner-section { padding: 5rem 0; }
.inner-section--alt { background: var(--cream); }
.inner-section--dark { background: var(--navy); }

.inner-section__eyebrow {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.inner-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 1rem;
}
.inner-section__h2--light { color: var(--white); }
.inner-section__lead {
  font-size: 1rem; color: var(--on-light-muted);
  max-width: 580px; line-height: 1.8; margin-bottom: 3rem;
}
.inner-section__lead--light { color: var(--on-dark-muted); }

/* Feature grid — 3 up */
.inner-feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.inner-feature-card {
  background: var(--white); border-radius: var(--r);
  padding: 2rem 1.75rem; border: 1px solid rgba(14,21,32,.08);
}
.inner-feature-card--dark {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08);
}
.inner-feature-card__icon {
  width: 42px; height: 42px; background: rgba(201,165,71,.12);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem;
}
.inner-feature-card__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.inner-feature-card__title {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--navy); margin-bottom: .5rem;
}
.inner-feature-card__title--light { color: var(--white); }
.inner-feature-card__body {
  font-size: .88rem; color: var(--on-light-muted); line-height: 1.65;
}
.inner-feature-card__body--light { color: var(--on-dark-muted); }

/* Two-col layout */
.inner-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

/* Checklist */
.inner-checklist {
  list-style: none; display: flex; flex-direction: column;
  gap: .85rem; margin: 1.5rem 0 2rem;
}
.inner-checklist li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; color: var(--on-light-muted); line-height: 1.6;
}
.inner-checklist li::before {
  content: '';
  flex-shrink: 0; width: 18px; height: 18px; margin-top: .15rem;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23c9a547' stroke-width='2.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.inner-checklist--light li { color: var(--on-dark-muted); }

/* Service hub cards (used on Texas hub) */
.service-hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.service-hub-card {
  background: rgba(255,255,255,.04); border-radius: var(--r);
  padding: 2.25rem 2rem; text-decoration: none; display: block;
  border: 1px solid rgba(201,165,71,.15);
  transition: border-color .2s, transform .22s var(--ease);
}
.service-hub-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-hub-card__icon {
  width: 40px; height: 40px; background: rgba(201,165,71,.1);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.service-hub-card__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.service-hub-card__title {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--white); margin-bottom: .6rem;
}
.service-hub-card__body {
  font-size: .85rem; color: var(--on-dark-muted); line-height: 1.65; margin-bottom: 1.25rem;
}
.service-hub-card__link {
  font-size: .78rem; font-weight: 600; color: var(--gold); letter-spacing: .05em;
}

/* Stat block (2-col visual panel) */
.inner-stat-stack { display: flex; flex-direction: column; gap: 1.75rem; }
.inner-stat { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1.75rem; }
.inner-stat:last-child { border-bottom: none; padding-bottom: 0; }
.inner-stat__number {
  font-family: var(--font-display); font-size: 2.6rem;
  color: var(--gold); line-height: 1; margin-bottom: .3rem;
}
.inner-stat__label { font-size: .85rem; color: var(--on-dark-muted); line-height: 1.55; }

/* CTA band */
.inner-cta-band { background: var(--navy); padding: 6rem 0; text-align: center; }
.inner-cta-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white); margin-bottom: 1rem; letter-spacing: -.02em;
}
.inner-cta-band__sub {
  font-size: 1rem; color: var(--on-dark-muted);
  max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.75;
}
.inner-cta-band__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .inner-feature-grid { grid-template-columns: 1fr 1fr; }
  .inner-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .inner-feature-grid { grid-template-columns: 1fr; }
  .service-hub-grid { grid-template-columns: 1fr; }
  .inner-hero { padding: 7rem 0 3.5rem; }
  .inner-section { padding: 3.5rem 0; }
  .inner-cta-band { padding: 4rem 0; }
}
