/* ============================================================
   SQUARE ONE PERSONAL FINANCE — SHARED STYLESHEET
   ============================================================
   Mobile-first responsive design.
   Default styles target ~380px wide (phone).
   @media (min-width: 768px) targets tablet/desktop.
   @media (min-width: 1024px) targets wider desktop refinements.

   Link this from any page with:
     <link rel="stylesheet" href="styles.css">
   ============================================================ */

/* === BRAND TOKENS ===
   These are the only "magic numbers" — every color and font
   pulls from here. Drop these straight into Squarespace's
   Custom CSS to keep the system consistent. */
:root {
  /* Color */
  --teal:        #1F4747;
  --teal-mid:    #2A5858;
  --teal-dark:   #143838;
  --copper:      #B5732A;
  --copper-soft: #D4A472;
  --cream:       #C9B58A;
  --warm-white:  #FFFFFF;
  --paper:       #FFFFFF;
  --line:        rgba(31, 71, 71, 0.12);
  --line-dark:   rgba(245, 241, 230, 0.15);

  /* Type */
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:   'Source Sans 3', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Scale (used sparingly — most spacing inline) */
  --container:   1200px;

  /* Photo grading — tweak these to adjust the story photo's look.
     brightness: 1 = untouched, >1 lighter, <1 darker
     contrast:   1 = untouched, >1 punchier, <1 flatter
     saturate:   1 = untouched, >1 more vivid, <1 more muted
     warmth:     hue-rotate in deg; negative cools the image, positive warms it */
  --photo-brightness: 1.00;
  --photo-contrast:   1.00;
  --photo-saturate:   1.10;
  --photo-warmth:     -6deg;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* === BASE === */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;            /* Slightly larger base read */
  line-height: 1.6;
  color: var(--teal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

/* === SHARED UTILITIES === */

/* Container wraps section content and caps line lengths */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* Eyebrow — the small uppercase tag above section titles */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

/* Section title — Georgia serif, big, room to breathe */
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;     /* Pill shape */
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--copper);
  color: var(--warm-white);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--warm-white);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }

/* Text link with arrow — used throughout for "read more" type links */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--copper);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.15s ease;
}
.link-arrow:hover { gap: 0.75rem; }
.link-arrow--centered {
  display: flex;
  width: fit-content;
  margin: 2rem auto 0;
}

/* Section wrappers — vertical breathing room scales with screen */
section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

/* ============================================================
   1. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.nav-is-open { background: #fff; }

/* Mobile: hamburger — centered logo — balancing spacer (coffee CTA hidden).
   Desktop overrides back to the plain flex row below. */
.header-inner {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 0.5rem;
  height: 80px;
}
.logo-lockup {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0.1rem;
  text-decoration: none;
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-primary {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--teal);
}
.logo-secondary {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--teal);
  opacity: 0.7;
  margin-top: 4px;
  white-space: nowrap;
}

/* On mobile: nav links collapse into a dropdown, opened via .nav-toggle.
   The header's "Schedule coffee" CTA is hidden on mobile to keep the
   header uncluttered — a styled copy (.nav-cta) lives at the bottom
   of the dropdown instead. */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}
.header-right > a.btn { display: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  justify-self: start;
  grid-column: 1;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown stays in the flow (position: absolute, so it doesn't
   affect header layout) at all times and animates between states via
   opacity/transform — this lets it slide/fade open and closed instead
   of the display:none/flex toggle just popping instantly. */
.site-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(31, 71, 71, 0.1);
  border-top: 3px solid var(--copper);
  border-radius: 18px;
  padding: 0.5rem;
  box-shadow: 0 24px 48px rgba(31, 71, 71, 0.22), 0 4px 12px rgba(31, 71, 71, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px) scaleY(0.95);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
@media (prefers-reduced-motion: reduce) {
  .site-nav { transition: opacity 0.15s ease; transform: none; }
  .site-nav.is-open { transform: none; }
}
.site-nav.is-open a {
  padding: 0.9rem 1rem;
  margin: 0 0.25rem;
  font-size: 1.05rem;
  color: var(--teal);
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav.is-open a:hover { background: rgba(31, 71, 71, 0.06); }
.site-nav.is-open a.is-current { color: var(--copper); background: rgba(181, 115, 42, 0.08); }

/* "Schedule coffee" CTA repeated at the foot of the mobile dropdown —
   the header-right version of this button is hidden below 768px, so
   this is the only way to reach it on phones. */
.site-nav.is-open a.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem 0.25rem 0.25rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--warm-white);
  background: var(--copper);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(181, 115, 42, 0.3);
}
.site-nav.is-open a.nav-cta:hover { background: var(--teal); }
.site-nav.is-open a.nav-cta:active { transform: translateY(1px); }

@media (min-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    height: 88px;
  }
  .logo-lockup { margin-left: -0.5em; }
  .logo-mark { width: 56px; height: 56px; }
  .logo-primary { font-size: 1.3125rem; }
  .logo-secondary { font-size: 0.6875rem; letter-spacing: 0.22em;}
  .header-right {
    gap: 1.5rem;
    margin-left: auto;
  }
  .header-right > a.btn { display: inline-block; }
  .nav-toggle { display: none; }
  .nav-cta { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .site-nav a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--teal);
    transition: color 0.15s ease;
    position: relative;
    padding: 0.5rem 1rem;
  }
  .site-nav a:hover { color: var(--copper); }
  /* Active-page indicator — used on interior pages (about, faq,
     how it works, packages) to mark the current section */
  .site-nav a.is-current { color: var(--copper); }
  .site-nav a.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--copper);
    border-radius: 2px;
  }
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
.hero-content { order: 2; }
.hero-photo   { order: 1; }
@media (min-width: 768px) {
  .hero-content { order: 1; flex: 1.1; }
  .hero-photo   { order: 2; flex: 1; }
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.5rem 0 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--copper);
}
.hero-subhead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--teal);
  opacity: 0.85;
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* Hero CTA group — primary pill + subtle ghost side-by-side */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}
.hero-cta-secondary {
  border-color: transparent;
  color: var(--copper);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.hero-cta-secondary:hover {
  background: transparent;
  color: var(--teal);
}

/* Hero photo placeholder — looks intentional, not lazy. */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31,71,71,0.04), rgba(181,115,42,0.06)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(31,71,71,0.18);
  border-radius: 2px;
}
.photo-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.45;
  position: relative;
  z-index: 1;
}

/* Copper square corner accent — picks up the foundation-block motif
   (used by the About page's photo) */
.photo-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  background: var(--copper);
  border-radius: 4px;
  z-index: 2;
}

/* ============================================================
   3. LOCAL ANCHOR — thin band, low-key, high-information
   ============================================================ */
.local-anchor {
  padding: 1.125rem 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.local-anchor p {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.75;
}
.local-anchor strong {
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 1;
}

/* ============================================================
   4. SERVICES — three cards, each with an accent bar that
   echoes the logo's foundation blocks (cream, teal, copper)
   ============================================================ */
.services {
  background: var(--warm-white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;        /* mobile: single column */
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(31,71,71,0.18);
}
/* The accent bar = the logo motif, deconstructed */
.service-bar {
  width: 48px;
  height: 8px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.service-bar--cream  { background: var(--cream); }
.service-bar--teal   { background: var(--teal); }
.service-bar--copper { background: var(--copper); }

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.service-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--teal);
  opacity: 0.78;
}
.service-card-divider {
  flex: 1;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
.service-card-divider::after {
  content: '';
  width: 100%;
  border-top: 1px solid var(--line);
}
.service-card-goal {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--teal);
  opacity: 0.65;
  line-height: 1.5;
}

.services-footnote {
  max-width: 620px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  text-align: center;
}
.services-footnote-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.services-footnote-text {
  font-family: var(--font-serif);          /* the contrast: cards are sans, this is serif */
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--teal);
}
.services-footnote em {
  font-style: italic;
  color: var(--copper);
}

/* ============================================================
   5. PROCESS — four steps with numbered markers
   ============================================================ */
.story {
  background: var(--warm-white);
}
.story-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .story-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .story-photo   { flex: 0.85; }
  .story-content { flex: 1.15; }
}
.story-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  border-radius: inherit;
  filter: brightness(var(--photo-brightness)) contrast(var(--photo-contrast))
          saturate(var(--photo-saturate)) hue-rotate(var(--photo-warmth));
}
.story-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.125rem;
  color: var(--teal);
  opacity: 0.88;
}
.story-content p em {
  font-style: italic;
  color: var(--copper);
}
.story-content .link-arrow {
  margin-top: 0.5rem;
}

/* ============================================================
   6. STORY — photo + personal journey
   ============================================================ */
/* Teal band — breaks up the white run and echoes the final CTA/footer,
   so the white service cards above and story below pop against it. */
.process {
  background: var(--teal);
  color: var(--warm-white);
}
.process .eyebrow        { color: var(--copper-soft); }
.process .section-title  { color: var(--warm-white); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.process-step {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--copper-soft);
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
  color: var(--warm-white);
}
.process-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--warm-white);
  opacity: 0.78;
}
/* First step gets visual emphasis — it's the free, no-strings start */
.process-step--featured {
  border-top-color: var(--copper);
  border-top-width: 3px;
  padding-top: 1.625rem;
}
.process-step--featured .step-number::after {
  content: " · Free, on me";
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
}
.process-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.process-cta-link {
  color: var(--copper-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================================
   7. FAQ TEASER — native <details> for zero-JS accordion
   ============================================================ */
.faq {
  background: var(--paper);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--copper); }
.faq-item summary::-webkit-details-marker { display: none; }
/* Custom chevron */
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 6px;
}
.faq-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--teal);
  opacity: 0.82;
  padding: 0.875rem 0 0.5rem;
  max-width: 65ch;
}

/* ============================================================
   8. FINAL CTA — dark teal full-bleed, copper button
   Echoes the hero but with the energy of "you've decided"
   ============================================================ */
.final-cta {
  background: var(--teal-dark);
  color: var(--warm-white);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.final-cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.final-cta-subhead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--warm-white);
  opacity: 0.78;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}
.final-cta .btn-primary {
  background: var(--copper);
}
.final-cta .btn-primary:hover {
  background: var(--copper-soft);
  color: var(--teal-dark);
}

/* ============================================================
   9. FOOTER — continues the dark teal so the bottom of the
   page feels like one weighted anchor, not two stripes
   ============================================================ */
.site-footer {
  background: var(--teal-dark);
  color: var(--warm-white);
  padding: clamp(3rem, 5vw, 4.5rem) 0 0;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-brand .logo-mark { margin-bottom: 1rem; }
.footer-brand .logo-lockup { margin-bottom: 1rem; }
.footer-brand .logo-primary { color: var(--warm-white); }
.footer-brand .logo-secondary { color: var(--warm-white); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--warm-white);
  opacity: 0.75;
  max-width: 22rem;
}
.footer-column h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 1.125rem;
}
.footer-column a {
  display: block;
  font-size: 0.9375rem;
  color: var(--warm-white);
  opacity: 0.82;
  padding: 0.375rem 0;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.footer-column a:hover {
  opacity: 1;
  color: var(--copper-soft);
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--warm-white);
  opacity: 0.5;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom p { text-align: left; }
}

/* ============================================================
   ACCESSIBILITY / NICE TOUCHES
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--copper);
  color: var(--warm-white);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ============================================================
   INTERIOR PAGES
   Distinct components used by the secondary pages (About, FAQ,
   How it works, Packages). Shared chrome — header, footer,
   buttons, FAQ accordion, final CTA — is defined above and is
   inherited by every page.
   ============================================================
   ============================================================ */

/* ============================================================
   PAGE BANNER — the intro block at the top of interior pages.
   Lighter than the home hero (no photo), but with enough room
   to feel like a real page top. Shared by all interior pages.
   ============================================================ */
.page-banner {
  padding: clamp(2.875rem, 5.75vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: var(--warm-white);
  text-align: center;
}
.page-banner .eyebrow { margin-bottom: 1.25rem; }
.page-banner h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin: 0 auto 1.5rem;
}
.page-banner h1 em {
  font-style: italic;
  color: var(--copper);
}
.page-banner-subhead {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 38rem;
  margin: 0 auto;
  color: var(--teal);
  opacity: 0.85;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Story — large editorial section with photo + full journey
   (deeper than the home page tease). Note: this uses
   .story-section-inner, distinct from the home page's .story-inner. */
.story-section {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.story-section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .story-section-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.5rem;
  }
  .story-photo-col   { flex: 0 0 38%; position: sticky; top: max(128px, calc(50vh - 269px)); }
  .story-content-col { flex: 1; max-width: 640px; }
}
.story-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.story-photo-wrap .story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.story-content-col h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.story-content-col h2 em {
  font-style: italic;
  color: var(--copper);
}
.story-content-col h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}
.story-content-col p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--teal);
  opacity: 0.88;
}
.story-content-col p + p { margin-top: 1.125rem; }
.story-content-col p em {
  font-style: italic;
  color: var(--copper);
  opacity: 1;
}

/* Budget breakdown — inline data list visualizing the
   "10% / 3% / 7%" allocation from the story.
   Uses .budget-breakdown .budget-breakdown-label (specificity 0-2-0)
   to beat .story-content-col p (0-1-1) which would otherwise
   overwrite color and opacity on the label. */
.budget-breakdown {
  margin: 1.75rem 0 0.5rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 20px -8px rgba(31, 71, 71, 0.1);
}
.budget-breakdown .budget-breakdown-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 1;
  margin-bottom: 1.5rem;
}
.budget-breakdown dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.125rem 1.75rem;
  align-items: center;
}
.budget-breakdown dt {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.budget-breakdown dd {
  font-size: 0.9375rem;
  color: var(--teal);
  opacity: 0.78;
  line-height: 1.45;
}

/* Credentials — stat grid backing up the "why trust me" answer */
.credentials {
  background: var(--teal);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.credentials-intro {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.credentials .eyebrow { color: var(--copper-soft); }
.credentials-intro h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  color: var(--warm-white);
}
.credentials-intro h2 em {
  font-style: italic;
  color: var(--copper-soft);
}
.credentials-intro p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--warm-white);
  opacity: 0.82;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 900px; margin-left: auto; margin-right: auto; }
}
.stat-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(31,71,71,0.18);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 36px;
  height: 4px;
  border-radius: 0 0 2px 2px;
}
.stat-card:nth-child(1)::before { background: var(--copper-soft); }
.stat-card:nth-child(2)::before { background: var(--teal-mid); }
.stat-card:nth-child(3)::before { background: var(--copper); }
.stat-card:nth-child(4)::before { background: var(--copper-soft); }
.stat-value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.875rem;
}
.stat-detail {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--teal);
  opacity: 0.78;
  margin-top: auto;
}

/* Why local — the Dave Ramsey reframe, with a pull quote */
.why-local {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.why-local-inner {
  max-width: 800px;
  margin: 0 auto;
}
.why-local h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.why-local h2 em {
  font-style: italic;
  color: var(--copper);
}
.why-local p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--teal);
  opacity: 0.88;
}
.why-local p + p { margin-top: 1.125rem; }
.why-local p em {
  font-style: italic;
  color: var(--copper);
  opacity: 1;
}
.local-pullquote {
  margin: 2.5rem 0;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  background: var(--warm-white);
  border-left: 3px solid var(--copper);
  border-radius: 0 4px 4px 0;
}
.local-pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--teal);
  opacity: 0.92;
}

/* Outside of work — the personal/human side, grid of tiles */
.outside-work {
  background: var(--warm-white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.outside-intro-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .outside-intro-wrap {
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 4rem;
  }
}
.outside-intro {
  max-width: 720px;
}
.outside-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.outside-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(181, 115, 42, 0.08);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.outside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82);
}
.outside-intro h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
.outside-intro h2 em {
  font-style: italic;
  color: var(--copper);
}
.outside-intro p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--teal);
  opacity: 0.85;
}
.outside-intro p + p { margin-top: 1.125rem; }
.things-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .things-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .things-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}
.thing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease;
}
.thing-card:hover { transform: translateY(-2px); }
.thing-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  color: var(--teal);
  padding-left: 0.75rem;
  border-left: 3px solid var(--teal);
}
.thing-card:nth-child(even) h3 {
  border-left-color: var(--copper);
}
.thing-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--teal);
  opacity: 0.78;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* Jump nav — sticky category pills under the banner */
.faq-jumpnav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  padding: 0.875rem 0;
  display: none;
}
@media (min-width: 768px) {
  .faq-jumpnav { display: block; }
}
.faq-jumpnav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.faq-jumpnav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.faq-jumpnav a:hover {
  background: var(--teal);
  color: var(--warm-white);
  border-color: var(--teal);
}

/* FAQ section — alternating backgrounds with a category header.
   The accordion itself (.faq-list / .faq-item) is the shared
   component defined above. */
.faq-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  scroll-margin-top: 100px;     /* anchor offset for sticky header */
}
.faq-section--paper { background: var(--paper); }
.faq-section-header {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.faq-section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.faq-section-title em {
  font-style: italic;
  color: var(--copper);
}
.faq-section-blurb {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--teal);
  opacity: 0.78;
  max-width: 36rem;
  margin: 0 auto;
}

/* Still have questions — softer prompt before the final CTA */
.still-have-questions {
  background: var(--warm-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
}
.still-have-questions-inner {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: 0 8px 8px 0;
  padding: 2.25rem 2rem;
}
@media (min-width: 640px) {
  .still-have-questions-inner {
    padding: 2.75rem 3rem;
  }
}
.still-have-questions h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.005em;
  margin-bottom: 0.75rem;
}
.still-have-questions h2 em {
  font-style: italic;
  color: var(--copper);
}
.still-have-questions p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--teal);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */

/* Step detail — one section per step. Large copper number on
   the left as the visual anchor, structured content on the right. */
.step-detail {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.step-detail--paper { background: var(--paper); }
.step-detail-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .step-detail-inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
  .step-detail-aside { flex: 0 0 240px; }
  .step-detail-content { flex: 1; max-width: 640px; }
}
.step-number-display {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 11vw, 8rem);
  font-weight: 500;
  line-height: 0.85;
  color: var(--copper);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  color: var(--teal);
}
.step-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--teal);
  opacity: 0.7;
}
.step-detail-content h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.875rem;
  margin-top: 2.25rem;
}
.step-detail-content > h3:first-child { margin-top: 0; }
.step-detail-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--teal);
  opacity: 0.88;
}
.step-detail-content p + p { margin-top: 1rem; }
.step-detail-content em {
  font-style: italic;
  color: var(--copper);
}
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1.5rem 0;
}
.step-list li {
  position: relative;
  padding: 0.875rem 0 0.875rem 1.875rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--teal);
  opacity: 0.88;
  border-top: 1px solid var(--line);
}
.step-list li:first-child { border-top: none; padding-top: 0.5rem; }
.step-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.3rem;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 2px;
}
.step-list li:first-child::before { top: 0.95rem; }
.step-list li:nth-child(1)::before { background: var(--copper); }
.step-list li:nth-child(2)::before { background: var(--teal); }
.step-list li:nth-child(3)::before { background: var(--copper-soft); }
.step-list li:nth-child(4)::before { background: #E8C48A; }
.step-list li:nth-child(5)::before { background: var(--cream); }
.step-list li:nth-child(6)::before { background: rgba(31, 71, 71, 0.55); }
.step-list li small {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.65;
  margin-top: 0.25rem;
}
.step-pullquote {
  margin: 2rem 0 0;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  background: var(--warm-white);
  border-left: 3px solid var(--copper);
  border-radius: 0 4px 4px 0;
}
.step-detail--paper .step-pullquote { background: white; }
.step-pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--teal);
  opacity: 0.92;
}

/* After-package — closing section framing the
   "work myself out of a job" philosophy */
.after-package {
  background: var(--warm-white);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}
.after-package-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.after-package h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.after-package h2 em {
  font-style: italic;
  color: var(--copper);
}
.after-package p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--teal);
  opacity: 0.85;
  margin-bottom: 1rem;
  text-align: left;
}
.after-package .eyebrow {
  text-align: center;
}
@media (min-width: 640px) {
  .after-package p { text-align: center; }
}

/* ============================================================
   PACKAGES PAGE
   ============================================================ */

/* Pricing — three cards. Middle card is the featured tier
   with a teal background and copper badge. */
.pricing {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .pricing-grid { gap: 2rem; }
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(31, 71, 71, 0.18);
}
.price-card--featured {
  background: var(--teal);
  color: var(--warm-white);
  border-color: var(--teal);
}
@media (min-width: 768px) {
  .price-card--featured {
    transform: scale(1.03);
    box-shadow: 0 20px 40px -20px rgba(31, 71, 71, 0.28);
  }
  .price-card--featured:hover {
    transform: scale(1.03) translateY(-3px);
  }
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
}
.price-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 2rem;
  min-height: 4.5em;     /* keep card heights aligned */
}
.price-amount {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-amount sup {
  font-size: 1.25rem;
  vertical-align: top;
  margin-right: 0.1em;
  opacity: 0.7;
  top: 0.3em;
  position: relative;
}
.price-period {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 2rem;
}
.price-features {
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.price-features li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}
.price-features li:first-child { border-top: none; padding-top: 0.25rem; }
.price-card--featured .price-features li {
  border-top-color: var(--line-dark);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.15rem;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(-45deg);
}
.price-features li:first-child::before { top: 0.65rem; }
.price-card--featured .price-features li::before {
  border-color: var(--copper-soft);
}
.price-card .btn {
  width: 100%;
  text-align: center;
}
.price-card--featured .btn-primary { background: var(--copper); }
.price-card--featured .btn-primary:hover {
  background: var(--warm-white);
  color: var(--teal);
  transform: translateY(-1px);
}
/* Upgrade-credit / payment-plan note under the grid */
.price-note {
  max-width: 640px;
  /* Top margin mirrors the section's bottom padding so the note floats
     centered in the empty band between the grid and the next section. */
  margin: clamp(4rem, 8vw, 6rem) auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--teal);
  opacity: 0.85;
}

/* What plan do I need — self-selection guide. Three situation
   groups that point loosely at a tier; the real sorting is over coffee. */
.plan-guide {
  background: var(--warm-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--line);
}
.plan-guide-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.plan-guide-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.75rem 0 1rem;
}
.plan-guide-head h2 em { font-style: italic; color: var(--copper); }
.plan-guide-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  opacity: 0.82;
}
.plan-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .plan-guide-grid { grid-template-columns: repeat(3, 1fr); }
}
.plan-guide-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--cream);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px -20px rgba(31, 71, 71, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -22px rgba(31, 71, 71, 0.4);
}
/* Per-tier accent — mirrors the logo's cream / teal / copper blocks */
.plan-guide-card:nth-child(1) { border-top-color: var(--cream); }
.plan-guide-card:nth-child(2) { border-top-color: var(--teal); }
.plan-guide-card:nth-child(3) { border-top-color: var(--copper); }
.plan-guide-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
}
.plan-guide-card ul { margin: 0; }
.plan-guide-card li {
  padding: 0.7rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  opacity: 0.88;
}
.plan-guide-card li:first-child { border-top: none; padding-top: 0; }
/* The payoff — pinned to the bottom as a bold, branded footer */
.plan-guide-pointer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--copper);
}
.plan-guide-close {
  max-width: 640px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--teal);
  opacity: 0.9;
}

/* What you walk away with — list of tangible takeaways paired
   with the outcome-based value comparison. */
.walk-away {
  background: var(--teal);
  color: var(--warm-white);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.walk-away-head {
  max-width: 600px;
  margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
  text-align: center;
}
.walk-away .eyebrow { color: var(--copper-soft); }
.walk-away-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0.75rem 0 0;
}
.walk-away-head h2 em { font-style: italic; color: var(--copper-soft); }
.walk-away-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .walk-away-inner { grid-template-columns: 1fr 1fr; }
  .walk-away-inner .plan-gallery { max-width: 360px; justify-self: center; }
}
/* Single-column (mobile/tablet): show the sample previews above the copy */
@media (max-width: 899px) {
  .walk-away-inner .plan-gallery { order: -1; }
}
.walk-away-intro {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(250, 246, 236, 0.78);
}
.walk-away-list { margin: 0; }
.walk-away-list li {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.95rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-top: 1px solid var(--line-dark);
}
.walk-away-list li:first-child { border-top: none; }
.walk-away-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.4rem;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--copper-soft);
  border-bottom: 2px solid var(--copper-soft);
  transform: rotate(-45deg);
}
.walk-away-list li:first-child::before { top: 0.9rem; }
/* Combined value-justification + risk-reversal block. Sits directly on
   the section — the honest cost math up top, the safety net (start-small
   credit + refund) below a divider. */
.reassure-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--teal-dark);
}
.reassure-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.reassure-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.reassure-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 auto;
}
.reassure-lead strong,
.reassure-body strong { color: var(--copper); font-weight: 700; }
.reassure-body {
  max-width: 58ch;
  margin: 1.75rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Sample deliverable gallery — a CSS-only tabbed rotator. Hidden radio
   inputs drive which preview is shown; one slide per plan type. */
.plan-gallery {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.plan-gallery-input,
.plan-zoom {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.plan-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.plan-gallery-tab {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 230, 0.4);
  background: rgba(245, 241, 230, 0.1);
  color: var(--warm-white);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease,
              border-color 0.2s ease;
}
.plan-gallery-tab:hover {
  background: rgba(245, 241, 230, 0.2);
  border-color: var(--copper-soft);
}
/* Active tab — filled copper pill */
#pg-budget:checked ~ .plan-gallery-tabs label[for="pg-budget"],
#pg-debt:checked ~ .plan-gallery-tabs label[for="pg-debt"],
#pg-retire:checked ~ .plan-gallery-tabs label[for="pg-retire"] {
  background: var(--copper-soft);
  border-color: var(--copper-soft);
  color: var(--teal-dark);
  opacity: 1;
}
/* Keyboard focus ring on the active tab's label */
.plan-gallery-input:focus-visible ~ .plan-gallery-tabs label {
  outline: 2px solid var(--copper-soft);
  outline-offset: 2px;
}
/* Stage — the three slides ARE the three sheets of paper. The selected
   one sits flat on top; the other two fan out behind it. Switching tabs
   transitions each sheet's transform, so they physically glide between
   stack positions — it reads as moving from one sheet to the next. */
.plan-gallery-stage {
  display: grid;
  position: relative;
}
.plan-slide {
  grid-area: 1 / 1;
  margin: 0;
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .plan-slide { transition: none; }
}
/* Front slot — selected sheet, flat and readable */
#pg-budget:checked ~ .plan-gallery-stage .plan-slide--budget,
#pg-debt:checked   ~ .plan-gallery-stage .plan-slide--debt,
#pg-retire:checked ~ .plan-gallery-stage .plan-slide--retire {
  transform: translate(0, 0) rotate(0deg);
  z-index: 3;
}
/* Back-left slot */
#pg-budget:checked ~ .plan-gallery-stage .plan-slide--debt,
#pg-debt:checked   ~ .plan-gallery-stage .plan-slide--budget,
#pg-retire:checked ~ .plan-gallery-stage .plan-slide--budget {
  transform: translate(-18px, 12px) rotate(-3.5deg);
  z-index: 2;
}
/* Back-right slot */
#pg-budget:checked ~ .plan-gallery-stage .plan-slide--retire,
#pg-debt:checked   ~ .plan-gallery-stage .plan-slide--retire,
#pg-retire:checked ~ .plan-gallery-stage .plan-slide--debt {
  transform: translate(18px, 16px) rotate(3.5deg);
  z-index: 1;
}
/* On phones the tall 8.5/11 sheet plus the fanned back pages run past the
   screen edge — shrink the gallery and tuck the fan in so it fits fully. */
@media (max-width: 560px) {
  .walk-away { overflow-x: clip; }
  .plan-gallery { max-width: 300px; }
  #pg-budget:checked ~ .plan-gallery-stage .plan-slide--debt,
  #pg-debt:checked   ~ .plan-gallery-stage .plan-slide--budget,
  #pg-retire:checked ~ .plan-gallery-stage .plan-slide--budget {
    transform: translate(-11px, 8px) rotate(-2.3deg);
  }
  #pg-budget:checked ~ .plan-gallery-stage .plan-slide--retire,
  #pg-debt:checked   ~ .plan-gallery-stage .plan-slide--retire,
  #pg-retire:checked ~ .plan-gallery-stage .plan-slide--debt {
    transform: translate(11px, 11px) rotate(2.3deg);
  }
}
.sample-plan-placeholder {
  position: relative;
  aspect-ratio: 8.5 / 11;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.28s ease, border-color 0.28s ease;
}
/* Thumbnail renders the live HTML deliverable (single source of truth) as a
   scaled-down miniature: the iframe is sized larger than the slide so the
   document lays out at a desktop-ish width, then scaled back down to fit.
   pointer-events:none lets clicks fall through to the label that opens the
   lightbox. */
.plan-slide-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 250%;
  height: 250%;
  border: 0;
  transform: scale(0.4);
  transform-origin: top left;
  pointer-events: none;
}
.plan-lightbox-img {
  display: block;
  width: 100%;
  height: auto;
}
iframe.plan-lightbox-img {
  display: block;
  border: none;
}
.sample-plan-placeholder:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--copper-soft);
  box-shadow: 0 34px 62px -22px rgba(0, 0, 0, 0.6);
}
/* "Click to expand" hint pinned to the bottom of each preview */
.plan-zoom-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  opacity: 0.8;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease,
              border-color 0.2s ease;
}
.sample-plan-placeholder:hover .plan-zoom-hint {
  opacity: 1;
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}
.sample-plan-placeholder > span:first-child {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--teal);
}
.sample-plan-placeholder small {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--teal);
  opacity: 0.6;
}
.plan-gallery-caption {
  margin-top: 2.25rem;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* Full-page lightbox — opened by the per-plan zoom checkbox. Hidden until
   checked; backdrop and ✕ are labels that toggle the checkbox back off. */
.plan-lightbox {
  position: fixed;
  inset: 0;
  /* dvh tracks the *visible* viewport, so the card centres within the space
     left by iOS Safari's URL/search bar instead of sliding under it. */
  height: 100dvh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  /* Keep the card clear of the notch / Safari toolbar at the top. */
  padding-top: max(clamp(1rem, 4vw, 3rem), env(safe-area-inset-top));
  padding-bottom: max(clamp(1rem, 4vw, 3rem), env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#zoom-budget:checked ~ .plan-lightbox--budget,
#zoom-debt:checked   ~ .plan-lightbox--debt,
#zoom-retire:checked ~ .plan-lightbox--retire {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.plan-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 56, 56, 0.82);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  cursor: zoom-out;
}
.plan-lightbox-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 540px);
  max-height: 88dvh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: white;
  border-radius: 8px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (min-width: 900px) {
  .plan-lightbox { padding: 2rem; }
  .plan-lightbox-card { width: min(62vw, 860px); max-height: 90dvh; border-radius: 4px; }
  .plan-lightbox-img { max-height: none; height: auto; }
}
/* Mobile: the plan is a tall document, so make the lightbox a near-fullscreen
   sheet that fills the visible viewport (clear of the Safari bar via dvh) and
   scrolls the plan inside, instead of shrink-wrapping to the scaled content. */
@media (max-width: 899px) {
  .plan-lightbox {
    padding: 0.6rem;
    padding-top: max(0.6rem, env(safe-area-inset-top));
    padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  }
  .plan-lightbox-card {
    width: 96vw;
    height: 88dvh;
    max-height: 88dvh;
  }
  /* Floor the iframe to the sheet height so it always fills, even if the
     content-fit script under-measures during load. */
  .plan-lightbox-img { min-height: calc(88dvh - 2.1rem); }
}

/* Grab handle — mobile-only affordance for the swipe-down-to-close gesture.
   Sticky so it stays visible (and grabbable) while the plan is scrolled. */
.plan-lightbox-handle { display: none; }
@media (max-width: 899px) {
  .plan-lightbox-handle {
    display: block;
    position: sticky;
    top: 0;
    z-index: 3;
    height: 2.1rem;
    background: white;
    border-radius: 8px 8px 0 0;
    touch-action: none;
  }
  .plan-lightbox-handle::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 0.3rem;
    border-radius: 999px;
    background: rgba(31, 71, 71, 0.28);
  }
}
#zoom-budget:checked ~ .plan-lightbox--budget .plan-lightbox-card,
#zoom-debt:checked   ~ .plan-lightbox--debt .plan-lightbox-card,
#zoom-retire:checked ~ .plan-lightbox--retire .plan-lightbox-card {
  transform: none;
}
.plan-lightbox-close {
  position: absolute;
  top: 0.4rem;
  right: 0.75rem;
  z-index: 4;
  font-size: 1.875rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.plan-lightbox-close:hover { opacity: 1; }
/* Document mock — skeleton rows stand in for the redacted real plan */
.plan-doc { padding: clamp(2rem, 5vw, 3rem); }
.plan-doc-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--teal);
  letter-spacing: -0.01em;
}
.plan-doc-sub {
  margin-top: 0.3rem;
  font-size: 1rem;
  color: var(--teal);
  opacity: 0.65;
}
.plan-doc-rows {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.plan-doc-rows span {
  height: 0.8rem;
  border-radius: 4px;
  background: linear-gradient(90deg,
    rgba(31, 71, 71, 0.13), rgba(31, 71, 71, 0.05));
}
.plan-doc-rows span:nth-child(3n)   { width: 68%; }
.plan-doc-rows span:nth-child(3n+1) { width: 94%; }
.plan-doc-rows span:nth-child(3n+2) { width: 81%; }
.plan-doc-note {
  margin-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--teal);
  opacity: 0.55;
}
/* Lock background scroll while a lightbox is open */
body:has(.plan-zoom:checked) { overflow: hidden; }

/* Wrapper section for the combined value + risk-reversal card */
.pricing-cta-section {
  background: var(--warm-white);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}

/* ============================================================
   CONTACT PAGE — the "Schedule coffee" form. Form card on the
   left, "what happens next" steps on the right (stacked on
   mobile, form first).
   ============================================================ */
.contact-section {
  background: var(--teal-mid);
  color: var(--warm-white);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6.5rem);
  border-top: none;
  scroll-margin-top: 100px;     /* anchor offset for sticky header */
}
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .contact-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.5rem;
  }
  .coffee-form { flex: 1.4; }
  .contact-aside { flex: 1; }
}

/* The form card — warm white sheet floating on dark teal */
.coffee-form {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
  border-radius: 8px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 24px 56px -20px rgba(0, 0, 0, 0.45);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.form-field {
  margin-bottom: 1.5rem;
  border: 0;          /* also resets the fieldset wrapper */
  padding: 0;
  min-width: 0;
}
.form-field label,
.form-field legend {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.625rem;
  padding: 0;
}
.label-optional {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--copper);
  margin-left: 0.375rem;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--teal);
  background: white;
  border: 1px solid rgba(31, 71, 71, 0.22);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field ::placeholder {
  color: var(--teal);
  opacity: 0.4;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181, 115, 42, 0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}
.field-hint {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--teal);
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* Topic picker — radio pills, same shape language as the FAQ
   jump nav. The real inputs are visually hidden; the spans are
   the clickable pills. */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topic-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.topic-pill span {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid rgba(31, 71, 71, 0.18);
  border-radius: 999px;
  padding: 0.55rem 1.125rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.topic-pill:hover span {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--warm-white);
}
.topic-pill input:checked + span {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--warm-white);
}
.topic-pill input:focus-visible + span {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* Submit — full-width on phones, natural width beyond */
.coffee-form button.btn {
  width: 100%;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .coffee-form button.btn { width: auto; }
}
.form-privacy {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--teal);
  opacity: 0.6;
  margin-top: 1.25rem;
}

/* Marketing opt-in checkbox — intentionally subtle, checked by default */
.form-field--checkbox {
  margin-bottom: 1.75rem;
}
.form-field--checkbox .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  margin: 0;
  border: 1px solid rgba(31, 71, 71, 0.25);
  border-radius: 2px;
  background: white;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.checkbox-label input[type="checkbox"]:checked {
  background-color: var(--teal);
  border-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1.5 5 4.5 8 10.5 1.5' stroke='white' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.checkbox-label:hover input[type="checkbox"] {
  border-color: rgba(31, 71, 71, 0.5);
}
.checkbox-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}
.checkbox-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--teal);
  opacity: 0.55;
  text-transform: none;
  letter-spacing: 0;
}

/* What happens next — numbered steps in the process-step voice */
.contact-aside-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--warm-white);
  margin-bottom: 1.75rem;
}
.contact-aside-title em {
  font-style: italic;
  color: var(--copper-soft);
}
.next-steps {
  counter-reset: coffee-step;
}
.next-steps li {
  counter-increment: coffee-step;
  position: relative;
  padding: 1.25rem 0 1.25rem 3rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--warm-white);
  opacity: 0.88;
}
.next-steps li::before {
  content: "0" counter(coffee-step);
  position: absolute;
  left: 0;
  top: 1.45rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--copper);
}
.next-steps li strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--warm-white);
  opacity: 1;
  margin-bottom: 0.25rem;
}

/* Prefer-email fallback — warm card on dark teal, copper accent */
.contact-alt {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--teal-dark);
  border: 1px solid rgba(245, 241, 230, 0.15);
  border-left: 3px solid var(--copper);
  border-radius: 0 6px 6px 0;
}
.contact-alt-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 0.5rem;
}
.contact-alt p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--warm-white);
  opacity: 0.85;
}
.contact-alt a {
  color: var(--copper-soft);
  border-bottom: 1.5px solid currentColor;
}
