/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --color-bg: #f8f7f4;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #555555;
  --color-accent: #2563a8;
  --color-accent-hover: #1d4f8a;
  --color-border: #e5e3de;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-height: 84px;
  --section-pad-v: clamp(4rem, 10vh, 7rem);
  --section-pad-h: clamp(1.5rem, 5vw, 5rem);
  --max-width: 1200px;
  --max-width-narrow: 760px;

  --radius: 4px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
  --transition: 0.2s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-family: var(--font-body); font-weight: 700; }

h1 em, h2 em { font-style: italic; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.eyebrow--light { color: #7db3e8; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  color: var(--color-accent-hover);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 10px 22px;
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   PLACEHOLDERS
============================================================ */
.img-placeholder {
  background: #e8e6e1;
  width: 100%;
  border-radius: var(--radius);
}

.img-placeholder--portrait { aspect-ratio: 3/4; }
.img-placeholder--stage    { aspect-ratio: 4/3; }
.img-placeholder--hero     { aspect-ratio: 16/7; max-height: 480px; }

.video-placeholder {
  background: #111;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.video-placeholder-inner {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  height: var(--nav-height);
}

.site-nav.scrolled {
  border-color: var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links ul a:hover,
.nav-links ul a[aria-current="page"] {
  color: var(--color-text);
}

.nav-cta { margin-left: 0.5rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-text);
  align-self: flex-end;
  padding: 1rem;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 99;
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 1rem;
  }

  .nav-links ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links ul a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .nav-close { display: block; }

  .nav-cta {
    margin: 1.5rem 0 0;
    width: 100%;
    justify-content: center;
  }

  .nav-overlay.is-active { display: block; }
}

/* ============================================================
   HOMEPAGE — SCROLL CONTAINER
============================================================ */
.page-home main { padding-top: 0; }

.homepage-scroll-container {
  padding-top: var(--nav-height);
}

/* Desktop scroll snap */
@media (min-width: 768px) {
  .homepage-scroll-container {
    height: calc(100vh - var(--nav-height));
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    padding-top: 0;
  }
}

/* ============================================================
   HOMEPAGE SECTIONS
============================================================ */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad-v) var(--section-pad-h);
}

@media (min-width: 768px) {
  .section {
    scroll-snap-align: start;
    min-height: 100%;
    height: 100vh;
    overflow: hidden;
  }
}

.section-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: var(--max-width-narrow);
  text-align: center;
}

/* Section backgrounds */
.section-hero             { background: var(--color-bg); }
.section-problem          { background: var(--color-surface); }
.section-guide            { background: var(--color-bg); }
.section-plan             { background: var(--color-surface); }
.section-testimonials-teaser { background: var(--color-bg); }
.section-video            { background: #1a1a1a; }
.section-cta              { background: var(--color-bg); }

/* Animate-in sections */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.hero-heading {
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  margin-bottom: 0.6rem;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 1.1rem;
}

.hero-subhead {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .section-hero {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Image below text on mobile (natural DOM order — no order override) */
  .hero-image {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-heading {
    margin-bottom: 0.4rem;
  }

  .hero-kicker {
    margin-bottom: 0.75rem;
  }

  .hero-subhead {
    font-size: 0.975rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .btn-ghost {
    text-align: center;
    padding-left: 0;
  }
}

/* ──────────────────────────────────────────────────────────
   PROBLEM SECTION
────────────────────────────────────────────────────────── */
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: center;
}

.problem-content h2 { margin-bottom: 2.5rem; }

.problem-photo {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}

@media (max-width: 900px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .problem-image {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .problem-columns { grid-template-columns: 1fr; }
}

.problem-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  color: var(--color-text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.problem-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-border);
}

/* ──────────────────────────────────────────────────────────
   GUIDE SECTION
────────────────────────────────────────────────────────── */
.guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 767px) {
  .guide-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.guide-photo {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.guide-bio {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.credential-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: 2px;
  padding: 5px 10px;
}

/* ──────────────────────────────────────────────────────────
   PLAN / STEPS SECTION
────────────────────────────────────────────────────────── */
.section-plan h2 { margin-bottom: 3rem; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .steps-row { grid-template-columns: 1fr; }
}

.step-card {
  background: var(--color-bg);
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step-card p  { font-size: 0.95rem; color: var(--color-text-secondary); }

.plan-cta { text-align: center; }

/* ──────────────────────────────────────────────────────────
   TESTIMONIALS TEASER
────────────────────────────────────────────────────────── */
.section-testimonials-teaser h2 { margin-bottom: 2.5rem; }

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875rem;
}

.testimonial-attribution strong {
  color: var(--color-text);
}

.testimonial-attribution span {
  color: var(--color-text-secondary);
}

.testimonials-link { text-align: center; }

/* ──────────────────────────────────────────────────────────
   VIDEO SECTION (dark)
────────────────────────────────────────────────────────── */
.section-video { text-align: center; }

.heading--light { color: #ffffff; }

.section-subhead {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

.section-subhead--light { color: rgba(255,255,255,0.6); }

/* ──────────────────────────────────────────────────────────
   FINAL CTA SECTION
────────────────────────────────────────────────────────── */
.section-cta { text-align: center; }
.section-cta h2 { margin-bottom: 1.5rem; }

.cta-body {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-phone {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.cta-phone a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.cta-phone a:hover { color: var(--color-text); }

/* ============================================================
   INNER PAGE LAYOUT
============================================================ */
.page-inner main {
  padding-top: var(--nav-height);
}

.inner-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--section-pad-h) 6rem;
}

.inner-page--narrow {
  max-width: var(--max-width-narrow);
}

.inner-page--prose {
  font-size: 1rem;
  line-height: 1.8;
}

.prose-content h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose-content h2:first-child {
  margin-top: 0;
}

.prose-content p {
  color: var(--color-text-secondary);
}

.prose-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose-content li {
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.prose-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.prose-content a:hover {
  color: var(--color-accent-hover);
}

.prose-content address {
  font-style: normal;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

/* Page header */
.page-header {
  margin-bottom: 3rem;
  max-width: 700px;
}

.page-intro {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

/* Testimonials header — two-column with photo on right */
.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.testimonials-header-photo {
  width: 100%;
  border-radius: 8px;
  display: block;
}

@media (max-width: 767px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonials-header-image {
    max-width: 260px;
  }
}

/* Inner hero (Meet Dan) */
.inner-hero {
  margin-bottom: 4rem;
}

.inner-hero-image {
  margin-bottom: 2rem;
}

.meet-dan-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
}

.inner-hero-text .eyebrow { margin-top: 1rem; }

.inner-hero-text h1 { margin-top: 0.5rem; }

/* Bio layout */
.inner-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .inner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.bio-text p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.bio-teaser {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(37, 99, 168, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.25rem;
}

.bio-teaser a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.bio-teaser a:hover { color: var(--color-accent-hover); }

.bio-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

/* Inner CTA */
.inner-cta {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-border);
}

.inner-cta h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

/* ============================================================
   WATCH DAN — VIDEO GRID
============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr; }
}

.video-embed-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}

.video-embed-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.video-embed-wrapper--featured {
  grid-column: 1 / -1;
}

/* Homepage dark section featured video */
.section-video .video-embed-wrapper {
  max-width: 860px;
  margin: 0 auto 2rem;
  width: 100%;
}

/* ============================================================
   TESTIMONIALS — GRID
============================================================ */
.testimonials-grid {
  columns: 2;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .testimonials-grid { columns: 1; }
}

.testimonials-grid .testimonial-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  .contact-options { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.contact-card-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-card-value a {
  color: var(--color-text);
  text-decoration: none;
}

.contact-card-value a:hover { color: var(--color-accent); }

.contact-alt {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.contact-alt a { color: var(--color-accent); }

/* ============================================================
   QUOTE FORM
============================================================ */
.quote-form-wrapper,
.form-wrapper {
  max-width: 620px;
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Progress bar */
.form-progress {
  margin-bottom: 2.5rem;
}

.form-progress-bar {
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.form-progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.35s ease;
  width: 25%;
}

.form-progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* Fieldset / step */
.form-step {
  border: none;
  padding: 0;
}

.form-step-legend {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text);
}

/* Fields */
.form-field {
  margin-bottom: 1.5rem;
}

.form-field label,
.form-question {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.12);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #c0392b;
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Radio groups */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.6rem 0;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Form row (two columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* Helper text */
.field-helper {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* Required / optional marks */
.required-mark { color: var(--color-accent); }
.optional-mark { font-weight: 400; color: var(--color-text-secondary); font-size: 0.85em; }

/* Form actions */
.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.btn-submit { padding: 12px 28px; font-size: 14px; }

/* Confirmation screen */
.form-confirmation {
  text-align: center;
  padding: 4rem 2rem;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-confirmation h2 { margin-bottom: 1rem; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3rem var(--section-pad-h) 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--color-text); }

.footer-contact p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--color-accent); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--color-accent); }

/* ============================================================
   FOCUS VISIBLE / ACCESSIBILITY
============================================================ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  .site-nav, .site-footer { display: none; }
  .page-inner main { padding-top: 0; }
}

/* ============================================================
   PRESS KIT
============================================================ */
.press-kit-warning {
  background: #fdf3e0;
  border: 1px solid #e9c98a;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.press-kit-warning p {
  color: var(--color-text);
  margin: 0;
  font-weight: 500;
}

.press-kit-download-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.press-kit-download-list li {
  color: var(--color-text-secondary);
}

.press-kit-download-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.press-kit-download-list a::before {
  content: "↓";
}

.press-kit-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.press-kit-photo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 0.75rem;
  text-align: center;
}

.press-kit-photo-card img {
  width: 100%;
  border-radius: 2px;
  display: block;
  margin-bottom: 0.75rem;
}

.press-kit-photo-card a {
  font-size: 0.9rem;
}

/* ============================================================
   LEAD MAGNET LANDING PAGES
============================================================ */
.inner-cta--top {
  padding: 1rem 0 3rem;
  border-top: none;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.about-dan {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
}

@media (max-width: 480px) {
  .about-dan { grid-template-columns: 1fr; }
}

.about-dan p {
  color: var(--color-text-secondary);
  margin: 0;
}

.headshot-crop {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.headshot-crop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
