/* ============================================================
   ZenDoctor.Com — Full Site Redesign 2025
   Warm, minimal, professional — Zen meets depth psychology
   ============================================================ */

:root {
  --ink:         #1a1a18;
  --ink-light:   #3d3d38;
  --sand:        #f5f0e8;
  --sand-dark:   #ede7d8;
  --warm-white:  #faf8f4;
  --moss:        #4a6741;
  --moss-light:  #6a9060;
  --moss-dark:   #344d2e;
  --stone:       #8a8070;
  --stone-light: #b8b0a0;
  --gold:        #c8a96e;
  --gold-light:  #dfc49a;
  --nav-h:       72px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --radius:      4px;
  --shadow:      0 2px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
  --transition:  0.25s ease;
  --max-w:       1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--warm-white); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }
p { margin-bottom: 1.1rem; color: var(--ink-light); }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 96px 0; }
.section-label {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss);
  display: block; margin-bottom: 0.65rem;
}
.section-header { max-width: 720px; margin-bottom: 4rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro { font-size: 1.05rem; color: var(--stone); margin-top: 0.75rem; line-height: 1.85; }
.page-hero {
  background: linear-gradient(135deg, #1a2418 0%, #2c3a28 50%, #3d4a35 100%);
  padding: calc(var(--nav-h) + 60px) 0 70px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }
.page-hero .section-label { color: var(--gold-light); justify-content: center; display: flex; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); justify-content: center; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- Buttons ---- */
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; transition: all var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--moss); color: #fff; }
.btn-primary:hover { background: var(--moss-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--moss); border: 1.5px solid var(--moss); }
.btn-outline:hover { background: var(--moss); color: #fff; }
.btn-light { background: rgba(255,255,255,0.92); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.full-width { width: 100%; text-align: center; }

/* ---- NAV ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 1000; background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250,248,244,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
}
.nav-logo {
  flex-shrink: 0; margin-right: 1.5rem;
  font-family: var(--font-serif); font-size: 1.35rem;
  color: #fff; text-decoration: none;
  transition: color var(--transition); white-space: nowrap;
}
.nav-logo span { color: var(--gold-light); }
#navbar.scrolled .nav-logo { color: var(--ink); }
#navbar.scrolled .nav-logo span { color: var(--gold); }
.nav-links {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.1rem; list-style: none; margin: 0; padding: 0;
}
.nav-links > li { position: relative; list-style: none; }
.nav-links > li > a {
  display: block; padding: 0.5rem 0.75rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9); text-decoration: none;
  border-radius: var(--radius); white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; background: rgba(255,255,255,0.15); }
#navbar.scrolled .nav-links > li > a { color: var(--ink-light); }
#navbar.scrolled .nav-links > li > a:hover,
#navbar.scrolled .nav-links > li > a.active { color: var(--ink); background: var(--sand); }
.nav-cta {
  background: var(--moss) !important; color: #fff !important;
  padding: 0.45rem 1.1rem !important; border-radius: 20px !important;
}
.nav-cta:hover { background: var(--moss-light) !important; }
/* ── Dropdown ── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  padding: 8px 0 6px;          /* 8px top-padding bridges the gap so mouse stays on hover */
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid #e8e0d4;
  list-style: none; margin: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1001;
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.84rem; color: #555; text-decoration: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown li a:hover { background: #f5f0e8; color: #1a1a1a; padding-left: 1.5rem; }
.has-dropdown:hover > .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
/* Mobile toggle — hidden on desktop */
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: #fff; cursor: pointer; padding: 0.25rem; line-height: 1;
}
#navbar.scrolled .nav-toggle { color: var(--ink); }

/* ---- HERO (homepage) ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  background: linear-gradient(145deg, #121a10 0%, #1e2c1a 35%, #2c3a28 65%, #1a2418 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(200,169,110,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 35%, rgba(74,103,65,0.12) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(255,255,255,0.012) 120px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 2rem; padding-top: var(--nav-h); }
.hero-eyebrow { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; }
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.85; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.35); font-size: 1.2rem; animation: bounce 2.5s infinite; z-index: 2; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ---- INTRO STRIP ---- */
.intro-strip { background: var(--moss); padding: 2.5rem 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.intro-item { display: flex; align-items: center; gap: 0.9rem; color: rgba(255,255,255,0.82); font-size: 0.88rem; }
.intro-item strong { color: #fff; }
.intro-icon { font-size: 1.4rem; color: var(--gold-light); flex-shrink: 0; }

/* ---- ABOUT (homepage) ---- */
.about { background: var(--warm-white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { }
.image-block {
  position: relative; width: 100%; padding-bottom: 110%;
  background: var(--sand-dark); border-radius: 2px; overflow: hidden;
}
.image-block::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sand) 0%, var(--stone-light) 100%); }
.image-block span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: var(--stone); font-style: italic; text-align: center; padding: 1rem; z-index: 1; }
.image-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.text-block h2 { margin-bottom: 0.5rem; }
.text-block .sub-title { font-style: italic; color: var(--stone); margin-bottom: 1.5rem; font-size: 0.92rem; }
.text-block .btn { margin-top: 1rem; }

/* ---- PHILOSOPHY ---- */
.philosophy { background: var(--sand); }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.pillar-card { background: #fff; padding: 2rem 1.5rem; border-radius: var(--radius); border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.pillar-num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); margin-bottom: 0.6rem; line-height: 1; }
.pillar-card h3 { margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.88rem; color: var(--stone); margin: 0; }
.pull-quote { text-align: center; font-family: var(--font-serif); font-size: clamp(1.15rem,2.3vw,1.55rem); font-style: italic; color: var(--ink); max-width: 780px; margin: 0 auto; padding: 2.5rem 0 0; border-top: 1px solid var(--stone-light); }
.pull-quote cite { display: block; font-size: 0.8rem; font-style: normal; color: var(--stone); margin-top: 1rem; font-family: var(--font-sans); letter-spacing: 0.05em; }

/* ---- SERVICES ---- */
.services { background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card { padding: 2rem; border: 1px solid var(--sand-dark); border-radius: var(--radius); transition: all var(--transition); }
.service-card:hover { border-color: var(--moss-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { font-size: 1.4rem; color: var(--moss); margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--stone); margin-bottom: 1rem; }
.service-card a { font-size: 0.82rem; color: var(--moss); font-weight: 500; letter-spacing: 0.04em; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.service-card a:hover { border-color: var(--moss); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--sand); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial-quote { font-family: var(--font-serif); font-size: 3rem; color: var(--gold-light); line-height: 1; margin-bottom: 0.25rem; }
.testimonial-card > p { font-size: 0.88rem; color: var(--stone); font-style: italic; line-height: 1.85; }
.testimonial-author { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--sand-dark); }
.testimonial-author strong { display: block; font-size: 0.86rem; font-weight: 500; color: var(--ink); }
.testimonial-author span { font-size: 0.78rem; color: var(--stone); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--moss-dark); padding: 80px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 2rem; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- DARK SECTION ---- */
.dark-section { background: var(--ink); }
.dark-section .section-label { color: var(--gold-light); }
.dark-section h2 { color: #fff; }
.dark-section p { color: rgba(255,255,255,0.65); }

/* ---- WORKSHOPS ---- */
.workshops-grid { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center; }
.workshop-list { margin: 1.5rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.workshop-list li { font-size: 0.86rem; color: rgba(255,255,255,0.7); padding-left: 1rem; position: relative; }
.workshop-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.workshop-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.75rem; margin-top: 1.5rem; }
.workshop-card-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; }
.workshop-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-style: italic; }
.workshop-card .attr { font-style: normal; font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 0.6rem; }

/* ---- CONTENT PAGE ---- */
.content-wrap { max-width: 800px; margin: 0 auto; }
.content-wrap h2 { margin: 2.5rem 0 1rem; }
.content-wrap h3 { margin: 2rem 0 0.75rem; color: var(--moss-dark); }
.content-wrap p { margin-bottom: 1.2rem; }
.content-wrap ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.content-wrap ul li { margin-bottom: 0.5rem; color: var(--ink-light); font-size: 0.95rem; }
.content-wrap blockquote { border-left: 3px solid var(--gold); padding: 0.75rem 1.5rem; margin: 2rem 0; background: var(--sand); border-radius: 0 var(--radius) var(--radius) 0; }
.content-wrap blockquote p { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--ink); margin: 0; }
.related-links { background: var(--sand); border-radius: var(--radius); padding: 2rem; margin-top: 3rem; }
.related-links h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 1rem; color: var(--ink); }
.related-links ul { list-style: none; margin: 0; }
.related-links ul li { padding: 0.4rem 0; border-bottom: 1px solid var(--sand-dark); }
.related-links ul li:last-child { border-bottom: none; }
.related-links ul li a { font-size: 0.88rem; color: var(--moss); font-weight: 500; transition: color var(--transition); display: flex; align-items: center; gap: 0.5rem; }
.related-links ul li a::before { content: '→'; color: var(--gold); font-size: 0.8rem; }
.related-links ul li a:hover { color: var(--moss-light); }

/* ---- STRESS TEACHINGS SEQUENCE ---- */
.teachings-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.step-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-top: 3px solid var(--moss); position: relative; }
.step-num { position: absolute; top: -1px; right: 1.5rem; background: var(--moss); color: #fff; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 0 0 var(--radius) var(--radius); }
.step-card h3 { margin-bottom: 0.75rem; }
.step-card p { font-size: 0.88rem; color: var(--stone); }
.step-card .step-cta { display: inline-block; margin-top: 1rem; font-size: 0.8rem; color: var(--moss); font-weight: 500; border-bottom: 1px solid var(--moss); }

/* ---- AMT BENEFITS LIST ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; margin: 1.5rem 0; }
.benefit-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.75rem; border-radius: var(--radius); background: var(--sand); }
.benefit-icon { color: var(--moss); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1rem; }
.benefit-item p { font-size: 0.85rem; color: var(--ink-light); margin: 0; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
.contact-info-block { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--ink-light); }
.contact-info-item a { color: var(--moss); font-weight: 500; }
.contact-info-item .icon { font-size: 1.1rem; color: var(--moss); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-light); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--sand-dark); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--ink); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,103,65,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--stone-light); }
.form-note { font-size: 0.78rem; color: var(--stone); text-align: center; }

/* ---- MANUALS ---- */
.manuals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.manual-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.manual-card-top { background: var(--moss-dark); padding: 2.5rem 1.5rem; text-align: center; }
.manual-card-top .manual-icon { font-size: 2.5rem; color: var(--gold-light); margin-bottom: 0.75rem; }
.manual-card-top h3 { color: #fff; font-size: 1.1rem; }
.manual-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.manual-card-body p { font-size: 0.86rem; color: var(--stone); flex: 1; }
.manual-price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--moss); margin: 1rem 0 0.25rem; font-weight: 400; }
.manual-card-body .btn { margin-top: auto; }

/* ---- FOOTER ---- */
.footer { background: var(--ink); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; margin-bottom: 0.75rem; display: block; }
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.28); line-height: 1.8; }
.footer-email a { font-size: 0.83rem; color: var(--gold-light); transition: color var(--transition); }
.footer-email a:hover { color: var(--gold); }

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .image-block { padding-bottom: 60%; max-width: 420px; }
  .workshops-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .manuals-grid { grid-template-columns: repeat(2,1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 1rem; }
  .teachings-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Free Zen Manual — highlighted nav link */
.nav-links .nav-free { color: var(--gold-light) !important; font-weight: 600; }
#navbar.scrolled .nav-links .nav-free { color: var(--gold) !important; }
.nav-links .nav-free:hover { background: rgba(193,160,90,0.15) !important; color: var(--gold-light) !important; }
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: block; }
  /* On mobile: nav-inner is already flex; space-between separates logo and toggle */
  .nav-inner { justify-content: space-between; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--warm-white); flex-direction: column; padding: 1.5rem 2rem;
    gap: 0; box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { color: var(--ink-light) !important; font-size: 1rem; padding: 0.65rem 0; border-bottom: 1px solid var(--sand); background: transparent !important; }
  /* Mobile dropdowns always visible inline */
  .has-dropdown::after { display: none; }
  .has-dropdown > .dropdown {
    position: static !important; opacity: 1 !important; pointer-events: all !important;
    transform: none !important; box-shadow: none !important; border: none !important;
    background: transparent !important; padding: 0 0 0 1rem !important;
  }
  .dropdown li a { padding: 0.4rem 0 !important; font-size: 0.88rem; border-bottom: none; color: #666 !important; }
  .dropdown li a:hover { padding-left: 0.75rem !important; background: transparent !important; color: var(--moss) !important; }
  .pillars-grid, .services-grid, .testimonials-grid, .manuals-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .workshop-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .btn-group { flex-direction: column; align-items: center; }
}

/* ---- DR. BONNICI PHOTO ---- */
.about-photo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.about-photo {
  width: 100%;
  max-width: 380px;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .about-photo { max-width: 320px; }
}
@media (max-width: 768px) {
  .about-photo-wrap { justify-content: center; }
  .about-photo { max-width: 260px; }
}

/* ---- ARTICLES GRID ---- */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.article-card { background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--radius); text-decoration: none; color: inherit; transition: box-shadow var(--transition), transform var(--transition); display: block; }
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.article-card-inner { padding: 1.75rem; }
.article-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
.article-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; margin: 0.5rem 0 0.75rem; color: var(--ink); }
.article-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; margin-bottom: 1rem; }

/* ---- ZEN VISION BLOCKS ---- */
.zen-vision-block { margin-bottom: 3rem; }
.zen-vision-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.5rem; display: block; }
.zen-vision-block h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 1.25rem; }

/* ---- POEMS ---- */
.poem-block { margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--sand-dark); }
.poem-block:last-child { border-bottom: none; }
.poem-header { margin-bottom: 2rem; }
.poem-num { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--moss); }
.poem-header h2 { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--ink); margin: 0.5rem 0 0.25rem; }
.poem-meta { font-size: 0.8rem; color: var(--stone); }
.poem-body p { font-family: var(--font-serif); font-size: 1.1rem; line-height: 2; color: var(--ink-light); margin-bottom: 1.2rem; font-style: italic; }
.poem-body strong { font-style: normal; font-weight: 600; color: var(--ink); letter-spacing: 0.05em; }

/* ---- PUBLICATIONS ---- */
.publication-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.pub-item { padding: 1rem; background: var(--sand); border-radius: 6px; border-left: 3px solid var(--gold); }
.pub-item h4 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.pub-item p { font-size: 0.82rem; color: var(--stone); margin: 0; }

/* ---- SERVICE CARD LINK ---- */
.service-card-link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.service-card-link:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.read-more-link { font-size: 0.8rem; color: var(--moss); font-weight: 500; margin-top: 0.75rem; display: inline-block; }

/* ---- MANUALS GRID ---- */
.manuals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.manual-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.manual-card-top { background: var(--moss-dark); padding: 1.75rem; color: #fff; }
.manual-card-top h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: #fff; margin-bottom: 0.25rem; }
.manual-icon { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--gold); }
.manual-card-body { background: #fff; padding: 1.5rem; flex: 1; display: flex; flex-direction: column; border: 1px solid var(--sand-dark); border-top: none; }
.manual-card-body p { font-size: 0.87rem; color: var(--ink-light); line-height: 1.7; }
.manual-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--moss); margin: 1rem 0 0.75rem; }

/* ---- TEACHINGS STEPS ---- */
.teachings-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.step-card { background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--radius); padding: 1.5rem; }
.step-num { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
.step-card h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; margin: 0.4rem 0 0.6rem; color: var(--ink); }
.step-card p { font-size: 0.82rem; color: var(--stone); line-height: 1.6; margin-bottom: 0.75rem; }
.step-cta { font-size: 0.8rem; color: var(--moss); font-weight: 500; text-decoration: none; }

/* ---- WORKSHOPS GRID ---- */
.workshops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .workshops-grid { grid-template-columns: 1fr; gap: 2rem; } }
.workshop-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; }
.workshop-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.workshop-card p { font-size: 0.87rem; color: rgba(255,255,255,0.75); font-style: italic; }
.workshop-card .attr { font-size: 0.78rem; color: var(--gold-light); margin-top: 0.5rem; font-style: normal; }

/* ---- CONTACT GRID ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info-block { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item .icon { font-size: 1.1rem; color: var(--moss); margin-top: 0.1rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.contact-info-item a, .contact-info-item p { font-size: 0.87rem; color: var(--stone); margin: 0; }

/* ---- WORKSHOP LIST ---- */
.workshop-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.workshop-list li { padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.workshop-list li::before { content: '—'; margin-right: 0.5rem; color: var(--gold); }
/* Book page uses workshop-list on a white/light background — override text & border colors */
.section-light .workshop-list li,
.two-col .workshop-list li {
  color: var(--ink-light);
  border-bottom-color: var(--sand-dark);
}

/* nav items — compact font handled in main nav block above */


/* ═══════════════════════════════════════
   STRESS TEACHINGS — VISUAL DIAGRAMS
═══════════════════════════════════════ */

/* Page structure */
.stress-page { border-top: 4px solid var(--sand-dark); }
.stress-page.alt-bg { background: var(--sand); }
.stress-page-header { margin-bottom: 2.5rem; }
.stress-page-num { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss); background: rgba(74,103,65,0.08); padding: 0.3rem 0.75rem; border-radius: 20px; margin-bottom: 0.75rem; }
.stress-page-header h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--ink); margin: 0 0 0.4rem; }
.stress-page-header h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 300; font-style: italic; color: var(--stone); margin: 0 0 0.5rem; }
.stress-byline { font-size: 0.78rem; color: var(--stone); }

/* Teachings nav row */
.teachings-nav-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 2rem 0 0; }
.teaching-nav-btn { display: flex; flex-direction: column; align-items: center; padding: 1rem 1.5rem; background: #fff; border: 2px solid var(--sand-dark); border-radius: var(--radius); text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.9rem; transition: all var(--transition); min-width: 140px; }
.teaching-nav-btn span { font-size: 0.72rem; font-weight: 400; color: var(--stone); margin-top: 0.25rem; }
.teaching-nav-btn:hover { border-color: var(--moss); background: var(--moss); color: #fff; }
.teaching-nav-btn:hover span { color: rgba(255,255,255,0.8); }

/* Diagram wrapper */
.diagram-wrap { background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--radius); padding: 2rem; margin: 2rem 0; box-shadow: var(--shadow); }
.diagram-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.diagram-subtitle { font-size: 0.75rem; color: var(--stone); margin-bottom: 1.5rem; font-style: italic; }
.diagram-caption { font-size: 0.82rem; color: var(--stone); font-style: italic; margin-top: 1.25rem; text-align: center; border-top: 1px solid var(--sand-dark); padding-top: 1rem; }

/* ── DIAGRAM 1: ANS Pyramid ── */
.ans-pyramid { display: flex; flex-direction: column; gap: 1rem; }
.pyramid-level { display: flex; flex-direction: column; gap: 0.75rem; }
.pyramid-base-row { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 1rem; }
.pyramid-box { border-radius: 8px; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; }
.pyramid-box strong { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; }
.pyramid-box span { font-size: 0.78rem; color: #555; }
.pyramid-box ul { margin: 0.4rem 0 0 0; padding-left: 1.1rem; }
.pyramid-box ul li { font-size: 0.76rem; color: #444; line-height: 1.7; }
.pyramid-box .tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 10px; margin-top: 0.4rem; width: fit-content; }
.sys-icon { font-size: 1.3rem; }
.central { background: #e8f0e5; border: 2px solid #b5cbb0; }
.central strong { color: #2d5016; }
.somatic { background: #f0ebe0; border: 2px solid #d4c5a0; }
.somatic strong { color: #6b4c1a; }
.sympathetic { background: #fdecea; border: 2px solid #f5b8b3; }
.sympathetic strong { color: #8b1a1a; }
.sympathetic .tag.danger { background: #f5b8b3; color: #8b1a1a; }
.parasympathetic { background: #e8f4ee; border: 2px solid #a8d5b5; }
.parasympathetic strong { color: #1a5c36; }
.parasympathetic .tag.healthy { background: #a8d5b5; color: #1a5c36; }
.autonomic-center { background: #f5f2ec; border: 2px solid #c8bea0; text-align: center; justify-content: center; align-items: center; }
.autonomic-center strong { color: #5c4a1a; font-size: 0.8rem; }
.balance-icon { font-size: 2rem; color: #8b7340; margin: 0.5rem 0; }

/* ── DIAGRAM 2 & 3: Cycle Diagrams ── */
.stress-cycle-diagram, .amt-cycle-diagram { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.cycle-row { width: 100%; display: flex; justify-content: center; gap: 1rem; }
.two-col-row { display: grid !important; grid-template-columns: 1fr 1fr; gap: 1rem; }
.three-col-row { display: grid !important; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.cycle-box { border-radius: 8px; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; width: 100%; }
.cycle-box strong { font-size: 0.83rem; font-weight: 700; }
.cycle-box span { font-size: 0.76rem; color: #555; }
.cycle-box ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.cycle-box ul li { font-size: 0.75rem; color: #444; line-height: 1.7; }
.cycle-box .note { font-size: 0.72rem; font-style: italic; color: #888; }
.cycle-arrow { font-size: 1.5rem; color: var(--moss); font-weight: 700; margin: 0.1rem 0; }
.danger-arrow { font-size: 0.8rem; color: #c0392b; font-weight: 600; text-align: center; max-width: 400px; }
.stressor { background: #f0ebe0; border: 2px solid #d4c5a0; }
.personality { background: #e8f0e5; border: 2px solid #b5cbb0; }
.sympathetic-act { background: #fdecea; border: 2px solid #f5b8b3; }
.exercise { background: #f5f2ec; border: 2px solid #c8bea0; }
.impact-mild { background: #fff9e6; border: 2px solid #f0d080; }
.impact-moderate { background: #fde8d8; border: 2px solid #f0a878; }
.impact-crisis.danger-box { background: #fdecea; border: 2px solid #e87070; }
.healthy-box { background: #e8f4ee; border: 2px solid #a8d5b5; }
.amt-result { background: #e8f0f8; border: 2px solid #a0b8d8; }
.outcomes { background: #e8f4ee; border: 2px solid #a8d5b5; }

/* ── DIAGRAM 4: Neural Cycle ── */
.neural-cycle-diagram { display: flex; flex-direction: column; gap: 1rem; }
.neural-cycle-intro { background: var(--moss-dark); color: #fff; border-radius: 8px; padding: 1rem 1.5rem; text-align: center; font-size: 0.88rem; line-height: 1.6; }
.neural-cycle-intro strong { color: #fff; }
.neural-steps { display: flex; flex-direction: column; gap: 0.6rem; }
.neural-step { display: grid; grid-template-columns: 48px 1fr auto; gap: 0.75rem; align-items: start; background: #f8f6f2; border: 1px solid var(--sand-dark); border-radius: 8px; padding: 0.9rem 1rem; }
.neural-step.danger-step { background: #fef5f5; border-color: #f0b8b8; }
.neural-step.bondage { background: #f0ebe0; border-color: #d4c5a0; }
.step-num-badge { width: 36px; height: 36px; border-radius: 50%; background: var(--moss); color: #fff; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-num-badge.danger { background: #c0392b; }
.neural-step .step-content { display: flex; flex-direction: column; gap: 0.2rem; }
.neural-step .step-content strong { font-size: 0.85rem; color: var(--ink); }
.neural-step .step-content span { font-size: 0.76rem; color: var(--stone); }
.amt-point { font-size: 0.72rem; color: var(--moss); font-weight: 600; background: rgba(74,103,65,0.08); border-radius: 4px; padding: 0.3rem 0.6rem; min-width: 200px; text-align: right; align-self: center; font-style: italic; }
.liberation-box { background: var(--moss-dark); color: #fff; border-radius: var(--radius); padding: 1.5rem 2rem; margin-top: 1rem; }
.liberation-box strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.liberation-box p { font-size: 0.87rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 0.75rem; }

/* Teaching text & key callout */
.stress-teaching-text { max-width: 800px; margin: 2.5rem auto 0; }
.stress-teaching-text p { font-size: 0.95rem; color: var(--ink-light); line-height: 1.85; margin-bottom: 1.2rem; }
.stress-teaching-text h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin: 2rem 0 1rem; }
.stress-teaching-text ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.stress-teaching-text ul li { font-size: 0.92rem; color: var(--ink-light); line-height: 1.8; }
.stress-key-teaching { background: var(--sand); border-left: 4px solid var(--moss); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.stress-key-teaching h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }
.stress-key-teaching p { font-size: 0.9rem; color: var(--ink-light); line-height: 1.8; margin-bottom: 0.75rem; }
.stress-key-teaching p:last-child { margin-bottom: 0; }
.page-nav-row { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }

/* Responsive tweaks */
@media (max-width: 700px) {
  .pyramid-base-row { grid-template-columns: 1fr; }
  .two-col-row { grid-template-columns: 1fr !important; }
  .three-col-row { grid-template-columns: 1fr !important; }
  .neural-step { grid-template-columns: 40px 1fr; }
  .amt-point { display: none; }
  .teaching-nav-btn { min-width: 100px; padding: 0.75rem 1rem; }
}

/* ── Original Diagram Images ── */
.original-diagram-img {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0.5rem;
}
.original-diagram-img img {
  max-width: 100%;
  width: 480px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  display: block;
}

/* ═══════════════════════════════════════
   ARTICLES & TEACHINGS — PAGE STYLES
═══════════════════════════════════════ */

/* Sutra / long-form text */
.sutra-text { font-family: var(--font-serif); font-size: 1.02rem; line-height: 1.95; color: var(--ink-light); }
.sutra-text p { margin-bottom: 1.3rem; }
.sutra-text.interpretation { border-left: 3px solid var(--gold); padding-left: 1.5rem; }
.sutra-note { font-size: 0.78rem; color: var(--stone); font-style: italic; margin-top: -0.75rem; margin-bottom: 1.2rem; }
.mantra { font-size: 1.1rem; font-style: italic; font-weight: 600; color: var(--moss-dark); text-align: center; padding: 1.5rem; background: var(--sand); border-radius: var(--radius); margin: 1.5rem 0; }
blockquote { border-left: 4px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--sand); border-radius: 0 var(--radius) var(--radius) 0; }
blockquote p { font-family: var(--font-serif); font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 0.75rem; }
blockquote p:last-child { margin-bottom: 0; }

/* Articles grid */
.articles-section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss); margin-bottom: 1.25rem; display: block; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.article-card { text-decoration: none; color: inherit; display: block; }
.article-card-inner { background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--radius); padding: 1.75rem; height: 100%; display: flex; flex-direction: column; gap: 0.6rem; transition: all var(--transition); box-shadow: var(--shadow); }
.article-card:hover .article-card-inner { border-color: var(--moss); box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-2px); }
.article-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
.article-card-inner h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin: 0; }
.article-card-inner p { font-size: 0.85rem; color: var(--stone); line-height: 1.65; flex: 1; margin: 0; }
.read-more-link { font-size: 0.78rem; font-weight: 600; color: var(--moss); margin-top: 0.25rem; }

/* Inner Peace grid */
.inner-peace-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin: 2.5rem 0; }
.peace-sign { background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow); }
.peace-sign.featured-sign { background: var(--sand); border-color: var(--moss); grid-column: 1 / -1; }
.peace-num { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--moss); color: #fff; font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; }
.peace-sign p { font-family: var(--font-serif); font-size: 0.95rem; line-height: 1.7; color: var(--ink); margin: 0; }

/* Sandokai meaning boxes */
.sandokai-meaning { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
.sandokai-term { background: var(--sand); border-radius: var(--radius); padding: 1.25rem; border-left: 3px solid var(--moss); }
.sandokai-term strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.sandokai-term span { font-size: 0.83rem; color: var(--ink-light); line-height: 1.65; }

/* Hopi considerations */
.hopi-consideration { margin-bottom: 2rem; border-bottom: 1px solid var(--sand-dark); padding-bottom: 2rem; }
.hopi-consideration:last-of-type { border-bottom: none; }
.hopi-consideration h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--moss-dark); margin-bottom: 0.75rem; }
.hopi-consideration p { font-size: 0.93rem; color: var(--ink-light); line-height: 1.85; }

/* Eightfold path grid */
.eightfold-grid { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.eightfold-step { display: flex; gap: 1.25rem; align-items: flex-start; background: #fff; border: 1px solid var(--sand-dark); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); }
.eightfold-step .step-badge { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--moss-dark); color: #fff; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.eightfold-step h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0 0 0.4rem; }
.eightfold-step p { font-size: 0.88rem; color: var(--ink-light); line-height: 1.75; margin: 0; }

@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .inner-peace-grid { grid-template-columns: 1fr; }
  .sandokai-meaning { grid-template-columns: 1fr; }
  .eightfold-step { flex-direction: column; }
  .peace-sign.featured-sign { grid-column: auto; }
}

/* ═══════════════════════════════════════
   FORM SECTION DIVIDER
═══════════════════════════════════════ */
.form-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0 1.25rem;
}
.form-section-divider::before,
.form-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand-dark);
}
.form-section-divider span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  white-space: nowrap;
}
