/* ==========================================================
   Breath of Life Wellness — Homepage (colorized v2)
   Brand: #3FADF1 (sky cyan)  ·  CTA: #EEEB4D (yellow)
   Type: Poppins (headings) + Source Serif 4 (body)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400;1,8..60,500&display=swap');

:root {
  /* Brand */
  --brand:        #3FADF1;
  --brand-deep:   #1d8fd1;
  --brand-soft:   oklch(92% 0.05 230);

  /* CTA */
  --cta:          #EEEB4D;
  --cta-deep:     #d5d22f;

  /* Surfaces (tinted toward brand hue) */
  --surface:        oklch(97.5% 0.012 230);
  --surface-soft:   oklch(94%   0.018 230);
  --surface-deeper: oklch(89%   0.026 230);
  --ink-surface:    oklch(20%   0.030 240);
  --ink-surface-2:  oklch(28%   0.035 240);

  /* Type */
  --ink:        oklch(18% 0.025 240);
  --ink-mid:    oklch(40% 0.028 235);
  --ink-soft:   oklch(58% 0.025 230);
  --hairline:   oklch(85% 0.020 230);
  --hairline-soft: oklch(91% 0.015 230);

  /* On-ink reverse */
  --paper:      oklch(96% 0.015 230);
  --paper-soft: oklch(80% 0.025 230);

  /* Fonts */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:    'Source Serif 4', Georgia, 'Times New Roman', serif;

  /* Geometry */
  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0; padding: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

p { margin: 0 0 16px; max-width: 65ch; }
p.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink-mid); }
.muted { color: var(--ink-mid); }
.retreat-callout {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.3;
  margin: 8px 0;
}
.faint { color: var(--ink-soft); }
.small { font-size: 14px; }

/* -------- Container & sections -------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 8vw, 128px) 0; }

/* -------- Type -------- */
.eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: var(--brand-deep);
  margin: 0 0 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 20px;
}
h1 { font-size: clamp(40px, 5.6vw, 70px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(30px, 3.8vw, 50px); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 15px; font-weight: 600; letter-spacing: 0.04em; }

.numeral {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.03em;
}

/* -------- Top banner (preview marker) -------- */
.banner {
  background: var(--ink-surface);
  color: var(--paper-soft);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 10px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.banner a { color: var(--cta); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* -------- Nav (#3FADF1 obligatorio) -------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--brand);
  border-bottom: 1px solid color-mix(in oklch, var(--brand-deep) 40%, transparent);
  transition: padding 320ms var(--ease);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 145px;
  height: auto;
  display: block;
  transition: width 320ms var(--ease), height 320ms var(--ease);
}
/* When user has scrolled, collapse the logo to a compact sticky size */
.nav.is-sticky .brand img {
  width: 115px;
  height: 105px;
}
.nav-links {
  display: flex; gap: 20px; list-style: none; padding: 0; margin: 0;
  font-family: var(--font-heading);
  font-size: 13.5px; font-weight: 500;
  justify-content: center; align-items: center;
}
.nav-links a {
  color: var(--ink);
  transition: color 200ms var(--ease);
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover { color: oklch(8% 0.015 240); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink);
}
.nav-cta { display: flex; gap: 18px; align-items: center; }
.nav-meta {
  font-family: var(--font-heading);
  font-size: 12px;
  color: oklch(22% 0.02 240 / 0.75);
  letter-spacing: 0.02em;
}
.nav-meta:hover { color: var(--ink); }

/* ---- Mobile hamburger + off-canvas drawer ---- */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 200ms var(--ease);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta > a.btn { display: none; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-cta { justify-content: flex-end; }
  .brand img { width: 125px; }
  .nav.is-sticky .brand img { width: 90px; height: auto; }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 400ms;
}
.nav-drawer.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}
.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(15% 0.02 240 / 0.55);
  opacity: 0;
  transition: opacity 320ms var(--ease);
}
.nav-drawer.open .nav-drawer-backdrop { opacity: 1; }

.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--brand);
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 400ms var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }

.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer .brand img {
  width: 110px;
  height: auto;
}
.nav-drawer-close {
  background: transparent;
  border: none;
  width: 44px; height: 44px;
  font-size: 32px;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-drawer-close:hover { color: oklch(8% 0.015 240); }

.nav-drawer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.nav-drawer nav li {
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 14%, transparent);
}
.nav-drawer nav li:first-child {
  border-top: 1px solid color-mix(in oklch, var(--ink) 14%, transparent);
}
.nav-drawer nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-drawer nav a::after { display: none !important; }
.nav-drawer nav a.active { font-weight: 700; }
.nav-drawer nav a:hover { color: oklch(8% 0.015 240); }

.nav-drawer-cta {
  margin-top: 12px;
}
.nav-drawer-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px 22px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 220ms var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--cta);
  color: var(--ink);
  box-shadow: 0 1px 0 oklch(80% 0.10 100) inset;
}
.btn-primary:hover {
  background: var(--cta-deep);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-brand {
  background: var(--brand);
  color: var(--ink);
}
.btn-brand:hover { background: var(--brand-deep); color: var(--paper); }
.btn-black {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-black:hover { background: #000; color: #fff; border-color: #000; }
.btn-ghost-on-ink {
  background: transparent;
  color: var(--paper);
  border-color: color-mix(in oklch, var(--paper) 60%, transparent);
}
.btn-ghost-on-ink:hover { background: var(--paper); color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* -------- Hero -------- */
.hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.hero-text { padding-bottom: 24px; }
.hero h1 { margin-top: 18px; }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: 38ch;
  margin: 28px 0 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-credentials {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-credentials li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-mid);
}
.hero-credentials .material-icons {
  font-size: 18px;
  color: var(--brand);
}
.hero-meta {
  margin-top: 40px;
  display: flex; gap: 36px; flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface-deeper);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 36%;
  background: linear-gradient(to top, oklch(15% 0.025 240 / 0.55), transparent);
  pointer-events: none;
}
.hero-visual::after {
  content: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { padding-bottom: 0; }
  .hero-visual { aspect-ratio: 3/4; }
}

/* -------- Trust strip -------- */
.trust {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.trust-marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.trust-marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: capitalize;
}
.logo-pill {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.logo-pill .material-icons {
  font-size: 20px;
  color: var(--brand);
}

/* -------- Audience (4-col, hairlines, no boxes) -------- */
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.audience-item {
  padding: 40px clamp(20px, 2vw, 32px);
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px;
}
.audience-item:last-child { border-right: none; }
.audience-item .numeral { display: block; margin-bottom: 4px; }
.audience-item h3 { margin: 0; }
.audience-item p { color: var(--ink-mid); font-size: 16px; margin: 0; }
.audience-item a {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  color: var(--ink); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  align-self: flex-start;
}
.audience-item a:hover { color: var(--brand-deep); border-color: var(--brand-deep); }

/* Pillar photo (Method section) */
.pillar-photo {
  position: relative;
  height: 250px;
  margin: 0 0 6px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-deeper);
}
.pillar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.pillar:hover .pillar-photo img { transform: scale(1.04); }
.pillar-photo::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: linear-gradient(to top, oklch(15% 0.025 240 / 0.55), transparent);
  pointer-events: none;
}
.pillar-photo::after {
  content: attr(data-num);
  position: absolute; left: 14px; bottom: 11px;
  font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 0.06em; font-weight: 500;
  color: oklch(96% 0.02 230 / 0.95);
}

.audience-grid--7 { grid-template-columns: repeat(4, 1fr); }
.audience-grid--7 .audience-item:nth-child(4) { border-right: none; }
.audience-grid--7 .audience-item:nth-child(n+5) { border-top: 1px solid var(--hairline); }
.audience-grid--7 .audience-item:nth-child(7) { border-right: none; }

@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-item:nth-child(2) { border-right: none; }
  .audience-grid--7 { grid-template-columns: repeat(3, 1fr); }
  .audience-grid--7 .audience-item:nth-child(4) { border-right: 1px solid var(--hairline); }
  .audience-grid--7 .audience-item:nth-child(3n) { border-right: none; }
  .audience-grid--7 .audience-item:nth-child(n+4) { border-top: 1px solid var(--hairline); }
}
@media (max-width: 560px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-item { border-right: none; border-bottom: 1px solid var(--hairline); }
  .audience-item:last-child { border-bottom: none; }
  .audience-grid--7 { grid-template-columns: 1fr 1fr; }
  .audience-grid--7 .audience-item:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .audience-grid--7 .audience-item:nth-child(2n) { border-right: none; }
}

/* -------- Method -------- */
.method { background: var(--surface-soft); }
.method-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: end;
}
.method-head p { font-size: clamp(17px, 1.4vw, 21px); color: var(--ink-mid); margin: 0; }
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}
.pillars.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) {
  .pillars.four { grid-template-columns: 1fr 1fr; }
  .pillars.four .pillar:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) { .pillars.four { grid-template-columns: 1fr; } }
.pillar {
  padding: 32px clamp(20px, 2vw, 28px);
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px;
}
.pillar:last-child { border-right: none; }
.pillar h3 { margin: 4px 0 4px; }
.pillar p { color: var(--ink-mid); font-size: 16.5px; margin: 0; }

@media (max-width: 900px) {
  .method-head { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--hairline); }
  .pillar:last-child { border-bottom: none; }
}

/* -------- Practice -------- */
.practice-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(40px, 6vw, 64px);
  align-items: end;
}
.practice-head p { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-mid); margin: 0; }
@media (max-width: 900px) { .practice-head { grid-template-columns: 1fr; } }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.practice-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
}
.practice-card:hover { transform: translateY(-3px); border-color: var(--brand); }
.practice-card .ph {
  aspect-ratio: 16/10;
  border-radius: 4px;
  background: var(--surface-deeper);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.practice-card .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.practice-card:hover .ph img { transform: scale(1.04); }
.practice-card .ph::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(to top, oklch(15% 0.025 240 / 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}
.practice-card .ph::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 11px;
  font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 0.05em; font-weight: 500;
  text-transform: capitalize;
  color: oklch(96% 0.02 230 / 0.96);
  z-index: 2;
}
.practice-card h3 { margin: 0; }
.practice-card p { color: var(--ink-mid); font-size: 15.5px; margin: 0; }
.practice-card .card-foot {
  margin-top: auto; padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hairline-soft);
}
.practice-card .card-foot a {
  font-family: var(--font-heading);
  color: var(--ink); font-weight: 600; font-size: 13.5px;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}
.practice-card .card-foot a:hover { color: var(--brand-deep); border-color: var(--brand-deep); }

.practice-card.featured { grid-column: span 3; }
.practice-card.featured .ph { aspect-ratio: 16/8; }
.practice-card.featured h3 { font-size: clamp(24px, 2.2vw, 32px); }
.practice-card.featured p { font-size: 16.5px; max-width: 50ch; }
.practice-card.standard { grid-column: span 2; }

/* Wide card (Corporate) spans full row at every breakpoint */
.practice-card.full {
  grid-column: 1 / -1;
  padding: clamp(28px, 3vw, 40px);
}
.practice-card.full .full-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.practice-card.full .ph { aspect-ratio: 4/3; margin: 0; }
.practice-card.full h3 { margin: 0 0 8px; }
.practice-card.full p  { margin: 0 0 14px; }

@media (max-width: 1080px) {
  .practice-grid { grid-template-columns: repeat(4, 1fr); }
  .practice-card.featured { grid-column: span 2; }
  .practice-card.standard { grid-column: span 2; }
}
@media (max-width: 760px) {
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .practice-card.featured,
  .practice-card.standard { grid-column: span 1; }
  .practice-card.full .full-inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card.featured,
  .practice-card.standard { grid-column: span 1; }
}

/* Simple 3-up variant (no featured/standard spans) */
.practice-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .practice-grid--three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .practice-grid--three { grid-template-columns: 1fr; } }

/* -------- Book -------- */
.book {
  background: var(--surface-deeper);
  position: relative;
}
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.book-cover {
  max-width: 360px;
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow:
    -2px 0 0 oklch(20% 0.02 240 / 0.18),
    20px 30px 40px -10px oklch(20% 0.04 240 / 0.30),
    8px 12px 24px -8px oklch(20% 0.04 240 / 0.22);
  transform: rotate(-2.5deg);
  transition: transform 500ms var(--ease);
}
.book-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.book-cover:hover { transform: rotate(0deg); }
.book-content .eyebrow { color: var(--brand-deep); }
.book-content h2 { margin-bottom: 18px; }
.book-content .pull-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 24px 0 12px;
  padding-left: 18px;
  border-left: 1px solid var(--brand);
  max-width: 36ch;
}
.book-content .retailers {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.book-content .retailer {
  font-family: var(--font-heading);
  font-size: 12.5px; font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--ink); border-radius: 999px; color: var(--ink);
  transition: all 200ms var(--ease);
}
.book-content .retailer:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-cover { margin: 0 auto; transform: none; }
}

/* -------- Guides -------- */
.guides-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}
.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 48px;
}
.guide {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}
.guide-portrait {
  aspect-ratio: 4/5;
  background: var(--surface-deeper);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.guide-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.guide-portrait::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 35%;
  background: linear-gradient(to top, oklch(15% 0.025 240 / 0.5), transparent);
  pointer-events: none;
}
.guide-portrait::after {
  content: attr(data-name);
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 0.04em; font-weight: 500;
  color: oklch(96% 0.02 230 / 0.95);
}
.guide-body h3 { margin: 8px 0 12px; }
.guide-body .role {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--brand-deep); margin: 0 0 12px;
}
.guide-body p { color: var(--ink-mid); font-size: 16px; margin: 0; max-width: 38ch; }

@media (max-width: 900px) {
  .guides-head  { grid-template-columns: 1fr; }
  .guides-grid  { grid-template-columns: 1fr; }
  .guide        { grid-template-columns: 1fr; }
  .guide-portrait { aspect-ratio: 4/5; max-width: 360px; }
}

/* -------- Stories -------- */
.stories { background: var(--surface-soft); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--hairline);
}
.story {
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2vw, 32px);
  border-right: 1px solid var(--hairline);
  position: relative;
}
.story:last-child { border-right: none; }
.story::before {
  content: "“";
  font-family: var(--font-heading);
  font-size: 90px; line-height: 1;
  font-weight: 700;
  color: var(--brand);
  position: absolute; top: 14px; left: 18px;
  opacity: 0.7;
}
.story p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5;
  margin: 36px 0 20px;
  color: var(--ink);
}
.story cite {
  font-family: var(--font-heading);
  font-style: normal; font-weight: 500;
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.story--video {
  padding: clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--hairline);
}
.story--video:nth-child(3n) { border-right: none; }
.story--video:nth-child(n+4) { border-top: 1px solid var(--hairline); }
.story--video:last-child { border-right: none; }
.story--video::before { display: none; }
.testimonial-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  background: var(--ink);
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: 1fr; }
  .story { border-right: none; border-bottom: 1px solid var(--hairline); }
  .story:last-child { border-bottom: none; }
  .story--video { border-right: none; border-bottom: 1px solid var(--hairline); }
  .story--video:last-child { border-bottom: none; }
  .video-placeholder { max-width: 280px; margin: 0 auto; }
}

/* -------- Lead magnet (photo + yellow drench split) -------- */
.lead-drench {
  background: var(--cta);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(440px, 58vh, 620px);
  overflow: hidden;
  position: relative;
  padding: 0;
}
.lead-photo {
  margin: 0;
  position: relative;
  background: var(--surface-deeper);
  overflow: hidden;
}
.lead-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lead-photo::after {
  /* a faint amber tint that bridges photo to the yellow side */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 70%, oklch(85% 0.13 95 / 0.18) 100%);
  pointer-events: none;
}
.lead-content {
  background: var(--cta);
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 80px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.lead-content::after {
  content: ""; position: absolute; right: -12%; bottom: -32%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, oklch(95% 0.10 100 / 0.5), transparent 65%);
  pointer-events: none;
}
.lead-inner {
  max-width: 520px;
  position: relative; z-index: 1;
}
.lead-inner .eyebrow { color: oklch(28% 0.06 100); }
.lead-inner h2 {
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 14ch;
}
.lead-inner p {
  color: oklch(28% 0.04 100);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 38ch;
}
.lead-form {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px;
}
.lead-form input {
  flex: 1; min-width: 220px;
  padding: 15px 18px;
  font-family: var(--font-body); font-size: 15.5px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}
.lead-form input::placeholder { color: oklch(38% 0.04 100); }
.lead-form input:focus { outline: 2px solid var(--ink); outline-offset: 2px; }
.lead-form .btn { background: var(--ink); color: var(--cta); border-color: var(--ink); }
.lead-form .btn:hover { background: var(--ink-surface-2); }

@media (max-width: 900px) {
  .lead-drench { grid-template-columns: 1fr; min-height: 0; }
  .lead-photo  { min-height: 320px; }
}

/* -------- FAQ -------- */
.faq { background: var(--surface); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
}
.faq-grid h2 { max-width: 12ch; }
.faq-grid > div:last-child { border-top: 1px solid var(--hairline); }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-heading); font-size: 26px; font-weight: 400;
  color: var(--brand-deep);
  transition: transform 300ms var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-mid); margin: 12px 0 0; font-size: 16.5px; max-width: 62ch; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* -------- Final band (ink drench + breathwork photo) -------- */
.final {
  background: var(--ink-surface);
  color: var(--paper);
  padding: clamp(96px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.final-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.85);
}
.final::before {
  content: ""; position: absolute; top: -10%; left: -10%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, oklch(50% 0.13 235 / 0.35), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.final::after {
  content: ""; position: absolute; right: -5%; bottom: -25%;
  width: 50%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, oklch(80% 0.15 100 / 0.18), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.final .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: end;
}
.final h2 {
  color: var(--cta);
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.final p { color: var(--paper-soft); max-width: 32ch; margin: 0 0 24px; }
.final .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 900px) {
  .final .container { grid-template-columns: 1fr; }
}

/* -------- Footer -------- */
.footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
  margin-bottom: 40px;
}
.foot-grid h4 {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; font-size: 15px; line-height: 2; }
.foot-grid a { color: var(--ink-mid); }
.foot-grid a:hover { color: var(--brand-deep); }
.foot-grid .brand img { width: auto; height: 56px; }
.foot-tag { color: var(--ink-mid); max-width: 32ch; margin-top: 14px; font-size: 14.5px; }
.foot-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 12px; color: var(--ink-soft);
}

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   RETREATS PAGE — additional patterns
   ========================================================== */

/* ---- Two-col image + text (reused for "What is a retreat") ---- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.two-col-photo {
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-deeper);
}
.two-col-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ---- Retreats: timeline ---- */
.r-timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-top: 40px;
}
.r-timeline {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--hairline);
  padding-left: 32px;
  margin-left: 6px;
}
.r-step { position: relative; padding-bottom: 28px; }
.r-step:last-child { padding-bottom: 0; }
.r-step::before {
  content: ""; position: absolute; left: -39px; top: 7px;
  width: 13px; height: 13px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--surface-soft);
}
.r-step h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
  letter-spacing: 0;
}
.r-step p { color: var(--ink-mid); font-size: 14.5px; margin: 0; max-width: 50ch; }
@media (max-width: 900px) { .r-timeline-grid { grid-template-columns: 1fr; } }

/* ---- Journeys: photo stack ---- */
.bw-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.bw-photo-top {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-deeper);
}
.bw-photo-bottom {
  margin: 0 0 0 32px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-deeper);
}
.bw-photo-top img,
.bw-photo-bottom img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .bw-photo-bottom { margin-left: 0; }
}

/* ---- Journeys: breathwork explainer ---- */
.bw-explainer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bw-block h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.bw-block p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}
.bw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.bw-tags span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 5px 14px;
}
.bw-closing {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-mid);
  border-left: 3px solid var(--brand);
  padding-left: 16px;
  margin: 0;
  max-width: 48ch;
}

/* ---- Retreats: use-cases grid ---- */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.usecase {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.usecase h3 { font-size: 20px; margin: 0 0 8px; font-weight: 600; }
.usecase p { color: var(--ink-mid); margin: 0; font-size: 15.5px; }
@media (max-width: 900px) { .usecases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .usecases { grid-template-columns: 1fr; } }

/* ---- Retreats: included / bring (checklists in cards) ---- */
.check-grid { display: grid; gap: 20px; margin-top: 40px; }
.check-grid.two   { grid-template-columns: 1fr 1fr; }
.check-grid.three { grid-template-columns: repeat(3, 1fr); }
.check-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
}
.check-card h3 { font-size: 22px; margin: 0 0 18px; font-weight: 600; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink);
  border-top: 1px solid var(--hairline-soft);
}
.check-list li:first-child { border-top: none; padding-top: 4px; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand);
}
.check-list li:first-child::before { top: 10px; }
.check-list.crossed li::before {
  background: transparent;
  border: 1px solid var(--ink-soft);
}
.check-list.crossed li::after {
  content: ""; position: absolute; left: 4px; top: 24px;
  width: 6px; height: 1px; background: var(--ink-soft);
}
.check-list.crossed li:first-child::after { top: 16px; }
@media (max-width: 900px) { .check-grid.two, .check-grid.three { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1180px) { .check-grid.three { grid-template-columns: 1fr 1fr; } }

/* ---- Retreats: upcoming cohorts ---- */
.cohorts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cohort {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 4px;
}
.cohort .eyebrow { margin: 0 0 6px; }
.cohort h3 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.cohort .meta { color: var(--ink-soft); font-size: 14px; margin: 6px 0 22px; }
.cohort .btn { width: 100%; justify-content: center; margin-top: auto; }
@media (max-width: 900px) { .cohorts { grid-template-columns: 1fr; } }

/* ---- Retreats: facilitators (Option B — typographic-first) ---- */
.fac-list {
  margin-top: 48px;
  border-bottom: 1px solid var(--brand);
}
.fac-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 260px);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: 1px solid var(--brand);
  align-items: start;
}
.fac-name {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
}
.fac-role {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-deep);
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}
.fac-rule {
  display: block;
  width: 88px; height: 1px;
  background: var(--brand);
  margin: clamp(24px, 3vw, 36px) 0;
}
.fac-text p {
  color: var(--ink-mid);
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 60ch;
}
.fac-text p:last-child { margin-bottom: 0; }
.fac-text em { color: var(--ink); font-style: italic; }
.fac-text strong { color: var(--ink); font-weight: 600; }
.fac-photo {
  margin: 0;
  aspect-ratio: 3/4;
  max-width: 260px;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-deeper);
  align-self: start;
  justify-self: end;
}
.fac-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .fac-card { grid-template-columns: 1fr; }
  .fac-photo { max-width: 280px; justify-self: start; order: -1; }
}

/* ---- Book page: formats grid ---- */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.format-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 4px;
}
.format-card .eyebrow { margin: 0 0 8px; }
.format-card .price {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.format-card .meta { color: var(--ink-soft); font-size: 14px; margin: 8px 0 22px; }
.format-card .btn { width: 100%; justify-content: center; margin-top: auto; }
@media (max-width: 700px) { .formats-grid { grid-template-columns: 1fr; } }

/* ---- Pull-quote variant of .cta-mid ---- */
.cta-mid.quote .container {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  gap: 0;
}
.cta-mid.quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.35;
  color: var(--paper);
  margin: 0 0 22px;
  max-width: 24ch;
}
.cta-mid.quote cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cta);
}

/* ---- Book page: rating + global retailers ---- */
.rating {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  margin: 18px 0 28px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.rating .stars { color: var(--cta-deep); font-size: 16px; letter-spacing: 0.04em; }
.retailers-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.retailers-row .label {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  align-self: center;
  margin-right: 4px;
}
.retailers-row a {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--ink); border-radius: 999px; color: var(--ink);
  transition: all 200ms var(--ease);
}
.retailers-row a:hover { background: var(--ink); color: var(--paper); }

/* ---- Journeys: calendar strip (compact date cards) ---- */
.journey-dates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.journey-date {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 20px;
  background: var(--surface);
  display: flex; flex-direction: column;
  text-align: center;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}
.journey-date:hover { border-color: var(--brand); transform: translateY(-2px); }
.journey-date .day {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--brand-deep);
  text-transform: capitalize;
  font-weight: 600;
}
.journey-date .date {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 4px 0;
  color: var(--ink);
}
.journey-date .time {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
}
.journey-date .spots {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--ink-soft);
  margin: 10px 0 16px;
}
.journey-date .btn { width: 100%; justify-content: center; }
@media (max-width: 980px) { .journey-dates { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .journey-dates { grid-template-columns: 1fr; } }

/* ---- Book page: mobile sticky bottom bar ---- */
.book-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  padding: 12px 16px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 60;
  font-size: 13px;
  font-family: var(--font-heading);
}
.book-sticky .meta { color: var(--ink-soft); }
.book-sticky > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.book-sticky .btn-sm { flex-shrink: 0; }
@media (max-width: 860px) {
  .book-sticky { display: flex; }
  body { padding-bottom: 70px; }
}

/* ---- Retreats: hero with 4 meta chips ---- */
.r-hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}
.r-hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.r-hero-meta strong { color: var(--ink); font-weight: 600; }

/* ---- Mid-page CTA band (compact variant of .final) ---- */
.cta-mid {
  background: var(--ink-surface);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-mid-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.30;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.85);
}
.cta-mid::before {
  content: ""; position: absolute; top: -10%; right: -8%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, oklch(50% 0.14 235 / 0.4), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.cta-mid::after {
  content: ""; position: absolute; bottom: -25%; left: -8%;
  width: 45%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, oklch(80% 0.15 100 / 0.16), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.cta-mid .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
.cta-mid h2 {
  color: var(--cta);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  margin: 0;
  max-width: 16ch;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.cta-mid p {
  color: #fff;
  max-width: 34ch;
  margin: 0 0 24px;
}
.cta-mid .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) {
  .cta-mid .container { grid-template-columns: 1fr; }
}

/* -------- A11y -------- */
:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------- Nav dropdown -------- */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.dd-caret { font-size: 10px; line-height: 1; transition: transform .2s var(--ease); }
.has-dropdown:hover .dd-caret,
.has-dropdown:focus-within .dd-caret { transform: rotate(180deg); }
.has-dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.nav-dropdown {
  list-style: none; margin: 0; padding: 6px;
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 172px;
  background: var(--surface);
  border: 1px solid color-mix(in oklch, var(--ink) 10%, transparent);
  border-radius: 8px;
  box-shadow: 0 14px 34px color-mix(in oklch, var(--ink) 26%, transparent);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 60;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block; padding: 9px 14px; border-radius: 5px;
  white-space: nowrap; color: var(--ink); font-size: 14px; padding-block: 9px;
}
.nav-dropdown a:hover { background: var(--surface-soft); color: var(--ink); }
.nav-dropdown a.active { font-weight: 700; }
.nav-dropdown a.active::after { display: none; }
.nav-drawer .nav-dropdown {
  position: static; transform: none; opacity: 1; visibility: visible;
  box-shadow: none; border: 0; background: transparent;
  padding: 2px 0 6px 14px; min-width: 0;
}
.nav-drawer .dd-caret { display: none; }
.nav-drawer .nav-dropdown a { padding: 8px 0; font-size: 15px; }

/* -------- Gallery (masonry) -------- */
.r-gallery { background: var(--surface-soft); }
.masonry {
  column-count: 4;
  column-gap: 14px;
}
.masonry-item {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  line-height: 0;
  box-shadow: 0 1px 4px color-mix(in oklch, var(--ink) 12%, transparent);
  transition: transform .25s ease, box-shadow .25s ease;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter .25s ease;
}
.masonry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px color-mix(in oklch, var(--ink) 22%, transparent);
}
.masonry-item:hover img { filter: brightness(1.05); }
@media (max-width: 1000px) { .masonry { column-count: 3; } }
@media (max-width: 680px)  { .masonry { column-count: 2; } }

/* -------- Lightbox -------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklch, var(--ink) 92%, black);
  padding: clamp(16px, 4vw, 56px);
}
.lightbox[hidden] { display: none; }
.lb-stage {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-stage figcaption {
  color: var(--paper-soft);
  font-size: 14px;
  text-align: center;
  max-width: 60ch;
}
.lb-close, .lb-nav {
  position: absolute;
  background: color-mix(in oklch, var(--paper) 14%, transparent);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lb-close:hover, .lb-nav:hover {
  background: color-mix(in oklch, var(--paper) 30%, transparent);
}
.lb-close {
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 34px;
  line-height: 1;
}
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-prev { left: clamp(8px, 2vw, 28px); }
.lb-next { right: clamp(8px, 2vw, 28px); }
.lb-count {
  position: absolute;
  bottom: clamp(12px, 3vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--paper-soft);
  font-size: 13px;
  letter-spacing: .05em;
}
@media (max-width: 680px) {
  .lb-nav { width: 44px; height: 44px; font-size: 28px; }
}

/* -------- Retreat schedule accordion -------- */
.retreat-schedule { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.sched-day {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.sched-day summary {
  cursor: pointer;
  padding: 18px 24px;
  background: var(--surface-soft);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.sched-day summary::-webkit-details-marker { display: none; }
.sched-day summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: var(--brand-deep);
  transition: transform .2s var(--ease);
}
.sched-day[open] summary::after { content: "−"; }
.sched-day-label {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.sched-list {
  list-style: none;
  margin: 0;
  padding: 12px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sched-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--hairline-soft);
  padding-bottom: 10px;
}
.sched-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sched-time {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
  white-space: nowrap;
  padding-top: 2px;
}
@media (max-width: 560px) {
  .sched-list li { grid-template-columns: 1fr; gap: 2px; }
  .sched-time { font-size: 12px; }
}

/* ── Video testimonials grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-card figcaption {
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-top: 1px solid var(--hairline);
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* -------- Legal pages (Privacy / Terms / Messaging Terms) -------- */
#legal-content p, #legal-content ul { max-width: none; }
