/* =============================================================
   CLEAR EDUCATIONAL ADVOCACY & CONSULTING
   Stylesheet — Editorial Authority
   ============================================================= */

:root {
  /* Color — warm editorial palette */
  --paper:        #F5F1EA;
  --paper-deep:   #ECE5D5;
  --ink:          #14171F;
  --ink-soft:     #3A3F4B;
  --ink-mute:     #6B6E78;
  --navy:         #1B2845;
  --navy-soft:    #2A3A5C;
  --gold:         #B8893C;
  --gold-deep:    #8E6829;
  --crimson:      #8B2C2C;
  --rule:         #D9D1BF;
  --rule-soft:    #E8E2D2;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Source Serif 4', Georgia, serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Geometry */
  --shell-max:   1240px;
  --gutter:      clamp(20px, 4vw, 56px);
  --section:     clamp(60px, 9vw, 120px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,137,60,0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(27,40,69,0.02) 0%, transparent 50%);
  z-index: 1;
}
body > * { position: relative; z-index: 2; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 450;
  letter-spacing: -0.018em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

p { margin: 0 0 1.1em; }
.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
em, i { font-style: italic; color: var(--ink-soft); }
strong { font-weight: 700; }

/* Small caps label — used like a journal */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Layout shell ---------- */
.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section) 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--shell-max);
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark svg { flex-shrink: 0; }
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--paper) !important;
  padding: 10px 18px;
  border-radius: 2px;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 20px var(--gutter) 28px;
    gap: 18px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  padding: clamp(70px, 11vw, 140px) 0 clamp(50px, 8vw, 100px);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 360;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--navy);
  font-weight: 380;
}

.hero-meta {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin-top: 36px;
  max-width: 480px;
}
.hero-meta-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.hero-meta-text {
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-side {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.hero-side::before {
  content: "FIELD NOTE";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--paper);
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.hero-side h3 {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.hero-side p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
}
.hero-side .signature {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--paper);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.btn-arrow::after {
  content: "→";
  transition: transform .25s ease;
}
.btn-arrow:hover { color: var(--gold-deep); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Three principles strip ---------- */
.principles {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(50px, 7vw, 90px) 0;
}
.principles .eyebrow {
  color: var(--gold);
}
.principles .eyebrow::before { background: var(--gold); }
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .principles-grid { grid-template-columns: repeat(4, 1fr); }
}
.principle {
  padding: 28px 24px 24px;
  border-top: 1px solid rgba(245,241,234,0.15);
  position: relative;
}
.principle-num {
  font-family: var(--display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.principle h4 {
  font-family: var(--display);
  font-weight: 450;
  font-size: 1.25rem;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.25;
}
.principle p {
  font-size: 0.94rem;
  color: rgba(245,241,234,0.78);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Services preview cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 56px;
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--paper);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s ease;
}
.service-card:hover { background: var(--paper-deep); }
.service-num {
  font-family: var(--display);
  font-size: 3.6rem;
  font-style: italic;
  font-weight: 350;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 460;
}
.service-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex-grow: 1;
}
.service-card .btn-arrow { font-size: 0.78rem; }

/* ---------- Section header utilities ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 800px) {
  .section-head {
    grid-template-columns: 1fr 1.6fr;
    align-items: end;
    gap: 64px;
  }
}
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "WONK" 0;
  margin: 12px 0 0;
  letter-spacing: -0.022em;
}
.section-head h2 em {
  font-style: italic;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  color: var(--navy);
}
.section-head .lede { margin: 0; }

/* ---------- About snapshot ---------- */
.about-snapshot {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
}
.about-portrait {
  background: var(--navy);
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.about-portrait::after {
  /* Decorative monogram */
  content: "PH";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(184, 137, 60, 0.18);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  letter-spacing: -0.05em;
}
.about-portrait-caption {
  position: relative;
  z-index: 2;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-portrait-caption strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-credentials {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.about-credentials li {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.about-credentials li::before {
  content: "§";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-family: var(--display);
  font-style: italic;
}

/* ---------- Field guide product feature ---------- */
.guide-feature {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.guide-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,137,60,0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(27,40,69,0.4) 0%, transparent 50%);
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .guide-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}
.guide-book {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}
.book {
  width: min(280px, 80%);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, #0F1A2E 100%);
  position: relative;
  transform: rotateY(-12deg) rotateX(2deg);
  transform-style: preserve-3d;
  box-shadow:
    -25px 25px 60px rgba(0,0,0,0.6),
    inset 4px 0 0 rgba(0,0,0,0.4),
    inset 12px 0 18px rgba(0,0,0,0.3);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.book:hover { transform: rotateY(-6deg) rotateX(1deg); }
.book::before {
  content: "";
  position: absolute;
  top: 18px; bottom: 18px; left: 18px; right: 18px;
  border: 1px solid rgba(184,137,60,0.35);
  pointer-events: none;
}
.book-eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.book-title {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "SOFT" 40, "WONK" 0;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--paper);
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  letter-spacing: -0.01em;
}
.book-title em {
  display: block;
  font-style: italic;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 8px;
  font-weight: 350;
}
.book-author {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.75);
  position: relative;
  z-index: 2;
  padding-top: 18px;
  border-top: 1px solid rgba(184,137,60,0.4);
}
.book-author strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 4px;
}

.guide-feature h2 {
  color: var(--paper);
  font-weight: 380;
}
.guide-feature h2 em {
  color: var(--gold);
}
.guide-feature .lede { color: rgba(245,241,234,0.78); }
.guide-feature .eyebrow { color: var(--gold); }
.guide-feature .eyebrow::before { background: var(--gold); }

.guide-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(245,241,234,0.18);
  border-bottom: 1px solid rgba(245,241,234,0.18);
}
.guide-stat-num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 360;
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.guide-stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.7);
  line-height: 1.4;
}

/* ---------- Pricing card (case manager page) ---------- */
.pricing {
  border: 1px solid var(--rule);
  padding: clamp(32px, 4vw, 48px);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) {
  .pricing { grid-template-columns: 1fr 1fr; }
}
.pricing-price {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 350;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "SOFT" 40, "WONK" 0;
  letter-spacing: -0.03em;
}
.pricing-price small {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-top: 12px;
  font-weight: 500;
}
.pricing-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
}
.pricing-list li {
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.98rem;
  position: relative;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-family: var(--display);
  font-weight: 600;
}

/* ---------- Numbered process list ---------- */
.process {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 4vw, 56px);
  background: var(--paper);
  padding: clamp(28px, 4vw, 48px) 0;
  align-items: start;
}
@media (min-width: 760px) {
  .process-step { grid-template-columns: 120px 1fr 1fr; }
}
.process-step-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 350;
  color: var(--gold);
  line-height: 1;
  font-variation-settings: "SOFT" 80, "WONK" 1;
}
.process-step h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  margin-bottom: 8px;
  font-weight: 470;
}
.process-step p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--rule-soft);
}
.page-hero h1 {
  max-width: 14ch;
  font-weight: 380;
}
.page-hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  color: var(--navy);
}
.page-hero .lede {
  max-width: 56ch;
  margin-top: 24px;
}

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.two-col h3 { margin-bottom: 14px; }

/* ---------- Pull-quote callout (like field guide boxes) ---------- */
.pullbox {
  background: var(--paper-deep);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 32px 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  color: var(--ink-soft);
}
.pullbox-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 10px;
}

.pullbox.dark {
  background: var(--navy);
  color: var(--paper);
  border-left-color: var(--gold);
}
.pullbox.dark .pullbox-label { color: var(--gold); }

/* ---------- Deliverables list ---------- */
.deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 40px 0;
}
@media (min-width: 700px) {
  .deliverables { grid-template-columns: 1fr 1fr; gap: 0 48px; }
}
.deliverables li {
  list-style: none;
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
}
.deliverables li::before {
  content: counter(deliverables-counter, decimal-leading-zero);
  counter-increment: deliverables-counter;
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  font-weight: 500;
}
.deliverables { counter-reset: deliverables-counter; padding: 0; }

/* ---------- Audience callouts ---------- */
.audience {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 40px);
  margin: 40px 0;
}
.audience h4 {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.audience p { margin: 0; font-size: 1rem; }

/* ---------- Contact form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .form-grid .span-half { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-full { grid-column: 1 / -1; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--navy);
  background: #FFF;
}
.form-field textarea { resize: vertical; min-height: 140px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}
.contact-info {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}
.contact-info dl {
  margin: 0;
  display: grid;
  gap: 24px;
}
.contact-info dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-info dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

/* ---------- Compliance strip (like field guide deadline callouts) ---------- */
.compliance-strip {
  background: var(--crimson);
  color: var(--paper);
  padding: clamp(32px, 5vw, 56px) 0;
}
.compliance-strip .eyebrow {
  color: var(--paper);
}
.compliance-strip .eyebrow::before { background: var(--paper); }
.compliance-strip h3 {
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 14px 0 0;
  max-width: 32ch;
  font-variation-settings: "SOFT" 60, "WONK" 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(245,241,234,0.8);
  padding: clamp(50px, 7vw, 80px) 0 30px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
}
.footer h4 {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a {
  color: rgba(245,241,234,0.75);
  transition: color .2s ease;
}
.footer a:hover { color: var(--gold); }
.footer .brand { color: var(--paper); }
.footer .brand small { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245,241,234,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,241,234,0.55);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Animations (entrance) ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: rise .9s cubic-bezier(.2,.8,.2,1) both;
}
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .18s; }
.delay-3 { animation-delay: .28s; }
.delay-4 { animation-delay: .38s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.maxw-prose { max-width: 65ch; }
.divider {
  height: 1px;
  background: var(--rule);
  margin: clamp(50px, 7vw, 90px) 0;
  border: 0;
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .nav-cta { display: none; }
  body { background: white; color: black; }
}
