/* ═══════════════════════════════════════════════════════════════
   Rutledge Family Holistic — Cinematic Factory
   Bright, warm, cinematic, Apple-like
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #FBF8F4;
  --accent: #C4917B;      /* terracotta rose */
  --secondary: #8BA89A;   /* sage */
  --highlight: #E8A06E;   /* golden apricot */
  --text: #2C2926;
  --dark: #1E2A25;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-apple); }
button { font-family: inherit; }

/* Shared section bits */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 22ch;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.section-intro .section-title { margin: 0 auto; }

/* ─── Dock Navigation ─────────────────────────────────────── */
.dock-nav {
  position: fixed;
  top: 1.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 1.25rem 0.75rem 1.5rem;
  background: rgba(251, 248, 244, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(30, 42, 37, 0.08);
  transition: all 0.4s var(--ease-apple);
  max-width: calc(100vw - 2rem);
}
.dock-nav.scrolled { padding: 0.5rem 1rem 0.5rem 1.25rem; background: rgba(251, 248, 244, 0.92); }
.dock-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}
.dock-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 400;
}
.dock-links a { color: var(--text); opacity: 0.75; }
.dock-links a:hover { opacity: 1; color: var(--accent); }
.dock-cta {
  padding: 0.55rem 1.15rem;
  background: var(--text);
  color: var(--bg) !important;
  border-radius: 999px;
  opacity: 1 !important;
  font-weight: 500;
  transition: all 0.3s var(--ease-apple);
}
.dock-cta:hover { background: var(--accent); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .dock-nav { padding: 0.6rem 0.75rem 0.6rem 1.15rem; gap: 0.75rem; }
  .hamburger { display: flex; }
  .dock-links {
    position: fixed;
    top: 5rem; right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg);
    border: 1px solid rgba(44, 41, 38, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(30, 42, 37, 0.14);
    min-width: 240px;
    opacity: 0; pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease-apple);
  }
  .dock-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .dock-cta { align-self: stretch; text-align: center; }
}

/* ─── HERO: Scroll-Scrub Video ────────────────────────────── */
.hero-scrub {
  position: relative;
  height: 300vh;
  background: var(--dark);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(30,42,37,0.35) 0%, rgba(30,42,37,0.15) 35%, rgba(30,42,37,0.65) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
  color: #FBF8F4;
  /* Fallback visible without JS */
  opacity: 1;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #FBF8F4;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--highlight);
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(251, 248, 244, 0.88);
  margin-bottom: 2.25rem;
}
.hero-cta {
  display: inline-block;
  padding: 1.1rem 2.25rem;
  background: var(--accent);
  color: #FBF8F4;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease-apple);
  box-shadow: 0 10px 30px rgba(196, 145, 123, 0.35);
}
.hero-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 40px rgba(196, 145, 123, 0.45); color: #FBF8F4; }
.hero-scroll-hint {
  position: absolute;
  left: 50%; bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(251, 248, 244, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}
.hero-scroll-hint span {
  display: inline-block; width: 1px; height: 36px;
  background: rgba(251, 248, 244, 0.6);
  animation: scrollHint 2.2s var(--ease-apple) infinite;
  transform-origin: top;
}
@keyframes scrollHint { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ─── Sticky Cards (Philosophy) ───────────────────────────── */
.cards-section {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  background: var(--bg);
  position: relative;
}
.stack-wrap {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.stack-card {
  position: sticky;
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.75rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 30px 80px -20px rgba(30, 42, 37, 0.25);
  will-change: transform;
  /* Defense: visible without JS */
  opacity: 1;
}
.stack-card:nth-child(1) { top: 110px; background: var(--dark); color: var(--bg); z-index: 1; }
.stack-card:nth-child(2) { top: 140px; background: var(--accent); color: var(--bg); z-index: 2; }
.stack-card:nth-child(3) { top: 170px; background: var(--secondary); color: var(--dark); z-index: 3; }

.stack-card .card-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.stack-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: inherit;
}
.stack-card p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
  opacity: 0.88;
  max-width: 52ch;
}
@media (max-width: 768px) {
  .stack-card { padding: 2rem; min-height: 320px; }
}

/* ─── Split (About) ───────────────────────────────────────── */
.split-section {
  position: relative;
  background: var(--dark);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.split-sticky {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.split-col {
  position: relative;
}
.split-col-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.split-item {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.split-item > div { max-width: 40ch; }
.split-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1rem;
  font-weight: 500;
}
.split-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.split-copy {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(251, 248, 244, 0.72);
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 auto;
}
.split-divider { width: 1px; background: rgba(251, 248, 244, 0.14); align-self: stretch; }

.split-item-1 { background: linear-gradient(150deg, #243631 0%, var(--dark) 100%); border: 1px solid rgba(232, 160, 110, 0.18); }
.split-item-2 { background: #243631; border: 1px solid rgba(251, 248, 244, 0.06); }
.split-item-3 { background: #2B403A; border: 1px solid rgba(251, 248, 244, 0.06); }
.split-item-4 { background: #344E46; border: 1px solid rgba(251, 248, 244, 0.06); }
.split-item-r1 { background: linear-gradient(150deg, var(--accent) 0%, #B5846E 100%); }
.split-item-r2 { background: #B5846E; }
.split-item-r3 { background: var(--secondary); }
.split-item-r4 { background: var(--highlight); }
.split-item-r4 h3, .split-item-r4 .split-copy, .split-item-r3 h3, .split-item-r3 .split-copy { color: var(--dark); }
.split-item-r4 .split-eyebrow, .split-item-r3 .split-eyebrow { color: var(--dark); opacity: 0.6; }

@media (max-width: 768px) {
  .split-sticky { grid-template-columns: 1fr; }
  .split-divider { display: none; }
}

/* ─── Flip Cards (Services) ───────────────────────────────── */
.flip-section {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.flip-card {
  perspective: 1200px;
  height: 340px;
  cursor: pointer;
}
.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease-apple);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner,
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.flip-front {
  background: var(--bg);
  border: 1px solid rgba(44, 41, 38, 0.1);
  box-shadow: 0 10px 40px rgba(30, 42, 37, 0.06);
}
.flip-back {
  background: linear-gradient(150deg, var(--accent), #B5846E);
  color: var(--bg);
  transform: rotateY(180deg);
}
.flip-icon {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: auto;
  opacity: 0.85;
  letter-spacing: 0.05em;
}
.flip-front h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
  letter-spacing: -0.015em;
}
.flip-front p {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.55;
  font-weight: 400;
}
.flip-back h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--bg);
  letter-spacing: -0.015em;
}
.flip-back p {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.92;
  line-height: 1.5;
}

/* ─── SVG-Draw (Process) ──────────────────────────────────── */
.draw-section {
  position: relative;
  background: var(--bg);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.draw-sticky {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.draw-header {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 40ch;
  margin: 0 auto 3rem;
}
.draw-header .section-title { margin: 0 auto; font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.draw-svg {
  width: 100%;
  max-width: 340px;
  position: sticky;
  top: 120px;
  z-index: 1;
  align-self: start;
}
.draw-svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.draw-dot { fill: var(--accent); opacity: 0.35; }
.draw-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.milestone {
  position: relative;
  max-width: 52ch;
  opacity: 1;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--accent);
  background: #fff;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 14px 40px -20px rgba(30, 42, 37, 0.18);
}
.milestone .m-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.milestone h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.015em;
}
.milestone p {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.65;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 900px) {
  .draw-sticky { grid-template-columns: 1fr; }
  .draw-svg { max-width: 220px; margin: 0 auto; position: relative; top: 0; }
}

/* ─── Typewriter (Testimonials) ───────────────────────────── */
.type-section {
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.type-section .eyebrow { margin-bottom: 2.5rem; }
.type-display {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
  min-height: 4em;
  max-width: 38ch;
  margin: 0 auto;
}
.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  background: var(--accent);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: typewriterBlink 0.7s step-end infinite;
}
@keyframes typewriterBlink { 50% { opacity: 0; } }
.type-attribution {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2.5rem;
  font-weight: 500;
}

/* ─── FAQ Accordion ───────────────────────────────────────── */
.faq-section {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  max-width: 820px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-bottom: 1px solid rgba(44, 41, 38, 0.12);
  padding: 0.25rem 0;
  transition: all 0.3s var(--ease-apple);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s var(--ease-apple);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
  margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--accent);
  transition: transform 0.4s var(--ease-apple);
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  padding: 0 0.25rem 1.75rem;
  animation: faqSlide 0.5s var(--ease-apple);
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.72;
  max-width: 62ch;
  font-weight: 300;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── CTA / Particle Button ───────────────────────────────── */
.particle-btn-section {
  padding: clamp(6rem, 14vw, 11rem) var(--gutter);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #F4EEE6 100%);
}
.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0.75rem auto 1.25rem;
  max-width: 18ch;
  color: var(--text);
}
.cta-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: var(--text);
  opacity: 0.72;
  max-width: 46ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.btn-wrap { position: relative; display: inline-block; }
.explode-btn {
  padding: 1.2rem 3rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: var(--text);
  color: var(--bg);
  transition: all 0.35s var(--ease-apple);
  box-shadow: 0 14px 40px rgba(30, 42, 37, 0.18);
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
}
.explode-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(196, 145, 123, 0.4); background: var(--accent); }
.explode-btn:active { transform: scale(0.97); }
.cta-contact {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.75;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-contact a:hover { color: var(--accent); }
.particle {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}
.ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  border: 2px solid;
  opacity: 0;
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(251, 248, 244, 0.75);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--bg);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.footer-brand p { font-size: 0.95rem; font-weight: 300; line-height: 1.55; max-width: 38ch; }
.footer-credentials { color: var(--highlight); font-size: 0.8rem !important; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 1rem !important; font-weight: 500 !important; }
.footer-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-contact p, .footer-nav p { margin-bottom: 0.5rem; font-size: 0.95rem; font-weight: 300; }
.footer-contact a:hover, .footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(251, 248, 244, 0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.55;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── Jessica Story + Credentials (inside About) ──────────── */
.story-wrap {
  max-width: var(--max-w);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.story-lede .split-eyebrow { color: var(--highlight); }
.story-head {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--bg);
  max-width: 18ch;
}
.story-copy p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(251, 248, 244, 0.78);
  margin-bottom: 1.25rem;
  max-width: 58ch;
}
.story-copy p:last-child { margin-bottom: 0; }

.cred-grid {
  border-top: 1px solid rgba(251, 248, 244, 0.14);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.cred-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 500;
  margin-bottom: 2rem;
}
.cred-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
}
.cred-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44, 41, 38, 0.12);
}
.cred-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
  min-width: 3.5ch;
  flex-shrink: 0;
}
.cred-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .cred-list { grid-template-columns: 1fr; gap: 0; }
}

/* ─── Real Photography: About page ────────────────────────── */
.story-portrait {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(251, 248, 244, 0.08);
  border: 1px solid rgba(205, 133, 98, 0.22);
}
.story-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(251, 248, 244, 0.06);
}
.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
@media (max-width: 900px) {
  .story-portrait { max-width: 320px; margin-left: auto; margin-right: auto; }
}

.team-image {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 920px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(251, 248, 244, 0.1);
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03);
}

/* ─── Pull-quote: Midwives Model ──────────────────────────── */
.pullquote-section {
  background: var(--bg);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  text-align: center;
}
.pullquote-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pullquote-section .eyebrow { color: var(--secondary); margin-bottom: 2rem; }
.pullquote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto 2rem;
}
.pullquote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.pullquote-sub {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.72;
  max-width: 56ch;
  margin: 0 auto;
}

/* ─── Team section ────────────────────────────────────────── */
.team-section {
  background: linear-gradient(180deg, var(--bg) 0%, #F4EEE6 100%);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.team-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.team-title {
  margin: 0.5rem auto 2.5rem;
  max-width: 24ch;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}
.team-creds {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.team-creds li {
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(44, 41, 38, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(251, 248, 244, 0.6);
  backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

/* ─── Pricing Section ─────────────────────────────────────── */
.pricing-section {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  background: var(--bg);
}
.price-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 28px;
  box-shadow: 0 40px 90px -30px rgba(30, 42, 37, 0.22);
  overflow: hidden;
}
.price-card-head {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, #FBF8F4 0%, #fff 100%);
  border-bottom: 1px solid rgba(44, 41, 38, 0.08);
}
.price-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.035em;
}
.price-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.price-payment {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.72;
  max-width: 52ch;
  margin: 0 auto;
}
.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.price-col {
  padding: clamp(2rem, 4vw, 3rem);
}
.price-col-included { border-right: 1px solid rgba(44, 41, 38, 0.08); }
.price-col-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.price-col-included .price-col-label { color: var(--secondary); }
.price-col-excluded .price-col-label { color: var(--text); opacity: 0.5; }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.price-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
}
.price-list-muted li { opacity: 0.7; }
.price-list-muted li::before {
  border: none;
  width: 10px; height: 1px;
  background: var(--text);
  opacity: 0.4;
  top: 0.7em;
  transform: none;
}
.price-cta-wrap {
  padding: 0 clamp(2rem, 4vw, 3rem) clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}
.price-cta {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s var(--ease-apple);
  box-shadow: 0 12px 32px rgba(30, 42, 37, 0.18);
}
.price-cta:hover { background: var(--accent); color: var(--bg); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(196, 145, 123, 0.4); }
@media (max-width: 768px) {
  .price-columns { grid-template-columns: 1fr; }
  .price-col-included { border-right: none; border-bottom: 1px solid rgba(44, 41, 38, 0.08); }
}

/* ─── Four-Tier Pricing Grid (Apple Compare Models aesthetic) ─── */
.pricing-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1.75rem;
  align-items: stretch;
}
.tier-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 70px -30px rgba(30, 42, 37, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple);
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px -30px rgba(30, 42, 37, 0.28);
}
.tier-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #FFFDFA 0%, #FBF5EF 100%);
  border: 1.5px solid rgba(196, 145, 123, 0.38);
  box-shadow: 0 50px 110px -35px rgba(196, 145, 123, 0.35);
}
.tier-ribbon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(196, 145, 123, 0.4);
  z-index: 2;
}
.tier-head {
  text-align: center;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(44, 41, 38, 0.08);
}
.tier-card--featured .tier-head {
  padding-top: clamp(2.75rem, 4vw, 3.75rem);
  border-bottom: 1px solid rgba(196, 145, 123, 0.2);
}
.tier-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.tier-card--sage .tier-eyebrow { color: var(--secondary); }
.tier-card--gold .tier-eyebrow { color: #E8A06E; }
.tier-card--dark .tier-eyebrow { color: var(--accent); }
.tier-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tier-price-row--split {
  gap: 0.75rem;
}
.tier-price {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  font-size: clamp(2.75rem, 5vw, 4rem);
}
.tier-card--featured .tier-price {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
}
.tier-price-plus {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text);
  opacity: 0.72;
  letter-spacing: -0.02em;
}
.tier-price-per {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  opacity: 0.8;
}
.tier-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--text);
  opacity: 0.78;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.tier-payment {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.72;
  max-width: 48ch;
  margin: 0.75rem auto 0.5rem;
}
.tier-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.75rem;
}
.tier-body {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  flex: 1;
}
.tier-body--two-col {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.75rem, 3vw, 3rem);
}
.tier-group + .tier-group { border-left: 1px solid rgba(44, 41, 38, 0.08); padding-left: clamp(1.5rem, 2.5vw, 2.25rem); }
@media (max-width: 768px) {
  .tier-body--two-col { grid-template-columns: 1fr; gap: 2rem; }
  .tier-group + .tier-group { border-left: none; padding-left: 0; border-top: 1px solid rgba(44, 41, 38, 0.08); padding-top: 1.75rem; }
}
.tier-group-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}
.tier-card--gold .tier-group-label { color: #C88556; }
.tier-card--dark .tier-group-label { color: var(--secondary); }
.tier-group-label--muted { color: var(--text); opacity: 0.5; }
.tier-group-label--bonus { color: var(--accent); margin-top: 1.75rem; }
.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.tier-list li {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
}
.tier-card--gold .tier-list li::before { border-color: #C88556; }
.tier-card--dark .tier-list li::before { border-color: var(--secondary); }
.tier-list--bonus li::before {
  border: none;
  width: 12px; height: 12px;
  top: 0.35em;
  background: var(--accent);
  transform: none;
  border-radius: 50%;
  opacity: 0.9;
  mask: radial-gradient(circle, #000 40%, transparent 42%);
}
.tier-list--muted li { opacity: 0.62; }
.tier-list--muted li::before {
  border: none;
  width: 10px; height: 1px;
  background: var(--text);
  opacity: 0.4;
  top: 0.75em;
  transform: none;
}
.tier-cta-wrap {
  padding: 0 clamp(1.75rem, 3vw, 2.5rem) clamp(2rem, 3vw, 2.75rem);
  text-align: center;
}
.tier-cta {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-apple);
  box-shadow: 0 12px 32px rgba(196, 145, 123, 0.32);
}
.tier-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(196, 145, 123, 0.45); }
.tier-cta--sage { background: var(--secondary); box-shadow: 0 12px 32px rgba(139, 168, 154, 0.35); }
.tier-cta--sage:hover { box-shadow: 0 18px 42px rgba(139, 168, 154, 0.5); }
.tier-cta--gold { background: #E8A06E; box-shadow: 0 12px 32px rgba(232, 160, 110, 0.35); }
.tier-cta--gold:hover { box-shadow: 0 18px 42px rgba(232, 160, 110, 0.5); }
.tier-cta--dark { background: #1E2A25; box-shadow: 0 12px 32px rgba(30, 42, 37, 0.35); }
.tier-cta--dark:hover { background: var(--accent); }

/* Side accents per tier */
.tier-card--sage { border-top: 3px solid var(--secondary); }
.tier-card--gold { border-top: 3px solid #E8A06E; }
.tier-card--dark { background: linear-gradient(180deg, #fff 0%, #F4F1EC 100%); border-top: 3px solid #1E2A25; grid-column: 1 / -1; }
.tier-card--dark .tier-body { max-width: 820px; margin: 0 auto; width: 100%; }
.tier-card--dark .tier-head { padding-bottom: 2rem; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tier-card--featured { grid-column: 1 / -1; }
}

/* ─── Visit Cadence (inside Process step 2) ───────────────── */
.cadence-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid rgba(196, 145, 123, 0.25);
  padding-top: 0.9rem;
}
.cadence-list li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.9rem;
}
.cadence-when {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  min-width: 10ch;
}
.cadence-phase {
  color: var(--text);
  opacity: 0.7;
  font-weight: 300;
}

/* ─── Multi-page additions ────────────────────────────────── */
.dock-links a.active { opacity: 1; color: var(--accent); font-weight: 500; }

.mini-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 1.5rem 5rem;
  background: linear-gradient(135deg, #F4EDE4 0%, #FBF8F4 55%, #EFE3D6 100%);
  border-bottom: 1px solid rgba(44, 41, 38, 0.08);
  overflow: hidden;
}
.mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(196, 145, 123, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 168, 154, 0.16), transparent 55%);
  pointer-events: none;
}
.mini-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.mini-hero .eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}
.mini-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.mini-hero h1 em { font-style: italic; color: var(--accent); }
.mini-hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(44, 41, 38, 0.72);
  max-width: 640px;
  margin: 0 auto;
}

/* Services teaser (compact preview on home) */
.teaser-section {
  padding: 8rem 1.5rem;
  background: var(--bg);
}
.teaser-inner { max-width: 1100px; margin: 0 auto; }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.teaser-item {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 20px;
  transition: all 0.4s var(--ease-apple);
}
.teaser-item:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(30, 42, 37, 0.08); border-color: rgba(196, 145, 123, 0.3); }
.teaser-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.teaser-item h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.teaser-item p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(44, 41, 38, 0.7);
  margin: 0;
}
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 1rem;
  transition: gap 0.3s var(--ease-apple);
}
.teaser-link:hover { gap: 0.7rem; color: var(--text); }

/* Pricing teaser card */
.pricing-teaser {
  padding: 8rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #F4EDE4 100%);
}
.pricing-teaser-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: #fff;
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(30, 42, 37, 0.06);
}
.pricing-teaser-card .price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}
.pricing-teaser-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(44, 41, 38, 0.72);
  max-width: 520px;
  margin: 0.5rem auto 1.5rem;
}

/* Not covered / discount section on pricing page */
.notcovered-section {
  padding: 6rem 1.5rem;
  background: var(--bg);
}
.notcovered-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.notcovered-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
}
.notcovered-inner p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(44, 41, 38, 0.72);
  margin: 0 0 1rem;
}

@media (max-width: 700px) {
  .mini-hero { padding: 8rem 1.25rem 4rem; min-height: 50vh; }
  .pricing-teaser-card { padding: 2.5rem 1.5rem; }
}

/* ─── Section-Image Integrations ─────────────────────────── */

/* Flip card front with top image + text body */
.flip-card { height: 440px; }
.flip-front.flip-front--img {
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.flip-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  background: #EFE8DF;
}
.flip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-apple);
}
.flip-card:hover .flip-media img { transform: scale(1.04); }
.flip-front-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}
.flip-front-body .flip-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}
.flip-front-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
  letter-spacing: -0.015em;
}
.flip-front-body p {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.6;
  font-weight: 400;
}

/* Pricing tier card hero banner */
.tier-media {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #EFE8DF;
  position: relative;
}
.tier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-apple);
}
.tier-card:hover .tier-media img { transform: scale(1.03); }
.tier-card--featured .tier-media { aspect-ratio: 21 / 9; }

/* Framed editorial image block between section-intro + stack (philosophy) */
.section-frame {
  max-width: 960px;
  margin: 0 auto 3rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(30, 42, 37, 0.28);
  aspect-ratio: 16 / 9;
  background: #EFE8DF;
}
.section-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-frame--philosophy {
  max-width: 880px;
  margin-top: -0.5rem;
  margin-bottom: 4rem;
}

/* CTA section with atmospheric background image */
.particle-btn-section--imaged {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.particle-btn-section--imaged .cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.particle-btn-section--imaged .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.28;
  filter: saturate(1.05);
}
.particle-btn-section--imaged::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.82) 0%, rgba(244, 238, 230, 0.92) 100%);
}

@media (max-width: 768px) {
  .flip-card { height: 400px; }
  .flip-front-body h3 { font-size: 1.25rem; }
  .section-frame { margin-bottom: 2.5rem; border-radius: 18px; }
}

/* ─── Reveal helpers ──────────────────────────────────────── */
.reveal-up { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
