/* =========================================================
   About Me Agency — Global Stylesheet
   Edit colors, fonts, and spacing in the :root block below
   and changes will apply to every page of the site.
   ========================================================= */

/* ---------- 1. DESIGN TOKENS (edit me!) ---------- */
:root {
  /* Brand palette — matches logo navy + clay accent */
  --color-ink:         #233140;   /* primary text / navy */
  --color-ink-soft:    #3d4a58;   /* secondary text */
  --color-clay:        #c17b5a;   /* accent dot / hover */
  --color-clay-deep:   #a8643f;   /* darker hover state */
  --color-cream:       #faf6f0;   /* page background */
  --color-cream-warm:  #f3ecdf;   /* section alt */
  --color-paper:       #ffffff;   /* cards */
  --color-line:        #e5dccb;   /* divider / border */
  --color-muted:       #8a8679;   /* meta text */
  --color-sale:        #a8643f;   /* sale price */
  --color-strike:      #a8a39a;   /* original price */

  /* Typography */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body:    "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-serif-body: "Lora", Georgia, serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --max-width:       1200px;
  --max-width-narrow: 780px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body {
  min-height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-cream);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-ink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-clay); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding-left: 1.25rem; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 var(--space-3);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.4rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: var(--space-2);
  font-weight: 500;
}
/* Italics in headings use the display serif (Cormorant).
   Italics in body copy stay in the body font so they match
   the surrounding text's x-height and weight. */
h1 em, h1 i,
h2 em, h2 i,
h3 em, h3 i,
h4 em, h4 i,
h5 em, h5 i,
.pain-quote em, .pain-quote i,
.hero-title em, .hero-title i,
.plan-name em, .plan-name i {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
/* Body italics: same font as paragraph, just italicized, size matched */
em, i {
  font-style: italic;
  font-family: inherit;
  font-weight: inherit;
  font-size: 1em;
}
.accent-dot { color: var(--color-clay); }
p { margin: 0 0 var(--space-3); }
strong { font-weight: 600; color: var(--color-ink); }

/* ---------- 4. LAYOUT ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
section { padding: var(--space-7) 0; }
.section-alt { background: var(--color-cream-warm); }
.text-center { text-align: center; }

/* ---------- 5. BUTTONS ----------
   Rest:  terracotta fill, white text, rounded
   Hover: transparent bg, terracotta outline + text, rounded     */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;               /* pill / rounded */
  border: 1.5px solid var(--color-clay);
  background: var(--color-clay);
  color: var(--color-paper);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  background: transparent;
  color: var(--color-clay);
  border-color: var(--color-clay);
  transform: translateY(-1px);
}

/* Legacy class names kept as aliases so existing markup still works */
.btn-primary,
.btn-clay {
  background: var(--color-clay);
  color: var(--color-paper);
  border-color: var(--color-clay);
}
.btn-primary:hover,
.btn-clay:hover {
  background: transparent;
  color: var(--color-clay);
  border-color: var(--color-clay);
}

/* Secondary = inverse (transparent at rest, fills on hover) */
.btn-secondary {
  background: transparent;
  color: var(--color-clay);
  border-color: var(--color-clay);
}
.btn-secondary:hover {
  background: var(--color-clay);
  color: var(--color-paper);
  border-color: var(--color-clay);
}

.btn-large { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* ---------- 6. HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--color-line);
  transition: transform 0.3s var(--ease);
  will-change: transform;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
/* Don't hide header while the mobile menu is open */
body.menu-open .site-header {
  transform: translateY(0) !important;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space-4);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-2);
  min-height: 64px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 210;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  vertical-align: middle;
}
@media (max-width: 860px) {
  .nav-logo img { height: 32px; }
  .nav { min-height: 56px; padding: 0.85rem var(--space-4); }
}
@media (max-width: 480px) {
  .nav-logo img { height: 26px; }
  .nav { padding: 0.75rem var(--space-4); min-height: 52px; }
  /* Match the mobile content padding so the logo aligns with paragraph text */
  .container, .container-narrow { padding: 0 var(--space-4); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-ink-soft);
  position: relative;
}
/* Text-link underline animation — applied only to plain nav links,
   NOT the CTA button */
.nav-links li:not(.nav-cta) a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--color-clay);
  transition: width var(--transition);
}
.nav-links li:not(.nav-cta) a:hover::after { width: 100%; }

/* Make sure the CTA button keeps its own button styles */
.nav-cta { margin-left: var(--space-2); }
.nav-cta a.btn { color: var(--color-paper); }
.nav-cta a.btn:hover { color: var(--color-clay); }
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  position: relative;
  z-index: 210;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-ink);
  margin: 6px auto;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  /* Full-screen overlay menu — the entire viewport gets covered
     when the hamburger is tapped.  Serif-large centered links,
     CTA button near the bottom, matching the Squarespace feel.  */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;             /* dvh accounts for mobile browser chrome */
    margin: 0;
    padding: 96px var(--space-4) var(--space-5);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: var(--color-cream);
    z-index: 99;                 /* below the header so the X stays on top */

    /* Hidden by default */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease),
                visibility 0s linear 0.25s;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s var(--ease),
                visibility 0s linear 0s;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.65rem 0;
  }
  .nav-links li a {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--color-ink);
    letter-spacing: -0.01em;
  }
  .nav-cta {
    margin-top: var(--space-4);
  }
  .nav-cta a.btn {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 2.2rem;
  }

  /* Prevent page scroll while menu is open */
  body.menu-open {
    overflow: hidden;
  }
}


/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(193, 123, 90, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-3);
}
.hero-title em { color: var(--color-clay); font-weight: 400; }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  max-width: 44ch;
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}
.hero-link-plain {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 2px;
  margin-left: var(--space-2);
}
.hero-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow:
    0 30px 60px -30px rgba(35, 49, 64, 0.3),
    0 8px 24px -8px rgba(35, 49, 64, 0.15);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--color-clay);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.35;
  max-width: calc(100% + 20px);
  pointer-events: none;
}
@media (max-width: 860px) {
  /* On mobile the parent grid gets tight — don't let the decorative
     frame poke past the right edge of the viewport */
  .hero-image::after { right: 0; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero-image { max-width: 420px; margin: 0 auto; aspect-ratio: 4/5; }
}

/* ---------- 8. SECTION INTROS ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-6);
}
.section-header h2 { margin-bottom: var(--space-2); }
.section-header p {
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: var(--space-2) 0 var(--space-3);
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-line);
}
.divider-ornament span {
  width: 6px; height: 6px;
  background: var(--color-clay);
  border-radius: 50%;
}

/* ---------- 9. PAIN-POINT LIST ---------- */
.pain-section {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: var(--space-7) 0;
}
.pain-section h2 { color: var(--color-cream); }
.pain-section em { color: var(--color-clay); }
.pain-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-5);
  line-height: 1.25;
  color: var(--color-cream);
  font-weight: 300;
}
.pain-quote-lead {
  display: block;
  font-style: normal;
  color: var(--color-cream);
  opacity: 0.85;
  font-size: 0.9em;
  margin-bottom: var(--space-2);
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pain-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-2) var(--space-3);
  background: rgba(250, 246, 240, 0.05);
  border-left: 2px solid var(--color-clay);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  line-height: 1.5;
}
.pain-list .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- 10. STEPS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.step {
  text-align: left;
  position: relative;
  padding-top: var(--space-3);
}
.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-clay);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: var(--space-2);
}
.step h3 { margin-bottom: var(--space-2); }
.step p { color: var(--color-ink-soft); }
@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---------- 11. PRICING CARDS ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: stretch;
}
.plan-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(35, 49, 64, 0.2);
}
.plan-card.featured {
  border-color: var(--color-clay);
  background: var(--color-paper);
  box-shadow: 0 15px 35px -15px rgba(193, 123, 90, 0.3);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-clay);
  color: var(--color-paper);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-weight: 500;
}
.plan-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1);
}
.plan-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.plan-name {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
}
.plan-price {
  text-align: center;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-line);
}
.plan-price .sale {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--color-sale);
  display: block;
  line-height: 1.1;
}
.plan-price .original {
  font-size: 1rem;
  color: var(--color-strike);
  text-decoration: line-through;
  display: inline-block;
  margin-top: 2px;
}
.plan-price .cadence {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  flex-grow: 1;
}
.plan-features li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: 0.98rem;
  color: var(--color-ink-soft);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .check {
  color: var(--color-clay);
  font-weight: 600;
  flex-shrink: 0;
}
.plan-features strong { color: var(--color-ink); }
.plan-card .btn { width: 100%; }
.plan-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-clay);
  margin: var(--space-2) 0 0.75rem;
}

.launch-note {
  text-align: center;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-ink-soft);
}

@media (max-width: 960px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ---------- 12. FOUNDER / PORTRAIT BLOCK ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
  align-items: center;
}
.founder-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px -20px rgba(35, 49, 64, 0.25);
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-content h3 {
  font-size: 1.6rem;
  color: var(--color-clay);
  margin-bottom: var(--space-3);
}
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; }
  .founder-image { max-width: 340px; margin: 0 auto; }
}

/* ---------- 13. CONTENT MATTERS / CTA BAND ---------- */
.cta-band {
  background: var(--color-cream-warm);
  padding: var(--space-7) 0;
  text-align: center;
}
.cta-band h2 { max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-band p {
  max-width: 600px;
  margin: 0 auto var(--space-4);
  color: var(--color-ink-soft);
  font-size: 1.1rem;
}

/* Dark variant — used for high-contrast moments */
.cta-band-dark {
  background: var(--color-ink);
  padding: var(--space-7) 0;
  text-align: center;
}
.cta-band-dark .eyebrow { color: var(--color-clay); }
.cta-band-dark h2 {
  color: var(--color-cream);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-dark h2 em { color: var(--color-clay); }
.cta-band-dark p {
  max-width: 600px;
  margin: 0 auto var(--space-4);
  color: var(--color-cream);
  opacity: 0.85;
  font-size: 1.1rem;
}

/* ---------- 14. TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.testimonial {
  background: var(--color-paper);
  padding: var(--space-5) var(--space-4) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  position: relative;
  margin: 0;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-clay);
  line-height: 1;
  opacity: 0.35;
}
.testimonial blockquote {
  margin: 0 0 var(--space-3);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--color-ink);
  margin: 0;
  padding-top: var(--space-3);
}
.testimonial-author {
  font-size: 0.9rem;
  color: var(--color-clay);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0;
}

/* ---------- 15. FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-3) 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: 0.3rem 0;
  font-weight: 500;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-q { flex: 1 1 auto; }
.faq-item summary::after {
  content: '+';
  font-size: 1.7rem;
  color: var(--color-clay);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--color-clay); }
.faq-answer {
  padding: var(--space-2) 0 var(--space-2);
  color: var(--color-ink-soft);
  font-size: 1.02rem;
}
.faq-answer ol, .faq-answer ul { padding-left: 1.4rem; }
.faq-answer li { margin-bottom: 0.5rem; }

/* ---------- 16. PRICING PAGE DETAIL BLOCKS ---------- */

/* Pricing intro: text column left, photo column right.
   Photo uses aspect-ratio so it stays proportional regardless of
   how long the text column is.  On tall text blocks the photo
   sticks to the top of the viewport while you scroll. */
.pricing-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-4) 0;
}
.pricing-intro-text p { margin-bottom: var(--space-3); }
.pricing-intro-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: var(--space-2);
}
.pricing-intro-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--color-clay);
  line-height: 1.3;
  margin: var(--space-3) 0 var(--space-3);
  padding-left: var(--space-3);
  border-left: 2px solid var(--color-clay);
}
.pricing-intro-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  box-shadow:
    0 30px 60px -30px rgba(35, 49, 64, 0.3),
    0 8px 24px -8px rgba(35, 49, 64, 0.15);
}
.pricing-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 840px) {
  .pricing-intro {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .pricing-intro-image {
    max-width: 400px;
  }
}
/* --- Per-offer grid ---
   Three columns:
     1. icon
     2. summary (name, price, includes box, button)
     3. long description
*/
.offer-detail {
  display: grid;
  grid-template-columns: 120px minmax(240px, 1fr) minmax(0, 1.5fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-line);
}
.offer-detail:first-child { border-top: none; }

/* Column 1: icon */
.offer-detail-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
  width: 120px;
  height: 120px;
  margin: 0;
}
.offer-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Column 2: name, price, includes, button */
.offer-detail-summary { min-width: 0; }
.offer-detail-summary h3 {
  color: var(--color-clay);
  margin-bottom: var(--space-2);
}
.offer-detail-summary form { margin-top: var(--space-3); }
.cadence-inline {
  color: var(--color-muted);
  font-size: 0.9rem;
}
.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}
.offer-price-row .sale {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-sale);
}
.offer-price-row .original {
  color: var(--color-strike);
  text-decoration: line-through;
  font-size: 1.05rem;
}

/* Includes box — now inside column 2, below the price */
.offer-detail-includes {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin-top: var(--space-2);
}
.includes-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin: 0 0 var(--space-2);
  font-weight: 500;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.includes-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-ink);
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--color-line);
}
.includes-list li:last-child { border-bottom: none; padding-bottom: 0; }
.includes-list .check {
  color: var(--color-clay);
  font-weight: 600;
  flex-shrink: 0;
}

/* Column 3: long description */
.offer-detail-description { min-width: 0; }
.offer-desc { color: var(--color-ink-soft); font-size: 0.97rem; }
.offer-desc p { margin: 0 0 var(--space-3); }
.offer-desc p:last-child { margin-bottom: 0; }

/* Tablet: icon + summary on top row, description below full-width */
@media (max-width: 960px) {
  .offer-detail {
    grid-template-columns: 120px 1fr;
    grid-template-areas:
      "icon    summary"
      "desc    desc";
  }
  .offer-detail-image       { grid-area: icon; }
  .offer-detail-summary     { grid-area: summary; }
  .offer-detail-description { grid-area: desc; }
}

/* Mobile: full stack */
@media (max-width: 560px) {
  .offer-detail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "summary"
      "desc";
    gap: var(--space-3);
  }
  .offer-detail-image { margin: 0 auto; }
}

/* ---------- 17. ABOUT PAGE VALUES ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.value-card {
  padding: var(--space-4);
  text-align: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--color-clay);
  transform: translateY(-3px);
}
.value-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-clay);
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.value-card h3 { margin-bottom: var(--space-2); }
.value-card p { color: var(--color-ink-soft); margin: 0; }

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

/* ---------- 18. BOOK CONSULT (CALENDLY EMBED) ---------- */
.consult-section {
  padding: var(--space-7) 0;
  background: var(--color-cream-warm);
  scroll-margin-top: 80px;
}
.consult-section h2 { text-align: center; }
.consult-section .section-header p { margin-bottom: var(--space-5); }
.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(35, 49, 64, 0.15);
  background: var(--color-paper);
}

/* ---------- 19. FOOTER ---------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: var(--space-6) 0 var(--space-3);
}
.site-footer a { color: var(--color-cream); opacity: 0.8; }
.site-footer a:hover { color: var(--color-clay); opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(250, 246, 240, 0.15);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: var(--space-2);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-about p {
  color: var(--color-cream);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.footer-about strong { color: var(--color-cream); }
.footer-signup form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-signup input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(250, 246, 240, 0.2);
  background: rgba(250, 246, 240, 0.05);
  color: var(--color-cream);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.footer-signup input::placeholder { color: rgba(250, 246, 240, 0.4); }
.footer-signup input:focus {
  outline: none;
  border-color: var(--color-clay);
  background: rgba(250, 246, 240, 0.08);
}
.footer-signup button {
  padding: 0.75rem;
  background: var(--color-clay);
  color: var(--color-paper);
  border: 1.5px solid var(--color-clay);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition);
  font-size: 0.95rem;
}
.footer-signup button:hover {
  background: transparent;
  color: var(--color-clay);
}
.footer-signup .form-msg {
  font-size: 0.85rem;
  color: var(--color-clay);
  min-height: 1.2em;
  margin-top: 0.3rem;
}
.footer-success {
  padding: 0.5rem 0;
  animation: fadeIn 0.5s var(--ease);
}
.footer-success-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-clay);
  color: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.footer-bottom {
  text-align: center;
  padding-top: var(--space-3);
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .footer-signup { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 20. CONTACT FORM ---------- */
.contact-block {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-5);
  background: var(--color-paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}
.contact-form { display: grid; gap: var(--space-2); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.contact-form label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-line);
  background: var(--color-cream);
  color: var(--color-ink);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-clay);
  background: var(--color-paper);
}
.contact-form button { margin-top: var(--space-2); width: 100%; }
.contact-form .form-msg {
  font-size: 0.95rem;
  margin-top: var(--space-2);
  text-align: center;
  min-height: 1.2em;
}
.contact-form .form-msg.success { color: #2d6a4f; }
.contact-form .form-msg.error   { color: #9b2c2c; }
@media (max-width: 640px) {
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ---------- 21. SUCCESS / CANCEL / ERROR PAGES ---------- */
.state-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-3);
}
.state-page h1 { margin-bottom: var(--space-2); }
.state-page p { color: var(--color-ink-soft); max-width: 520px; margin: 0 auto var(--space-3); }
.state-page .btn { margin-top: var(--space-2); }

/* ---------- 22. SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 23. UTILITY ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
