/* =========================================================
   Law Office of Aron David Garza, PLLC
   Design system: dark editorial, brand red + navy
   Brand colors pulled from the firm logo (red / navy / white)
   ========================================================= */

:root {
  /* Surfaces */
  --ink:        #0A0A0D;
  --ink-2:      #101015;
  --ink-3:      #16161d;
  --navy:       #15233F;   /* logo navy */
  --navy-deep:  #0D1730;
  --line:       rgba(244, 240, 230, 0.10);
  --line-2:     rgba(244, 240, 230, 0.18);

  --cream:      #F4F1EA;
  --cream-dim:  rgba(244, 241, 234, 0.64);
  --cream-mute: rgba(244, 241, 234, 0.40);

  /* Brand red (accent) */
  --red:        #C8362C;
  --red-soft:   #E2554A;
  --red-deep:   #8E241C;

  /* Back-compat aliases (older rules referenced --gold*) */
  --gold:       var(--red);
  --gold-soft:  var(--red-soft);
  --gold-deep:  var(--red-deep);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1320px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--cream); }

@media (hover: hover) and (pointer: fine) {
  body.cursor-on, body.cursor-on a, body.cursor-on button { cursor: none; }
}

/* ---------- Shared type ---------- */
.section-label {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.section-label::before { content: ""; width: 28px; height: 1px; background: var(--red); opacity: 0.8; }

.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 4rem);
  line-height: 1.05; letter-spacing: -0.015em;
}
.muted-serif { font-style: italic; color: var(--cream-dim); }
.accent { color: var(--red); }

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

/* =========================================================
   Logo mark (SVG diamond-G)
   ========================================================= */
.brandmark { display: inline-grid; place-items: center; flex-shrink: 0; }
.brandmark svg { display: block; }
.brandmark .dia { fill: none; stroke: var(--red); stroke-width: 5.5; stroke-linejoin: round; }
.brandmark .g { fill: var(--cream); font-family: var(--sans); font-weight: 800; }
.brandmark--solid .g { fill: var(--cream); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 1.05rem 1.9rem; border-radius: 100px;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn--full { width: 100%; }
.btn--gold { background: var(--red); color: var(--cream); font-weight: 600; overflow: hidden; }
.btn--gold::after { content: ""; position: absolute; inset: 0; background: var(--red-deep); transform: translateY(101%); transition: transform 0.55s var(--ease); z-index: 1; }
.btn--gold:hover::after { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--red); color: var(--red-soft); }

/* =========================================================
   Custom cursor
   ========================================================= */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--cream); transform: translate(-50%, -50%); }
.cursor__ring { position: fixed; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(244,241,234,0.6); transform: translate(-50%, -50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease); }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(244,241,234,0.08); border-color: transparent; }
.cursor.is-down .cursor__ring { width: 26px; height: 26px; }

/* =========================================================
   Scroll progress
   ========================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--red-deep), var(--red-soft)); transform-origin: left; }

/* =========================================================
   Preloader
   ========================================================= */
.preloader { position: fixed; inset: 0; z-index: 9000; background: var(--ink); display: grid; place-items: center; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; color: var(--cream); }
.preloader__count { font-size: 0.9rem; color: var(--red); font-family: var(--sans); letter-spacing: 0.3em; }
html:not(.js) .preloader { display: none; }

/* =========================================================
   Nav
   ========================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 150; transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease); border-bottom: 1px solid transparent; }
.nav.is-stuck { background: rgba(10,10,13,0.74); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0.95rem var(--pad); display: flex; align-items: center; gap: 2rem; }
.nav__brand { display: flex; align-items: center; gap: 0.85rem; margin-right: auto; }
.nav__brandtext { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.nav__brandtext strong { font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em; }
.nav__brandtext small { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-mute); }

.nav__links { display: flex; gap: 1.9rem; }
.nav__links a { position: relative; font-size: 0.85rem; font-weight: 500; color: var(--cream-dim); letter-spacing: 0.02em; transition: color 0.3s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a[aria-current="page"] { color: var(--cream); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { padding: 0.7rem 1.3rem; font-size: 0.84rem; }
.nav__toggle { display: none; width: 42px; height: 42px; background: none; border: 1px solid var(--line-2); border-radius: 50%; position: relative; }
.nav__toggle span { position: absolute; left: 11px; width: 20px; height: 1.5px; background: var(--cream); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 23px; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Mobile menu */
.mobilemenu { position: fixed; inset: 0; z-index: 140; background: var(--ink-2); padding: 6.5rem var(--pad) 2.5rem; display: flex; flex-direction: column; justify-content: space-between; transform: translateY(-100%); transition: transform 0.6s var(--ease); visibility: hidden; overflow-y: auto; }
.mobilemenu.is-open { transform: translateY(0); visibility: visible; }
.mobilemenu__links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobilemenu__links a { font-family: var(--serif); font-size: clamp(1.7rem, 7.5vw, 2.6rem); padding: 0.5rem 0; border-bottom: 1px solid var(--line); color: var(--cream); }
.mobilemenu__cta { color: var(--red-soft) !important; }
.mobilemenu__foot { display: flex; flex-direction: column; gap: 0.4rem; color: var(--cream-mute); font-size: 0.9rem; padding-top: 1.4rem; }
.mobilemenu__foot a { color: var(--red-soft); font-size: 1.4rem; font-family: var(--serif); }

/* =========================================================
   Click-to-call / click-to-text bar
   ========================================================= */
.callbar { position: fixed; z-index: 130; }
/* Desktop: floating pill, bottom-right */
.callbar { right: 1.6rem; bottom: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.callbar__btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.25rem; border-radius: 100px; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; box-shadow: 0 12px 30px rgba(0,0,0,0.45); transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.callbar__btn svg { width: 17px; height: 17px; }
.callbar__call { background: var(--red); color: var(--cream); }
.callbar__text { background: var(--cream); color: var(--ink); }
.callbar__btn:hover { transform: translateY(-3px); }
.callbar__btn .lbl { white-space: nowrap; }

@media (max-width: 760px) {
  /* Mobile: full-width sticky bottom split bar */
  .callbar { left: 0; right: 0; bottom: 0; flex-direction: row; gap: 0; }
  .callbar__btn { flex: 1; justify-content: center; border-radius: 0; padding: 1.05rem; box-shadow: 0 -8px 24px rgba(0,0,0,0.4); font-size: 0.95rem; }
}

/* =========================================================
   Hero (home)
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 8rem var(--pad) 4rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 50% at 18% 28%, rgba(200,54,44,0.26), transparent 60%),
    radial-gradient(48% 58% at 82% 22%, rgba(21,35,63,0.55), transparent 62%),
    radial-gradient(60% 60% at 60% 92%, rgba(200,54,44,0.12), transparent 60%);
  filter: blur(22px); animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-3%, 2%, 0) scale(1.08); } }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 80%); -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 80%); opacity: 0.5; }
.hero__grain { position: absolute; inset: 0; opacity: 0.05; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.hero__content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 2rem; }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(200,54,44,0.22); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero__title { font-family: var(--serif); font-weight: 360; font-size: clamp(2.9rem, 1rem + 8.5vw, 8.5rem); line-height: 0.97; letter-spacing: -0.025em; margin-bottom: 2rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; color: var(--red-soft); }

.hero__sub { max-width: 42ch; color: var(--cream-dim); font-size: clamp(1rem, 0.95rem + 0.35vw, 1.22rem); line-height: 1.65; margin-bottom: 2.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; list-style: none; }
.hero__pills li { position: relative; padding-left: 1.3rem; font-size: 0.86rem; color: var(--cream-dim); letter-spacing: 0.01em; }
.hero__pills li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-size: 0.8rem; }

.hero__scroll { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-mute); }
.hero__scrollline { width: 1px; height: 54px; background: linear-gradient(var(--red), transparent); position: relative; overflow: hidden; }
.hero__scrollline::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--cream); animation: scrolldown 2.2s var(--ease) infinite; }
@keyframes scrolldown { 0% { top: -50%; } 100% { top: 100%; } }

/* =========================================================
   Page hero (subpages)
   ========================================================= */
.pagehero { position: relative; padding: 11rem var(--pad) 4rem; overflow: hidden; border-bottom: 1px solid var(--line); }
.pagehero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 80% 0%, rgba(21,35,63,0.6), transparent 60%), radial-gradient(40% 80% at 10% 10%, rgba(200,54,44,0.16), transparent 60%); z-index: 0; }
.pagehero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-mute); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--red-soft); }
.pagehero__title { font-family: var(--serif); font-weight: 380; font-size: clamp(2.6rem, 1.4rem + 5vw, 5.6rem); line-height: 1; letter-spacing: -0.02em; }
.pagehero__title em { font-style: italic; color: var(--red-soft); }
.pagehero__sub { margin-top: 1.6rem; max-width: 52ch; color: var(--cream-dim); font-size: clamp(1.02rem, 1rem + 0.4vw, 1.25rem); }

/* =========================================================
   Marquee
   ========================================================= */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); overflow: hidden; padding: 1.4rem 0; }
.marquee__track { display: flex; align-items: center; gap: 2.5rem; width: max-content; animation: marquee 38s linear infinite; font-family: var(--serif); font-size: clamp(1.1rem, 2.5vw, 1.8rem); color: var(--cream-dim); white-space: nowrap; }
.marquee__track .sep { color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Statement (scroll highlight)
   ========================================================= */
.statement { padding: clamp(6rem, 14vh, 12rem) var(--pad); }
.statement__inner { max-width: 1080px; margin: 0 auto; }
.statement__text { font-family: var(--serif); font-weight: 360; font-size: clamp(1.6rem, 1rem + 3vw, 3.4rem); line-height: 1.32; letter-spacing: -0.01em; }
.statement__text .word { color: rgba(244,241,234,0.16); transition: color 0.2s linear; display: inline-block; }
.statement__text .word.is-lit { color: var(--cream); }
.statement__text .word.is-gold { color: var(--red-soft); }
html:not(.js) .statement__text { color: var(--cream); }

/* =========================================================
   Practice cards (home + practice page)
   ========================================================= */
.section { padding: clamp(4rem, 8vh, 7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.practice { padding: clamp(4rem, 8vh, 7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.practice__head { margin-bottom: 3.5rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.practice__list { border-top: 1px solid var(--line); }

.pcard { position: relative; display: grid; grid-template-columns: 90px 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 4vw, 3.4rem) 0.5rem; border-bottom: 1px solid var(--line); transition: background 0.5s var(--ease), padding 0.5s var(--ease); overflow: hidden; }
.pcard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); }
.pcard:hover { background: var(--ink-2); padding-left: 1.6rem; padding-right: 1.6rem; }
.pcard:hover::before { transform: scaleY(1); transform-origin: top; }
.pcard__num { font-family: var(--serif); font-size: 1.1rem; color: var(--red); letter-spacing: 0.1em; }
.pcard__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 1rem + 2.4vw, 2.8rem); line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 0.9rem; transition: color 0.4s var(--ease); }
.pcard:hover .pcard__title { color: var(--red-soft); }
.pcard__desc { color: var(--cream-dim); max-width: 60ch; margin-bottom: 1.3rem; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.pcard__tags li { font-size: 0.76rem; letter-spacing: 0.04em; padding: 0.35rem 0.85rem; border: 1px solid var(--line-2); border-radius: 100px; color: var(--cream-dim); }
.pcard__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; text-align: right; min-width: 150px; }
.pcard__cta-text { font-size: 0.8rem; color: var(--cream-mute); letter-spacing: 0.04em; }
.pcard__arrow { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 1.3rem; color: var(--red); transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease); }
.pcard:hover .pcard__arrow { background: var(--red); color: var(--cream); transform: rotate(-45deg); }

/* Detailed practice blocks (practice-areas page) */
.parea { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,5rem); padding: clamp(3rem,6vw,5rem) 0; border-bottom: 1px solid var(--line); align-items: start; }
.parea:last-child { border-bottom: 0; }
.parea__index { font-family: var(--serif); font-size: clamp(3rem,8vw,6rem); color: var(--red); line-height: 0.9; }
.parea__index small { display: block; font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-mute); margin-top: 1rem; }
.parea h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem,1.2rem+2vw,2.8rem); line-height: 1.05; margin-bottom: 1.2rem; }
.parea p { color: var(--cream-dim); margin-bottom: 1.4rem; max-width: 60ch; }
.parea__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; margin: 1.6rem 0; }
.parea__cols li { list-style: none; padding: 0.5rem 0; border-top: 1px solid var(--line); color: var(--cream); font-size: 0.95rem; }
.parea__cols li::before { content: "\25C6"; color: var(--red); margin-right: 0.6rem; font-size: 0.62em; vertical-align: middle; }

/* =========================================================
   About
   ========================================================= */
.about { padding: clamp(4rem, 9vh, 8rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.about__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.portrait { position: relative; }
.portrait__frame { aspect-ratio: 4 / 5; border: 1px solid var(--line-2); border-radius: 6px; background: radial-gradient(120% 80% at 50% 0%, rgba(200,54,44,0.16), transparent 60%), linear-gradient(180deg, var(--navy-deep), var(--ink)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; padding: 2rem; text-align: center; position: relative; overflow: hidden; }
.portrait__frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: 6px; }
.portrait__frame::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 36px 36px; opacity: 0.4; mask-image: radial-gradient(60% 60% at 50% 50%, transparent, #000); -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, transparent, #000); }
.portrait__mono { position: relative; }
.portrait__name { font-family: var(--serif); font-size: 1.3rem; position: relative; }
.portrait__role { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-mute); position: relative; }
.portrait__badge { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--red); color: var(--cream); padding: 0.4rem 1rem; border-radius: 100px; font-weight: 600; white-space: nowrap; z-index: 2; }
.about__lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--cream); margin: 0 0 1.4rem; line-height: 1.6; }
.about__body { color: var(--cream-dim); margin-bottom: 1.6rem; }
.credentials { list-style: none; margin: 1.4rem 0 2.6rem; border-top: 1px solid var(--line); }
.credentials li { display: flex; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.credentials__year { font-family: var(--serif); color: var(--red); font-size: 1.1rem; min-width: 60px; }
.credentials__detail { color: var(--cream-dim); font-size: 0.98rem; }

/* =========================================================
   Results / stats
   ========================================================= */
.results { padding: clamp(4rem, 9vh, 8rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.results__head { text-align: center; margin-bottom: 4rem; }
.results__head .section-label { justify-content: center; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 3vw, 2.4rem); text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 1.5rem + 4vw, 5rem); line-height: 1; color: var(--red); letter-spacing: -0.02em; }
.stat__label { margin-top: 1rem; color: var(--cream-dim); font-size: 0.9rem; line-height: 1.5; }

/* =========================================================
   Process
   ========================================================= */
.process { padding: clamp(4rem, 9vh, 8rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.process__head { margin-bottom: 3.5rem; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { border-top: 1px solid var(--line-2); padding-top: 1.6rem; }
.step__num { font-family: var(--serif); font-size: 0.95rem; color: var(--red); letter-spacing: 0.1em; }
.step__title { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.15; margin: 1.4rem 0 0.8rem; }
.step__desc { color: var(--cream-dim); font-size: 0.95rem; }

/* =========================================================
   Case results page
   ========================================================= */
.disclaimer-band { background: var(--navy-deep); border: 1px solid var(--line); border-radius: 10px; padding: 1.6rem 1.8rem; color: var(--cream-dim); font-size: 0.9rem; line-height: 1.6; margin-bottom: 3rem; }
.disclaimer-band strong { color: var(--cream); }
.resultgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rcard { background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.rcard:hover { border-color: var(--red); transform: translateY(-4px); }
.rcard__verdict { font-family: var(--serif); font-size: 1.6rem; color: var(--red-soft); line-height: 1.1; }
.rcard__type { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-mute); }
.rcard__desc { color: var(--cream-dim); font-size: 0.94rem; }

/* =========================================================
   Voices / testimonials
   ========================================================= */
.voices { padding: clamp(4rem, 9vh, 8rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.voices__head { text-align: center; margin-bottom: 3.5rem; }
.voices__head .section-label { justify-content: center; }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.voice { background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px; padding: 2.4rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; position: relative; }
.voice::before { content: "\201C"; font-family: var(--serif); font-size: 4rem; color: var(--red); opacity: 0.5; line-height: 0.6; }
.voice p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--cream); font-style: italic; }
.voice cite { font-style: normal; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-mute); }

/* =========================================================
   CTA band
   ========================================================= */
.ctaband { position: relative; padding: clamp(4rem,9vw,7rem) var(--pad); text-align: center; overflow: hidden; border-top: 1px solid var(--line); }
.ctaband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(200,54,44,0.18), transparent 60%); }
.ctaband__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.ctaband h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,1.4rem+3vw,3.6rem); line-height: 1.05; margin-bottom: 1.2rem; }
.ctaband p { color: var(--cream-dim); margin-bottom: 2.2rem; }
.ctaband__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Contact
   ========================================================= */
.contact { padding: clamp(4rem, 9vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.4rem); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 1.6rem; }
.contact__title em { font-style: italic; color: var(--red-soft); }
.contact__lead { color: var(--cream-dim); max-width: 38ch; margin-bottom: 2.6rem; font-size: 1.08rem; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.contact__details li { display: flex; flex-direction: column; gap: 0.2rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.contact__k { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-mute); }
.contact__details a, .contact__details span.val { font-family: var(--serif); font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem); color: var(--cream); transition: color 0.3s var(--ease); }
.contact__details a:hover { color: var(--red-soft); }

.cform { background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.6rem, 4vw, 2.8rem); }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.field span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-mute); }
.field input, .field select, .field textarea { background: var(--ink); border: 1px solid var(--line-2); border-radius: 8px; padding: 0.95rem 1rem; color: var(--cream); font: inherit; font-size: 0.98rem; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); width: 100%; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #0d0d11; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C8362C' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--red-soft); }
.consent { display: flex; gap: 0.85rem; align-items: flex-start; margin: 0.4rem 0 1.4rem; padding: 1rem 1.1rem; border: 1px solid var(--line-2); border-radius: 8px; background: var(--ink); }
.consent input[type="checkbox"] { width: 22px; height: 22px; margin-top: 0.1rem; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.consent label { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.55; cursor: pointer; }
.consent a { color: var(--red-soft); text-decoration: underline; }
.consent input.invalid { outline: 2px solid var(--red-soft); outline-offset: 2px; }
.consent.flag { border-color: var(--red-soft); }
.cform__note { font-size: 0.76rem; color: var(--cream-mute); margin-top: 1rem; line-height: 1.5; }
.cform__success { margin-top: 1.2rem; color: var(--red-soft); font-size: 0.95rem; }

.mapwrap { margin-top: 3rem; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; height: 360px; filter: grayscale(0.2) contrast(1.05); }
.mapwrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   Legal / long-form (privacy, terms)
   ========================================================= */
.legal { max-width: 840px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) clamp(4rem, 8vw, 6rem); }
.legal__meta { font-size: 0.85rem; letter-spacing: 0.04em; color: var(--cream-mute); margin-bottom: 2.5rem; }
.legal__intro { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); color: var(--cream); line-height: 1.7; margin-bottom: 1.5rem; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.45rem, 1.1rem + 1.3vw, 1.95rem); line-height: 1.15; color: var(--cream); margin: 2.8rem 0 0.9rem; }
.legal h3 { font-size: 1rem; font-weight: 600; color: var(--cream); margin: 1.5rem 0 0.5rem; letter-spacing: 0.01em; }
.legal p, .legal li { color: var(--cream-dim); line-height: 1.75; margin-bottom: 1rem; }
.legal ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.legal li { position: relative; padding-left: 1.4rem; margin-bottom: 0.5rem; }
.legal li::before { content: "\25C6"; color: var(--red); font-size: 0.58em; position: absolute; left: 0; top: 0.7em; }
.legal a { color: var(--red-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--cream); font-weight: 600; }
.legal__callout { background: var(--navy-deep); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 10px; padding: 1.4rem 1.6rem; margin: 1.6rem 0; }
.legal__callout p:last-child { margin-bottom: 0; }
.legal__contact { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.6rem; }
.legal__evidence { margin: 1.8rem 0 0.5rem; }
.legal__evidence img { width: 100%; height: auto; display: block; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; }
.legal__evidence figcaption { margin-top: 0.8rem; font-size: 0.85rem; color: var(--cream-mute); text-align: center; }

/* =========================================================
   Footer
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5rem) var(--pad) 6rem; background: var(--ink-2); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand p { line-height: 1.4; font-size: 0.95rem; color: var(--cream-dim); }
.footer__brand strong { color: var(--cream); font-weight: 600; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a { color: var(--cream-dim); font-size: 0.92rem; transition: color 0.3s; }
.footer__nav a:hover { color: var(--red-soft); }
.footer__contact { display: flex; flex-direction: column; gap: 0.6rem; color: var(--cream-dim); font-size: 0.92rem; }
.footer__contact a:hover { color: var(--red-soft); }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.footer__copy { font-size: 0.85rem; color: var(--cream-mute); }
.footer__credit { font-size: 0.8rem; color: var(--cream-mute); }
.footer__credit a { color: var(--cream-dim); }
.footer__credit a:hover { color: var(--red-soft); }
.footer__disclaimer { font-size: 0.72rem; color: var(--cream-mute); line-height: 1.6; max-width: 90ch; }

/* =========================================================
   Reveal base
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .voices__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .portrait { max-width: 420px; }
  .contact__grid { grid-template-columns: 1fr; }
  .parea { grid-template-columns: 1fr; gap: 1.2rem; }
  .resultgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .pcard { grid-template-columns: 1fr; gap: 1rem; }
  .pcard__num { font-size: 0.95rem; }
  .pcard__cta { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding-bottom: 7rem; }
  .cform__row { grid-template-columns: 1fr; }
  .parea__cols { grid-template-columns: 1fr; }
  .resultgrid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero__scroll { display: none; }
  .marquee__track { font-size: 1.2rem; }
  .pagehero { padding-top: 8.5rem; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .statement__text .word { color: var(--cream) !important; }
  .marquee__track, .hero__aurora { animation: none; }
  .cursor { display: none !important; }
}
