/* ============================================================
   Healing b Darija — Catalog Page Styles
   Fonts: Fraunces (headings), DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&family=Cairo:wght@300;400;500;600&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:       #FAF6F1;
  --warm:     #F3EBDD;
  --brown:    #3D2B1F;
  --sage:     #8BAF8E;
  --accent:   #C1714A;
  --accent-light: #D4895E;
  --text:     #3D2B1F;
  --muted:    #8B6B5A;
  --border:   #E8DDD1;
  --white:    #FFFFFF;

  --f-head: 'Fraunces', 'Playfair Display', Georgia, serif;
  --f-body: 'DM Sans', -apple-system, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  32px;
  --r-pill: 999px;

  --shadow: 0 4px 24px rgba(61,43,31,0.08);
  --shadow-md: 0 8px 40px rgba(61,43,31,0.12);
}

/* ── RTL (Darija — Arabic) ─────────────────────────────────── */
html[dir="rtl"] body {
  font-family: 'Cairo', 'Tajawal', 'DM Sans', sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-family: 'Amiri', 'Cairo', Georgia, serif;
}
html[dir="rtl"] .about__lead { border-left: none; border-right: 2px solid var(--accent); padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .hero__quote-card { left: auto; right: -60px; }
html[dir="rtl"] .hero__eyebrow::before { margin-right: 0; }
html[dir="rtl"] .articles-teaser__item:hover { padding-left: 0; padding-right: 8px; }

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-body); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

section { position: relative; }
.section-bg-warm  { background: var(--warm); }
.section-bg-brown { background: var(--brown); color: var(--white); }
.section-bg-sage  { background: var(--sage); }
.section-bg-white { background: var(--white); }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-color: var(--border); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px;
}
.nav__logo {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-ring {
  width: 26px; height: 26px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}
.nav__lang button {
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  color: var(--muted);
  transition: all 0.2s;
}
.nav__lang button.active {
  background: var(--text);
  color: var(--white);
  font-weight: 500;
}
.nav__lang button:hover:not(.active) { color: var(--text); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.22s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: #B36540; border-color: #B36540; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-cream {
  background: var(--warm);
  color: var(--text);
  border-color: var(--warm);
}
.btn-cream:hover { background: #E8DDD1; border-color: #E8DDD1; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  background: var(--bg);
  overflow: hidden;
}
.hero__content {
  padding: 80px 48px 80px 0;
  padding-left: calc((100vw - 1160px) / 2 + 32px);
}
@media (max-width: 1200px) { .hero__content { padding-left: 32px; } }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__heading {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
}
.hero__heading em { font-style: normal; }
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--muted);
}
.hero__trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero__image-col {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #E8DDD1 0%, #D4C4B0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 5rem;
  color: rgba(61,43,31,0.15);
}
.hero__quote-card {
  position: absolute;
  bottom: 80px;
  left: -60px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  max-width: 240px;
  box-shadow: var(--shadow-md);
}
.hero__quote-card::before {
  content: '"';
  font-family: var(--f-head);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hero__quote-card p {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

/* ── NOTE SECTION ──────────────────────────────────────────── */
.note-section {
  padding: 100px 0;
}
.note-section .container--narrow {
  text-align: center;
}
.note-section .label { margin-bottom: 32px; display: block; }
.note-section p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--text);
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 28px;
}
.note-section .sig {
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── ABOUT — editorial magazine layout ─────────────────────── */
.about-section {
  padding: 140px 0;
  background: var(--bg);
  overflow: hidden;
}
.about__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.about__photo-col {
  position: relative;
}
.about__figure {
  position: relative;
  margin: 0;
}
.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.about__caption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__caption-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.about__text-col {
  max-width: 520px;
}
.about__eyebrow {
  display: block;
  margin-bottom: 24px;
}
.about__heading {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.about__heading em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.about__lead {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}
.about__text-col p:not(.about__lead):not(.about__close) {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}
.about__close {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about__close em {
  font-family: var(--f-head);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}
.about__close strong {
  font-weight: 500;
  color: var(--text);
}
.about__signature {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 300;
}

/* ── ABOUT — extended story ────────────────────────────────── */
.about__story {
  margin-bottom: 32px;
  max-width: 520px;
}
.about__story p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about__story .about__lead {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}
.about__story em { color: var(--accent); font-style: italic; }
.about__story strong { color: var(--text); font-weight: 500; }

/* ── DARK QUOTE STRIP ──────────────────────────────────────── */
.quote-strip {
  padding: 100px 0;
  text-align: center;
}
.quote-strip .container--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.quote-strip__line {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(212, 137, 94, 0.45);
}
.quote-strip__text {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.7;
  color: var(--warm);
  max-width: 720px;
}
.quote-strip__attr {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── HONESTY SECTION ───────────────────────────────────────── */
.honesty-section {
  padding: 100px 0;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}
.honesty__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.honesty__grid .label { display: block; margin-bottom: 18px; }
.honesty__grid h2 { margin-bottom: 24px; }
.honesty__grid p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.honesty__quote-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}
.honesty__quote-text {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.honesty__quote-attr {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── WALL OF THINKERS ──────────────────────────────────────── */
.thinkers-section { padding: 120px 0; }
.thinkers__header {
  text-align: center;
  margin-bottom: 64px;
}
.thinkers__header .label { display: block; margin-bottom: 20px; }
.thinkers__intro {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.thinkers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.thinker-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.thinker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.thinker-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--warm);
}
.thinker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.85);
  transition: transform 0.6s;
}
.thinker-card:hover .thinker-card__photo img { transform: scale(1.05); }
.thinker-card__body { padding: 24px 22px 28px; }
.thinker-card__field {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.thinker-card__quote {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 18px;
  min-height: 4.8em;
}
.thinker-card__name {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.thinker-card__years {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── VALUES ────────────────────────────────────────────────── */
.values-section { padding: 100px 0; }
.values__header {
  text-align: center;
  margin-bottom: 56px;
}
.values__header .label { display: block; margin-bottom: 18px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 12px 8px;
}
.value-card__line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 18px;
  border-radius: 1px;
}
.value-card h3 {
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}
.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process-section {
  padding: 120px 0;
}
.process__header {
  text-align: center;
  margin-bottom: 72px;
}
.process__header .label { display: block; margin-bottom: 20px; }
.process__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.7;
}
.process__intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.75;
  text-align: center;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process__step {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--border);
}
.process__num {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.process__step h4 {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.process__step p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── SESSIONS / PRICING ────────────────────────────────────── */
.sessions-section {
  padding: 120px 0;
}
.sessions__header {
  text-align: center;
  margin-bottom: 20px;
}
.sessions__header .label { display: block; margin-bottom: 20px; }
.sessions__meta {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  border-radius: var(--r-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.pricing-card--featured {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
  transform: scale(1.03);
}
.pricing-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.pricing-card--featured .pricing-card__tag {
  background: var(--accent);
}
.pricing-card__type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.pricing-card--featured .pricing-card__type { color: rgba(255,255,255,0.55); }
.pricing-card__name {
  font-family: var(--f-head);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__name { color: var(--white); }
.pricing-card__duration {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}
.pricing-card--featured .pricing-card__duration { color: rgba(255,255,255,0.55); }
.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.7); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-card__price .amount {
  font-family: var(--f-head);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
}
.pricing-card--featured .pricing-card__price .amount { color: var(--white); }
.pricing-card__price .currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}
.pricing-card--featured .pricing-card__price .currency { color: rgba(255,255,255,0.55); }
.pricing-card__was {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 24px;
  min-height: 1.2em;
}
.pricing-card--featured .pricing-card__was { color: rgba(255,255,255,0.4); }
.pricing-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-card__divider { border-color: rgba(255,255,255,0.15); }
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.pricing-card__features li::before {
  content: '●';
  color: var(--accent);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 5px;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.85); }
.pricing-card--featured .pricing-card__features li::before { color: #D4895E; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── JOURNAL ───────────────────────────────────────────────── */
.journal-section {
  padding: 120px 0;
}
.journal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.journal__eyebrow { display: block; margin-bottom: 20px; }
.journal__heading { margin-bottom: 16px; }
.journal__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.journal__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.journal__meta-item { }
.journal__meta-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.journal__meta-value { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.journal__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.journal__price {
  font-family: var(--f-head);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text);
}
.journal__price-currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.journal__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
/* Preview pages */
.journal__preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.journal__page {
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 20px 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}
.journal__page-num {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}
.journal__page-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.journal__page-sub {
  font-size: 0.65rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}
.journal__page-lines {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.journal__page-lines span {
  display: block;
  height: 1px;
  background: var(--border);
  border-radius: 1px;
}
.journal__cover {
  background: var(--brown);
  color: var(--white);
}
.journal__cover .journal__page-num { opacity: 0.15; color: var(--white); }
.journal__cover .journal__page-title { color: rgba(255,255,255,0.9); }
.journal__cover .journal__page-sub { color: rgba(255,255,255,0.5); }
.journal__cover-logo {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.journal__cover-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-top: auto;
}

/* ── HOW TO BOOK ────────────────────────────────────────────── */
.book-section {
  padding: 100px 0;
}
.book-section .label { display: block; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.book-section h2 { color: var(--white); margin-bottom: 20px; }
.book__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 60px;
}
.book__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 52px;
}
.book__step {}
.book__step-num {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.book__step h4 {
  color: var(--white);
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.book__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.book__ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── PAYMENT ─────────────────────────────────────────────────── */
.payment-section { padding: 80px 0; }
.payment__header { margin-bottom: 48px; }
.payment__header .label { display: block; margin-bottom: 16px; }
.payment__header h2 { margin-bottom: 12px; }
.payment__header p { color: var(--muted); font-size: 0.92rem; }
.payment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.payment__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
}
.payment__card-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.payment__card h4 {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.payment__card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.payment__note {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { padding: 120px 0; }
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials__header .label { display: block; margin-bottom: 20px; }
.testimonials__verified {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 32px;
}
.testimonial-card__stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; }
.faq__header { text-align: center; margin-bottom: 56px; }
.faq__header .label { display: block; margin-bottom: 20px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--accent); }
.faq__icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all 0.25s;
  font-style: normal;
}
.faq__item.open .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq__answer-inner {
  padding: 0 0 28px 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.final-cta-section {
  padding: 120px 0;
  text-align: center;
}
.final-cta-section .label { display: block; margin-bottom: 24px; color: rgba(61,43,31,0.5); }
.final-cta-section h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.2rem); }
.final-cta-section p {
  font-size: 1rem;
  color: rgba(61,43,31,0.65);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.final-cta-section .cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand h3 {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand h3 span { color: var(--accent); }
.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  margin-bottom: 20px;
}
.footer__handle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}
.footer__col h4 {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a:hover { color: var(--white); }
.footer__quote {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── WALL OF QUOTE STICKERS ─────────────────────────────────── */
.quote-wall-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.quote-wall-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(193,113,74,0.05), transparent 35%),
    radial-gradient(circle at 82% 72%, rgba(139,175,142,0.05), transparent 35%);
  pointer-events: none;
}
.quote-wall__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.quote-wall__header .label { display: block; margin-bottom: 18px; }
.quote-wall__header h2 {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.quote-wall__intro {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 0.98rem;
}
.quote-wall {
  column-count: 4;
  column-gap: 22px;
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.sticker {
  break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  margin-bottom: 22px;
  padding: 28px 24px 22px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 8px 24px rgba(61,43,31,0.10), 0 2px 6px rgba(61,43,31,0.06);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, z-index 0s 0.4s;
  cursor: default;
}
.sticker:hover {
  transform: scale(1.04) rotate(0deg) translateY(-4px) !important;
  box-shadow: 0 14px 36px rgba(61,43,31,0.18), 0 4px 10px rgba(61,43,31,0.10);
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, z-index 0s 0s;
}
.sticker__quote {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--text);
}
.sticker__author {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.sticker__pin {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #C1714A, #8b4527);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), inset 0 -1px 2px rgba(0,0,0,0.3);
}

/* Sticker color variants */
.sticker--cream { background: #FFF8EE; }
.sticker--terracotta { background: #F4D5BD; }
.sticker--terracotta .sticker__author { color: #8B4527; }
.sticker--sage { background: #DCE6D8; }
.sticker--sage .sticker__author { color: #4F6B52; }
.sticker--mocha { background: #3D2B1F; }
.sticker--mocha .sticker__quote { color: #F3EBDD; }
.sticker--mocha .sticker__author { color: #D4895E; }
.sticker--blush { background: #F2DDD7; }
.sticker--blush .sticker__author { color: #8B4527; }

/* Sticker sizes */
.sticker--md { padding: 32px 28px 26px; }
.sticker--lg { padding: 38px 30px 30px; }
.sticker--lg .sticker__quote { font-size: 1.15rem; line-height: 1.55; }

/* Random rotations */
.sticker--rotate-left { transform: rotate(-2.5deg); }
.sticker--rotate-right { transform: rotate(2.2deg); }
.sticker--rotate-slight-left { transform: rotate(-1deg); }
.sticker--rotate-slight-right { transform: rotate(1.3deg); }

@media (max-width: 1024px) {
  .quote-wall { column-count: 3; }
}
@media (max-width: 720px) {
  .quote-wall { column-count: 2; column-gap: 14px; padding: 0 16px; }
  .sticker { padding: 22px 18px; margin-bottom: 14px; }
  .sticker__quote { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .quote-wall { column-count: 1; }
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section { padding: 90px 0; }
.newsletter-section .container--narrow { text-align: center; }
.newsletter-section .label { display: block; margin-bottom: 18px; }
.newsletter-section h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 16px; font-weight: 300; font-style: italic; }
.newsletter-section > .container--narrow > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,113,74,0.12);
}
.newsletter__form button { white-space: nowrap; }
.newsletter__privacy {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* ── BOOKING FLOAT (replaces WhatsApp float) ────────────────── */
.book-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(193,113,74,0.35);
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}
.book-float:hover {
  transform: translateY(-2px);
  background: #B36540;
  box-shadow: 0 12px 36px rgba(193,113,74,0.45);
}
.book-float svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 560px) {
  .book-float { padding: 12px 18px; font-size: 0.78rem; bottom: 20px; right: 20px; }
  .book-float svg { width: 14px; height: 14px; }
}

/* ── Homepage spacing polish ────────────────────────────────── */
.note-section { padding: 80px 0; }
.about-section { padding: 100px 0; }
.quote-strip { padding: 80px 0; }
.values-section { padding: 90px 0; }
.process-section { padding: 90px 0; }
.sessions-section { padding: 100px 0; }
.journal-section { padding: 100px 0; }
.testimonials-section { padding: 90px 0; }
.faq-section { padding: 90px 0; }
.articles-teaser-section { padding: 90px 0; }

/* ── SCROLL FADE ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links, .nav__lang { display: none; }
  .nav__links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 24px 32px; gap: 20px; z-index: 99; }
  .nav__hamburger { display: flex; }
  .nav__right .btn { display: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 100px 32px 60px; max-width: 600px; }
  .hero__image-col { height: 60vw; min-height: 380px; }
  .hero__quote-card { left: 24px; bottom: 24px; }
  .about__container { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-col { max-width: 480px; }
  .about__text-col { max-width: 100%; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: scale(1); }
  .journal__inner { grid-template-columns: 1fr; gap: 48px; }
  .book__steps { grid-template-columns: 1fr; gap: 32px; }
  .payment__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .honesty__grid { grid-template-columns: 1fr; gap: 40px; }
  .thinkers__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 560px) {
  .thinkers__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 14px; }
  .process__grid { grid-template-columns: 1fr; }
  .journal__preview { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
