/* ============================================================
   Program Detail Pages — shared styles
   ============================================================ */

/* Theme variants: light (academia) is default, dark (corporate) overrides */
body.pd-light { background: var(--ivory-soft); color: var(--ink); }
body.pd-dark  { background: var(--night); color: var(--bone); }
body.pd-light .site-header { color: var(--ink); }
body.pd-dark .site-header  { color: var(--bone); }

/* ============ Refined Breadcrumb ============ */
.pd-crumb {
  padding: 100px 0 0;
  max-width: 1400px;
  margin: 0 auto;
}
.pd-crumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 36px 0;
  border-top: 1px solid rgba(127,127,127,0.14);
}
.pd-dark .pd-crumb-row { border-top-color: rgba(201,162,77,0.20); }

.pd-trail {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
}
.pd-trail a {
  padding: 12px 0;
  opacity: 0.55;
  color: inherit;
  transition: opacity 0.25s, color 0.25s;
}
.pd-trail a:hover { opacity: 1; color: var(--gold-deep); }
.pd-dark .pd-trail a:hover { color: var(--gold); }
.pd-trail .sep {
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.22;
  margin: 0 16px;
}
.pd-trail .current {
  padding: 12px 0;
  color: var(--gold-deep);
  opacity: 1;
  font-weight: 600;
}
.pd-dark .pd-trail .current { color: var(--gold); }

.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.25s, color 0.25s, gap 0.3s var(--ease-out);
}
.pd-back:hover { opacity: 1; color: var(--gold-deep); gap: 16px; }
.pd-dark .pd-back:hover { color: var(--gold); }
.pd-back .ar {
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
}
.pd-back .ar::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 5px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 700px) {
  .pd-crumb-row { padding: 18px 22px 0; gap: 14px; }
  .pd-trail { font-size: 9px; letter-spacing: 0.26em; }
  .pd-trail .sep { width: 14px; margin: 0 10px; }
}

/* ============ Hero ============ */
.pd-hero {
  padding: 50px 36px 110px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pd-light.pd-hero, .pd-light .pd-hero {
  background:
    radial-gradient(ellipse at 80% -10%, rgba(201,162,77,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201,162,77,0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
}
.pd-dark.pd-hero, .pd-dark .pd-hero {
  background:
    radial-gradient(ellipse at 80% -10%, rgba(201,162,77,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201,162,77,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--night-soft) 0%, var(--night) 100%);
}
.pd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,127,127,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,127,127,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black, transparent 75%);
  z-index: -1;
}
.pd-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.pd-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.pd-dark .pd-tag { color: var(--gold); }
.pd-tag .l { width: 40px; height: 1px; background: currentColor; }

.pd-hero h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.pd-hero h1 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-hero h1 em { color: var(--gold); }

.pd-tagline {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
  margin: 32px 0 0;
  max-width: 620px;
  color: rgba(11,11,11,0.7);
}
.pd-dark .pd-tagline { color: var(--bone-mute); }

.pd-hero-meta {
  display: grid;
  gap: 18px;
  padding-bottom: 8px;
}
.pd-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(127,127,127,0.18);
  font-size: 13px;
  line-height: 1.5;
}
.pd-meta-row:last-child { border-bottom: 1px solid rgba(127,127,127,0.18); }
.pd-meta-row .lbl {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.pd-dark .pd-meta-row .lbl { color: var(--gold); }
.pd-meta-row .val { font-weight: 500; }
.pd-dark .pd-meta-row { border-top-color: rgba(201,162,77,0.18); }
.pd-dark .pd-meta-row:last-child { border-bottom-color: rgba(201,162,77,0.18); }

.pd-hero-cta {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .pd-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pd-hero { padding: 30px 22px 70px; }
  .pd-crumb { padding: 90px 22px 0; }
}

/* ============ Why / Lead section ============ */
.pd-lead {
  padding: 120px 36px;
}
.pd-light .pd-lead { background: var(--ivory); }
.pd-dark .pd-lead  { background: var(--night-soft); }
.pd-lead-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pd-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.pd-dark .pd-section-eyebrow { color: var(--gold); }
.pd-lead h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pd-lead h2 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-lead h2 em { color: var(--gold); }
.pd-lead p {
  font-size: 18px;
  line-height: 1.7;
  margin: 32px auto 0;
  max-width: 760px;
  color: rgba(11,11,11,0.7);
}
.pd-dark .pd-lead p { color: var(--bone-mute); }

/* ============ Framework section ============ */
.pd-fw {
  padding: 140px 36px;
}
.pd-light .pd-fw { background: var(--ivory-soft); }
.pd-dark .pd-fw  { background: var(--night); }
.pd-fw-head {
  max-width: 1100px;
  margin: 0 auto 80px;
  text-align: center;
}
.pd-fw-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  margin: 22px auto 0;
  letter-spacing: -0.01em;
}
.pd-fw-head h2 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-fw-head h2 em { color: var(--gold); }
.pd-fw-head p {
  font-size: 17px;
  line-height: 1.65;
  margin: 22px auto 0;
  max-width: 700px;
  color: rgba(11,11,11,0.7);
}
.pd-dark .pd-fw-head p { color: var(--bone-mute); }

.pd-fw-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 1100px) { .pd-fw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .pd-fw-grid { grid-template-columns: 1fr; } }

/* For frameworks with different letter counts, optimise the layout */
.pd-fw-grid.is-five  { grid-template-columns: repeat(5, 1fr); }
.pd-fw-grid.is-four  { grid-template-columns: repeat(4, 1fr); }
.pd-fw-grid.is-seven { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) {
  .pd-fw-grid.is-five,
  .pd-fw-grid.is-seven { grid-template-columns: repeat(3, 1fr); }
  .pd-fw-grid.is-four  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .pd-fw-grid.is-five,
  .pd-fw-grid.is-four,
  .pd-fw-grid.is-seven { grid-template-columns: 1fr; }
}

.pd-fw-step {
  padding: 28px 26px 26px;
  background: var(--ivory);
  border: 1px solid rgba(201,162,77,0.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.5s, background 0.4s;
  position: relative;
  overflow: hidden;
}
.pd-dark .pd-fw-step {
  background: rgba(201,162,77,0.04);
  border-color: rgba(201,162,77,0.22);
}
.pd-fw-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.pd-dark .pd-fw-step::before { background: var(--gold); }
/* Index number floating top-right */
.pd-fw-step::after {
  content: '0' counter(fw-step);
  counter-increment: fw-step;
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0.45;
  font-weight: 600;
}
.pd-dark .pd-fw-step::after { color: var(--gold); opacity: 0.55; }
.pd-fw-grid { counter-reset: fw-step; }

.pd-fw-step:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,77,0.5);
  box-shadow: 0 30px 50px -25px rgba(11,11,11,0.18);
}
.pd-dark .pd-fw-step:hover { box-shadow: 0 30px 50px -25px rgba(0,0,0,0.5); }
.pd-fw-step:hover::before { transform: scaleX(1); }
.pd-fw-step:hover::after { opacity: 0.9; }

.pd-fw-step .letter {
  font-family: var(--f-display);
  font-weight: 600;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background: var(--ivory-soft);
  border: 1px solid rgba(201,162,77,0.45);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}
.pd-dark .pd-fw-step .letter {
  color: var(--gold);
  background: rgba(201,162,77,0.10);
  border-color: rgba(201,162,77,0.45);
}
.pd-fw-step > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-fw-step .title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.18;
}
.pd-fw-step .desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(11,11,11,0.65);
  margin: 0;
}
.pd-dark .pd-fw-step .desc { color: var(--bone-mute); }

@media (max-width: 700px) {
  .pd-fw-step { padding: 22px 20px; gap: 12px; }
  .pd-fw-step .letter { width: 42px; height: 42px; flex-basis: 42px; font-size: 17px; }
  .pd-fw-step .title { font-size: 19px; }
  .pd-fw-step::after { top: 14px; right: 16px; }
}

/* ============ Inclusions / What's included ============ */
.pd-include {
  padding: 140px 36px;
}
.pd-light .pd-include { background: var(--ivory); }
.pd-dark .pd-include  { background: var(--night-soft); }

.pd-include-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .pd-include-inner { grid-template-columns: 1fr; gap: 50px; } }

.pd-include h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.06;
  margin: 22px 0 0;
  letter-spacing: -0.01em;
}
.pd-include h2 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-include h2 em { color: var(--gold); }
.pd-include .lede {
  font-size: 17px;
  line-height: 1.7;
  margin: 30px 0 0;
  color: rgba(11,11,11,0.7);
}
.pd-dark .pd-include .lede { color: var(--bone-mute); }

.pd-include-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-include-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(127,127,127,0.15);
  align-items: baseline;
}
.pd-include-list li:last-child { border-bottom: 1px solid rgba(127,127,127,0.15); }
.pd-dark .pd-include-list li { border-top-color: rgba(201,162,77,0.18); }
.pd-dark .pd-include-list li:last-child { border-bottom-color: rgba(201,162,77,0.18); }
.pd-include-list .num {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  font-weight: 500;
}
.pd-dark .pd-include-list .num { color: var(--gold); }
.pd-include-list .item {
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.pd-include-list .item .sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,11,11,0.6);
  margin-top: 6px;
  font-weight: 400;
  font-style: normal;
}
.pd-dark .pd-include-list .item .sub { color: var(--bone-mute); }

/* ============ Outcomes ============ */
.pd-outcomes {
  padding: 140px 36px;
  text-align: center;
}
.pd-light .pd-outcomes { background: var(--ivory-soft); }
.pd-dark .pd-outcomes  { background: var(--night); }
.pd-outcomes-head { max-width: 1100px; margin: 0 auto 70px; }
.pd-outcomes-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  margin: 22px auto 0;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.pd-outcomes-head h2 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-outcomes-head h2 em { color: var(--gold); }

.pd-outcomes-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pd-outcomes-grid { grid-template-columns: 1fr; } }
.pd-out-card {
  background: var(--ivory);
  border: 1px solid rgba(201,162,77,0.22);
  padding: 38px 28px;
  text-align: left;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.pd-dark .pd-out-card {
  background: rgba(201,162,77,0.05);
  border-color: rgba(201,162,77,0.22);
}
.pd-out-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,77,0.5);
}
.pd-out-card .ic {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.pd-dark .pd-out-card .ic { color: var(--gold); }
.pd-out-card h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.pd-out-card p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: rgba(11,11,11,0.65);
}
.pd-dark .pd-out-card p { color: var(--bone-mute); }

/* ============ Audience / Who it's for ============ */
.pd-audience {
  padding: 140px 36px;
}
.pd-light .pd-audience { background: var(--ivory); }
.pd-dark .pd-audience  { background: var(--night-soft); }
.pd-aud-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.pd-aud-head {
  max-width: 800px;
  margin: 0 0 60px;
}
.pd-aud-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.06;
  margin: 22px 0 0;
  letter-spacing: -0.01em;
}
.pd-aud-head h2 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-aud-head h2 em { color: var(--gold); }
.pd-aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(127,127,127,0.15);
}
.pd-dark .pd-aud-grid { background: rgba(201,162,77,0.18); }
@media (max-width: 900px) { .pd-aud-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pd-aud-grid { grid-template-columns: 1fr; } }
.pd-aud-cell {
  background: var(--ivory);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-dark .pd-aud-cell { background: var(--night-soft); }
.pd-aud-cell .num {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  font-weight: 500;
}
.pd-dark .pd-aud-cell .num { color: var(--gold); }
.pd-aud-cell h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}
.pd-aud-cell p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(11,11,11,0.65);
}
.pd-dark .pd-aud-cell p { color: var(--bone-mute); }

/* ============ Other programs ============ */
.pd-other {
  padding: 140px 36px;
}
.pd-light .pd-other { background: var(--ivory-soft); border-top: 1px solid rgba(201,162,77,0.22); }
.pd-dark .pd-other  { background: var(--night); border-top: 1px solid rgba(201,162,77,0.18); }
.pd-other-head {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  flex-wrap: wrap;
}
.pd-other-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  margin: 18px 0 0;
  letter-spacing: -0.01em;
}
.pd-other-head h2 em { font-style: italic; color: var(--gold-deep); }
.pd-dark .pd-other-head h2 em { color: var(--gold); }

.pd-other-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .pd-other-grid { grid-template-columns: 1fr; } }

.pd-other-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px;
  background: var(--ivory);
  border: 1px solid rgba(11,11,11,0.08);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  min-height: 240px;
}
.pd-dark .pd-other-card {
  background: rgba(201,162,77,0.04);
  border-color: rgba(201,162,77,0.2);
  color: var(--bone);
}
.pd-other-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,77,0.5);
  box-shadow: 0 30px 60px -25px rgba(11,11,11,0.18);
}
.pd-other-card .tag {
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pd-dark .pd-other-card .tag { color: var(--gold); }
.pd-other-card h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}
.pd-other-card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: rgba(11,11,11,0.65);
}
.pd-dark .pd-other-card p { color: var(--bone-mute); }
.pd-other-card .foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(127,127,127,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(11,11,11,0.55);
}
.pd-dark .pd-other-card .foot { border-top-color: rgba(201,162,77,0.18); color: var(--bone-mute); }
.pd-other-card .foot .go {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  display: grid; place-items: center;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.pd-dark .pd-other-card .foot .go { border-color: var(--gold); color: var(--gold); }
.pd-other-card:hover .foot .go {
  background: var(--gold-deep);
  color: var(--ivory);
  transform: translateX(4px);
}
.pd-dark .pd-other-card:hover .foot .go { background: var(--gold); color: #0B0B0B; }

/* ============ CTA strip ============ */
.pd-cta {
  padding: 160px 36px 140px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pd-light .pd-cta {
  background: linear-gradient(135deg, #14130E 0%, #06060A 100%);
  color: var(--bone);
}
.pd-dark .pd-cta {
  background: linear-gradient(135deg, #14130E 0%, #06060A 100%);
}
.pd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,162,77,0.16), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,162,77,0.08), transparent 60%);
}
.pd-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.pd-cta h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.04;
  margin: 22px 0 0;
  letter-spacing: -0.02em;
}
.pd-cta h2 em { font-style: italic; color: var(--gold); }
.pd-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone-mute);
  max-width: 620px;
  margin: 28px auto 0;
}
.pd-cta .btn-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
  flex-wrap: wrap;
}
