/* =========================================================
   LAWSUITUP — Editorial Light
   Warm cream canvas · navy ink · brass accent · magazine layout
   (Light-mode adaptation of Editorial Noir, matching
    advancedlawyering.com/credit-report-errors palette)
   ========================================================= */

:root {
  /* Palette — warm cream + navy + brass (AL system) */
  --bg:         #F6F4EF;   /* warm cream canvas — same as AL */
  --bg-2:       #FFFFFF;   /* card surface */
  --bg-3:       #ECE7DD;   /* cream tint, elevated surface */
  --bg-inverse: #0A1828;   /* navy, for inverse sections */
  --hair:       rgba(10, 24, 40, 0.10);   /* hairline */
  --hair-2:     rgba(10, 24, 40, 0.18);
  --hair-dark:  rgba(246, 244, 239, 0.18); /* on dark surfaces */
  --ink:        #0A1828;   /* primary navy */
  --ink-2:      #102542;   /* deeper navy */
  --paper:      #F6F4EF;   /* used inside dark inverse sections */
  --paper-2:    #ECE7DD;
  --mute:       #6B7280;   /* muted, light bg */
  --mute-2:     #8C8472;   /* warm grey */
  --mute-dark:  #8A99B2;   /* muted on dark bg */
  --brass:      #B08D3F;   /* editorial accent — AL brass */
  --brass-2:    #927330;   /* darker brass on hover */
  --brass-deep: #6E5821;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Type scale */
  --fs-micro: 0.6875rem;
  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1.0625rem;
  --fs-md:    1.1875rem;
  --fs-lg:    1.5rem;
  --fs-xl:    2.25rem;
  --fs-2xl:   3.5rem;
  --fs-3xl:   5rem;
  --fs-mega:  clamp(3.25rem, 9vw, 7.5rem);

  /* Space — generous */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 72px;
  --sp-9: 112px;
  --sp-10: 168px;

  --container: 1180px;
  --container-narrow: 880px;
  --dur-fast: 220ms;
  --dur-med:  520ms;
  --dur-slow: 880ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
p { margin: 0 0 var(--sp-4); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -0.005em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--ink); color: var(--paper); }

/* Layout primitives */
.container        { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-6); }

/* Atmospheric vignette — soft brass tint */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(70% 50% at 80% 0%, rgba(176, 141, 63, 0.07), transparent 60%),
    radial-gradient(60% 60% at 10% 100%, rgba(10, 24, 40, 0.03), transparent 70%);
}

main, header, footer, section { position: relative; z-index: 1; }

/* Shared eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ============ HEADER (compact, navy banner) ============ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 24, 40, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(176, 141, 63, 0.30);
  transition: border-color var(--dur-med), background var(--dur-med), box-shadow var(--dur-med);
}
.hdr.is-scrolled {
  background: rgba(10, 24, 40, 1);
  border-bottom-color: rgba(176, 141, 63, 0.45);
  box-shadow: 0 14px 28px -22px rgba(10, 24, 40, 0.6);
}
.hdr__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--sp-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
}
.hdr__brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--paper);
  line-height: 1;
}
.hdr__brand .italic { font-style: italic; color: var(--brass); font-weight: 300; }
.hdr__brand .sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-left: 4px;
  font-weight: 500;
  position: relative;
  top: -1px;
}
.hdr__nav { display: flex; align-items: center; gap: var(--sp-5); }
.hdr__navlink {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-dark);
  padding: 6px 0;
  position: relative;
  font-weight: 500;
  transition: color var(--dur-fast);
}
.hdr__navlink::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--brass);
  transition: right var(--dur-med) var(--ease-out);
}
.hdr__navlink:hover { color: var(--paper); }
.hdr__navlink:hover::after { right: 0; }

.hdr__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  border: 1px solid var(--brass);
  padding: 9px 16px;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.hdr__cta:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.hdr__cta svg { width: 14px; height: 10px; }

@media (max-width: 820px) {
  .hdr__nav { display: none; }
  .hdr__inner { padding: 10px var(--sp-4); }
  .hdr__brand .sub { display: none; }
  .hdr__brand { font-size: 1.0625rem; }
  .hdr__cta { padding: 8px 12px; font-size: 0.6875rem; letter-spacing: 0.14em; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(20px, 3vw, 40px) 0 clamp(48px, 8vw, 112px);
  border-bottom: 1px solid var(--hair);
}
.hero__edition {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--sp-5);
  font-weight: 500;
}
.hero__edition .rule { flex: 0 0 56px; height: 1px; background: var(--brass); }
.hero__edition .brass { color: var(--brass); }

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-mega);
  line-height: 0.96;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
  max-width: 16ch;
}
.hero__h1 .italic { font-style: italic; color: var(--brass); font-weight: 300; }
.hero__h1 .line { display: block; }
.hero__h1 .line + .line { margin-top: 4px; }

.hero__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 1.9vw, 1.625rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: var(--sp-7);
}
.hero__lead::first-letter {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  padding: 0.1em 0.12em 0 0;
  color: var(--brass);
  font-style: italic;
}
.hero__lead strong { color: var(--ink); font-weight: 500; }

.hero__cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5);
}
.hero__phone {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.hero__phone a {
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  font-weight: 600;
  margin-left: 6px;
}

/* hero vitals row */
.hero__vitals {
  margin-top: clamp(56px, 8vw, 112px);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.vital__lbl {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
  font-weight: 500;
}
.vital__val {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.vital__val em { font-style: italic; color: var(--brass); font-weight: 300; }
@media (max-width: 720px) { .hero__vitals { grid-template-columns: 1fr 1fr; row-gap: var(--sp-5); } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 26px;
  background: var(--brass);
  color: var(--paper);
  border: 1px solid var(--brass);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn:hover { background: var(--brass-2); border-color: var(--brass-2); }
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn svg { width: 16px; height: 10px; }

.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }

/* ============ THESIS / PULL QUOTE ============ */
.thesis {
  padding: clamp(72px, 11vw, 144px) 0;
  border-bottom: 1px solid var(--hair);
  text-align: center;
  background: var(--bg-3);
}
.thesis__rule {
  width: 1px; height: 56px; background: var(--brass);
  margin: 0 auto var(--sp-6);
}
.thesis__quote {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.25;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 auto var(--sp-5);
  letter-spacing: -0.01em;
}
.thesis__quote .acc { color: var(--brass); font-style: italic; }
.thesis__attrib {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

/* ============ SECTIONS ============ */
.sec {
  padding: clamp(72px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.sec--paper {
  background: var(--bg-inverse);
  color: var(--paper);
}
.sec--paper .eyebrow { color: var(--brass); }
.sec--paper h2, .sec--paper h3, .sec--paper h4 { color: var(--paper); }

.sec__head {
  margin-bottom: var(--sp-8);
  max-width: 60ch;
}
.sec__num {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-3);
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600;
}
.sec__num .dash { width: 30px; height: 1px; background: var(--brass); display: block; }
.sec__h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-top: var(--sp-4);
  max-width: 18ch;
  color: var(--ink);
}
.sec--paper .sec__h2 { color: var(--paper); }
.sec__h2 .italic { font-style: italic; color: var(--brass); font-weight: 300; }
.sec__intro {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: var(--sp-5);
  max-width: 52ch;
}
.sec--paper .sec__intro { color: var(--mute-dark); }

/* ============ CASES — editorial cards ============ */
.cases {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hair);
}
.case {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: var(--sp-6) var(--sp-7);
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
  transition: background var(--dur-fast), padding var(--dur-fast);
}
.case:hover { background: rgba(176, 141, 63, 0.05); padding-left: var(--sp-4); padding-right: var(--sp-4); }
.case__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.875rem;
  color: var(--brass);
  line-height: 1;
}
.case__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
}
.case__b {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 48ch;
}
@media (max-width: 820px) {
  .case { grid-template-columns: 50px 1fr; gap: var(--sp-4) var(--sp-5); }
  .case__b { grid-column: 1 / -1; padding-left: 70px; }
}

/* ============ REMEDIES (inside the dark inverse section) ============ */
.remedies {
  margin-top: var(--sp-7);
  border-top: 1.5px solid rgba(176, 141, 63, 0.45);
}
.remedy {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: var(--sp-6) var(--sp-7);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(246, 244, 239, 0.12);
  align-items: baseline;
}
.remedy__roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.625rem;
  color: var(--brass);
  line-height: 1;
}
.remedy__t {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.remedy__d {
  font-size: 1.0625rem;
  color: var(--mute-dark);
  line-height: 1.6;
  margin: 0;
  max-width: 48ch;
}
@media (max-width: 820px) {
  .remedy { grid-template-columns: 60px 1fr; }
  .remedy__d { grid-column: 1 / -1; padding-left: 80px; }
}

/* ============ THREE WAYS ============ */
.ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-7);
}
.way {
  background: var(--bg-2);
  border: 1px solid var(--hair);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  position: relative;
  transition: border-color var(--dur-med), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-med);
  display: flex; flex-direction: column;
  min-height: 340px;
}
.way:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -40px rgba(10, 24, 40, 0.25);
}
.way__roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.625rem;
  color: var(--brass);
  margin-bottom: var(--sp-5);
}
.way__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  max-width: 18ch;
}
.way__t em { font-style: italic; color: var(--brass); font-weight: 300; }
.way__d {
  font-size: 1rem;
  color: var(--ink-2);
  flex-grow: 1;
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}
.way__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brass);
  align-self: flex-start;
  transition: color var(--dur-fast), gap var(--dur-fast);
}
.way__cta:hover { color: var(--brass-2); gap: 14px; }
.way__cta svg { width: 14px; height: 10px; }
@media (max-width: 900px) { .ways { grid-template-columns: 1fr; } }

/* ============ HOW IT WORKS ============ */
.timeline {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hair);
  margin-top: var(--sp-7);
}
.step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--sp-7);
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
  position: relative;
}
.step__roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.02em;
}
.step__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  max-width: 22ch;
}
.step__d {
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 720px) {
  .step { grid-template-columns: 80px 1fr; gap: var(--sp-4); }
}

/* ============ ABOUT ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-8);
  align-items: start;
}
.about__plate {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--brass);
  font-weight: 500;
}
.about__plate dt {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: var(--sp-5);
  font-weight: 500;
}
.about__plate dd {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--ink);
  margin: 6px 0 0;
  letter-spacing: -0.005em;
  text-transform: none;
}
.about__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.about__lead .italic { font-style: italic; color: var(--brass); }
.about__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: var(--sp-6);
  max-width: 56ch;
}
.about__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brass);
  transition: color var(--dur-fast), gap var(--dur-fast);
}
.about__cta:hover { color: var(--brass-2); gap: 16px; }
.about__cta svg { width: 14px; height: 10px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { max-width: var(--container-narrow); }
.faq__item {
  border-top: 1px solid var(--hair);
}
.faq__item:last-child { border-bottom: 1px solid var(--hair); }
.faq__item > summary {
  list-style: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-5);
  padding: var(--sp-6) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--dur-fast);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary:hover { color: var(--brass); }
.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px; position: relative;
  margin-top: 4px;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--brass);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq__icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) rotate(90deg); }
.faq__a {
  padding: 0 0 var(--sp-7);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 64ch;
}
.faq__a a { color: var(--ink); border-bottom: 1px solid var(--brass); }

/* ============ FORM ============ */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--sp-8);
  align-items: start;
}
.form-intro__h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  max-width: 14ch;
  color: var(--ink);
}
.form-intro__h2 .italic { font-style: italic; color: var(--brass); font-weight: 300; }
.form-intro__body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: var(--sp-6);
  max-width: 52ch;
}
.form-intro__alt {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 2;
  font-weight: 500;
}
.form-intro__alt a {
  color: var(--ink); border-bottom: 1px solid var(--brass);
  margin: 0 4px;
}

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--hair-2);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  position: relative;
  box-shadow: 0 1px 0 rgba(10, 24, 40, 0.04), 0 30px 70px -40px rgba(10, 24, 40, 0.15);
}
.form-card__head {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--hair);
}
.form-card__head .eyebrow { color: var(--brass); }
.form-card__head h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  margin-top: var(--sp-3);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.form-card__head h3 .italic { font-style: italic; color: var(--brass); }

.form .field { margin-bottom: var(--sp-4); position: relative; }
.form .field label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-weight: 600;
}
.form .field input,
.form .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hair);
  padding: 14px 14px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.form .field input::placeholder,
.form .field textarea::placeholder { color: var(--mute); opacity: 0.7; }
.form .field input:focus,
.form .field textarea:focus { outline: none; border-color: var(--brass); background: var(--paper); }
.form .field textarea { min-height: 7em; resize: vertical; line-height: 1.55; }
.form .field--error input,
.form .field--error textarea { border-color: #B8392E; }
.form .field__error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #B8392E;
  margin-top: 6px;
}
.form .field--error .field__error { display: block; }
.form__honey {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}
.form__submit { margin-top: var(--sp-4); }
.form__consent {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--mute);
  margin-top: var(--sp-5);
  line-height: 1.6;
  text-align: center;
}
.form__consent a { color: var(--ink); border-bottom: 1px solid var(--brass); }
.form__legal {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hair);
  font-size: 0.8125rem;
  color: var(--mute);
  line-height: 1.6;
}
.form__legal p { margin: 0 0 8px; }
.form__legal strong { color: var(--ink-2); font-weight: 600; }

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

/* ============ FINALE ============ */
.finale {
  padding: clamp(96px, 13vw, 192px) 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(176, 141, 63, 0.10), transparent 65%),
    var(--bg-inverse);
  color: var(--paper);
  border-top: 1px solid var(--hair);
}
.finale__rule {
  width: 1px; height: 56px; background: var(--brass);
  margin: 0 auto var(--sp-6);
}
.finale__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--paper);
  margin: 0 auto var(--sp-7);
  max-width: 18ch;
}
.finale__h .italic { font-style: italic; color: var(--brass); }
.finale__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-5);
}
.finale__phone {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--mute-dark);
}
.finale__phone a {
  color: var(--paper);
  border-bottom: 1px solid var(--brass);
  font-weight: 600;
  margin-left: 6px;
}

/* ============ FOOTER ============ */
.foot {
  background: #06101D;
  color: var(--mute-dark);
  padding: var(--sp-8) 0 var(--sp-6);
  border-top: 1px solid var(--hair-dark);
}
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--hair-dark);
}
.foot__brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.005em;
  color: var(--paper);
  display: inline-block;
  line-height: 1;
}
.foot__brand .italic { font-style: italic; color: var(--brass); font-weight: 300; }
.foot__brand .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 10px;
  font-weight: 500;
}
.foot__tag {
  margin: var(--sp-5) 0 var(--sp-5);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--mute-dark);
  max-width: 38ch;
  line-height: 1.6;
}
.foot__cross {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
  font-weight: 600;
}
.foot__cross:hover { color: var(--brass); }
.foot__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--sp-5);
  font-weight: 600;
}
.foot__col li { margin-bottom: 12px; }
.foot__col a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--mute-dark);
  transition: color var(--dur-fast);
}
.foot__col a:hover { color: var(--paper); }
.foot__bot {
  padding-top: var(--sp-5);
  display: flex; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-dark);
}
@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr 1fr; gap: var(--sp-7) var(--sp-6); }
}
@media (max-width: 540px) {
  .foot__top { grid-template-columns: 1fr; }
}

/* ============ STICKY MOBILE BAR ============ */
.sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--ink);
  border-top: 1px solid var(--hair-dark);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 -12px 36px -16px rgba(0,0,0,0.5);
}
.sticky a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.sticky__call { background: var(--paper); color: var(--ink); }
.sticky__form { background: var(--brass); color: var(--paper); }
@media (max-width: 820px) {
  .sticky { display: flex; }
  body { padding-bottom: 80px; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 880ms var(--ease-out), transform 880ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.cases > .reveal:nth-child(2) { transition-delay: 100ms; }
.cases > .reveal:nth-child(3) { transition-delay: 200ms; }
.cases > .reveal:nth-child(4) { transition-delay: 300ms; }
.cases > .reveal:nth-child(5) { transition-delay: 400ms; }
.cases > .reveal:nth-child(6) { transition-delay: 500ms; }
.ways > .reveal:nth-child(2) { transition-delay: 120ms; }
.ways > .reveal:nth-child(3) { transition-delay: 240ms; }
.timeline > .reveal:nth-child(2) { transition-delay: 100ms; }
.timeline > .reveal:nth-child(3) { transition-delay: 200ms; }
.timeline > .reveal:nth-child(4) { transition-delay: 300ms; }

/* ============ FOCUS ============ */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 var(--sp-4); }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { transition: none !important; animation: none !important; }
}
