/* ============================================================
   YOGAL · Method page
   Editorial explainer of Iyengar yoga + the five formats.
   ============================================================ */

.page-method { background: var(--paper); }

/* ===== Bold treatment inside body copy =====
   Same lift as lineage.css — Inter at 300 makes <strong>'s default "bolder"
   resolve to 400, which reads as nothing. Bump key body classes to 600/full ink. */
.m-hero-lede strong,
.sig-body strong,
.prop-body strong,
.not-body strong,
.fmt-lede strong,
.fmt-detail strong {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.m-hero-lede strong { color: var(--paper); }


/* ============ HERO ============ */
.m-hero {
  position: relative;
  padding: 200px 0 140px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.m-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.m-hero-bg .bg-fill,
.m-hero-bg img,
.m-hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Override the default .bg-slide filter (warm sepia at 0.72 brightness)
     with a darker treatment so headline + lede stay legible. */
  filter: saturate(0.55) sepia(0.20) brightness(0.38) contrast(1.10);
}
/* Slideshow JS sets opacity inline. Make sure the first slide starts visible
   under the dark overlay so there's no flash of paper-colored page. */
.m-hero-bg .bg-slide {
  filter: saturate(0.55) sepia(0.20) brightness(0.45) contrast(1.10);
  /* Vertical portraits of Chandra: shift focus to upper third so the
     practitioner stays in view through the ken-burns zoom. */
  object-position: center 32%;
}
.m-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(216,175,111,0.18), transparent 60%),
    linear-gradient(180deg, rgba(22,17,11,0.55) 0%, rgba(22,17,11,0.85) 100%);
}

.m-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.m-hero-kicker {
  display: block;
  color: var(--bronze-2);
  margin-bottom: 56px;
}

.m-hero-headline {
  font-size: clamp(48px, 6.5vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 200;
  color: var(--paper);
  margin-bottom: 48px;
  text-wrap: balance;
}
.m-hero-headline em {
  color: var(--bronze-2);
}

.m-hero-lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted-dark);
  max-width: 64ch;
  margin-bottom: 64px;
}

.m-hero-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(247,243,234,0.16);
}
.m-hero-meta li { min-width: 0; }
.m-hero-meta-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-2);
  margin-bottom: 8px;
}
.m-hero-meta-v {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--paper);
}


/* ============ Section-head re-layout (editorial 2-col) ============ */
.signatures .section-head,
.why-iy .section-head,
.props .section-head,
.m-not .section-head,
.formats .section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 32px 80px;
  max-width: 1080px;
  margin-bottom: 96px;
}
.signatures .section-head .section-num,
.why-iy .section-head .section-num,
.props .section-head .section-num,
.m-not .section-head .section-num,
.formats .section-head .section-num {
  grid-column: 1; grid-row: 1;
  white-space: nowrap;
  padding-top: 18px;
  align-self: start;
}
.signatures .section-head h2,
.why-iy .section-head h2,
.props .section-head h2,
.m-not .section-head h2,
.formats .section-head h2 {
  grid-column: 2; grid-row: 1;
  max-width: none;
  margin: 0;
}
.signatures .section-head-meta,
.why-iy .section-head-meta,
.props .section-head-meta,
.m-not .section-head-meta,
.formats .section-head-meta {
  grid-column: 2; grid-row: 2;
  text-align: left;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  max-width: 56ch;
  margin-top: 8px;
}


/* ============ Why Iyengar ============ */
.why-iy {
  padding: var(--space-7) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line-light);
}

.why-grid {
  /* Subgrid: each card's 4 rows align horizontally across all 3 columns.
     Result: stat numbers line up, titles line up, body bottoms line up,
     asides line up. Without subgrid each card is independent and the
     vertical rhythm goes ragged. */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 48px 32px;
  max-width: 1180px;
}

.why-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.why-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bronze);
}
.why-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-3);
  max-width: 30ch;
  line-height: 1.5;
}

.why-card h3 {
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.why-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
  margin: 0;
}
.why-body strong {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.why-foot {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--bronze-3);
  max-width: 86ch;
}
.why-foot em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.78;
}


/* ----- Inline study aside (museum-label) ----- */
.aside {
  margin-top: 8px;
  padding: 20px 22px 18px;
  border-left: 2px solid var(--bronze);
  background:
    linear-gradient(180deg, rgba(216,175,111,0.05) 0%, transparent 100%);
}
.aside-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}
.aside-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.85;
}
.aside-body strong {
  font-weight: 600;
  color: var(--ink);
  opacity: 1;
}
.aside-cite {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--bronze-3);
}
.aside-cite em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}


/* ----- Marks of the method (4-up fact stamps) ----- */
.marks {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--line-light);
}

.marks-head {
  margin-bottom: 32px;
}
.marks-kicker {
  display: block;
}

.marks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.mark {
  background: var(--paper-2);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mark-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--bronze);
}

.mark-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.82;
  text-wrap: pretty;
}
.mark-label strong {
  font-weight: 600;
  color: var(--ink);
  opacity: 1;
}
.mark-label em {
  /* italic-accent inside marks — bigger than the surrounding label
     so titles like "Light on Yoga" actually read as titles. */
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--bronze);
  vertical-align: baseline;
}


/* ----- Menuhin pull quote ----- */
.menuhin {
  margin: 64px auto 0;
  max-width: 760px;
  text-align: center;
  padding: 48px 24px 0;
  border-top: 1px solid var(--line-light);
}
.menuhin blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.menuhin blockquote em { color: var(--bronze); }
.menuhin figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-3);
  line-height: 1.5;
}


/* ============ Four signatures ============ */
.signatures {
  padding: var(--space-7) 0;
  background: var(--paper);
}

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

.sig-card {
  background: var(--paper);
  padding: 48px 40px 44px;
  position: relative;
  transition: background 0.25s ease;
}
.sig-card:hover { background: #fbf6ec; }

.sig-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--bronze-3);
  margin-bottom: 24px;
}

.sig-card h3 {
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}

.sig-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
  max-width: 48ch;
}


/* ============ Props gallery ============ */
.props {
  padding: var(--space-7) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line-light);
}

.section-head--center {
  display: block !important;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-head--center .section-num {
  display: block;
  margin-bottom: 24px;
  color: var(--bronze);
}
.section-head--center h2 {
  margin: 0 0 0;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}

.prop-cell {
  display: flex;
  flex-direction: column;
}

.prop-cell image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  box-shadow:
    0 1px 0 rgba(22,17,11,0.06),
    0 20px 50px -30px rgba(22,17,11,0.35);
  margin-bottom: 24px;
  /* Push the user-supplied src behind the slot's own painted layer so
     image-slot's <img> child fills the box. The slot already does this; the
     selector below adjusts object-position for our prop photos (wide landscapes
     where the subject is bottom-center). */
}
.prop-cell image-slot img {
  object-fit: cover;
  object-position: center 65%;
}

.prop-cell figcaption {
  display: block;
}

.prop-name {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}

.prop-body {
  display: block;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
  max-width: 38ch;
}


/* ============ What it is NOT ============ */
.m-not {
  padding: var(--space-7) 0;
  background: var(--paper);
  border-top: 1px solid var(--line-light);
}

.not-list {
  list-style: none;
  max-width: 1080px;
  margin: 0 auto;
}

.not-row {
  display: grid;
  grid-template-columns: 90px 280px 1fr;
  gap: 0 48px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--line-light);
}
.not-row:last-child { border-bottom: 1px solid var(--line-light); }

.not-no {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-3);
}

.not-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  color: var(--ink);
  /* Heavy strike-through so it reads unambiguously as excluded —
     a thin bronze line on italic Garamond got lost. */
  text-decoration: line-through;
  text-decoration-color: var(--ink);
  text-decoration-thickness: 1.5px;
  text-decoration-skip-ink: none;
}

.not-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
  max-width: 56ch;
}


/* ============ The five formats ============ */
.formats {
  padding: var(--space-7) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line-light);
}

.fmt-list {
  list-style: none;
  max-width: 1080px;
  margin: 0 auto;
}

.fmt {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line-light);
}
.fmt:last-child { border-bottom: 1px solid var(--line-light); }

.fmt-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}

.fmt-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--bronze-3);
}

.fmt-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.fmt-body { max-width: 760px; }

.fmt h3 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.fmt-lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 48ch;
}

.fmt-detail {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.78;
  margin-bottom: 28px;
  max-width: 60ch;
}

.fmt-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-light);
  max-width: 60ch;
}
.fmt-meta-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
  flex-shrink: 0;
}
.fmt-meta-v {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}


/* ============ Final CTA ============ */
.m-cta {
  position: relative;
  padding: var(--space-7) 0 var(--space-8);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  text-align: center;
}

.m-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(216,175,111,0.20), transparent 65%),
    radial-gradient(40% 30% at 80% 100%, rgba(139,106,61,0.18), transparent 70%);
  pointer-events: none;
}

.m-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.m-cta-inner .eyebrow {
  display: block;
  margin-bottom: 32px;
}

.m-cta-inner h2 {
  color: var(--paper);
  margin-bottom: 32px;
}

.m-cta-inner .lede {
  color: var(--muted-dark);
  margin-bottom: 48px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.m-cta-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.m-cta-ctas .btn {
  flex: 0 1 320px;
  min-width: 280px;
  justify-content: space-between;
  padding: 20px 24px;
  min-height: 60px;
  box-sizing: border-box;
  line-height: 1.2;
}


/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .m-hero { padding: 150px 0 100px; }
  .m-hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .why-grid {
    /* Disable subgrid on small viewports — cards stack as full rows. */
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
  }
  .why-card {
    grid-template-rows: auto auto auto auto;
    grid-row: auto;
  }
  .marks-grid { grid-template-columns: repeat(2, 1fr); }

  .sig-grid { grid-template-columns: 1fr; }
  .sig-card { padding: 36px 28px 32px; }

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

  .not-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .not-name { font-size: 28px; }

  .fmt {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .fmt-left { flex-direction: row; align-items: center; padding-top: 0; }
}

@media (max-width: 720px) {
  .signatures .section-head,
  .why-iy .section-head,
  .props .section-head,
  .m-not .section-head,
  .formats .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }
  .signatures .section-head .section-num,
  .why-iy .section-head .section-num,
  .props .section-head .section-num,
  .m-not .section-head .section-num,
  .formats .section-head .section-num {
    grid-column: 1;
    padding-top: 0;
  }
  .signatures .section-head h2,
  .why-iy .section-head h2,
  .props .section-head h2,
  .m-not .section-head h2,
  .formats .section-head h2,
  .signatures .section-head-meta,
  .why-iy .section-head-meta,
  .props .section-head-meta,
  .m-not .section-head-meta,
  .formats .section-head-meta {
    grid-column: 1;
  }

  .props-grid { grid-template-columns: 1fr; }
  .marks-grid { grid-template-columns: 1fr; }
  .fmt-meta { flex-direction: column; gap: 4px; }
}

/* ===== Tablet + phone — CTA buttons stack with equal heights ===== */
@media (max-width: 720px) {
  .m-cta-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
  }
  .m-cta-ctas .btn {
    justify-content: space-between;
    padding: 20px 24px;
    min-height: 60px;
    box-sizing: border-box;
    line-height: 1.2;
  }
}

/* ===== Phone portrait — additive overrides for the method page ===== */
@media (max-width: 480px) {
  .m-hero { padding: 130px 0 72px; }
  .m-hero-meta { grid-template-columns: 1fr; gap: 20px; }
  .m-hero-headline { font-size: clamp(40px, 12vw, 56px); }
  .m-hero-lede { font-size: 16px; margin-bottom: 40px; }

  /* Tighten section internal padding */
  .sig-card { padding: 36px 24px; }
  .mark { padding: 28px 20px 24px; }
  .not-row { padding: 24px 0; }
}
