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

:root {
  --cream: #F7F2EA;
  --warm-white: #FDFAF5;
  --parchment: #EDE6D8;
  --charcoal: #2E2720;
  --brown: #4A3D33;
  --gold: #A07848;
  --gold-light: #C49A68;
  --stone: #8C7B6B;
  --stone-light: #C4B8AA;
  --border: rgba(160, 120, 72, 0.18);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--brown);
  overflow-x: hidden;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(253,250,245,0.92) 0%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.nav-link:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(46,39,32,0.55) 0%,
    rgba(46,39,32,0.4) 40%,
    rgba(46,39,32,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  animation: fadeUp 1.4s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 1px 12px rgba(46,39,32,0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--warm-white);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(46,39,32,0.85), 0 4px 48px rgba(46,39,32,0.5);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(253,250,245,0.88);
  max-width: 780px;
  margin: 0 auto 40px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(46,39,32,0.8);
}

.hero-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background-color: transparent;
  border: 1px solid rgba(253,250,245,0.7);
  padding: 15px 40px;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
}

.hero-cta:hover {
  background-color: rgba(253,250,245,0.18);
  border-color: var(--warm-white);
}

/* ---- Intro ---- */
.intro {
  background-color: var(--warm-white);
  text-align: center;
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ---- Theme Cards — Magazine Grid ---- */
.themes-section {
  background-color: var(--warm-white);
  padding: 72px 48px 80px;
}

.themes-section h2 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 48px;
}

.themes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 400px 300px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CALM — left column, tall */
.theme-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* ALIGN — top right two columns */
.theme-card:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1;
}

/* HEAL — bottom middle */
.theme-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

/* MOTIVATE — bottom right */
.theme-card:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.theme-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--parchment);
}

.theme-image {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-card:hover .theme-image {
  transform: scale(1.06);
}

.theme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.6s ease;
}

.theme-card:hover .theme-image img {
  filter: brightness(0.68) saturate(0.85);
}

.theme-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(46,39,32,0.75) 0%, transparent 100%);
}

.theme-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 200;
  color: var(--warm-white);
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.theme-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(253,250,245,0.72);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.theme-link {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  border-bottom: 1px solid rgba(237,230,216,0.5);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-card:hover .theme-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Brand Statement ---- */
.brand-statement {
  background-color: var(--warm-white);
  padding: 120px 0 80px 80px;
  border-bottom: 1px solid var(--border);
}

.brand-statement-inner {
  width: 55%;
  text-align: right;
}

.brand-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.3vw, 5.1rem);
  font-weight: 200;
  color: rgb(43, 43, 43);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 3px;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgb(43, 43, 43);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}

.brand-sub em {
  font-style: italic;
}

@media (max-width: 760px) {
  .brand-statement { padding: 100px 24px 60px; }
  .brand-statement-inner { width: 100%; text-align: left; }
}

@media (max-width: 560px) {
  .brand-statement { padding: 64px 24px; }
}

/* ---- Footer ---- */
.footer {
  background-color: var(--warm-white);
  padding: 52px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--stone-light);
  letter-spacing: 0.08em;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .themes-section { padding: 60px 24px; }

  .themes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
  }

  .theme-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .theme-card:nth-child(2) { grid-column: 1;     grid-row: 2; }
  .theme-card:nth-child(3) { grid-column: 2;     grid-row: 2; }
  .theme-card:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }

  .themes-grid { grid-template-rows: 280px 280px 280px; }

  .theme-link { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .nav { padding: 18px 20px; }
  .themes-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .theme-card:nth-child(1),
  .theme-card:nth-child(2),
  .theme-card:nth-child(3),
  .theme-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Nav links group (for pages with multiple nav links) */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav { padding: 18px 24px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(253,250,245,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    z-index: 100;
  }

  .nav-links.open { display: flex; }

  .nav-link {
    padding: 12px 24px;
    width: 100%;
    border-bottom: none;
    font-size: 0.82rem;
  }
}

/* ==============================
   HOMEPAGE — DAILY SECTIONS
   ============================== */

.daily-quote {
  background-color: var(--charcoal);
  padding: 80px 48px;
  text-align: center;
}

.daily-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.daily-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 20px;
  quotes: none;
}

.daily-quote-attr {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.daily-perspective {
  background-color: var(--cream);
  padding: 80px 48px;
  text-align: center;
}

.daily-persp-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.daily-persp-card {
  display: flex;
  max-width: 720px;
  margin: 0 auto;
  text-decoration: none;
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.daily-persp-card:hover {
  box-shadow: 0 8px 40px rgba(46,39,32,0.1);
  border-color: var(--stone-light);
}

.daily-persp-image {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
}

.daily-persp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.95);
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.daily-persp-card:hover .daily-persp-image img {
  transform: scale(1.05);
  opacity: 0.85;
}

.daily-persp-body {
  padding: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.daily-persp-body .teacher-tag {
  align-self: flex-end;
}

.daily-persp-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  margin: 12px 0 10px;
  line-height: 1.2;
}

.daily-persp-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 24px;
}

.daily-persp-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.daily-persp-cta .arrow {
  transition: transform 0.25s ease;
}

.daily-persp-card:hover .daily-persp-cta .arrow {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .daily-quote { padding: 60px 24px; }
  .daily-perspective { padding: 60px 24px; }
  .daily-persp-card { flex-direction: column; }
  .daily-persp-image { width: 100%; height: 220px; }
  .daily-persp-body { padding: 24px; }
}

/* ==============================
   PERSPECTIVES PAGE
   ============================== */

/* Nav variant for light pages */
.nav--light {
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo--dark {
  text-decoration: none;
}

.nav-link--dark {
  color: var(--brown);
}

.nav-link--active {
  color: var(--gold);
  border-color: var(--gold);
}

/* Page hero */
.persp-hero {
  background-color: var(--warm-white);
  text-align: center;
  padding: 120px 40px 64px;
  border-bottom: 1px solid var(--border);
}

.persp-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.persp-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 200;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.persp-title em {
  font-style: italic;
  color: var(--gold-light);
}

.persp-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto;
}

/* Filter bar */
.persp-section {
  background-color: var(--warm-white);
  padding: 56px 48px 80px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: 1px solid var(--border);
  padding: 10px 24px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}

.filter-btn:hover {
  color: var(--brown);
  border-color: var(--stone-light);
}

.filter-btn.active {
  color: var(--warm-white);
  background-color: var(--gold);
  border-color: var(--gold);
}

/* Teacher grid — masonry/Pinterest columns layout */
.teacher-grid {
  columns: 4;
  column-gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* CSS filtering — hides non-matching cards when a filter is active */
.teacher-grid[data-filter] .teacher-card { display: none; }
.teacher-grid[data-filter="calm"]     .teacher-card[data-theme="calm"]     { display: block; }
.teacher-grid[data-filter="align"]    .teacher-card[data-theme="align"]    { display: block; }
.teacher-grid[data-filter="heal"]     .teacher-card[data-theme="heal"]     { display: block; }
.teacher-grid[data-filter="motivate"] .teacher-card[data-theme="motivate"] { display: block; }

/* Teacher card */
.teacher-card {
  break-inside: avoid;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  background-color: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

@keyframes cardRevealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardRevealBloom {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes cardRevealLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cardRevealRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.card-reveal-up    { animation: cardRevealUp    3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.card-reveal-bloom { animation: cardRevealBloom 3.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.card-reveal-left  { animation: cardRevealLeft  3.0s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.card-reveal-right { animation: cardRevealRight 3.0s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.teacher-card:hover {
  box-shadow: 0 8px 40px rgba(46,39,32,0.1);
  border-color: var(--stone-light);
}

.teacher-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Image height variants for masonry stagger */
.teacher-img--tall { aspect-ratio: 3 / 4; }
.teacher-img--wide { aspect-ratio: 16 / 9; }
/* .teacher-img default stays at 4/3 */

.teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.8) brightness(0.95);
  transition: transform 0.6s ease, filter 0.4s ease, opacity 0.4s ease;
}

.teacher-card:hover .teacher-img img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(1);
  opacity: 0.82;
}

.teacher-body {
  padding: 20px 22px 24px;
}

.teacher-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 0;
}

.teacher-tag--calm     { background-color: #E8F0EC; color: #4A6B55; }
.teacher-tag--align    { background-color: #EEE8D8; color: #7A6030; }
.teacher-tag--heal     { background-color: #F0E8E8; color: #7A4444; }
.teacher-tag--motivate { background-color: #E8EAF0; color: #3A4470; }

.teacher-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.teacher-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.55;
  margin-bottom: 16px;
}

.teacher-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.teacher-cta .arrow {
  transition: transform 0.25s ease;
}

.teacher-card:hover .teacher-cta .arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .teacher-grid { columns: 3; }
}

@media (max-width: 720px) {
  .persp-section { padding: 48px 24px 64px; }
  .teacher-grid { columns: 2; column-gap: 16px; }
}

@media (max-width: 480px) {
  .teacher-grid { columns: 1; }
  .persp-hero { padding: 100px 24px 48px; }
}

/* Request a Perspective */
.request-section {
  background-color: var(--charcoal);
  padding: 80px 48px;
  text-align: center;
}

.request-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.request-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 200;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}

.request-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone-light);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 40px;
}

.request-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.request-fields {
  display: flex;
  gap: 12px;
  width: 100%;
}

.request-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(160,120,72,0.3);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
}

.request-input::placeholder {
  color: var(--stone);
}

.request-input:focus {
  border-color: var(--gold-light);
}

.request-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}

.request-btn:hover {
  background: var(--gold);
  color: var(--warm-white);
}

@media (max-width: 600px) {
  .request-section { padding: 60px 24px; }
  .request-fields { flex-direction: column; }
}

/* ==============================
   EMAIL CAPTURE
   ============================== */

.email-capture {
  background-color: var(--charcoal);
  padding: 80px 48px;
  text-align: center;
}

.email-capture-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.email-capture-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
}

.email-capture-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.email-capture-fields {
  display: flex;
  width: 100%;
  gap: 0;
}

.email-capture-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(160,120,72,0.35);
  border-right: none;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
}

.email-capture-input::placeholder { color: var(--stone); }
.email-capture-input:focus { border-color: var(--gold-light); }

.email-capture-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s;
}

.email-capture-btn:hover { background: var(--gold); border-color: var(--gold); }

.email-capture-btn--standalone {
  display: inline-block;
  text-decoration: none;
  margin-top: 8px;
}

.email-capture-sub {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 24px;
  line-height: 1.6;
}

.email-capture-disclaimer {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
}

@media (max-width: 560px) {
  .email-capture { padding: 60px 24px; }
  .email-capture-fields { flex-direction: column; }
  .email-capture-input { border-right: 1px solid rgba(160,120,72,0.35); border-bottom: none; }
  .email-capture-btn { padding: 14px; }
}

/* ==============================
   QUIZ PAGE
   ============================== */

body.quiz-page {
  background-color: var(--warm-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}

.quiz-screen {
  display: none;
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.quiz-screen.active {
  display: block;
  animation: quizFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 200;
  line-height: 0.9;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.quiz-title em {
  font-style: italic;
  color: var(--gold-light);
}

.quiz-intro-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto 40px;
}

.quiz-start-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--charcoal);
  border: none;
  padding: 16px 48px;
  cursor: pointer;
  transition: background-color 0.25s;
}

.quiz-start-btn:hover { background: var(--brown); }

.quiz-progress {
  height: 2px;
  background: var(--parchment);
  margin-bottom: 32px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}

.quiz-step {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 24px;
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 40px;
}

.quiz-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-answer-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--brown);
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 20px;
  cursor: pointer;
  text-align: left;
  line-height: 1.55;
  transition: border-color 0.2s, background-color 0.2s;
}

.quiz-answer-btn:hover:not(:disabled) {
  border-color: var(--gold-light);
  background: var(--cream);
}

.quiz-answer-btn.selected {
  border-color: var(--gold);
  background: var(--parchment);
  color: var(--charcoal);
}

.quiz-answer-btn:disabled { cursor: default; }

/* Result screen */
.quiz-result-message {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}

.result-card {
  display: flex;
  text-decoration: none;
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.result-card:hover {
  box-shadow: 0 8px 40px rgba(46,39,32,0.1);
  border-color: var(--stone-light);
}

.result-image {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.95);
  transition: transform 0.6s, opacity 0.4s;
}

.result-card:hover .result-image img {
  transform: scale(1.05);
  opacity: 0.85;
}

.result-body {
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.result-body .teacher-tag {
  align-self: flex-end;
}

.result-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin: 10px 0 8px;
  line-height: 1.2;
}

.result-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 20px;
}

.result-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.result-cta .arrow { transition: transform 0.25s; }
.result-card:hover .result-cta .arrow { transform: translateX(4px); }

.result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.result-browse {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.result-browse:hover { color: var(--brown); }

.result-restart {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.result-restart:hover { color: var(--brown); }

/* Quiz nudge on perspectives page */
.quiz-nudge {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--stone);
}

.quiz-nudge a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
}

.quiz-nudge a:hover { color: var(--brown); }

@media (max-width: 560px) {
  .quiz-answers { grid-template-columns: 1fr; }
  .result-card { flex-direction: column; }
  .result-image { width: 100%; height: 200px; }
  .quiz-header { padding: 20px 24px; }
  .result-actions { flex-direction: column; gap: 16px; }
}

/* ==============================
   CHAT PAGE
   ============================== */

body.chat-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--cream);
}

/* Header */
.chat-header {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 68px;
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.chat-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

.chat-back:hover { color: var(--brown); }

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

.chat-teacher-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.chat-teacher-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-top: 3px;
}

.chat-teacher-tag--calm     { background-color: #E8F0EC; color: #4A6B55; }
.chat-teacher-tag--align    { background-color: #EEE8D8; color: #7A6030; }
.chat-teacher-tag--heal     { background-color: #F0E8E8; color: #7A4444; }
.chat-teacher-tag--motivate { background-color: #E8EAF0; color: #3A4470; }

.chat-brand {
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

/* Messages area */
.chat-main {
  flex: 1;
  overflow-y: auto;
  padding: 32px 0;
  scroll-behavior: smooth;
}

.chat-messages {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Message bubbles */
.msg {
  display: flex;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.msg--in {
  opacity: 1;
  transform: translateY(0);
}

.msg--ai  { justify-content: flex-start; }
.msg--user { justify-content: flex-end; }

.msg-bubble {
  max-width: 78%;
  padding: 16px 20px;
  line-height: 1.75;
  font-size: 0.95rem;
  font-weight: 300;
}

.msg--ai .msg-bubble {
  background-color: var(--parchment);
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  border-left: 2px solid var(--gold-light);
}

.msg--ai .msg-bubble p { margin: 0 0 0.75em; }
.msg--ai .msg-bubble p:last-child { margin-bottom: 0; }
.msg--ai .msg-bubble h1,
.msg--ai .msg-bubble h2,
.msg--ai .msg-bubble h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0.9em 0 0.4em;
}
.msg--ai .msg-bubble h1:first-child,
.msg--ai .msg-bubble h2:first-child,
.msg--ai .msg-bubble h3:first-child { margin-top: 0; }
.msg--ai .msg-bubble strong { font-weight: 600; font-style: normal; color: var(--charcoal); }
.msg--ai .msg-bubble em { font-style: italic; }
.msg--ai .msg-bubble ul,
.msg--ai .msg-bubble ol { padding-left: 1.25em; margin: 0.5em 0 0.75em; }
.msg--ai .msg-bubble li { margin-bottom: 0.35em; }
.msg--ai .msg-bubble li:last-child { margin-bottom: 0; }

.msg--user .msg-bubble {
  background-color: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  font-style: normal;
}

/* Typing indicator */
.msg-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 18px 20px;
  min-width: 64px;
}

.msg-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--stone-light);
  animation: typingDot 1.2s infinite ease-in-out;
}

.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* Conversation starters dock */
.starters-dock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto 14px;
  min-height: 0;
}

.starters-dock:empty { margin: 0; }

.starters-label {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--stone-light);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.starters-dock--visible .starters-label { opacity: 1; }

@keyframes driftFromLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes driftFromUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes driftFromRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.starter-btn {
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: transparent;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 300;
  cursor: pointer;
  opacity: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.3s ease;
  text-align: center;
}

.starters-dock--visible .starter-btn--left  { animation: driftFromLeft  0.45s ease forwards; animation-delay: 0.05s; }
.starters-dock--visible .starter-btn--up    { animation: driftFromUp    0.45s ease forwards; animation-delay: 0.15s; }
.starters-dock--visible .starter-btn--right { animation: driftFromRight 0.45s ease forwards; animation-delay: 0.25s; }

.starter-btn:hover {
  background: var(--parchment);
  border-color: var(--gold-light);
  color: var(--brown);
}

/* Input bar */
.chat-footer {
  flex-shrink: 0;
  background-color: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 12px;
}

.chat-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.chat-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 13px 18px;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input::placeholder { color: var(--stone-light); }

.chat-input:focus {
  border-color: var(--gold-light);
}

.chat-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-send {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--warm-white);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
}

.chat-send:hover  { background-color: var(--gold-light); }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; }

.chat-disclaimer {
  text-align: center;
  font-size: 0.65rem;
  color: var(--stone-light);
  letter-spacing: 0.05em;
  margin-top: 8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .chat-header { padding: 0 16px; grid-template-columns: auto 1fr auto; gap: 8px; }
  .chat-brand  { display: none; }
  .chat-teacher-name { font-size: 1.15rem; }
}

/* ==============================
   ABOUT PAGE
   ============================== */

.about-hero {
  background-color: var(--warm-white);
  text-align: center;
  padding: 120px 40px 64px;
  border-bottom: 1px solid var(--border);
}

.about-section {
  background-color: var(--warm-white);
  padding: 80px 40px 100px;
}

.about-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: 100px;
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 12px 40px rgba(46,39,32,0.12);
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text-col p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--brown);
}

.about-greeting {
  font-family: var(--font-display);
  font-size: 1.7rem !important;
  font-weight: 200 !important;
  font-style: italic;
  color: var(--charcoal) !important;
  line-height: 1.4 !important;
}

.about-welcome {
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: var(--gold) !important;
  letter-spacing: 0.04em;
  line-height: 1.4 !important;
}

.about-closing {
  font-style: italic;
  color: var(--stone) !important;
}

.about-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background-color: var(--gold);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.about-cta:hover {
  background-color: var(--brown);
}

@media (max-width: 760px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-wrap {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }
  .about-text-col { text-align: left; }
  .about-cta { align-self: center; }
}

@media (max-width: 560px) {
  .about-hero { padding: 100px 24px 48px; }
  .about-section { padding: 48px 24px 72px; }
  .nav-links { gap: 20px; }
}

/* ==============================
   FOOTER SOCIAL ICONS
   ============================== */

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 16px 0;
}

.footer-social-link {
  color: var(--stone);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}

.footer-social-link:hover {
  color: var(--gold);
}

/* ==============================
   CONTACT PAGE
   ============================== */

.contact-section {
  background-color: var(--warm-white);
  padding: 80px 40px 100px;
}

.contact-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.contact-intro-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 200;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
}

.contact-intro p {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-social-link:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-field input,
.contact-field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--stone-light);
}

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

.contact-submit {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background-color: var(--gold);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  border-radius: 2px;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.contact-submit:hover {
  background-color: var(--brown);
}

@media (max-width: 760px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-submit { align-self: stretch; }
}

@media (max-width: 560px) {
  .contact-section { padding: 48px 24px 72px; }
}

/* ==============================
   Start Here Page
   ============================== */

.start-hero {
  background-color: var(--warm-white);
  text-align: center;
  padding: 120px 40px 64px;
  border-bottom: 1px solid var(--border);
}

.start-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.start-what {
  background-color: var(--parchment);
  padding: 72px 48px;
  text-align: center;
}

.start-what-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: var(--brown);
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.8;
}

.start-steps {
  background-color: var(--warm-white);
  padding: 80px 48px;
}

.start-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.start-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 200;
  color: var(--gold-light);
  line-height: 1;
}

.start-step-title {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.start-step-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
}

.start-themes {
  background-color: var(--cream);
  padding: 72px 48px;
  text-align: center;
}

.start-themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 32px auto 0;
  text-align: left;
}

.start-theme-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-theme-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}

.start-cta {
  background-color: var(--charcoal);
  padding: 88px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.start-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--warm-white);
  line-height: 1.2;
}

.start-cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.start-cta-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone-light);
  max-width: 480px;
  line-height: 1.75;
}

.start-cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background-color: var(--gold-light);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 2px;
  margin-top: 4px;
  transition: background-color 0.3s;
}

.start-cta-btn:hover { background-color: var(--gold); }

.start-browse {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.start-browse:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .start-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 760px) {
  .start-steps-grid { grid-template-columns: 1fr; }
  .start-themes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .start-hero { padding: 100px 24px 48px; }
  .start-what { padding: 56px 24px; }
  .start-steps { padding: 60px 24px; }
  .start-themes { padding: 56px 24px; }
  .start-cta { padding: 64px 24px; }
  .start-themes-grid { grid-template-columns: 1fr; }
}

/* ==============================
   Today's Reflection Page
   ============================== */

.refl-date-bar {
  background-color: var(--warm-white);
  padding: 110px 48px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.refl-date-label {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.refl-date-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--charcoal);
}

.refl-quote-section {
  background-color: var(--charcoal);
  padding: 80px 48px;
  text-align: center;
}

.refl-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.65;
}

.refl-quote-attr {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.refl-deep-section {
  background-color: var(--warm-white);
  padding: 80px 48px;
}

.refl-deep-body {
  max-width: 720px;
  margin: 0 auto;
}

.refl-deep-body p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.95;
  margin-bottom: 1.8em;
}

.refl-deep-body p:last-child {
  margin-bottom: 0;
}

.refl-teacher-section {
  background-color: var(--cream);
  padding: 72px 48px;
}

.refl-section-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
}

.refl-prompt-section {
  background-color: var(--parchment);
  padding: 80px 48px;
  text-align: center;
}

.refl-prompt-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.refl-prompt-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--brown);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.refl-tomorrow {
  background-color: var(--warm-white);
  padding: 64px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.refl-tomorrow-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.03em;
}

.refl-tomorrow-theme {
  color: var(--gold);
  font-weight: 400;
}

.refl-home-link {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.refl-home-link:hover { color: var(--brown); }

/* Daily quote reflection link */
.daily-quote-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  margin-top: 24px;
  transition: color 0.2s;
}

.daily-quote-link:hover { color: var(--gold-light); }

@media (max-width: 600px) {
  .refl-date-bar { padding: 90px 24px 40px; }
  .refl-quote-section { padding: 60px 24px; }
  .refl-deep-section { padding: 60px 24px; }
  .refl-teacher-section { padding: 56px 24px; }
  .refl-prompt-section { padding: 60px 24px; }
  .refl-tomorrow { padding: 48px 24px; }
}

/* ==============================
   Teacher Profile Pages
   ============================== */

.teacher-hero {
  background-color: var(--warm-white);
  text-align: center;
  padding: 120px 40px 64px;
  border-bottom: 1px solid var(--border);
}

.teacher-hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  margin-top: 4px;
}

.teacher-profile {
  background-color: var(--cream);
  padding: 80px 48px;
}

.teacher-profile-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.teacher-profile-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}

.teacher-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.teacher-about-label {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.teacher-bio {
  font-size: 1rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.85;
  margin-bottom: 32px;
}

.teacher-chat-inline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.teacher-chat-inline:hover { color: var(--brown); }

.teacher-quotes-section {
  background-color: var(--parchment);
  padding: 80px 48px;
  text-align: center;
}

.teacher-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 40px auto 0;
  text-align: left;
}

.teacher-quote-item {
  padding: 32px 28px;
  background: rgba(255,255,255,0.45);
  border-left: 2px solid var(--gold-light);
}

.teacher-quote-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--brown);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .teacher-profile-inner { grid-template-columns: 1fr; gap: 40px; }
  .teacher-profile-img { aspect-ratio: 16 / 9; max-height: 360px; }
  .teacher-quotes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .teacher-hero { padding: 100px 24px 48px; }
  .teacher-profile { padding: 56px 24px; }
  .teacher-quotes-section { padding: 56px 24px; }
}

/* ==============================
   Quiz Share Buttons
   ============================== */

.share-section {
  margin-top: 40px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.share-label {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.share-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--stone);
  transition: color 0.25s;
}

.share-btn:hover { color: var(--gold); opacity: 1; }

.share-btn--fb  { color: var(--stone); }
.share-btn--x   { color: var(--stone); }
.share-btn--ig  { color: var(--stone); }
.share-btn--tt  { color: var(--stone); }
.share-btn--snap { color: var(--stone); }

.share-note {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--stone-light);
  margin-top: 12px;
}

/* ---- Watch & Listen ---- */
.watch-section {
  background: var(--warm-white);
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.watch-card {
  background: var(--charcoal);
  border: 1px solid rgba(253,250,245,0.08);
  border-radius: 4px;
  padding: 36px 32px 28px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.watch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}

.watch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.watch-card-duration {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(253,250,245,0.45);
  letter-spacing: 0.04em;
}

.watch-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.watch-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,250,245,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.watch-card-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.watch-card:hover .watch-card-play {
  color: var(--warm-white);
}

/* ---- Player Overlay ---- */
.player-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(46,39,32,0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.player-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.player-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(120px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.player-overlay[data-theme="calm"] .player-bg-glow    { background: #7BAEC4; }
.player-overlay[data-theme="align"] .player-bg-glow   { background: #A07848; }
.player-overlay[data-theme="heal"] .player-bg-glow    { background: #8FAF8A; }
.player-overlay[data-theme="motivate"] .player-bg-glow { background: #C47840; }

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50%       { transform: scale(1.3); opacity: 0.18; }
}

.player-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(253,250,245,0.5);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.player-close:hover { color: var(--warm-white); }

.player-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.player-header {
  margin-bottom: 40px;
}

.player-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--warm-white);
  margin-top: 16px;
  line-height: 1.2;
}

.player-text-area {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.player-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(253,250,245,0.85);
  line-height: 1.75;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.player-text.visible {
  opacity: 1;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.player-btn {
  background: none;
  border: 1px solid rgba(253,250,245,0.35);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 12px 32px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.player-btn:hover {
  background: rgba(253,250,245,0.08);
  border-color: rgba(253,250,245,0.6);
}

.player-progress-bar {
  width: 300px;
  height: 2px;
  background: rgba(253,250,245,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.player-progress-fill {
  height: 100%;
  background: var(--gold-light);
  width: 0%;
  transition: width 0.5s ease;
}

.player-progress-text {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(253,250,245,0.35);
  letter-spacing: 0.06em;
}

.player-no-speech {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(253,250,245,0.45);
  text-align: center;
  max-width: 400px;
}

/* ---- Dual band (Watch & Listen + Email side by side) ---- */
.dual-band {
  display: flex;
}

.dual-band > section {
  flex: 1;
}

.dual-band .watch-teaser {
  border-right: 1px solid rgba(160, 120, 72, 0.15);
}

@media (max-width: 860px) {
  .dual-band {
    flex-direction: column;
  }
  .dual-band .watch-teaser {
    border-right: none;
    border-bottom: 1px solid rgba(160, 120, 72, 0.15);
  }
}

/* ---- Watch & Listen homepage teaser ---- */
.watch-teaser {
  background: var(--charcoal);
  padding: 80px 48px;
  text-align: center;
}

.watch-teaser-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.watch-teaser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.watch-teaser-title em {
  font-style: italic;
}

.watch-teaser-sub {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.watch-teaser-btn {
  display: inline-block;
  border: 1px solid rgba(253,250,245,0.35);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.watch-teaser-btn:hover {
  background: rgba(253,250,245,0.08);
  border-color: rgba(253,250,245,0.6);
}

/* ---- Responsive: Watch & Listen ---- */
@media (max-width: 760px) {
  .watch-grid {
    grid-template-columns: 1fr;
  }
  .watch-section {
    padding: 60px 24px;
  }
  .watch-teaser {
    padding: 64px 24px;
  }
  .player-title {
    font-size: 1.7rem;
  }
  .player-text {
    font-size: 1.15rem;
  }
  .player-progress-bar {
    width: 240px;
  }
}

/* ---- Start Here — All Paths block ---- */
.start-allpaths {
  background: var(--cream);
  padding: 64px 24px;
}
.start-allpaths-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
.start-allpaths-symbols {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.start-allpaths-symbols span {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}
.start-allpaths-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.start-allpaths-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}
.start-allpaths-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 480px;
}
.start-allpaths-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(160,120,72,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.start-allpaths-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
@media (max-width: 600px) {
  .start-allpaths-inner {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .start-allpaths-symbols {
    flex-direction: row;
    gap: 20px;
  }
}

/* ---- Universal Question page ---- */

.uq-hero {
  background-color: var(--charcoal);
  text-align: center;
  padding: 120px 24px 80px;
}
.uq-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.uq-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 200;
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 28px;
}
.uq-title em {
  font-style: italic;
  color: var(--gold-light);
}
.uq-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--stone-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.uq-ask-section {
  background-color: var(--charcoal);
  padding: 72px 24px 68px;
}
.uq-ask-section .uq-form {
  max-width: 680px;
  margin: 0 auto 0;
}
.uq-ask-section .uq-examples { max-width: 680px; margin: 0 auto; }
.uq-ask-section .uq-disclaimer { max-width: 680px; margin: 24px auto 0; color: var(--stone); }
.uq-ask-section .uq-error { max-width: 680px; margin: 0 auto; }
.uq-ask-section .uq-examples-label { color: var(--stone); }
.uq-ask-section .uq-pill {
  border-color: rgba(196,154,104,0.3);
  color: var(--parchment);
}
.uq-ask-section .uq-pill:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.uq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.uq-textarea-wrap {
  position: relative;
}
.uq-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 52px 20px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  resize: none;
  line-height: 1.6;
  transition: border-color 0.2s;
}
.uq-textarea::placeholder {
  color: var(--stone-light);
}
.uq-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.uq-char-count {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 0.7rem;
  color: var(--stone-light);
  pointer-events: none;
}
.uq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-end;
  background: var(--stone);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  padding: 11px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
}
.uq-btn:hover { background: var(--brown); }
.uq-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.uq-examples-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.uq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.uq-pill {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.uq-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.uq-disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--stone-light);
  text-align: center;
}

.uq-error {
  margin-top: 16px;
  color: #9b4444;
  font-size: 0.85rem;
  text-align: center;
}

/* Responses section */
.uq-responses {
  background: var(--parchment);
  padding: 60px 24px 80px;
}
.uq-asked-banner {
  max-width: 900px;
  margin: 0 auto 48px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.uq-asked-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.uq-asked-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.4;
}

.uq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.uq-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 32px 28px;
  border-top: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(46,39,32,0.06);
}
.uq-card--christianity { border-top-color: #7B8DB0; }
.uq-card--islam        { border-top-color: #5A8A72; }
.uq-card--hinduism     { border-top-color: #B87A3A; }
.uq-card--buddhism     { border-top-color: #9A6060; }

.uq-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.uq-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.uq-card--christianity .uq-symbol { color: #7B8DB0; }
.uq-card--islam        .uq-symbol { color: #5A8A72; }
.uq-card--hinduism     .uq-symbol { color: #B87A3A; }
.uq-card--buddhism     .uq-symbol { color: #9A6060; }

.uq-symbol--text {
  font-size: 1.5rem;
  line-height: 1;
}
.uq-tradition {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.uq-card-body {
  min-height: 80px;
}
.uq-card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown);
}

/* Loading dots */
.uq-loading {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
}
.uq-loading span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone-light);
  animation: uqPulse 1.2s ease-in-out infinite;
}
.uq-loading span:nth-child(2) { animation-delay: 0.2s; }
.uq-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes uqPulse {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Synthesis */
.uq-synthesis {
  max-width: 900px;
  margin: 32px auto 0;
  background: var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
}
.uq-synthesis-inner {
  padding: 48px 48px 40px;
  border-top: 3px solid var(--gold);
}
.uq-synthesis-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.uq-synthesis-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 32px;
}
.uq-ask-again {
  background: none;
  border: 1px solid rgba(196,154,104,0.4);
  border-radius: 100px;
  padding: 10px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gold-light);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.uq-ask-again:hover {
  border-color: var(--gold-light);
  color: var(--cream);
}

@media (max-width: 640px) {
  .uq-ask-section { padding: 48px 20px 52px; }
}
@media (max-width: 640px) {
  .uq-hero { padding: 100px 20px 60px; }
  .uq-grid { grid-template-columns: 1fr; }
  .uq-card { padding: 24px 20px; }
  .uq-synthesis-inner { padding: 32px 24px 28px; }
  .uq-asked-banner { flex-direction: column; gap: 6px; }
  .uq-responses { padding: 40px 20px 60px; }
}

/* Quote sections */
.uq-quotes {
  padding: 72px 48px;
}
.uq-quotes--stillness {
  background: var(--parchment);
}
.uq-quotes--stillness .uq-quotes-eyebrow { color: var(--gold); }
.uq-quotes--stillness .uq-quote-box {
  background: var(--warm-white);
  border-color: var(--border);
}
.uq-quotes--love {
  background: var(--parchment);
}
.uq-quotes-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.uq-quotes--stillness .uq-quotes-eyebrow { color: var(--gold-light); }
.uq-quotes--love .uq-quotes-eyebrow { color: var(--gold); }

.uq-quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.uq-quotes-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.uq-quote-box {
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid rgba(196,154,104,0.2);
}
.uq-quote-box--light {
  background: var(--warm-white);
  border-color: var(--border);
}
.uq-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}
.uq-quotes--stillness .uq-quote-text { color: var(--charcoal); }
.uq-quotes--love .uq-quote-text { color: var(--charcoal); }

.uq-quote-attr {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.uq-quotes--stillness .uq-quote-attr { color: var(--gold); }
.uq-quotes--love .uq-quote-attr { color: var(--gold); }

.uq-love-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.uq-love-icon {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 14px;
  opacity: 0.7;
}
.uq-love--christianity { color: #7B8DB0; }
.uq-love--islam        { color: #5A8A72; }
.uq-love--hinduism     { color: #B87A3A; }
.uq-love--buddhism     { color: #9A6060; }

@media (max-width: 860px) {
  .uq-quotes { padding: 56px 24px; }
  .uq-love-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .uq-quotes-grid { grid-template-columns: 1fr; }
  .uq-love-grid { grid-template-columns: 1fr; }
}

/* ==============================
   Email Gate Modal
   ============================== */
.gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46,39,32,0.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.gate-overlay.active { display: flex; }

.gate-modal {
  background: var(--warm-white);
  border-radius: 6px;
  padding: 52px 44px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  animation: gateIn 0.35s ease;
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gate-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.gate-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.gate-sub {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 28px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.gate-input {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 14px 18px;
  border: 1px solid rgba(160,120,72,0.35);
  border-radius: 3px;
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}
.gate-input::placeholder { color: var(--stone); }
.gate-input:focus { border-color: var(--gold-light); }

.gate-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 24px;
  background: var(--charcoal);
  color: var(--warm-white);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.gate-btn:hover { background: var(--brown); }
.gate-btn:disabled { opacity: 0.6; cursor: default; }

.gate-disclaimer {
  font-size: 0.72rem;
  color: var(--stone);
  font-weight: 300;
}
}
