/* === ELURA DESIGN SYSTEM === */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #203046;
}

/* Design Tokens */
:root {
  --navy: #203046;
  --ivory: #F6F3EC;
  --sage: #96AAA4;
  --terracotta: #C57A49;
  --warm-cream: #DECCB1;
  --stone: #E5E5D9;
  --charcoal: #3C3C3C;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --content-width: 800px;
  --wide-width: 1000px;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
}

p { margin-bottom: 1.5em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--navy); }
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 100px 0;
}

/* Eyebrow Text */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* Section Tagline — Brand-voice lines preserved for visitors, semantically separate from H2 for AEO */
.section-tagline {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-tagline em {
  font-style: italic;
}
.bg-navy .section-tagline {
  color: var(--ivory);
}
@media (max-width: 768px) {
  .section-tagline {
    font-size: 28px;
  }
}

/* Micro Text */
.micro {
  font-size: 14px;
  color: var(--warm-cream);
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn--primary {
  background: var(--navy);
  color: var(--ivory);
}
.btn--primary:hover {
  background: #2a3d57;
  color: var(--ivory);
}

.btn--secondary {
  background: var(--ivory);
  color: var(--navy);
}
.btn--secondary:hover {
  background: var(--warm-cream);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
}
.btn--ghost:hover {
  background: var(--ivory);
  color: var(--navy);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--ghost-dark:hover {
  background: var(--navy);
  color: var(--ivory);
}

.btn--terracotta {
  background: var(--terracotta);
  color: var(--ivory);
}
.btn--terracotta:hover {
  background: #b06a3d;
  color: var(--ivory);
}

/* Section Backgrounds */
.bg-ivory { background-color: var(--ivory); }
.bg-stone { background-color: var(--stone); }
.bg-navy { background-color: var(--navy); color: var(--ivory); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--ivory); }
.bg-navy p { color: var(--ivory); }
.bg-navy .eyebrow { color: var(--terracotta); }

/* Two-Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============================= */
/* NAVIGATION */
/* ============================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: var(--ivory);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 14px 0;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 32px;
  width: auto;
  transition: opacity 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--navy);
}

.nav__link:hover {
  color: var(--terracotta);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s;
  background: var(--ivory);
  color: var(--navy);
}

.nav.scrolled .nav__cta {
  background: var(--navy);
  color: var(--ivory);
}

.nav__cta:hover {
  background: var(--terracotta);
  color: var(--ivory);
}

/* Mobile Menu */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  margin: 5px 0;
  transition: all 0.3s;
}

.nav.scrolled .nav__hamburger span {
  background: var(--navy);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--ivory);
  text-decoration: none;
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 32px;
  cursor: pointer;
}

/* ============================= */
/* HERO SECTION — Editorial Cover */
/* ============================= */

/* Part 1: The cover — face + "You're not broken." only */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--navy);
  overflow: hidden;
}

.hero__portrait {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Gentle overlay: light at top so her face is clear, fades to solid navy at bottom for seamless blend into next section */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(32, 48, 70, 0.08) 0%,
    rgba(32, 48, 70, 0.03) 25%,
    rgba(32, 48, 70, 0.12) 45%,
    rgba(32, 48, 70, 0.40) 62%,
    rgba(32, 48, 70, 0.75) 76%,
    rgba(32, 48, 70, 0.95) 88%,
    rgba(32, 48, 70, 1.0) 100%
  );
}

/* The cover headline — bottom of viewport, centered */
.hero__hook {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 40px 16px;
}

.hero__hook h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 20px rgba(32, 48, 70, 0.4);
}

.hero__promise {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.3;
  margin-top: 16px;
  text-shadow: 0 2px 20px rgba(32, 48, 70, 0.4);
}

.hero__promise em {
  font-style: italic;
}

.hero__hook .hero__scroll-hint {
  display: block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-cream);
  opacity: 0.7;
  animation: gentlePulse 2.5s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(4px); }
}

/* Part 2: The reveal — scrolls into view */
.hero-reveal {
  background: var(--navy);
  padding: 100px 0 80px;
  text-align: center;
}

.hero-reveal__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-reveal h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-reveal h2 em {
  font-weight: 400;
  font-style: italic;
}

.hero-reveal p {
  color: var(--ivory);
  opacity: 0.85;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-reveal .hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-reveal .micro {
  font-size: 14px;
  color: var(--warm-cream);
  opacity: 0.7;
}

/* Nature mood break image */
.mood-image {
  width: 100%;
  max-width: 900px;
  margin: 48px auto;
  border-radius: 4px;
  overflow: hidden;
}

.mood-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* CTA with background image */
.cta-with-bg {
  position: relative;
  overflow: hidden;
}

.cta-with-bg .cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 0%;
  opacity: 0.25;
}

/* ============================= */
/* ARCHETYPE CARDS */
/* ============================= */

.archetype-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.archetype-card {
  background: var(--navy);
  padding: 28px 20px;
  border-radius: 4px;
  border-top: 3px solid var(--terracotta);
  transition: transform 0.3s ease;
}

.archetype-card:hover {
  transform: translateY(-4px);
}

.archetype-card h4 {
  color: var(--ivory);
  font-size: 20px;
  margin-bottom: 12px;
}

.archetype-card p {
  color: var(--ivory);
  opacity: 0.85;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================= */
/* PROGRAM CARDS */
/* ============================= */

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.program-card {
  border: 1px solid rgba(150, 170, 164, 0.3);
  border-radius: 4px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
}

.program-card .eyebrow {
  color: var(--terracotta);
}

.program-card h3 {
  color: var(--ivory);
  margin-bottom: 16px;
}

.program-card p {
  color: var(--warm-cream);
  font-size: 15px;
  flex: 1;
}

.program-card .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* ============================= */
/* TESTIMONIAL */
/* ============================= */

.testimonial {
  padding: 120px 40px;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.testimonial cite {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 15px;
  color: var(--charcoal);
}

/* ============================= */
/* JOURNAL CARDS */
/* ============================= */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.journal-card {
  background: var(--warm-cream);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.journal-card .category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.journal-card h4 {
  margin-bottom: 12px;
}

.journal-card p {
  font-size: 15px;
  color: var(--charcoal);
}

/* ============================= */
/* FAQ ACCORDION */
/* ============================= */

.faq-item {
  border-bottom: 1px solid rgba(150, 170, 164, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 24px 0;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
  background: var(--navy);
  padding: 80px 0 40px;
  color: var(--ivory);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ivory);
  margin-top: 16px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-cream);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--terracotta);
}

.footer__social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__social-links a:hover {
  color: var(--terracotta);
}

.footer__social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--warm-cream);
}

.footer__logo img {
  height: 28px;
  width: auto;
}

/* ============================= */
/* CREDENTIALS LIST */
/* ============================= */

.credentials-list {
  list-style: none;
  padding: 0;
}

.credentials-list li {
  font-size: 15px;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 1px solid rgba(150, 170, 164, 0.15);
}

/* ============================= */
/* VALUE CARDS */
/* ============================= */

.value-card {
  border-top: 3px solid var(--terracotta);
  padding-top: 24px;
}

.value-card h4 {
  margin-bottom: 12px;
}

/* ============================= */
/* MINIMAL CARDS (Programs page) */
/* ============================= */

.card-minimal {
  background: var(--ivory);
  border-radius: 4px;
  padding: 28px 24px;
  border-top: 2px solid var(--sage);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-minimal:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

.card-minimal h4 {
  margin-bottom: 8px;
}

.card-minimal p {
  font-size: 15px;
  color: var(--charcoal);
}

/* ============================= */
/* SCROLL ANIMATIONS */
/* ============================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================= */
/* PROGRAMS PAGE — FULL HERO */
/* ============================= */

.programs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}

.programs-hero__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.programs-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.82) brightness(0.90);
}

.programs-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(32,48,70,0.45) 0%,
    rgba(32,48,70,0.15) 35%,
    rgba(32,48,70,0.08) 60%,
    rgba(32,48,70,0.25) 100%
  );
}

.programs-hero__text {
  position: absolute;
  z-index: 3;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  max-width: 1000px;
}

.programs-hero__eyebrow-row {
  margin-bottom: 16px;
}

.programs-hero__text .eyebrow {
  color: rgba(150,170,164,0.9);
  margin-bottom: 0;
}

.programs-hero__split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

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

.programs-hero__split-right {
  text-align: left;
  padding-top: 38px;
}

.programs-hero__text h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0;
}

.programs-hero__text p {
  font-size: 15px;
  color: rgba(246,243,236,0.92);
  line-height: 1.65;
  margin-bottom: 0;
}

.programs-hero__cta-row {
  text-align: center;
}

.programs-hero__text .btn {
  background: var(--terracotta);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 5px;
}

.programs-hero__text .btn:hover {
  background: #b06a3d;
}

/* Programs hero nav override — transparent over image */
.programs-hero .nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

/* ============================= */
/* CONTACT PAGE — SPLIT LAYOUT */
/* ============================= */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.contact-split__content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.contact-split__content .eyebrow {
  color: var(--sage);
  margin-bottom: 18px;
}

.contact-split__content h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-split__content .intro {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 440px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 18px;
  border: 1px solid rgba(32,48,70,0.12);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--charcoal);
  background: rgba(255,255,255,0.6);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
}

.contact-form textarea {
  height: 110px;
  resize: none;
}

.contact-form .submit-btn {
  padding: 15px 36px;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.contact-form .submit-btn:hover {
  background: #2a4060;
}

.contact-split__content .provider-note {
  font-size: 11px;
  color: var(--sage);
  font-style: italic;
  margin-top: 16px;
}

.contact-split__image {
  position: relative;
  overflow: hidden;
}

.contact-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) brightness(0.95);
}

/* Trust section below contact split */
.trust-section {
  background: var(--stone);
  padding: 40px;
  text-align: center;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  max-width: 200px;
}

.trust-item .t-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(32,48,70,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  color: var(--navy);
}

.trust-item .t-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-item .t-desc {
  font-size: 11px;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ============================= */
/* ASSESSMENT — SHADOW BACKDROP */
/* ============================= */

.assessment-shadow-wrap {
  position: relative;
  overflow: hidden;
}

.assessment-shadow-wrap .shadow-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.assessment-shadow-wrap .shadow-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
  filter: saturate(0.5) brightness(1.0);
}

.assessment-shadow-wrap > *:not(.shadow-backdrop) {
  position: relative;
  z-index: 1;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .archetype-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .program-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }

  body { font-size: 16px; }

  .container, .container--narrow, .container--wide {
    padding: 0 24px;
  }

  section { padding: 60px 0; }

  .hero { height: 100vh; min-height: 500px; }
  .hero__hook { bottom: 0; padding: 0 24px; }
  .hero__hook h1 { font-size: 40px; }
  .hero__promise { font-size: 24px; }
  .hero__portrait img { object-position: center 25%; }
  .hero-reveal { padding: 60px 0; }
  .hero-reveal__inner { padding: 0 24px; }
  .hero-reveal h2 { font-size: 32px; }
  .hero-reveal p { font-size: 16px; }
  .hero-reveal .hero__buttons { flex-direction: column; align-items: center; }

  /* Programs hero mobile */
  .programs-hero { min-height: 500px; }
  .programs-hero__text { top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: none; padding: 0 24px; width: 100%; }
  .programs-hero__split-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .programs-hero__split-left { text-align: center; }
  .programs-hero__split-right { text-align: center; padding-top: 0; }
  .programs-hero__eyebrow-row { text-align: center; }
  .programs-hero__text h1 { font-size: 34px; }
  .programs-hero__text p { font-size: 14px; }

  /* Contact split mobile — stack vertically */
  .contact-split { grid-template-columns: 1fr; }
  .contact-split__content { padding: 40px 24px; }
  .contact-split__content h1 { font-size: 30px; }
  .contact-split__image { height: 300px; }
  .contact-form { max-width: 100%; }
  .trust-row { gap: 30px; }
  .trust-section { padding: 30px 24px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .three-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .archetype-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journal-grid,
  .article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: block; }

  .testimonial blockquote { font-size: 22px; }
  .testimonial { padding: 80px 24px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__hook .hero__scroll-hint {
    animation: none;
  }
  .archetype-card,
  .journal-card {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* === LEGAL PAGES === */
.legal-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--warm-cream);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--navy);
}

.legal-content p {
  margin-bottom: 1em;
}

.legal-content .legal__emphasis {
  background: var(--stone);
  padding: 16px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--terracotta);
  margin: 20px 0;
}

.legal-content .legal__list {
  margin: 12px 0 20px 24px;
  line-height: 1.7;
}

.legal-content .legal__list li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.legal-content ol.legal__list {
  list-style-type: decimal;
}

.legal-content ul.legal__list {
  list-style-type: disc;
}

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

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

.legal-content .legal__table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.legal-content .legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-content .legal__table th,
.legal-content .legal__table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--warm-cream);
}

.legal-content .legal__table th {
  background: var(--navy);
  color: var(--ivory);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.legal-content .legal__table tr:nth-child(even) td {
  background: var(--stone);
}

@media (max-width: 768px) {
  .legal-content h2 { font-size: 24px; }
  .legal-content h3 { font-size: 19px; }
  .legal-content { font-size: 15px; }
}

/* === ARTICLE PAGES === */
.article__back {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.article__back:hover {
  color: var(--navy);
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.7;
  flex-wrap: wrap;
}

.article__meta-sep {
  color: var(--sage);
}

.article__content {
  font-size: 18px;
  line-height: 1.85;
  color: var(--charcoal);
}

.article__content h2 {
  font-size: 30px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--navy);
}

.article__content p {
  margin-bottom: 1.5em;
}

.article__content strong {
  font-weight: 600;
  color: var(--navy);
}

.article__content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article__content a:hover {
  color: var(--navy);
}

.article__related {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-cream);
  font-size: 15px;
  color: var(--charcoal);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .article__content { font-size: 16px; line-height: 1.75; }
  .article__content h2 { font-size: 24px; margin-top: 36px; }
  .article__meta { font-size: 13px; }
}


/* === FOOTER EMAIL SIGNUP === */
.footer__signup-form {
  display: flex;
  gap: 0;
  max-width: 320px;
}

.footer__email-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(246, 243, 236, 0.25);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: rgba(246, 243, 236, 0.08);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.footer__email-input::placeholder {
  color: var(--warm-cream);
  opacity: 0.5;
}

.footer__email-input:focus {
  border-color: var(--terracotta);
}

.footer__signup-btn {
  padding: 10px 20px;
  background: var(--terracotta);
  color: var(--ivory);
  border: 1px solid var(--terracotta);
  border-radius: 0 4px 4px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.footer__signup-btn:hover {
  background: #b06a3d;
}

/* ============================= */
/* TWO-BY-TWO GRID */
/* ============================= */

.two-by-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .two-by-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================= */
/* ABOUT PAGE — SIDE-BY-SIDE HERO */
/* ============================= */

.about-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.about-hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-hero__texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0.4) brightness(1.05);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero__text .eyebrow {
  margin-bottom: 16px;
}

.about-hero__text h1 {
  margin-bottom: 20px;
}

.about-hero__portrait img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 60px;
  }
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero__portrait {
    order: -1;
  }
}

/* ============================= */
/* TEXTURE SECTION BREAK */
/* ============================= */

.texture-break {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.texture-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  filter: saturate(0.4) brightness(1.05);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* ============================= */
/* TEXTURE BACKDROP */
/* ============================= */

.texture-backdrop {
  position: relative;
  overflow: hidden;
}

.texture-backdrop__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.texture-backdrop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(0.4) brightness(1.05);
}

.texture-backdrop > *:not(.texture-backdrop__img) {
  position: relative;
  z-index: 1;
}

/* ============================= */
/* JOURNAL PAGINATION */
/* ============================= */

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ============================= */
/* "WHAT THIS IS / ISN'T" CARDS */
/* ============================= */

.is-isnt-card {
  background: var(--ivory);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.is-isnt-card h4 {
  margin-bottom: 16px;
}

.is-isnt-card ul {
  list-style: none;
  padding: 0;
}

.is-isnt-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* Update footer grid to accommodate 5 columns */
@media (min-width: 769px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
  }
}
