/* ============================================================
   NULLIFY 2027 — Sponsorship Prospectus
   Premium editorial / luxe redesign  (front-end only)
   Palette + type layered on top of css/shared.css
   ============================================================ */

:root {
  --gold:        #b3925b;   /* antique gold accent       */
  --gold-soft:   #c9ad7f;
  --gold-line:   rgba(179,146,91,0.42);
  --gold-tint:   #f3ecdf;   /* pale champagne fill        */
  --luxe-navy:   #142639;   /* deep ink navy              */
  --luxe-navy-2: #1d3550;
  --cream:       #faf8f3;   /* ivory page                 */
  --cream-2:     #f4efe5;
  --ivory-line:  #e9e2d4;   /* warm hairline              */
  --luxe-text:   #41506180; /* (unused placeholder)       */
  --luxe-body:   #45586d;
}

body { background: var(--cream); }

/* ── Print / share bar ─────────────────────────────────── */
.print-bar {
  background: var(--luxe-navy);
  padding: 0.85rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  position: sticky; top: 56px; z-index: 100;
  border-bottom: 1px solid var(--gold-line);
}
.print-bar-note {
  font-size: 0.72rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 0.6rem;
}
.print-bar-note::before { content: '✦'; color: var(--gold-soft); font-size: 0.8rem; }
.print-bar-actions { display: flex; gap: 0.7rem; }
.btn-print {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--gold); color: #1b1306;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.2s;
}
.btn-print:hover { background: var(--gold-soft); }
.btn-print-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem; background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em;
  border: 1px solid var(--gold-line); border-radius: 2px;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-print-outline:hover { border-color: var(--gold-soft); color: #fff; }

/* ── Prospectus shell ──────────────────────────────────── */
.prospectus { max-width: 960px; margin: 0 auto; padding: 4.5rem 3rem 7rem; }

/* ── Cover ─────────────────────────────────────────────── */
.cover {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ivory-line);
  padding: 5rem 4rem 4.5rem;
  margin-bottom: 5rem;
  text-align: center;
}
/* thin gold inner frame */
.cover::before {
  content: ''; position: absolute; inset: 14px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.cover::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 40%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cover-inner { position: relative; z-index: 2; }
.cover-event-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2.4rem; justify-content: center;
}
.cover-event-tag::before,
.cover-event-tag::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold-line);
}
.cover-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--luxe-navy); line-height: 1.05;
  letter-spacing: -0.01em; margin-bottom: 1.6rem;
}
.cover-subtitle {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 500; font-size: 1.18rem;
  color: var(--luxe-body); margin: 0 auto 3rem;
  max-width: 620px; line-height: 1.6;
}
.cover-meta {
  display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid var(--ivory-line);
  padding-top: 2.4rem;
}
.cover-meta-item {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0 2rem; text-align: center;
  border-right: 1px solid var(--ivory-line);
}
.cover-meta-item:last-child { border-right: none; }
.cm-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.cm-value {
  font-family: 'Playfair Display', serif; font-size: 1.02rem;
  font-weight: 600; color: var(--luxe-navy);
}

/* ── Section ───────────────────────────────────────────── */
.p-section { margin-bottom: 5rem; }
.p-section-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--luxe-navy); letter-spacing: -0.01em;
  margin-bottom: 1.5rem; padding-bottom: 1.1rem; position: relative;
}
.p-section-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 2px; background: var(--gold);
}
.p-section-body {
  font-size: 1.02rem; color: var(--luxe-body);
  line-height: 1.9; margin-bottom: 1.3rem; max-width: 760px;
}
.p-section-body strong { color: var(--luxe-navy); font-weight: 600; }

/* ── Why sponsor ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.why-card {
  padding: 2rem 1.7rem; background: var(--white);
  border: 1px solid var(--ivory-line); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(20,38,57,0.07); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon { font-size: 1.5rem; margin-bottom: 0.9rem; }
.why-card-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.08rem; color: var(--luxe-navy); margin-bottom: 0.6rem;
}
.why-card-body { font-size: 0.86rem; color: var(--luxe-body); line-height: 1.7; }

/* ── Audience stat strip ───────────────────────────────── */
.audience-strip {
  background: var(--luxe-navy);
  padding: 2.4rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 2.2rem 0; position: relative;
}
.audience-strip::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 35%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.as-item { text-align: center; padding: 0 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.as-item:last-child { border-right: none; }
.as-num {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 2.4rem; color: #fff; line-height: 1; margin-bottom: 0.5rem;
}
.as-label {
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-soft); line-height: 1.5;
}

/* ── Audience two-col ──────────────────────────────────── */
.audience-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 1.6rem; }
.aud-list-card { background: var(--white); border: 1px solid var(--ivory-line); padding: 1.8rem 1.9rem; }
.aud-list-card h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--ivory-line);
}
.aud-list-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.aud-list-card li {
  font-size: 0.88rem; color: var(--luxe-body); line-height: 1.55;
  padding-left: 1.3rem; position: relative;
}
.aud-list-card li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); top: 0;
}

/* ── Topic pills ───────────────────────────────────────── */
.topic-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.topic-pill {
  padding: 0.4rem 1rem; background: var(--cream-2);
  border: 1px solid var(--gold-line); font-size: 0.78rem;
  color: var(--luxe-navy); font-weight: 500; border-radius: 30px;
}

/* ── Programme grid ────────────────────────────────────── */
.programme-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 1.8rem; }
.programme-day-card {
  background: var(--white); border: 1px solid var(--ivory-line);
  border-top: 2px solid var(--gold); padding: 1.8rem 1.6rem;
}
.programme-day-label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.programme-day-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.15rem; color: var(--luxe-navy); margin-bottom: 1rem;
}
.programme-day-card .topic-pills { margin-top: 0; }
.note-text { font-size: 0.85rem; color: var(--luxe-body); margin-top: 1rem; line-height: 1.7; }

/* ── Workshop sponsorship callout ──────────────────────── */
.workshop-sponsor-box {
  margin-top: 1.4rem; padding: 1.5rem 1.8rem;
  background: var(--gold-tint); border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
}
.workshop-sponsor-title {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--luxe-navy);
  margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
}
.workshop-sponsor-body { font-size: 0.86rem; color: var(--luxe-body); line-height: 1.7; }

/* ── Package comparison table ──────────────────────────── */
.pkg-cover-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--ivory-line); margin-top: 1.8rem;
  font-size: 0.85rem; background: var(--white);
}
.pkg-cover-table thead tr { background: var(--luxe-navy); }
.pkg-cover-table thead th {
  padding: 1.1rem 1rem; text-align: left;
  color: rgba(255,255,255,0.65); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pkg-cover-table thead th:first-child { color: #fff; }
.pkg-cover-table thead th.plat-col {
  color: var(--gold-soft);
  font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700;
}
.pkg-cover-table tbody td {
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--ivory-line);
  border-right: 1px solid var(--ivory-line); color: var(--luxe-body); vertical-align: middle;
}
.pkg-cover-table tbody td:first-child { color: var(--luxe-navy); font-weight: 600; background: var(--cream); }
.pkg-cover-table tbody tr:hover td { background: var(--gold-tint); }
.c-check { color: var(--gold); font-weight: 700; }
.c-dash { color: #cfc8b9; }
.pkg-cover-table tfoot td {
  background: var(--luxe-navy); color: #fff; font-weight: 700;
  font-family: 'Playfair Display', serif;
  padding: 1.2rem 1rem; font-size: 1.15rem;
  border-top: 2px solid var(--gold);
}
.pkg-cover-table tfoot td:first-child {
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--gold-soft);
}
.pkg-cover-table tfoot td.plat-td { color: var(--gold-soft); font-size: 1.3rem; }

/* ── Tier detail cards ─────────────────────────────────── */
.tier-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.tier-detail-card {
  background: var(--white); border: 1px solid var(--ivory-line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tier-detail-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,38,57,0.08); }
.tier-detail-card.platinum { border-color: var(--gold); box-shadow: 0 12px 34px rgba(179,146,91,0.14); }
.tier-detail-card.platinum::before {
  content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}
.tdc-header {
  padding: 1.6rem 1.6rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem;
  border-bottom: 1px solid var(--ivory-line);
}
.tdc-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.4rem; color: var(--luxe-navy);
}
.tier-detail-card.platinum .tdc-name { color: var(--gold); }
.tdc-availability {
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--luxe-body);
}
.tdc-price {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 2.3rem; color: var(--luxe-navy);
  padding: 1.3rem 1.6rem 0;
}
.tdc-price-sub {
  font-family: 'Inter', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  padding: 0.25rem 1.6rem 1.3rem;
}
.tdc-features {
  list-style: none; padding: 0 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.6rem; flex: 1;
}
.tdc-features li {
  font-size: 0.84rem; color: var(--luxe-body); line-height: 1.5;
  padding-left: 1.3rem; position: relative;
}
.tdc-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── Add-on table ──────────────────────────────────────── */
.addon-table { width: 100%; border-collapse: collapse; margin-top: 1.6rem; background: var(--white); border: 1px solid var(--ivory-line); }
.addon-table thead tr { background: var(--cream-2); }
.addon-table thead th {
  padding: 0.95rem 1.1rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--luxe-navy);
  text-align: left; border-bottom: 2px solid var(--gold-line);
}
.addon-table tbody td {
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--ivory-line);
  font-size: 0.86rem; color: var(--luxe-body); vertical-align: top;
}
.addon-table tbody td:first-child { font-weight: 600; color: var(--luxe-navy); }
.addon-table tbody td:nth-child(2) {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--gold); font-size: 1.1rem; white-space: nowrap;
}
.addon-table tbody tr:last-child td { border-bottom: none; }
.addon-table tbody tr:hover td { background: var(--gold-tint); }
.excl-badge {
  display: inline-block; font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-line); padding: 0.12rem 0.45rem;
  border-radius: 2px; margin-left: 0.45rem; vertical-align: middle;
}

/* ── Process steps ─────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.process-step {
  padding: 1.8rem 1.5rem; background: var(--white);
  border: 1px solid var(--ivory-line); position: relative;
}
.ps-number {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 2.6rem; color: var(--gold); line-height: 1;
  margin-bottom: 0.8rem; opacity: 0.85;
}
.ps-title {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--luxe-navy); margin-bottom: 0.5rem;
}
.ps-desc { font-size: 0.82rem; color: var(--luxe-body); line-height: 1.65; }

/* ── Terms mini grid ───────────────────────────────────── */
.terms-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.6rem; }
.term-mini {
  padding: 1.5rem 1.7rem; background: var(--white);
  border: 1px solid var(--ivory-line); border-left: 3px solid var(--gold);
}
.term-mini-title {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--luxe-navy); margin-bottom: 0.5rem;
}
.term-mini-body { font-size: 0.83rem; color: var(--luxe-body); line-height: 1.7; }

/* ── Bottom CTA strip ──────────────────────────────────── */
.cta-strip {
  position: relative; overflow: hidden;
  background: var(--luxe-navy);
  padding: 3.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap; margin-top: 4rem;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 16px; border: 1px solid var(--gold-line); pointer-events: none;
}
.cta-strip-text { position: relative; z-index: 2; }
.cta-strip-text h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.7rem; color: #fff; margin-bottom: 0.6rem;
}
.cta-strip-text p { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 440px; line-height: 1.7; }
.cta-strip-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 2; }
.cta-strip .btn-primary {
  background: var(--gold); color: #1b1306; border: none;
  padding: 0.85rem 1.9rem; border-radius: 2px; font-weight: 700;
  letter-spacing: 0.03em; text-decoration: none; display: inline-flex; align-items: center;
  transition: background 0.2s, transform 0.2s;
}
.cta-strip .btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.cta-strip .btn-outline-white {
  background: transparent; color: #fff; border: 1px solid var(--gold-line);
  padding: 0.85rem 1.9rem; border-radius: 2px; font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none; display: inline-flex; align-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.cta-strip .btn-outline-white:hover { border-color: var(--gold-soft); }

/* ── Contact block ─────────────────────────────────────── */
.contact-block { background: var(--white); border: 1px solid var(--ivory-line); margin-top: 1.8rem; overflow: hidden; }
.cb-primary { display: flex; align-items: center; gap: 1.2rem; padding: 1.8rem 2rem; background: var(--luxe-navy); }
.cb-primary-icon { font-size: 1.7rem; color: var(--gold-soft); }
.cb-primary-label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.4rem;
}
.cb-primary-email {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600;
  color: #fff; text-decoration: none; transition: color 0.2s;
}
.cb-primary-email:hover { color: var(--gold-soft); }
.cb-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.6rem 2rem; }
.cb-item { display: flex; flex-direction: column; gap: 0.3rem; }
.cb-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.cb-value { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 600; color: var(--luxe-navy); }
.cb-value a { color: var(--gold); text-decoration: none; }

/* ── Enquiry form (luxe) ───────────────────────────────── */
.sp-section {
  background: var(--cream-2); border: 1px solid var(--ivory-line);
  padding: 4rem 2.5rem; margin-top: 4rem;
}
.sp-inner { max-width: 720px; margin: 0 auto; }
.sp-eyebrow {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  text-align: center; margin-bottom: 1rem;
}
.sp-heading {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--luxe-navy);
  text-align: center; margin-bottom: 0.7rem;
}
.sp-sub {
  font-size: 0.92rem; color: var(--luxe-body);
  text-align: center; max-width: 540px; margin: 0 auto 2.8rem; line-height: 1.7;
}
.sp-card { background: var(--white); border: 1px solid var(--ivory-line); padding: 2.4rem; box-shadow: 0 14px 38px rgba(20,38,57,0.06); }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-bottom: 1.3rem; }
.sp-field { display: flex; flex-direction: column; gap: 0.4rem; }
.sp-field-full { grid-column: 1 / -1; }
.sp-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--luxe-navy);
}
.sp-req { color: var(--gold); }
.sp-input, .sp-select, .sp-textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1px solid var(--ivory-line); border-radius: 2px;
  background: var(--cream); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--luxe-navy); transition: border-color 0.18s, box-shadow 0.18s;
}
.sp-textarea { min-height: 120px; resize: vertical; }
.sp-input:focus, .sp-select:focus, .sp-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179,146,91,0.14);
}
.sp-input::placeholder, .sp-textarea::placeholder { color: var(--text-light); }
.sp-result { padding: 0.85rem 1rem; border-radius: 2px; font-size: 0.85rem; margin-bottom: 1rem; }
.sp-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.sp-submit {
  padding: 0.85rem 2rem; background: var(--gold); color: #1b1306;
  border: none; border-radius: 2px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.sp-submit:hover { background: var(--gold-soft); transform: translateY(-1px); }
.sp-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.sp-or { font-size: 0.78rem; color: var(--luxe-body); }
.sp-or a { color: var(--gold); text-decoration: none; }

/* ── Print ─────────────────────────────────────────────── */
@media print {
  .site-nav, .print-bar, .sp-section, .cta-strip { display: none !important; }
  body { background: #fff; font-size: 12px; }
  .prospectus { padding: 0; max-width: 100%; }
  .cover { border-radius: 0; }
  .p-section { page-break-inside: avoid; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .print-bar { padding: 0.8rem 1.5rem; top: 52px; }
  .prospectus { padding: 3rem 1.5rem 5rem; }
  .cover { padding: 3rem 1.8rem 2.8rem; }
  .cover-meta-item { padding: 0.6rem 1.2rem; border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .audience-strip { grid-template-columns: repeat(2,1fr); gap: 1.5rem 0; }
  .as-item:nth-child(2) { border-right: none; }
  .audience-two-col { grid-template-columns: 1fr; }
  .programme-grid { grid-template-columns: 1fr; }
  .tier-cards-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .terms-mini-grid { grid-template-columns: 1fr; }
  .cb-primary { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .cb-meta-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-card { padding: 1.6rem; }
}
