/*
Theme Name: Essence House
Theme URI: https://www.essencehousesd.com
Author: Essence House LLC
Author URI: https://www.essencehousesd.com
Description: Custom theme for Essence House Spiritual Direction
Version: 1.0.0
License: Private
Text Domain: essence-house
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --crimson: #BF232E;
  --burnt: #C8501E;
  --amber: #EDA92E;
  --gold: #FED917;
  --cream: #FEF6EC;
  --cream-dark: #F5EDD8;
  --ink: #1A1A1A;
  --ink-muted: #5A5040;
  --ink-faint: #9A8F80;
  --border: #E8DDD0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: #FDFAF5;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── GLOBAL PARAGRAPH SPACING ── */
p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 3rem;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo-img { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img img { height: 64px; width: auto; display: block; flex-shrink: 0; }
.nav-wordmark { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.nav-wordmark span:first-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400; letter-spacing: 0.2em;
  color: #1A1A1A; text-transform: uppercase; white-space: nowrap;
}
.nav-wordmark span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem; font-weight: 300; letter-spacing: 0.28em;
  color: var(--ink-muted); text-transform: uppercase; white-space: nowrap;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--crimson); }
.nav-cta {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--crimson); text-decoration: none;
  border: 0.5px solid var(--crimson); padding: 0.5rem 1.25rem; transition: all 0.2s;
}
.nav-cta:hover { background: var(--crimson); color: white; }

/* ════════════════════════════════════════════════════════════
   MOBILE NAVIGATION  (desktop never sees any of this — all
   elements default to display:none and are revealed only by
   the max-width:900px media query or JS .open class)
   ════════════════════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;            /* shown via media query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* Full-screen overlay — hidden by default, JS adds .open to reveal */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FDFAF5;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: flex; }

/* Top bar inside overlay: logo on left, close on right */
.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 0.5px solid var(--border);
  background: #FDFAF5;
  position: sticky;
  top: 0;
  z-index: 1;
  flex-shrink: 0;
}

/* Close (×) button */
.nav-mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}
.nav-mobile-close:hover { color: var(--crimson); }

/* Link list — large serif type for an elegant mobile feel */
.nav-mobile-links {
  list-style: none;
  padding: 1.5rem 2rem 1rem;
  flex: 1;
}
.nav-mobile-links li a {
  display: block;
  padding: 1.1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-mobile-links li:first-child a { border-top: 0.5px solid var(--border); }
.nav-mobile-links li a:hover,
.nav-mobile-links li a:active { color: var(--crimson); }

/* CTA at bottom of overlay */
.nav-mobile-foot {
  padding: 1.5rem 2rem 2.5rem;
  flex-shrink: 0;
}
.nav-mobile-cta {
  display: block;
  text-align: center;
  background: var(--crimson);
  color: #fff;
  padding: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--burnt); color: #fff; }

/* ============================================================
   PAGE STRUCTURE
   ============================================================ */
.page-top { padding-top: 5rem; }
.accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--burnt), var(--amber), var(--gold));
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block; background: var(--crimson); color: white;
  padding: 0.9rem 2rem; font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; transition: background 0.2s;
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--burnt); color: white; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--ink-muted); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  background: none; border: none; padding: 0;
  font-family: 'Jost', sans-serif; transition: color 0.2s; cursor: pointer;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--crimson); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============================================================
   SHARED TYPOGRAPHY
   ============================================================ */
.section-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 1.5rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: 5rem 5rem 4rem; border-bottom: 0.5px solid var(--border); }
.page-hero-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--burnt); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.page-hero-label::before {
  content: ''; display: block; width: 2rem; height: 0.5px; background: var(--burnt);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--crimson); }
.page-hero p {
  font-size: 1rem; color: var(--ink-muted); max-width: 55ch; line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 3rem; border-top: 0.5px solid var(--border);
  font-size: 0.75rem; color: var(--ink-faint); letter-spacing: 0.08em;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
}
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-faint); text-decoration: none; transition: color 0.2s;
}
.footer-social a:hover { color: var(--crimson); }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; padding-top: 5rem;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem; position: relative;
}
.hero-qualifier {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--burnt); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-qualifier::before {
  content: ''; display: block; width: 2rem; height: 0.5px; background: var(--burnt);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 300;
  line-height: 1.15; color: var(--ink); margin-bottom: 2rem;
}
.hero-headline em { font-style: italic; color: var(--crimson); }
.hero-sub {
  font-size: 1rem; color: var(--ink-muted); max-width: 38ch;
  margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero-right {
  position: relative; background: var(--cream);
  overflow: hidden; display: flex; align-items: flex-end;
  justify-content: flex-start; padding: 4rem;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 30% center;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.45) 0%, rgba(26,26,26,0.15) 60%, transparent 100%);
  pointer-events: none;
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(191,35,46,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(237,169,46,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(200,80,30,0.04) 0%, transparent 40%);
}
.hero-pull { position: relative; z-index: 2; }
.hero-pull-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  line-height: 1; color: var(--amber); opacity: 0.75; margin-bottom: 0.5rem;
}
.hero-pull-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 300; font-style: italic; line-height: 1.5;
  color: #FEF6EC; max-width: 32ch;
  border-left: 2px solid var(--amber); padding-left: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--burnt), var(--amber), var(--gold));
}

/* ============================================================
   HOMEPAGE — IDENTITY CHECK
   ============================================================ */
.identity {
  padding: 7rem 5rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  border-top: 0.5px solid var(--border);
}
.identity-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300;
  line-height: 1.25; color: var(--ink); margin-bottom: 2rem;
}
.identity-body { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.identity-right { display: flex; flex-direction: column; gap: 0; }
.check-item {
  display: flex; gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
}
.check-item:first-child { border-top: 0.5px solid var(--border); }
.check-mark {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem;
  border: 0.5px solid var(--amber); display: flex;
  align-items: center; justify-content: center; margin-top: 0.15rem;
}
.check-mark svg { width: 10px; height: 10px; }
.check-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-weight: 400; line-height: 1.5; color: var(--ink);
}
.check-text span {
  display: block; font-family: 'Jost', sans-serif; font-size: 0.8rem;
  font-weight: 300; color: var(--ink-muted); margin-top: 0.25rem; line-height: 1.6;
}

/* ============================================================
   HOMEPAGE — NAMING / DARK
   ============================================================ */
.naming {
  background: var(--ink); color: white;
  padding: 7rem 5rem; position: relative; overflow: hidden;
}
.naming-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(191,35,46,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(237,169,46,0.10) 0%, transparent 50%);
}
.naming-inner {
  position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center;
}
.naming-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 2rem;
}
.naming-headline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.3; color: white; margin-bottom: 2.5rem;
}
.naming-headline em { font-style: italic; color: var(--amber); }
.naming-body {
  font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.9;
  margin-bottom: 1.5rem; max-width: 60ch; margin-left: auto; margin-right: auto;
}
.naming-divider {
  width: 3rem; height: 0.5px; background: var(--amber);
  margin: 2.5rem auto; opacity: 0.5;
}
.naming-distinction {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem;
  border: 0.5px solid rgba(255,255,255,0.1);
}
.distinction-item {
  padding: 2rem; border-right: 0.5px solid rgba(255,255,255,0.1); text-align: left;
}
.distinction-item:last-child { border-right: none; }
.distinction-img {
  width: 100%; height: 140px; object-fit: cover; object-position: center;
  display: block; margin-bottom: 1.75rem;
}
.distinction-not {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 0.5rem; white-space: nowrap;
}
.distinction-label {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 300; color: white; margin-bottom: 0.75rem;
}
.distinction-body { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ============================================================
   HOMEPAGE — SERVICES
   ============================================================ */
.services { padding: 7rem 5rem; border-top: 0.5px solid var(--border); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem;
}
.services-headline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.2; color: var(--ink);
}
.services-image-banner { width: 100%; height: 260px; overflow: hidden; margin-bottom: 4rem; }
.services-image-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%; display: block;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2.5rem; border: 0.5px solid var(--border); background: white;
  display: flex; flex-direction: column; transition: border-color 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(191,35,46,0.2); }
.service-number { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--ink-faint); margin-bottom: 1.5rem; }
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 1rem;
}
.service-body { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1rem; flex-grow: 1; }
.service-price {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); padding-top: 1.25rem; border-top: 0.5px solid var(--border); margin-top: auto;
}

/* ============================================================
   HOMEPAGE — METHODOLOGY
   ============================================================ */
.method { background: var(--cream); padding: 0 0 7rem 0; }
.method-image-strip { width: 100%; height: 260px; overflow: hidden; }
.method-image-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 70%; display: block;
}
.method-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem;
  align-items: center; padding: 5rem 5rem 0 5rem;
}
.method-headline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.25; margin-bottom: 1.5rem;
}
.method-body { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.method-pillars { display: flex; flex-direction: column; }
.method-pillar {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1rem;
  padding: 1.5rem 0; border-bottom: 0.5px solid var(--border); align-items: start;
}
.method-pillar:first-child { border-top: 0.5px solid var(--border); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; color: var(--amber); line-height: 1; padding-top: 0.1rem;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-weight: 500; color: var(--ink); margin-bottom: 0.4rem;
}
.pillar-body { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.8; }

/* ============================================================
   HOMEPAGE — TESTIMONIAL STRIP
   ============================================================ */
.testimonial-section {
  padding: 7rem 5rem; border-top: 0.5px solid var(--border);
  display: block;
}
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  line-height: 1; color: var(--amber); opacity: 0.3; margin-bottom: 1rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 300; font-style: italic; line-height: 1.6;
  color: var(--ink); margin-bottom: 1.5rem;
}
.testimonial-attr {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-faint); display: flex; align-items: center; gap: 0.75rem;
}
.testimonial-attr::before {
  content: ''; display: block; width: 1.5rem; height: 0.5px; background: var(--ink-faint);
}

/* ============================================================
   HOMEPAGE — LEAD MAGNET
   ============================================================ */
.lead-magnet { background: var(--cream-dark); padding: 7rem 5rem; }
.lm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.lm-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--burnt); margin-bottom: 1rem;
}
.lm-headline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300; line-height: 1.3; margin-bottom: 1.25rem; color: var(--ink);
}
.lm-body { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 2rem; }
.lm-form { display: flex; flex-direction: column; gap: 1rem; }
.lm-input {
  width: 100%; padding: 0.85rem 1rem; border: 0.5px solid var(--border);
  background: white; font-family: 'Jost', sans-serif; font-size: 0.85rem;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.lm-input:focus { border-color: var(--amber); }
.lm-question {
  background: var(--cream); border: 0.5px solid var(--border); padding: 2rem;
}
.lm-q-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.75rem;
}
.lm-q-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-weight: 300; font-style: italic; line-height: 1.5; color: var(--ink);
}

/* ============================================================
   ABOUT PAGE — IMAGE ENHANCEMENTS
   ============================================================ */
.about-portrait {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  object-position: center top; display: block; margin-bottom: 1px;
}
.about-books-strip { width: 100%; height: 280px; overflow: hidden; }
.about-books-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block;
}
.about-expect-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; object-position: center; display: block; opacity: 0.85;
}

/* ============================================================
   CONNECT PAGE — IMAGE
   ============================================================ */
.connect-hallway { width: 100%; height: 420px; overflow: hidden; }
.connect-hallway img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block;
}

/* ============================================================
   PARTNERSHIP PAGE — IMAGE
   ============================================================ */
.partnership-image-strip { width: 100%; height: 400px; overflow: hidden; }
.partnership-image-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block;
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-hero-strip { width: 100%; height: 340px; overflow: hidden; }
.testimonials-hero-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block;
}
.testimonial-category-section { border-top: 0.5px solid var(--border); }
.testimonial-category-banner { width: 100%; height: 160px; overflow: hidden; }
.testimonial-category-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%; display: block;
}
.testimonial-category-header {
  padding: 3rem 5rem 2rem; display: flex; align-items: center; gap: 1rem;
}
.testimonial-category-header::before {
  content: ''; display: block; width: 2rem; height: 0.5px; background: var(--burnt); flex-shrink: 0;
}
.testimonial-category-header span {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--burnt);
}
.testimonial-category-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; padding: 2rem 5rem 4rem;
}

/* ============================================================
   SCHEDULE PAGE
   ============================================================ */
.schedule-details {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border-top: 0.5px solid var(--border);
}
.schedule-detail-item { background: white; padding: 1.75rem 2rem; }
.detail-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.5rem;
}
.detail-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink); line-height: 1.4; }
.detail-value--small { font-family: 'Jost', sans-serif; font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; }
.schedule-calendar { padding: 5rem; background: var(--cream); border-top: 0.5px solid var(--border); }
.iframe-clip { overflow: hidden; height: 700px; }
.iframe-clip iframe {
  width: 100%; height: 750px; border: none; display: block; background: white; margin-top: 0;
}
.schedule-fallback { text-align: center; font-size: 0.78rem; color: var(--ink-faint); margin-top: 1.5rem; }
.schedule-fallback a { color: var(--crimson); text-decoration: none; }
.schedule-fallback a:hover { text-decoration: underline; }

/* ============================================================
   WRITINGS / BLOG PAGE
   ============================================================ */
.writings-image-strip { width: 100%; height: 320px; overflow: hidden; }
.writings-image-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block;
}
.writings-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; padding: 5rem;
}
.post-card {
  background: white; border: 0.5px solid var(--border);
  display: flex; flex-direction: column; position: relative;
  overflow: hidden; transition: border-color 0.2s;
  text-decoration: none; color: inherit;
}
.post-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.post-card:hover::before { transform: scaleX(1); }
.post-card:hover { border-color: rgba(191,35,46,0.2); }
.post-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.post-card-img-placeholder {
  width: 100%; height: 200px; background: var(--cream); display: flex;
  align-items: center; justify-content: center;
}
.post-card-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-card-category {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burnt); margin-bottom: 0.75rem;
}
.post-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400;
  line-height: 1.3; color: var(--ink); margin-bottom: 0.75rem;
}
.post-card-excerpt { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.8; flex-grow: 1; margin-bottom: 1.5rem; }
.post-card-meta {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-faint); padding-top: 1rem; border-top: 0.5px solid var(--border);
  margin-top: auto;
}
.writings-subscribe {
  background: var(--ink); padding: 6rem 5rem; text-align: center; position: relative; overflow: hidden;
}
.writings-subscribe-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(191,35,46,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(237,169,46,0.08) 0%, transparent 50%);
}
.writings-subscribe-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.writings-subscribe-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem;
}
.writings-subscribe-headline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300; color: white; line-height: 1.3; margin-bottom: 1rem;
}
.writings-subscribe-body {
  font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2.5rem;
}
/* MailPoet form overrides */
.writings-subscribe .mailpoet_form input[type="email"] {
  background: rgba(255,255,255,0.08) !important; border: 0.5px solid rgba(255,255,255,0.2) !important;
  color: white !important; padding: 0.85rem 1rem !important;
  font-family: 'Jost', sans-serif !important; font-size: 0.85rem !important;
}
.writings-subscribe .mailpoet_form button,
.writings-subscribe .mailpoet_submit {
  background: var(--crimson) !important; color: white !important;
  border: none !important; padding: 0.9rem 2rem !important;
  font-family: 'Jost', sans-serif !important; font-size: 0.75rem !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important; cursor: pointer !important;
}
.writings-subscribe .mailpoet_form button:hover,
.writings-subscribe .mailpoet_submit:hover { background: var(--burnt) !important; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero { padding: 5rem 5rem 4rem; border-bottom: 0.5px solid var(--border); }
.post-hero-meta {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.post-hero-meta span { color: var(--burnt); }
.post-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem; max-width: 22ch;
}
.post-featured-img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.post-body { max-width: 680px; margin: 0 auto; padding: 5rem; }
.post-body p { font-size: 1rem; color: var(--ink-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.post-body h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300;
  color: var(--ink); margin: 2.5rem 0 1rem; line-height: 1.3;
}
.post-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400;
  color: var(--ink); margin: 2rem 0 0.75rem;
}
.post-body blockquote {
  border-left: 2px solid var(--amber); padding-left: 1.5rem;
  margin: 2rem 0; font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic; color: var(--ink); line-height: 1.6;
}
.post-body a { color: var(--crimson); text-decoration: none; }
.post-body a:hover { text-decoration: underline; }
.post-nav {
  border-top: 0.5px solid var(--border); padding: 3rem 5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.post-nav a {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.post-nav a:hover { color: var(--crimson); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* fade-in: visible by default; JS adds animation as a progressive enhancement */
.fade-in { opacity: 1; transform: translateY(0); }
.js-ready .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-ready .fade-in.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   TESTIMONIAL CAROUSEL (homepage)
   ============================================================ */
.testimonial-section {
  padding: 7rem 5rem; border-top: 0.5px solid var(--border); text-align: center;
}
.testimonial-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  color: var(--amber); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300; font-style: italic; line-height: 1.6; color: var(--ink);
  max-width: 680px; margin: 0 auto 1.5rem;
}
.testimonial-attr { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-faint); }
.t-carousel { position: relative; overflow: hidden; max-width: 780px; margin: 0 auto; }
.t-track { display: flex; flex-direction: row; flex-wrap: nowrap; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.t-slide { flex: 0 0 100%; min-width: 0; box-sizing: border-box; padding: 0 3.5rem; text-align: center; }
.t-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 0.5px solid var(--border); color: var(--ink-faint);
  width: 2.5rem; height: 2.5rem; cursor: pointer; font-size: 1rem;
  transition: color 0.2s, border-color 0.2s; display: flex; align-items: center; justify-content: center;
}
.t-btn:hover { color: var(--crimson); border-color: var(--crimson); }
.t-prev { left: 0; } .t-next { right: 0; }
.t-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.t-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s;
}
.t-dot.active { background: var(--amber); transform: scale(1.3); }

/* ============================================================
   LEAD MAGNET (homepage)
   ============================================================ */
.lead-magnet { background: var(--ink); padding: 6rem 5rem; position: relative; overflow: hidden; }
.lm-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(191,35,46,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(237,169,46,0.10) 0%, transparent 50%);
}
.lm-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; }
.lm-label { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem; }
.lm-headline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.25; color: white; margin-bottom: 1rem;
}
.lm-sub { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 0.5rem; }
.lm-form { display: flex; flex-direction: column; gap: 0.75rem; }
.lm-form-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.lm-input {
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.15);
  color: white; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
  padding: 0.85rem 1.1rem; width: 100%; outline: none; transition: border-color 0.2s;
}
.lm-input::placeholder { color: rgba(255,255,255,0.25); }
.lm-input:focus { border-color: var(--amber); }
.lm-submit {
  background: var(--crimson); color: white; border: none; font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.9rem; cursor: pointer; transition: background 0.2s; width: 100%;
}
.lm-submit:hover { background: var(--burnt); }
.lm-promise { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.5rem; text-align: center; }
.lm-preview { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.08); padding: 2rem; }
.lm-preview-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; letter-spacing: 0.02em;
}
.lm-question { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.lm-question:last-child { border-bottom: none; }
.lm-q-num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--amber); flex-shrink: 0; line-height: 1.4; }
.lm-q-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   CALL TO ACTION (homepage bottom)
   ============================================================ */
.call-section {
  padding: 7rem 5rem; text-align: center;
  border-top: 0.5px solid var(--border); background: var(--cream);
}
.call-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.25;
  color: var(--ink); max-width: 22ch; margin: 0 auto 2rem; display: block;
}
.call-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem; color: var(--ink-muted); line-height: 1.9;
  max-width: 52ch; margin: 2rem auto 0;
}

/* ============================================================
   RESPONSIVE — max-width 900px
   Desktop layout is completely untouched. Everything below
   is mobile-only additions or overrides.
   ============================================================ */
@media (max-width: 900px) {

  /* ── PREVENT OVERFLOW ── */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* ── NAV: show hamburger, hide desktop links & CTA ── */
  nav {
    padding: 0.6rem 1rem;
    flex-wrap: nowrap;
  }
  .nav-logo-img img { height: 52px; }
  .nav-links { display: none !important; }
  .nav-cta   { display: none !important; }
  .nav-hamburger { display: flex !important; }

  /* ── PAGE TOP: account for shorter mobile nav ── */
  .page-top { padding-top: 4.5rem; }

  /* ── NUCLEAR GRID OVERRIDE: flatten ALL two-column grids ── */
  /* CSS-class-based grids */
  .identity,
  .method-inner,
  .lm-inner,
  .naming-distinction,
  .services-grid,
  .schedule-details,
  .about-expect,
  .testimonial-category-grid,
  .writings-grid {
    display: block !important;
  }
  /* Inline-style grids (set by WordPress page editor etc.) */
  [style*="display:grid"],
  [style*="display: grid"] { display: block !important; }
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Inline padding overrides */
  [style*="padding:5rem"],
  [style*="padding: 5rem"] { padding: 3rem 1.5rem !important; }

  /* ── HERO ── */
  .hero { display: block; min-height: auto; }
  .hero-right { display: none; }            /* hide the image column on mobile */
  .hero-left { padding: 3.5rem 1.5rem 3rem; }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  /* ── IDENTITY ── */
  .identity { padding: 3.5rem 1.5rem; gap: 2.5rem; }

  /* ── NAMING / DISTINCTIONS ── */
  .naming { padding: 3.5rem 1.5rem; }
  .naming-distinction { gap: 0; }
  .distinction-item {
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.12);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .distinction-item:last-child { border-bottom: none; margin-bottom: 0; }
  .distinction-img { height: 200px; width: 100%; object-fit: cover; }

  /* ── SERVICES ── */
  .services { padding: 3.5rem 1.5rem; }
  .services-image-banner { height: 200px; }
  .service-card {
    padding-bottom: 2.5rem;
    border-bottom: 0.5px solid var(--border);
    margin-bottom: 2.5rem;
  }
  .service-card:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

  /* ── METHOD / THREE FRAMEWORKS ── */
  .method { padding: 0 0 3.5rem; }
  .method-image-strip { height: 220px; }
  .method-inner { padding: 3rem 1.5rem 0; gap: 2.5rem; }
  .method-pillars { display: flex; flex-direction: column; gap: 2rem; }

  /* ── TESTIMONIAL CAROUSEL ── */
  .testimonial-section { padding: 3.5rem 1.5rem; }

  /* ── LEAD MAGNET ── */
  .lead-magnet { padding: 3.5rem 1.5rem; }
  .lm-inner { gap: 3rem; }

  /* ── CTA SECTION ── */
  .call-section { padding: 3.5rem 1.5rem; }

  /* ── PAGE HERO (inner pages) ── */
  .page-hero { padding: 3rem 1.5rem 2.5rem; }

  /* ── ABOUT PAGE ── */
  .about-portrait { aspect-ratio: 4/3; width: 100%; }
  .about-books-strip { height: 200px; }
  .about-expect { padding: 3rem 1.5rem; }
  .about-expect-img { height: 220px; width: 100%; object-fit: cover; min-height: 0; }
  .about-working { padding: 3rem 1.5rem; }

  /* ── CONNECT PAGE ── */
  .connect-hallway { height: 240px; }
  .connect-body { padding: 3rem 1.5rem; }

  /* ── PARTNERSHIP PAGE ── */
  .partnership-image-strip { height: 240px; }

  /* ── SCHEDULE PAGE ── */
  .schedule-calendar { padding: 2.5rem 1.5rem; }

  /* ── TESTIMONIALS PAGE ── */
  .testimonials-hero-strip { height: 200px; }
  .testimonial-category-banner { height: 120px; }
  .testimonial-category-header { padding: 2rem 1.5rem 0; }
  .testimonial-category-grid { padding: 1.5rem 1.5rem 3rem; }
  .testimonial-card { margin-bottom: 1.5rem; }

  /* ── WRITING PAGE ── */
  .writings-image-strip { height: 200px; }
  .writings-grid { padding: 2.5rem 1.5rem; }
  .post-card { margin-bottom: 2rem; }
  .writings-subscribe { padding: 3.5rem 1.5rem; }

  /* ── SINGLE POST ── */
  .post-hero { padding: 3rem 1.5rem; }
  .post-body { padding: 2.5rem 1.5rem; }
  .post-nav { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }

  /* ── FOOTER ── */
  footer { flex-direction: column; gap: 1.25rem; text-align: center; padding: 2rem 1.5rem; }
}

/* Very small screens (iPhone SE etc.) */
@media (max-width: 380px) {
  .nav-logo-img img { height: 44px; }
  .nav-wordmark span:first-child { font-size: 0.95rem; }
  .nav-wordmark span:last-child  { font-size: 0.52rem; }
  .hero-left { padding: 3rem 1.25rem 2.5rem; }
  .nav-mobile-links li a { font-size: 1.5rem; }
}