/* ─── Coming Soon (placeholder pages) ────────────────────────────────────── */
.coming-soon {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 10vw, 120px) 40px;
  text-align: center;
}
.coming-soon-inner {
  max-width: 560px;
}
.coming-soon-inner.coming-soon-inner--wide {
  max-width: 620px;
}
.coming-soon .eyebrow {
  justify-content: center;
}
.coming-soon .display {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.coming-soon-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 36px;
}
.coming-soon-img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  margin-bottom: 32px;
}
.coming-soon-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.coming-soon .foot-social {
  justify-content: center;
  margin-top: 32px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(28px, 4vw, 48px) 0 clamp(40px, 5vw, 64px);
}

.hero > .wrap > .eyebrow {
  margin-bottom: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 8px;
}

.hero h1 {
  margin-top: 6px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cred {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  line-height: 1.9;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.hero-cred b {
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-figure,
.parents-figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-figure {
  overflow: hidden;
}

.hero-figure img,
.parents-figure img,
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure-wrap {
  position: relative;
}

.hero-tag {
  position: absolute;
  top: 24px;
  right: -1px;
  z-index: 3;
  background: var(--pine);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  white-space: nowrap;
}

/* ─── Bridge / intro text ────────────────────────────────────────────────── */
.bridge {
  background: var(--paper);
  text-align: center;
}

.bridge .wrap {
  max-width: 920px;
}

.bridge .eyebrow {
  justify-content: center;
}

.bridge h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.012em;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  margin: 26px 0 30px;
}

.bridge h2 em {
  font-style: italic;
  color: var(--henna);
}

.bridge p {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
}

.bridge .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 34px;
}

/* ─── Values Grid (inside Bridge) ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 640px;
  margin: 48px auto 0;
  text-align: left;
}

.value-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}

.value-em {
  color: var(--henna);
  font-weight: 600;
  font-family: var(--serif);
  font-style: italic;
  white-space: nowrap;
}

.value-vs {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.value-dim {
  color: var(--ink-faint);
}

/* ─── Needs rows ─────────────────────────────────────────────────────────── */
.needs {
  border-top: 1px solid var(--line);
}

.need {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}

.need::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--henna);
  transition: width 0.3s var(--ease);
}

.need:hover {
  padding-left: 30px;
  background: var(--paper-soft);
}

.need:hover::before {
  width: 3px;
}

.need-i {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-faint);
}

.need-main h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.need-main p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-top: 4px;
}

.need-map {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: right;
  max-width: 240px;
  line-height: 1.7;
}

.need.accent .need-main h3 {
  color: var(--henna);
}

.need.accent::before {
  width: 3px;
}

.need .chev {
  font-size: 22px;
  color: var(--ink-faint);
  transition: transform 0.3s var(--ease), color 0.3s;
}

.need:hover .chev {
  transform: translateX(6px);
  color: var(--henna);
}

/* ─── Needs Section (v2) ────────────────────────────────────────────────── */
.needs-section {
  border-top: 1px solid var(--line);
  padding-top: 0;
}

.need-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.need-row .need-map {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.3s;
}

.need-row:hover .need-map {
  color: var(--henna);
}

.need-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--henna);
  transition: width 0.3s var(--ease);
}

.need-row:hover {
  padding-left: 30px;
  background: var(--paper-soft);
}

.need-row:hover::before {
  width: 3px;
}


/* ─── Offerings / Work ───────────────────────────────────────────────────── */
.work {
  background: var(--pine);
  color: var(--paper);
}

.work .eyebrow {
  color: var(--honey);
}

.work .eyebrow::before {
  background: var(--honey);
}

.work .section-title {
  color: var(--paper);
}

.work .section-title em {
  color: var(--honey);
}

.work .lede {
  color: rgba(241, 232, 216, 0.62);
}

.clusters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pine-line);
  border: 1px solid var(--pine-line);
}

.cluster {
  background: var(--pine);
  padding: 36px 32px;
}

.cluster-head {
  margin-bottom: 10px;
}

.cluster-head .ci {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
}

.cluster-head h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.1;
}

.cluster-head p {
  color: rgba(241, 232, 216, 0.5);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
  font-family: var(--serif);
}

.offer {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--pine-line);
  transition: padding 0.28s var(--ease);
}

.offer:hover {
  padding-left: 12px;
}

.offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.offer-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.15;
  transition: color 0.25s;
}

.offer:hover .offer-name {
  color: var(--honey);
}

.offer-dur {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(241, 232, 216, 0.45);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.offer-desc {
  font-size: 14px;
  color: rgba(241, 232, 216, 0.6);
  margin-top: 6px;
  max-width: 30ch;
}

.offer-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 18px;
  display: inline-block;
}

.work-foot {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.work-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(241, 232, 216, 0.75);
  max-width: 40ch;
}

.work .arrow-link {
  color: var(--honey);
}

/* ─── Pathways (v2 Offerings) ───────────────────────────────────────────── */
.pathways {
  background: var(--pine);
  color: var(--paper);
}

.pathways .eyebrow {
  color: var(--honey);
}

.pathways .eyebrow::before {
  background: var(--honey);
}

.pathways .sec-title {
  color: var(--paper);
}

.pathways .sec-title em {
  color: var(--honey);
}

.pathways .lede {
  color: rgba(241, 232, 216, 0.62);
}

.pathway-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pine-line);
  border: 1px solid var(--pine-line);
}

.pathway-col {
  background: var(--pine);
  padding: 36px 32px;
}

.pathway-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 12px;
  display: block;
}

.pathway-col > h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 4px;
}

.pw-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(241, 232, 216, 0.5);
  margin-bottom: 12px;
}

.pw-offer {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--pine-line);
  transition: padding 0.28s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.pw-offer:hover {
  padding-left: 12px;
}

.pw-offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.pw-offer-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.15;
  transition: color 0.25s;
}

.pw-offer:hover .pw-offer-name {
  color: var(--honey);
}

.pw-offer-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(241, 232, 216, 0.45);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pw-offer-desc {
  font-size: 13.5px;
  color: rgba(241, 232, 216, 0.55);
  margin-top: 5px;
  max-width: 32ch;
}

.pw-offer-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--honey);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.pw-offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
  transition: gap 0.25s var(--ease);
}

.pw-offer:hover .pw-offer-cta {
  gap: 14px;
}

.pw-offer--soon {
  opacity: 0.6;
  cursor: default;
}

.pw-offer-cta--soon {
  color: var(--ink-faint);
  font-style: italic;
}

.pathways-foot {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pathways-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(241, 232, 216, 0.75);
  max-width: 40ch;
}

.pathways .arrow-link {
  color: var(--honey);
}

.pathways .arrow-link::after {
  color: var(--honey);
}

.work h2 {
  color: var(--paper);
}

.work h2 em {
  color: var(--honey);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--pine-line);
  border: 1px solid var(--pine-line);
}

.work-card {
  background: var(--pine);
  padding: 36px 32px;
}

.work-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.work-card-head h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
}

.work-dur {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(241, 232, 216, 0.45);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.work-card p {
  font-size: 14.5px;
  color: rgba(241, 232, 216, 0.6);
  line-height: 1.65;
  max-width: 38ch;
}

.work-other {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--pine-line);
}

.work-other h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 14px;
}

.modality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14.5px;
  color: rgba(241, 232, 216, 0.6);
  list-style: none;
  padding: 0;
}

/* ─── Foot CTA actions ──────────────────────────────────────────────────── */
.foot-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ─── For Parents ────────────────────────────────────────────────────────── */
.parents {
  background: var(--paper-soft);
}

.parents-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.parents-figure {
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

/* YouTube Shorts embed (9:16 portrait) */
.parents-video-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: var(--ink-faint, #e8e0d4);
}

.parents-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.parents-copy .section-title {
  margin: 24px 0 24px;
}

.parents-copy p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  max-width: 50ch;
  margin-bottom: 20px;
}

.parents-copy .pquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  border-left: 2px solid var(--henna);
  padding-left: 20px;
  margin: 28px 0;
}

/* ─── About ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
}

.about-figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.about-copy .section-title {
  margin: 22px 0 24px;
}

.about-copy p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 22px;
}

.highlight-link {
  color: var(--henna);
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid var(--henna);
  transition: opacity 0.2s;
}

.highlight-link:hover {
  opacity: 0.8;
}

.cred-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}

.cred {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.cred .cn {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--henna);
}

.cred .ct {
  font-size: 14.5px;
  color: var(--ink);
}

/* ── Social Platform Links (about section) ── */
.social-platforms {
  margin-top: clamp(16px, 2vw, 24px);
}

.social-platforms__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--henna);
  margin-bottom: 10px;
  font-family: var(--mono);
}

.social-platforms__links {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
}

.social-platforms__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-platforms__link:hover {
  color: var(--henna);
}

.social-platforms__link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.social-platforms__link:hover svg {
  opacity: 1;
}

.cred .cl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  margin-left: auto;
  letter-spacing: 0.06em;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.quotes {
  background: var(--pine);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.quotes::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(207, 160, 106, 0.06);
  pointer-events: none;
}

.quotes::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(207, 160, 106, 0.04);
  pointer-events: none;
}

.quotes .eyebrow {
  color: var(--honey);
}

.quotes .eyebrow::before {
  background: var(--honey);
}

/* Featured card: full-width on top */
.q-featured-wrap {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Grid: 5 cards below featured */
.q-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* Base card */
.q-card {
  border-radius: 12px;
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Card variants */
.q-card--featured {
  background: linear-gradient(145deg, rgba(78, 43, 82, 0.7), rgba(58, 28, 62, 0.9));
  border: 1px solid rgba(207, 160, 106, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  padding: clamp(26px, 3.5vw, 36px);
}

.q-card--featured .q-feat-bar {
  width: 4px;
  background: linear-gradient(to bottom, var(--honey), var(--henna));
  border-radius: 2px;
  grid-row: 1 / 4;
}

.q-card--featured::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(207, 160, 106, 0.06);
  pointer-events: none;
}

.q-card--accent {
  background: rgba(158, 92, 54, 0.12);
  border: 1px solid rgba(207, 160, 106, 0.2);
}

.q-card--standard {
  background: rgba(78, 43, 82, 0.4);
  border: 1px solid rgba(106, 64, 112, 0.3);
}

.q-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.q-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--honey);
  opacity: 0.9;
}

.q-card--featured .q-stars svg {
  width: 16px;
  height: 16px;
}

.q-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--honey);
  opacity: 0.4;
  height: 22px;
}

.q-card--featured .q-mark {
  font-size: 4.2rem;
  height: 30px;
}

.q-text {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--paper);
  margin: 8px 0 18px;
  flex: 1;
}

.q-card--featured .q-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

.q-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(207, 160, 106, 0.12);
  gap: 8px;
}

.q-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 229, 236, 0.5);
  margin: 0;
}

.q-service {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey);
  background: rgba(207, 160, 106, 0.1);
  border: 1px solid rgba(207, 160, 106, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.q-more {
  text-align: center;
  margin-top: clamp(20px, 3vw, 28px);
  position: relative;
  z-index: 1;
}

.q-more-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid rgba(207, 160, 106, 0.25);
  border-radius: 24px;
  transition: border-color 0.3s var(--ease);
}

.q-more-link:hover {
  border-color: rgba(207, 160, 106, 0.5);
}

.q-note {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(241, 232, 216, 0.4);
  text-align: center;
  margin-top: 26px;
  letter-spacing: 0.05em;
}

/* ─── Learn ──────────────────────────────────────────────────────────────── */
.learn {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.learn-copy .section-title {
  margin: 22px 0 0;
}

.learn-right p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  max-width: 44ch;
  margin-bottom: 24px;
}

.learn-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 24px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.learn-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.learn-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--henna);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Enquire strip ──────────────────────────────────────────────────────── */
.enquire {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.enquire .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.enquire-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.enquire-text em {
  font-style: italic;
  color: var(--henna);
}

.enquire-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Blog ───────────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.post {
  display: block;
  cursor: pointer;
}

.post-fig {
  aspect-ratio: 3 / 2;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}

.post:hover .post-fig {
  border-color: var(--henna);
}

.post-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--henna);
}

.post h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 12px 0 10px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.post:hover h3 {
  color: var(--henna);
}

.post-read {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── How it works ───────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 34px 30px 34px 0;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step-n {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 0.9;
  color: var(--henna);
  font-style: italic;
}

.step h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 6px;
}

.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 26ch;
}

/* ─── Footer CTA ─────────────────────────────────────────────────────────── */
.foot-cta {
  background: var(--henna);
  color: var(--paper);
  text-align: center;
  padding: clamp(64px, 8vw, 110px) 0;
}

.foot-cta .eyebrow {
  color: rgba(241, 232, 216, 0.7);
  justify-content: center;
}

.foot-cta .eyebrow::before {
  background: rgba(241, 232, 216, 0.6);
}

.foot-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 22px 0 34px;
  letter-spacing: -0.015em;
}

.foot-cta h2 em {
  font-style: italic;
  color: inherit;
}

.foot-cta .btn-primary {
  background: var(--paper);
  color: var(--pine);
  border-color: var(--paper);
}

.foot-cta .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(241, 232, 216, 0.35);
}

/* ─── Work card as link ─────────────────────────────────────────────────── */
.work-card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease);
  cursor: pointer;
}

.work-card--link:hover {
  background: var(--pine-soft);
}

.card-arrow {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--honey);
  margin-top: auto;
  padding-top: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.work-card--link:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Modality Pages ────────────────────────────────────────────────────── */
.modality-hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
}

.modality-hero .display {
  margin-top: 20px;
  margin-bottom: 24px;
}

.modality-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto 28px;
}

.modality-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.modality-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.modality-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--henna);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── About the modality ─────────────────────────────────────────────────── */
.modality-about {
  background: var(--paper-soft);
  padding: clamp(48px, 6vw, 80px) 0;
}

.modality-about-copy {
  max-width: 680px;
}

.modality-about-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin: 22px 0 28px;
  letter-spacing: -0.01em;
}

.modality-about-copy h2 em {
  font-style: italic;
  color: var(--henna);
}

.modality-about-copy p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  max-width: 56ch;
  margin-bottom: 20px;
  line-height: 1.7;
}

.modality-about-copy .pquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  border-left: 2px solid var(--henna);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.5;
}

/* ─── Offering and pricing ───────────────────────────────────────────────── */
.modality-offering {
  background: var(--pine);
  color: var(--paper);
  padding: clamp(48px, 6vw, 80px) 0;
}

.modality-offering .eyebrow {
  color: var(--honey);
}

.modality-offering .eyebrow::before {
  background: var(--honey);
}

.modality-offering h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin: 22px 0 40px;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.modality-offering h2 em {
  font-style: italic;
  color: var(--honey);
}

.modality-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--pine-line);
  border: 1px solid var(--pine-line);
}

.modality-plan {
  background: var(--pine);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.plan-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 14px;
}

.modality-plan h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
}

.plan-desc {
  font-size: 14.5px;
  color: rgba(241, 232, 216, 0.6);
  line-height: 1.65;
  max-width: 38ch;
  margin-bottom: 24px;
}

.plan-details {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 28px;
  margin-top: auto;
}

.plan-duration {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(241, 232, 216, 0.45);
  letter-spacing: 0.05em;
}

.plan-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--honey);
  font-weight: 400;
}

/* ─── "This is for you if" section ──────────────────────────────────────── */
.modality-foryou {
  padding: clamp(48px, 6vw, 80px) 0;
}

.modality-foryou h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin: 22px 0 32px;
  letter-spacing: -0.01em;
}

.modality-foryou h2 em {
  font-style: italic;
  color: var(--henna);
}

.modality-foryou-list {
  list-style: none;
  padding: 0;
  max-width: 680px;
}

.modality-foryou-list li {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.modality-foryou-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--henna);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── Toolkit tags section ─────────────────────────────────────────────── */
.modality-toolkit {
  background: var(--pine);
  color: var(--paper);
  padding: clamp(48px, 6vw, 80px) 0;
}

.modality-toolkit .eyebrow {
  color: var(--honey);
}

.modality-toolkit .eyebrow::before {
  background: var(--honey);
}

.modality-toolkit h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin: 22px 0 12px;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.modality-toolkit h2 em {
  font-style: italic;
  color: var(--honey);
}

.modality-toolkit > .wrap > p {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: rgba(241, 232, 216, 0.6);
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 32px;
}

.toolkit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.toolkit-tags li {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
  border: 1px solid rgba(207, 160, 106, 0.3);
  padding: 10px 20px;
  border-radius: 2px;
}

/* ─── Tarot Videos ──────────────────────────────────────────────────────── */
.tarot-videos {
  padding: clamp(48px, 6vw, 80px) 0;
}
.tarot-videos .eyebrow { margin-bottom: 6px; }
.tarot-videos h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
}
.tarot-videos h2 em { font-style: italic; color: var(--henna); }
.tarot-videos__intro {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.tarot-videos > .wrap > p:not(.eyebrow):not(.tarot-videos__intro) {
  max-width: 64ch;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.tarot-videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tarot-videos__item {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.tarot-videos__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Modality Voices (testimonials on offering pages) ───────────────────── */
.modality-voices {
  padding: clamp(48px, 6vw, 80px) 0;
}
.modality-voices .eyebrow { margin-bottom: 6px; }
.modality-voices h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.modality-voices h2 em { font-style: italic; color: var(--henna); }

.modality-voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 20px;
}

.mv-card {
  border-radius: 12px;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
}
.mv-card--soft {
  background: var(--paper-soft);
}
.mv-card--pine {
  background: var(--pine);
  color: var(--paper);
}

.mv-mark {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 0.5;
  opacity: 0.3;
  height: 18px;
}
.mv-card--soft .mv-mark { color: var(--henna); }
.mv-card--pine .mv-mark { color: var(--honey); }

.mv-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.65;
  margin: 8px 0 16px;
}
.mv-card--soft .mv-text { color: var(--ink-soft); }
.mv-card--pine .mv-text { color: var(--paper); }

.mv-attr {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mv-card--soft .mv-attr { color: var(--ink-faint); }
.mv-card--pine .mv-attr { color: var(--honey); border-top-color: rgba(241,232,216,0.1); }

.modality-voices-more {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modality-voices-more a {
  color: var(--henna);
  text-decoration: none;
}
.modality-voices-more a:hover { text-decoration: underline; }

/* ─── Modality Reads (blog on offering pages) ───────────────────────────── */
.modality-reads {
  background: var(--paper-soft);
  padding: clamp(48px, 6vw, 80px) 0;
}
.modality-reads .eyebrow { margin-bottom: 6px; }
.modality-reads h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.modality-reads h2 em { font-style: italic; color: var(--henna); }

.modality-reads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 20px;
}

.mr-card {
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(14px, 2vw, 18px);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.mr-card:hover {
  box-shadow: 0 4px 20px rgba(58, 28, 62, 0.08);
}

.mr-thumb {
  width: clamp(90px, 12vw, 120px);
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.mr-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mr-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
}

.mr-body p {
  font-family: var(--sans);
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  line-height: 1.5;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modality-reads-more {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modality-reads-more a {
  color: var(--henna);
  text-decoration: none;
}
.modality-reads-more a:hover { text-decoration: underline; }

/* ─── Modality Cross-links ────────────────────────────────────────────────── */
.modality-crosslinks {
  padding: clamp(48px, 6vw, 80px) 0;
}
.modality-crosslinks h2 {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.modality-crosslinks h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--honey);
}
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.crosslink-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.crosslink-card:hover {
  border-color: var(--honey);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.crosslink-card .eyebrow {
  margin-bottom: 6px;
}
.crosslink-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.crosslink-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ─── Modality CTA ───────────────────────────────────────────────────────── */
.modality-cta {
  text-align: center;
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--henna);
  color: var(--paper);
}

.modality-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.modality-cta h2 em {
  font-style: italic;
}

.modality-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(241, 232, 216, 0.75);
  margin-bottom: 32px;
}

.modality-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.modality-cta .btn-primary {
  background: var(--paper);
  color: var(--pine);
}

.modality-cta .btn-primary:hover {
  background: var(--honey);
}

.modality-cta .btn-ghost {
  border-color: rgba(241, 232, 216, 0.4);
  color: var(--paper);
}

.modality-cta .btn-ghost:hover {
  border-color: var(--paper);
}
