/**
 * Insights Child — prospectus.css
 *
 * Long-form prospectus page styles. Lifted from
 * insights-prospectus-v2.html (Andre's mockup) with TOPBAR / MENU /
 * FOOTER rules stripped because the WP child theme already provides
 * those globally. Image URLs rewritten to absolute theme paths so the
 * file can be cached without surprises.
 *
 * Enqueued conditionally on page-template-prospectus.php only.
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --crimson: #8B1A1A;
      --crimson-rich: #A30E2A;        /* matches the printed prospectus cover */
      --crimson-bright: #E8192C;
      --crimson-deep: #5C1010;
      --ink: #1a1a1a;
      --charcoal: #2D2D2D;
      --text: #1a1a1a;
      --text-dim: rgba(26,26,26,0.68);
      --text-mute: rgba(26,26,26,0.5);
      --cream: #FFFFFF;
      --paper: #FAFAFA;
      --warm: #F0EAE0;
      --line: rgba(26,26,26,0.08);
      --line-hi: rgba(26,26,26,0.14);
      --tt-green: #B7D2A6;             /* termly themes term 1 */
      --tt-grey: #D2D2D2;              /* term 2 */
      --tt-pink: #D9A8B5;               /* term 3 */
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); font-weight: 400; letter-spacing: 0.005em; line-height: 1.6; -webkit-font-smoothing: antialiased; }
    h1, h2, h3, h4 { font-family: 'Jost', sans-serif; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; }
    .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* PROGRESS BAR */
    .read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--crimson-rich); z-index: 95; transition: width 0.1s linear; }

    /* TOPBAR + MENU stripped — handled by global header.css/menu.css */

    /* ═════════════════════════════════════════════════════════
       PROSPECTUS COVER (matches PDF p1)
       ═════════════════════════════════════════════════════════ */
    .pdf-cover {
      min-height: 92vh;
      background: var(--crimson-rich);
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px;
    }
    .pdf-cover::before,
    .pdf-cover::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    /* Curved decorative shapes echoing the cover artwork */
    .pdf-cover::before {
      width: 90vh;
      height: 90vh;
      top: -20%;
      right: -15%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.04), transparent 50%);
      border: 2px solid rgba(255,255,255,0.05);
    }
    .pdf-cover::after {
      width: 70vh;
      height: 70vh;
      bottom: -10%;
      right: -5%;
      background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 55%);
      border: 2px solid rgba(255,255,255,0.06);
    }
    .pdf-cover-year {
      position: absolute;
      top: 48px;
      right: 64px;
      font-family: 'Jost', sans-serif;
      font-size: 22px;
      font-weight: 300;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.95);
      z-index: 2;
    }
    .pdf-cover-lockup {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 26px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease 0.3s forwards;
    }
    /* Cover mark hidden — the "Insights Independent School" wordmark
       is the cover's brand statement; doubling it with a sphere badge
       reads as a sticker. Sphere stays on the back-cover (.bc-mark). */
    .pdf-cover-mark { display: none; }
    .pdf-cover-name {
      font-family: 'Jost', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      letter-spacing: -0.01em;
      color: #FFFFFF;
    }
    .pdf-cover-tagline {
      position: relative;
      z-index: 2;
      margin-top: 28vh;
      text-align: center;
      font-family: 'Jost', sans-serif;
      font-style: italic;
      font-size: clamp(20px, 2.2vw, 28px);
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.92);
      opacity: 0;
      animation: fadeUp 1s ease 0.7s forwards;
    }

    /* ═════════════════════════════════════════════════════════
       SECTION BASE (each spread)
       ═════════════════════════════════════════════════════════ */
    .spread {
      padding: 96px 0;
      position: relative;
    }
    .spread-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .section-title {
      font-family: 'Jost', sans-serif;
      font-size: clamp(36px, 4.4vw, 56px);
      font-weight: 300;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.05;
      margin-bottom: 48px;
    }
    .section-title em { font-style: italic; color: var(--crimson-rich); }

    /* PULL QUOTE SPREAD (full-bleed photo + quote) */
    .quote-spread {
      padding: 0;
      background: var(--ink);
      color: #FFFFFF;
      min-height: 65vh;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
    }
    .quote-spread::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
      pointer-events: none;
    }
    .quote-spread.qs-classroom { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/classroom-teacher-student.jpg'); }
    .quote-spread.qs-fishing { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/fishing.jpg'); }
    .quote-spread.qs-studio { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/recording-studio.jpg'); }
    .quote-spread.qs-studying { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/student-studying.jpg'); }
    .quote-spread.qs-karting { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/go-karting.jpg'); }
    .quote-spread.qs-music { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/music-keyboards.jpg'); }
    .quote-card {
      position: relative;
      z-index: 2;
      max-width: 460px;
      margin: 56px 56px 0 0;
      padding: 32px 36px;
      background: rgba(26,26,26,0.65);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .quote-card p {
      font-family: 'Jost', sans-serif;
      font-style: italic;
      font-size: clamp(17px, 1.8vw, 22px);
      line-height: 1.4;
      color: rgba(255,255,255,0.95);
      margin-bottom: 14px;
    }
    .quote-card cite {
      font-style: normal;
      font-family: 'Jost', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #FFFFFF;
    }

    /* ═════════════════════════════════════════════════════════
       VALUES SPREAD (PDF p2) — 3 boxes
       ═════════════════════════════════════════════════════════ */
    .values-spread .vs-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .vs-boxes {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .vs-box {
      background: var(--paper);
      padding: 32px 32px;
      border-radius: 2px;
    }
    .vs-box h3 {
      font-family: 'Jost', sans-serif;
      font-size: 26px;
      font-weight: 300;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.005em;
    }
    .vs-box p {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text);
    }
    .vs-photo {
      position: relative;
      aspect-ratio: 4 / 5;
      background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/school-interior.jpg');
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }
    .vs-photo::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
      pointer-events: none;
    }
    .vs-photo-quote {
      position: absolute;
      bottom: 24px;
      right: 24px;
      max-width: 240px;
      text-align: right;
    }
    .vs-photo-quote p {
      font-family: 'Jost', sans-serif;
      font-style: italic;
      font-size: 14px;
      line-height: 1.45;
      color: #FFFFFF;
      margin-bottom: 6px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    .vs-photo-quote cite {
      font-style: normal;
      font-size: 12px;
      font-weight: 600;
      color: #FFFFFF;
    }

    /* ═════════════════════════════════════════════════════════
       WELCOME (PDF p3) — letter + Barbara portrait
       ═════════════════════════════════════════════════════════ */
    .welcome-spread .ws-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 36px;
      align-items: start;
    }
    .ws-col p {
      font-size: 15.5px;
      line-height: 1.65;
      color: var(--text);
      margin-bottom: 14px;
    }
    .ws-col p:first-child::before {
      content: open-quote;
      font-family: 'Jost', sans-serif;
      font-style: italic;
      font-size: 64px;
      line-height: 0.6;
      color: var(--crimson-rich);
      float: left;
      padding-right: 10px;
      padding-top: 18px;
    }
    .ws-byline {
      margin-top: 18px;
      padding-top: 18px;
    }
    .ws-portrait {
      width: 100%;
      max-width: 200px;
      aspect-ratio: 4 / 5;
      background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/barbara-portrait.jpg');
      background-size: cover;
      background-position: center top;
      background-color: #2D1010;
      margin-bottom: 14px;
    }
    .ws-name {
      font-family: 'Jost', sans-serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--text);
    }
    .ws-name strong { font-weight: 600; }
    .ws-role {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 18px;
    }
    .ws-accred {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .ws-accred-badge {
      padding: 8px 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 4px;
      font-size: 10px;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      font-weight: 600;
    }

    /* ═════════════════════════════════════════════════════════
       SCHOOL CHARTER (PDF p4)
       ═════════════════════════════════════════════════════════ */
    .charter-spread .cs-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .charter-box {
      background: var(--paper);
      padding: 40px 36px;
    }
    .charter-box h2 {
      font-family: 'Jost', sans-serif;
      font-size: 30px;
      font-weight: 300;
      margin-bottom: 22px;
    }
    .charter-box .cb-intro {
      font-size: 15px;
      color: var(--text);
      margin-bottom: 16px;
    }
    .charter-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .charter-list li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 14px;
      font-size: 14.5px;
      line-height: 1.55;
      color: var(--text);
    }
    .charter-list li::before {
      content: "";
      display: inline-block;
      width: 12px; height: 12px;
      border: 1px solid var(--ink);
      margin-top: 5px;
    }
    .charter-photo {
      position: relative;
      aspect-ratio: 4 / 5;
      background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/reception-chairs.jpg');
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }
    .charter-photo::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
    }
    .charter-photo-quote {
      position: absolute;
      bottom: 22px;
      right: 22px;
      max-width: 220px;
      text-align: right;
    }
    .charter-photo-quote p {
      font-family: 'Jost', sans-serif;
      font-style: italic;
      font-size: 14px;
      line-height: 1.45;
      color: #FFFFFF;
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
      margin-bottom: 4px;
    }
    .charter-photo-quote cite {
      font-style: normal;
      font-size: 12px;
      font-weight: 600;
      color: #FFFFFF;
    }

    /* ═════════════════════════════════════════════════════════
       TERMLY THEMES (PDF p6) — signature colour grid
       ═════════════════════════════════════════════════════════ */
    .themes-spread .tt-grid {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 1080px;
      margin: 0 auto;
    }
    .tt-banner {
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--text-mute);
      font-weight: 600;
      padding: 4px 0;
    }
    .tt-row {
      display: grid;
      grid-template-columns: 220px 1fr 1fr;
      gap: 14px;
    }
    .tt-term {
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 32px 28px;
      position: relative;
    }
    .tt-term .tt-num {
      font-family: 'Jost', sans-serif;
      font-size: clamp(96px, 11vw, 156px);
      font-weight: 300;
      color: #FFFFFF;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-left: auto;
      margin-right: -6px;
    }
    .tt-term .tt-term-label {
      position: absolute;
      bottom: 22px;
      left: 28px;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #FFFFFF;
      font-weight: 600;
      opacity: 0.9;
    }
    .tt-card {
      aspect-ratio: auto;
      padding: 28px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
    }
    .tt-card h4 {
      font-family: 'Jost', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.005em;
      line-height: 1.25;
    }
    .tt-card .tt-words {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 24px;
      font-size: 15px;
      color: var(--text);
    }
    .tt-term-1 { background: var(--tt-green); }
    .tt-card-1 { background: #DCE9D2; }
    .tt-term-2 { background: var(--tt-grey); }
    .tt-card-2 { background: #E8E8E8; }
    .tt-term-3 { background: var(--tt-pink); }
    .tt-card-3 { background: #ECCFD7; }

    /* ═════════════════════════════════════════════════════════
       3-COLUMN TEXT BLOCK (recurring pattern in PDF)
       ═════════════════════════════════════════════════════════ */
    .three-col-spread .tc-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
    }
    .tc-col h3 {
      font-family: 'Jost', sans-serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 14px;
    }
    .tc-col p {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--text);
      margin-bottom: 14px;
    }
    .tc-col ul {
      list-style: none;
      margin-bottom: 16px;
    }
    .tc-col ul li {
      padding: 4px 0 4px 18px;
      position: relative;
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.4;
    }
    .tc-col ul li::before {
      content: "■";
      position: absolute;
      left: 0;
      font-size: 8px;
      color: var(--ink);
      top: 7px;
    }
    .tc-col-tag {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--crimson-rich);
      font-weight: 700;
      margin-bottom: 10px;
    }

    /* 2-COLUMN SPLIT WITH PHOTO */
    .split-spread .sp-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .split-spread.reverse .sp-inner { direction: rtl; }
    .split-spread.reverse .sp-inner > * { direction: ltr; }
    .sp-text p {
      font-size: 15.5px;
      line-height: 1.65;
      color: var(--text);
      margin-bottom: 14px;
    }
    .sp-photo {
      aspect-ratio: 4 / 3;
      background-size: cover;
      background-position: center;
      background-color: #2D1010;
    }
    .sp-photo.referral { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/referral-interview.jpg'); }
    .sp-photo.beauty { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/beauty-salon.jpg'); }
    .sp-photo.sensory { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/sensory-room.jpg'); }
    .sp-photo.mural { background-image: url('/wp-content/themes/insights-child/assets/img/prospectus/school-exterior-mural.jpg'); }

    /* SUBJECTS / QUALIFICATIONS GRID */
    .subjects-spread .ss-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .subjects-block h3 {
      font-family: 'Jost', sans-serif;
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 18px;
    }
    .subjects-block .sb-intro {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--text);
      margin-bottom: 18px;
    }
    .subjects-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 24px;
    }
    .subjects-list li {
      padding: 4px 0 4px 18px;
      position: relative;
      font-size: 14.5px;
    }
    .subjects-list li::before {
      content: "■";
      position: absolute; left: 0;
      font-size: 8px;
      color: var(--ink);
      top: 7px;
    }

    /* CONTACT SPREAD */
    .contact-spread .ct-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }
    .ct-col h3 {
      font-family: 'Jost', sans-serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .ct-col p {
      font-size: 15px;
      line-height: 1.5;
      color: var(--text);
      margin-bottom: 14px;
    }
    .ct-col .ct-block { margin-bottom: 22px; }

    /* BACK COVER */
    .back-cover {
      min-height: 80vh;
      background: var(--crimson-rich);
      color: #FFFFFF;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .back-cover::before {
      content: "";
      position: absolute;
      width: 90vh; height: 90vh;
      top: -10%; right: -15%;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.05);
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.04), transparent 50%);
    }
    .bc-mark {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: #FFFFFF url('/wp-content/themes/insights-child/assets/img/insights-sphere.png') center / 74% no-repeat;
      box-shadow: 0 8px 28px rgba(0,0,0,0.30);
      margin: 0 auto 28px;
      position: relative;
      z-index: 2;
    }
    .bc-name {
      font-family: 'Jost', sans-serif;
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 300;
      letter-spacing: 0;
      margin-bottom: 24px;
      position: relative; z-index: 2;
    }
    .bc-tagline {
      font-family: 'Jost', sans-serif;
      font-style: italic;
      font-size: clamp(15px, 1.4vw, 19px);
      color: rgba(255,255,255,0.85);
      max-width: 560px;
      position: relative; z-index: 2;
    }

    /* CHAPTER NAV (sticky) */
    .chapter-nav {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .chapter-nav.visible { transform: translateY(0); }
    .chapter-nav-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      gap: 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .chapter-nav-inner::-webkit-scrollbar { display: none; }
    .chapter-nav-label {
      font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--text-mute); font-weight: 700;
      padding-right: 12px; border-right: 1px solid var(--line);
      white-space: nowrap;
    }
    .chapter-nav-items { display: flex; gap: 4px; }
    .cn-item {
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-dim);
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }
    .cn-item:hover { background: var(--paper); color: var(--ink); }
    .cn-item.active { background: var(--crimson-rich); color: #FFF; }

    /* PDF DOWNLOAD STICKY PILL */
    .pdf-pill {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 85;
      display: inline-flex; align-items: center; gap: 12px;
      padding: 14px 22px;
      background: var(--crimson-rich);
      color: #FFFFFF;
      border-radius: 999px;
      font-family: 'Jost', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 14px 32px -10px rgba(163,14,42,0.5);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
    }
    .pdf-pill.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .pdf-pill:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(163,14,42,0.65); }
    .pdf-pill::before {
      content: ""; width: 16px; height: 16px; background: currentColor;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 20h14v-2H5v2zM19 9h-4V3H9v6H5l7 7 7-7z'/%3E%3C/svg%3E") no-repeat center / contain;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 20h14v-2H5v2zM19 9h-4V3H9v6H5l7 7 7-7z'/%3E%3C/svg%3E") no-repeat center / contain;
    }

    /* REVEALS */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s cubic-bezier(0.2,0.6,0.2,1), transform 0.85s cubic-bezier(0.2,0.6,0.2,1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none !important; transition: none !important; } }

    /* FOOTER stripped — handled by global footer.css */

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .pdf-cover { padding: 64px 32px; min-height: 80vh; }
      .pdf-cover-year { top: 28px; right: 32px; font-size: 16px; }
      .pdf-cover-tagline { margin-top: 14vh; }
      .spread { padding: 64px 0; }
      .spread-inner { padding: 0 28px; }
      .values-spread .vs-grid { grid-template-columns: 1fr; }
      .welcome-spread .ws-inner { grid-template-columns: 1fr; gap: 28px; }
      .charter-spread .cs-inner { grid-template-columns: 1fr; gap: 32px; }
      .tt-row { grid-template-columns: 1fr; gap: 8px; }
      .tt-term { aspect-ratio: 16 / 9; }
      .tt-term .tt-num { font-size: 96px; }
      .three-col-spread .tc-inner { grid-template-columns: 1fr; gap: 32px; }
      .split-spread .sp-inner { grid-template-columns: 1fr; gap: 32px; }
      .split-spread.reverse .sp-inner { direction: ltr; }
      .subjects-spread .ss-inner { grid-template-columns: 1fr; gap: 32px; }
      .contact-spread .ct-inner { grid-template-columns: 1fr; gap: 32px; }
      .quote-card { margin: 32px 24px; }
    }
    @media (max-width: 760px) {
      .container { padding: 0 20px; }
      .topbar-inner { padding: 22px 20px 14px; }
      .menu-btn { width: 48px; height: 48px; }
      .overlay-main, .overlay-sub-panel { width: 100vw; padding: 96px 28px 32px 28px; }
      .overlay-sub-panel { padding-top: 120px; }
      .overlay.sub-open .overlay-main { transform: translateX(-100%); }
      .overlay-close { top: 18px; right: 18px; }
      .overlay-logo { top: 22px; left: 28px; }
      .overlay-item .marker { left: -28px; width: 16px; height: 36px; }
      .overlay-utility { grid-template-columns: 1fr; gap: 8px; }
      .overlay-link { font-size: 28px; padding: 10px 0; }
      .pdf-cover-lockup { gap: 18px; }
      .pdf-cover-mark { width: 56px; height: 56px; }
      .pdf-pill { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 11px; }
      .subjects-list { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
  