/* ============================================================
   DONNA MALTZ — main.css
   Shared stylesheet for all pages
   Build order: NAV → S1 → S2 → S3 → S4 → S5 → S6 → S7 → S8 → S9
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --color-primary: #2D5016;
  /* Deep Forest Green */
  --color-accent: #C8973A;
  /* Earth Gold */
  --color-cta: #C1572B;
  /* Terracotta */
  --color-cta-hover: #A3451F;
  /* Burnt Sienna */
  --color-bg: #FAF7F2;
  /* Warm Cream */
  --color-bg-alt: #EDF0E8;
  /* Sage Mist */
  --color-text: #2C2C2C;
  /* Charcoal */
  --color-text-light: #FFFFFF;
  /* White */
  --color-footer-bg: #2C2C2C;
  /* Charcoal */

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-quote: 'Lora', Georgia, serif;

  --max-width: 1200px;
  --section-pad: 5rem 1.5rem;
  --nav-height: 72px;

  --radius-card: 12px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-nav: 0 2px 12px rgba(0, 0, 0, 0.08);

  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  /* ~1.0625rem base */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-text-light);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 87, 43, 0.35);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background-color: var(--color-accent);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Pill variant (nav CTA) */
.btn-pill {
  border-radius: 100px;
  padding: 0.5rem 1.35rem 0.6rem;
  font-size: 0.82rem;
}

/* Text link arrow */
.link-arrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition), color var(--transition);
}

.link-arrow:hover {
  color: var(--color-accent);
  gap: 0.6rem;
}

/* ── 5. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: var(--section-pad);
}

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

.text-left {
  text-align: left;
}

/* Screen-reader only — visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════════
   NAV — Sticky Navigation Bar
   ════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: transparent;
  transition: background-color var(--transition),
    box-shadow var(--transition);
}

/* JS adds this class on scroll */
.site-nav.scrolled {
  background-color: #fff;
  box-shadow: var(--shadow-nav);
}

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

/* Logo */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  flex-shrink: 0;
}

.site-nav.scrolled .nav-logo {
  color: var(--color-primary);
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.site-nav.scrolled .nav-links a {
  color: var(--color-text);
}

.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active {
  color: var(--color-primary);
}

/* Nav CTA button — transparent state */
.nav-cta {
  background-color: var(--color-cta);
  color: var(--color-text-light) !important;
}

.nav-cta:hover {
  background-color: var(--color-cta-hover) !important;
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform var(--transition),
    opacity var(--transition),
    background-color var(--transition);
  transform-origin: center;
}

.site-nav.scrolled .nav-toggle span {
  background-color: var(--color-text);
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-down panel */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: var(--shadow-nav);
  padding: 1.5rem;
  z-index: 999;
  border-top: 1px solid #eee;

  /* Animate in */
  animation: slideDown 0.25s ease forwards;
}

.nav-mobile-panel.open {
  display: block;
}

.nav-mobile-panel a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid #f0ece5;
  transition: color var(--transition);
}

.nav-mobile-panel a:last-child {
  border-bottom: none;
  margin-top: 0.75rem;
  padding: 0;
}

.nav-mobile-panel a:hover {
  color: var(--color-primary);
}

.nav-mobile-panel .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive: show nav links on desktop ─────────────────── */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   S1 — HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;

  /* Nature image + overlay. Gradient fallback while image loads. */
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.52)),
    url('../assets/images/nature-bg.jpg') center / cover no-repeat;
  background-color: #1c3a0c;
  /* Fallback color */
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;

  /* Staggered fade-in on load */
  animation: heroFadeUp 1s ease both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  animation: heroFadeUp 0.9s ease 0.1s both;
}

.hero h1 {
  color: var(--color-text-light);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.9s ease 0.2s both;
}

/* Accent word in gold */
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  animation: heroFadeUp 0.9s ease 0.35s both;
}

.hero-cta {
  animation: heroFadeUp 0.9s ease 0.5s both;
  margin-bottom: 1.5rem;
}

.hero-micro {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto;
  animation: heroFadeUp 0.9s ease 0.65s both;
}

/* Scroll chevron */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll span {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
}

.hero-scroll span:nth-child(1) {
  opacity: 0.4;
}

.hero-scroll span:nth-child(2) {
  opacity: 0.7;
}

.hero-scroll span:nth-child(3) {
  opacity: 1.0;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO — Shared shorter hero for inner pages
   (About, Coaching, Books, Blog, Contact)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3.5rem) 1.5rem 4rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.55)),
    url('../assets/images/nature-bg.jpg') center 30% / cover no-repeat;
  background-color: #1c3a0c;
  overflow: hidden;
}

/* Subtle vignette at bottom to blend into next section */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  animation: heroFadeUp 0.9s ease both;
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: heroFadeUp 0.9s ease 0.1s both;
}

/* Decorative dots between eyebrow items */
.page-hero-eyebrow span+span::before {
  content: '·';
  margin-right: 0.75rem;
  opacity: 0.5;
}

.page-hero h1 {
  color: var(--color-text-light);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: heroFadeUp 0.9s ease 0.2s both;
}

.page-hero-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  animation: heroFadeUp 0.9s ease 0.35s both;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — A2: FULL STORY
   ════════════════════════════════════════════════════════════ */
.about-story {
  background-color: var(--color-bg);
  padding: var(--section-pad);
}

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

/* ── Photo column ─────────────────────────────────────────── */
.about-story-photo {
  position: relative;
}

.about-story-photo img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(45, 80, 22, 0.16),
    0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  display: block;
}

/* Gold corner accent — bottom right for variety */
.about-story-photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-bottom: 3px solid var(--color-accent);
  border-right: 3px solid var(--color-accent);
  border-radius: 0 0 4px 0;
  pointer-events: none;
}

/* Sticky photo on desktop */
@media (min-width: 768px) {
  .about-story-photo {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }

  .about-story-photo img {
    max-width: 100%;
    margin: 0;
  }
}

/* ── Text column ──────────────────────────────────────────── */
.about-story-text .section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.about-story-text .section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.about-story-text h2 {
  margin-bottom: 1.75rem;
}

.about-story-text p {
  margin-bottom: 1.4rem;
  color: var(--color-text);
  font-size: 1.0rem;
  line-height: 1.8;
}

/* Inline pull quote within story text */
.about-story-text .pull-quote {
  margin: 2rem 0;
}

/* Desktop: two columns */
@media (min-width: 768px) {
  .about-story-inner {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT — A3: VALUES PILLARS
   ════════════════════════════════════════════════════════════ */
.values {
  background-color: var(--color-bg-alt);
  padding: var(--section-pad);
}

.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.values-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.values-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.value-pillar {
  text-align: left;
  padding: 2.5rem;
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* Decorative large number in background */
.value-pillar::before {
  content: attr(data-num);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.value-pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}

.value-pillar h3 {
  color: var(--color-primary);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.value-pillar p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: 1.25rem;
}

.value-pillar-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--color-accent);
  border-left: 2px solid var(--color-accent);
  padding-left: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT — A4: CREDENTIALS & BOOKS
   ════════════════════════════════════════════════════════════ */
.credentials {
  background-color: #fff;
  padding: var(--section-pad);
}

.credentials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.credentials-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.credentials-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 860px;
  margin: 0 auto 4rem;
}

/* Carousel Wrapper */
.carousel-container {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

/* Books row - Carousel */
.books-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.books-row::-webkit-scrollbar {
  display: none;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: var(--color-bg);
  border: 1px solid rgba(45, 80, 22, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--color-primary);
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.prev-btn {
  left: -0.5rem;
}

.next-btn {
  right: -0.5rem;
}

.book-card {
  flex: 0 0 calc(90% - 1.5rem);
  scroll-snap-align: start;
  background-color: var(--color-bg);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(45, 80, 22, 0.1);
  transition: box-shadow var(--transition), transform var(--transition);
}

.book-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.book-card-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.book-card h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
}

.book-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  flex: 1;
}

@media (min-width: 640px) {
  .book-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .book-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT — A5: FULL-WIDTH QUOTE BANNER
   ════════════════════════════════════════════════════════════ */
.quote-banner {
  background-color: var(--color-primary);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 22rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.quote-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.quote-banner blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.quote-banner cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ════════════════════════════════════════════════════════════
   ABOUT — A6: COACHING CTA
   ════════════════════════════════════════════════════════════ */
.about-cta {
  background-color: var(--color-bg);
  padding: var(--section-pad);
  text-align: center;
}

.about-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-cta .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.about-cta h2 {
  margin-bottom: 1rem;
}

.about-cta-note {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text);
  opacity: 0.75;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

.about-cta-detail {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.about-cta-detail h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.about-cta-detail p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .about-cta-details {
    grid-template-columns: 1fr 1fr;
  }

  .about-cta-note {
    margin-bottom: 3rem;
  }
}

/* ════════════════════════════════════════════════════════════
   COACHING PAGE
   ════════════════════════════════════════════════════════════ */
.coaching-intro {
  background-color: var(--color-bg);
  padding: var(--section-pad);
}

.coaching-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.coaching-intro .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.coaching-intro h2 {
  margin-bottom: 1.5rem;
}

.coaching-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 680px;
  margin: 0 auto 1.1rem;
}

/* Packages */
.packages {
  background-color: var(--color-bg-alt);
  padding: var(--section-pad);
}

.packages-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.packages-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.packages-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.package-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 4px solid var(--color-bg-alt);
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
}

.package-card.featured {
  border-top-color: var(--color-cta);
}

.package-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.package-tag.tag-free {
  color: var(--color-cta);
}

.package-card h3 {
  font-size: 1.45rem;
  color: var(--color-primary);
}

.package-card p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--color-text);
  flex: 1;
}

.package-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.5rem 0;
}

.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.55;
}

.package-includes li::before {
  content: '✦';
  color: var(--color-accent);
  font-size: 0.6rem;
  margin-top: 0.32rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   BOOKS PAGE
   ════════════════════════════════════════════════════════════ */
.book-feature {
  padding: var(--section-pad);
}

.book-feature:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.book-feature:nth-child(odd) {
  background-color: var(--color-bg);
}

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

.book-cover-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 2/3;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--color-primary) 0%, #4a7a28 100%);
  box-shadow: 0 20px 60px rgba(45, 80, 22, 0.25), -6px 6px 0 var(--color-accent);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
}

.book-cover-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(45, 80, 22, 0.25), -6px 6px 0 var(--color-accent);
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

.book-feature:nth-child(even) .book-cover-placeholder,
.book-feature:nth-child(even) .book-cover-img {
  background: linear-gradient(160deg, #6b4c1a 0%, var(--color-accent) 100%);
  box-shadow: 0 20px 60px rgba(200, 151, 58, 0.25), -6px 6px 0 var(--color-primary);
}

.book-cover-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.book-info .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.book-info h2 {
  margin-bottom: 1.25rem;
}

.book-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.1rem;
}

.book-info p:last-of-type {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .book-feature-inner {
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
  }

  .book-cover-placeholder,
  .book-cover-img {
    max-width: 100%;
    margin: 0;
  }

  .book-feature:nth-child(even) .book-feature-inner {
    direction: rtl;
  }

  .book-feature:nth-child(even) .book-feature-inner>* {
    direction: ltr;
  }
}

/* ════════════════════════════════════════════════════════════
   RECIPES PAGE
   ════════════════════════════════════════════════════════════ */
.recipes-intro {
  background-color: var(--color-bg);
  padding: var(--section-pad);
  text-align: center;
}

.recipes-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}

.recipes-intro .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.recipes-intro h2 {
  margin-bottom: 1.25rem;
}

.recipes-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.recipes-grid-section {
  background-color: #fff;
  padding: var(--section-pad);
}

.recipes-grid-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.recipes-grid-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.recipes-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.recipe-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.11);
}

.recipe-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #b8d4a0 0%, #7aab60 100%);
}

.recipe-card:nth-child(2) .recipe-card-img {
  background: linear-gradient(135deg, #d4c49a 0%, #b89540 100%);
}

.recipe-card:nth-child(3) .recipe-card-img {
  background: linear-gradient(135deg, #a8c8b0 0%, #5d8b54 100%);
}

.recipe-card:nth-child(4) .recipe-card-img {
  background: linear-gradient(135deg, #c8b8d0 0%, #6a5080 100%);
}

.recipe-card:nth-child(5) .recipe-card-img {
  background: linear-gradient(135deg, #c8d4b0 0%, #8aab60 100%);
}

.recipe-card:nth-child(6) .recipe-card-img {
  background: linear-gradient(135deg, #d4b8a0 0%, #a06840 100%);
}

.recipe-card-body {
  padding: 1.5rem;
}

.recipe-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: block;
}

.recipe-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.recipe-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.1rem;
}

@media (min-width: 640px) {
  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .recipes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   BLOG ARCHIVE PAGE
   ════════════════════════════════════════════════════════════ */
.blog-archive {
  background-color: #fff;
  padding: var(--section-pad);
}

.blog-archive-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.blog-archive-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.blog-archive-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-section {
  background-color: var(--color-bg);
  padding: var(--section-pad);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* Left column: info */
.contact-info .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.contact-info h2 {
  margin-bottom: 1.25rem;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-info p:last-of-type {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--color-primary);
}

/* Right column: form */
.contact-form-wrap {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.45rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-form-wrap>p {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(45, 80, 22, 0.2);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  background-color: #fff;
}

.form-group textarea {
  min-height: 130px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text);
  opacity: 0.55;
  font-style: italic;
}

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

@media (min-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr 1.4fr;
  }
}

/* ════════════════════════════════════════════════════════════
   S2 — CREDIBILITY BAR
   ════════════════════════════════════════════════════════════ */
.credibility {
  background-color: var(--color-bg-alt);
  padding: 2.75rem 1.5rem;
  text-align: center;
}

.credibility-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.credibility-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  max-width: 860px;
  margin: 0 auto;
}

.credibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  background-color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  white-space: nowrap;
  transition: background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.credibility-badge:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Small decorative dot before each badge */
.credibility-badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   S3 — ABOUT SNAPSHOT
   ════════════════════════════════════════════════════════════ */
.about-snap {
  background-color: var(--color-bg);
  padding: var(--section-pad);
}

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

/* ── Photo column ─────────────────────────────────────────── */
.about-snap-photo {
  position: relative;
}

.about-snap-photo img {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(45, 80, 22, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  display: block;
}

/* Decorative gold corner accent */
.about-snap-photo::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--color-accent);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px 0 0 0;
  pointer-events: none;
}

/* ── Text column ──────────────────────────────────────────── */
.about-snap-text {
  text-align: left;
}

/* Small gold rule above heading */
.about-snap-text .section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.about-snap-text .section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.about-snap-text h2 {
  margin-bottom: 1.75rem;
  color: var(--color-primary);
}

.about-snap-text p {
  margin-bottom: 1.1rem;
  color: var(--color-text);
}

.about-snap-text p:last-of-type {
  margin-bottom: 2rem;
}

/* Desktop: two columns */
@media (min-width: 768px) {
  .about-snap-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-snap-photo img {
    max-width: 100%;
    margin: 0;
  }
}

/* ════════════════════════════════════════════════════════════
   S4 — THE PROBLEM / THE PROMISE
   ════════════════════════════════════════════════════════════ */
.problem-promise {
  background-color: #fff;
  padding: var(--section-pad);
}

.problem-promise-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.problem-promise-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.problem-promise-header h2 {
  color: var(--color-primary);
}

/* Two-column grid */
.problem-promise-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* ── Left column: Pain points ─────────────────────────────── */
.problem-col h3,
.promise-col h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ✦ bullet */
.pain-list li::before {
  content: '✦';
  color: var(--color-accent);
  font-size: 0.65rem;
  margin-top: 0.38rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Right column: Promise ────────────────────────────────── */
.promise-col p {
  margin-bottom: 1.75rem;
  color: var(--color-text);
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--color-primary);
  padding: 1.1rem 1.5rem;
  margin: 0;
  background-color: var(--color-bg-alt);
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.0rem;
  line-height: 1.7;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pull-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

/* ── CTA centered below both columns ─────────────────────── */
.problem-promise-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Desktop: two equal columns */
@media (min-width: 768px) {
  .problem-promise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ════════════════════════════════════════════════════════════
   S5 — WAYS TO WORK TOGETHER
   ════════════════════════════════════════════════════════════ */
.work-together {
  background-color: var(--color-bg);
  padding: var(--section-pad);
}

.work-together-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.work-together-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.work-together-header h2 {
  color: var(--color-primary);
}

/* ── Card grid ────────────────────────────────────────────── */
.work-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.work-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition),
    box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
}

/* Icon area */
.work-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-bg-alt);
  border-radius: 12px;
  flex-shrink: 0;
}

.work-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.work-card p {
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
  /* pushes link to bottom */
  margin-bottom: 1.75rem;
}

/* Desktop: three columns */
@media (min-width: 768px) {
  .work-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   S5.5 / A4.5 — THE ECO-SYSTEM
   ════════════════════════════════════════════════════════════ */
.eco-system {
  background-color: var(--color-bg-alt);
  padding: var(--section-pad);
}

.eco-system-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.eco-system-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.eco-system-header h2 {
  color: var(--color-primary);
}

.eco-cards {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.eco-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition),
    box-shadow var(--transition);
}

.eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.12);
}

/* Image backgrounds */
.eco-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.retreat-img {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.4), rgba(45, 80, 22, 0.6)), url('../assets/images/retreat-bg.jpg') center / cover no-repeat;
}

.shop-img {
  background: linear-gradient(135deg, rgba(200, 151, 58, 0.4), rgba(200, 151, 58, 0.6)), url('../assets/images/shop-art.jpg') center 20% / cover no-repeat;
}

.eco-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.eco-card-body h3 {
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.eco-card-body p {
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.75rem;
}

/* Desktop: two columns */
@media (min-width: 768px) {
  .eco-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   S6 — TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials {
  background-color: var(--color-bg-alt);
  padding: var(--section-pad);
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.testimonials-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.testimonials-header h2 {
  color: var(--color-primary);
}

/* ── Card grid ────────────────────────────────────────────── */
.testimonial-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Large opening quote mark */
.testimonial-card::before {
  content: '\201C';
  /* " */
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
  padding-top: 1.5rem;
  /* clear the quote mark */
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--color-bg-alt);
  padding-top: 1.25rem;
  margin-top: auto;
}

.testimonial-attribution-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.testimonial-attribution cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

/* Placeholder card — second testimonial (TODO) */
.testimonial-card.placeholder {
  border: 2px dashed rgba(45, 80, 22, 0.2);
  background-color: transparent;
  box-shadow: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 220px;
}

.testimonial-card.placeholder::before {
  display: none;
}

.placeholder-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-primary);
  opacity: 0.5;
  font-style: italic;
}

/* ── Stars + trust line ───────────────────────────────────── */
.testimonials-footer {
  text-align: center;
  margin-top: 3rem;
}

.star-row {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.trust-line {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

/* Desktop: two columns */
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   S7 — FEATURED BLOG POSTS
   ════════════════════════════════════════════════════════════ */
.blog-preview {
  background-color: #fff;
  padding: var(--section-pad);
}

.blog-preview-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.blog-preview-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.blog-preview-header h2 {
  color: var(--color-primary);
}

/* ── Card grid ────────────────────────────────────────────── */
.blog-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition),
    box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.11);
}

/* Image placeholder — gradient nature tones */
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg,
      #c8e6c0 0%,
      #a5c88a 40%,
      #7aab60 100%);
  flex-shrink: 0;
}

/* Tint variations per card for visual variety */
.blog-card:nth-child(2) .blog-card-img {
  background: linear-gradient(135deg,
      #e8d5a3 0%,
      #d4b870 40%,
      #b89540 100%);
}

.blog-card:nth-child(3) .blog-card-img {
  background: linear-gradient(135deg,
      #c5d8c0 0%,
      #94b88a 40%,
      #5d8b54 100%);
}

.blog-card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
}

.blog-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--color-text);
  flex: 1;
  margin-bottom: 1.5rem;
}

/* ── Footer: view all link ────────────────────────────────── */
.blog-preview-footer {
  text-align: center;
  margin-top: 2.75rem;
}

/* Desktop: three columns */
@media (min-width: 768px) {
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   S8 — EMAIL OPT-IN
   ════════════════════════════════════════════════════════════ */
.email-optin {
  background-color: var(--color-primary);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle texture: large faint circle in background */
.email-optin::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.email-optin::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.08);
  pointer-events: none;
}

.email-optin-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* Small gold ornament above heading */
.email-optin-ornament {
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 0 auto 1.5rem;
}

.email-optin h2 {
  color: var(--color-text-light);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.email-optin-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

/* ── Inline form ──────────────────────────────────────────── */
/* TODO: Connect to Mailchimp / ConvertKit / your email provider */
.email-optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.email-optin-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition),
    background-color var(--transition);
}

.email-optin-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-optin-form input[type="email"]:focus {
  border-color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.14);
}

.btn-gold {
  background-color: var(--color-accent);
  color: #1a1a1a;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: #b5852e;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 58, 0.35);
}

.email-optin-micro {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

/* Tablet+: inline row */
@media (min-width: 540px) {
  .email-optin-form {
    flex-direction: row;
    align-items: center;
  }

  .email-optin-form input[type="email"] {
    min-width: 0;
    /* allow shrink */
  }
}

/* ════════════════════════════════════════════════════════════
   S9 — FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 1.5rem 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

/* ── Column labels ────────────────────────────────────────── */
.footer-col-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  display: block;
}

/* ── Col 1: Brand ─────────────────────────────────────────── */
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Col 2: Quick Links ───────────────────────────────────── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
  width: fit-content;
}

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

/* ── Col 3: Connect ───────────────────────────────────────── */
.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-connect-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
  width: fit-content;
}

.footer-connect-link:hover {
  color: var(--color-accent);
}

.footer-connect-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-connect-link:hover svg {
  opacity: 1;
}

/* ── Col 4: Work With Me ──────────────────────────────────── */
.footer-cta-col p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

/* ── Bottom bar ───────────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ── Responsive grid ──────────────────────────────────────── */
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


/* ════════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy & Terms of Use
   ════════════════════════════════════════════════════════════ */
.legal-content h2 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 2rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.legal-content a:hover {
  color: var(--color-primary);
}

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE PAGE STYLES
   ════════════════════════════════════════════════════════════ */
.blog-post-body {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1.125rem;
}

.blog-post-body p {
  margin-bottom: 1.15rem;
  line-height: 1.6;
}

.blog-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 3rem auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  /* slight shadow for imagery to stand out nicely */
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
  color: var(--color-primary);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.blog-post-body li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.blog-post-body blockquote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  margin: 3rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.blog-post-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.blog-post-body a:hover {
  color: var(--color-primary);
}