/*
Theme Name: Murmu Office
Description: Office of the Former President — Smt. Droupadi Murmu. Ported from the design prototype.
Version: 1.0.0
Author: The Flywheel
*/

    /* ─── TOKENS ─────────────────────────────────────────────────── */
    :root {
      --cream:      oklch(97% 0.014 75);
      --cream-mid:  oklch(92% 0.025 72);
      --sand:       oklch(87% 0.035 70);
      --maroon:     oklch(28% 0.08  20);
      --maroon-lt:  oklch(38% 0.09  22);
      --saffron:    oklch(68% 0.18  55);
      --saffron-lt: oklch(80% 0.14  58);
      --gold:       oklch(72% 0.16  75);
      --green:      oklch(40% 0.10 155);
      --text:       oklch(18% 0.03  40);
      --text-mid:   oklch(45% 0.04  40);
      --text-lt:    oklch(62% 0.03  60);
      --border:     oklch(85% 0.03  70);

      --serif: 'Noto Serif', Georgia, serif;
      --sans:  'Noto Sans', system-ui, sans-serif;

      --r-sm: 4px;
      --r:    8px;
      --r-lg: 16px;
    }

    /* ─── RESET ───────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--text);
      font-size: 16px;
      line-height: 1.7;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ─── MOTIF PATTERNS ──────────────────────────────────────────── */
    .motif-border {
      height: 6px;
      background:
        repeating-linear-gradient(
          90deg,
          var(--saffron) 0px, var(--saffron) 10px,
          var(--maroon)  10px, var(--maroon)  20px,
          var(--gold)    20px, var(--gold)    30px,
          var(--maroon)  30px, var(--maroon)  40px
        );
    }
    .motif-border-thin {
      height: 3px;
      background:
        repeating-linear-gradient(
          90deg,
          var(--saffron) 0px, var(--saffron) 6px,
          var(--maroon)  6px, var(--maroon)  12px,
          var(--gold)    12px, var(--gold)    18px,
          var(--maroon)  18px, var(--maroon)  24px
        );
      opacity: 0.6;
    }

    /* Diamond separator */
    .diamond-sep {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 48px 0 40px;
    }
    .diamond-sep::before,
    .diamond-sep::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }
    .diamond-sep span {
      width: 10px; height: 10px;
      background: var(--saffron);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ─── NAV ─────────────────────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--maroon);
      box-shadow: 0 2px 16px oklch(0% 0 0 / .25);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0 32px;
      height: 64px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    /* Ashok Chakra placeholder mark */
    .brand-mark {
      width: 36px; height: 36px;
      border: 2px solid var(--saffron);
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .brand-mark::before {
      content: '✦';
      color: var(--saffron);
      font-size: 14px;
    }
    .brand-text {
      color: var(--cream);
      line-height: 1.25;
    }
    .brand-text {
      color: var(--cream);
      line-height: 1.3;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .brand-text strong {
      display: block;
      font-family: var(--serif);
      font-size: 13px;
      letter-spacing: .02em;
      white-space: nowrap;
    }
    .brand-text span {
      font-size: 10px;
      color: var(--saffron-lt);
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 400;
      white-space: nowrap;
    }
    .nav-links {
      display: flex;
      gap: 6px;
    }
    .nav-links a {
      color: oklch(90% 0.02 70);
      font-size: 12.5px;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: var(--r-sm);
      transition: color .2s, background .2s;
      font-weight: 500;
    }
    .nav-links a:hover {
      color: var(--saffron);
      background: oklch(100% 0 0 / .06);
    }

    /* ─── LAYOUT ──────────────────────────────────────────────────── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      padding: 80px 0;
    }
    section:nth-child(even) {
      background: var(--cream-mid);
    }

    .section-eyebrow {
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(26px, 3vw, 38px);
      color: var(--maroon);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-lead {
      font-size: 17px;
      color: var(--text-mid);
      max-width: 640px;
      line-height: 1.75;
      margin-bottom: 48px;
    }

    /* ─── HERO ────────────────────────────────────────────────────── */
    .hero {
      background: var(--maroon);
      position: relative;
      overflow: hidden;
      min-height: 560px;
      display: flex;
      flex-direction: column;
    }
    /* Geometric background texture */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(
          45deg,
          oklch(100% 0 0 / .025) 0px, oklch(100% 0 0 / .025) 1px,
          transparent 1px, transparent 28px
        ),
        repeating-linear-gradient(
          -45deg,
          oklch(100% 0 0 / .015) 0px, oklch(100% 0 0 / .015) 1px,
          transparent 1px, transparent 28px
        );
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 0;
      align-items: stretch;
    }
    .hero-left {
      padding: 72px 48px 72px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-kicker {
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--saffron-lt);
      font-weight: 500;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-kicker::before {
      content: '';
      width: 28px; height: 1px;
      background: var(--saffron);
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 58px);
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .hero-subtitle {
      font-family: var(--serif);
      font-size: 15px;
      color: var(--saffron-lt);
      letter-spacing: .04em;
      margin-bottom: 24px;
      font-style: italic;
    }
    .hero-desc {
      font-size: 16px;
      color: oklch(85% 0.02 70);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 40px;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--r-sm);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .2s;
      border: 1.5px solid transparent;
    }
    .btn-primary {
      background: var(--saffron);
      color: var(--maroon);
      border-color: var(--saffron);
    }
    .btn-primary:hover {
      background: var(--gold);
      border-color: var(--gold);
    }
    .btn-outline {
      border-color: oklch(100% 0 0 / .3);
      color: var(--cream);
    }
    .btn-outline:hover {
      border-color: var(--saffron);
      color: var(--saffron);
    }
    .btn-outline-dark {
      border-color: var(--maroon);
      color: var(--maroon);
    }
    .btn-outline-dark:hover {
      background: var(--maroon);
      color: var(--cream);
    }

    /* Hero stats bar */
    .hero-stats {
      display: flex;
      gap: 0;
      margin-top: 48px;
      border-top: 1px solid oklch(100% 0 0 / .12);
      padding-top: 32px;
    }
    .hero-stat {
      flex: 1;
      padding-right: 24px;
      border-right: 1px solid oklch(100% 0 0 / .1);
    }
    .hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
    .hero-stat .num {
      font-family: var(--serif);
      font-size: 28px;
      color: var(--saffron);
      font-weight: 700;
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 11px;
      color: oklch(75% 0.02 70);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-top: 4px;
    }

    /* Hero portrait side */
    .hero-right {
      position: relative;
      background: oklch(24% 0.07 20);
      overflow: hidden;
    }
    .hero-portrait-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      filter: saturate(1.02) contrast(1.02);
    }
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, oklch(20% 0.06 20 / .85) 100%);
      pointer-events: none;
    }
    .hero-portrait-caption {
      position: absolute;
      bottom: 18px;
      left: 0; right: 0;
      text-align: center;
      z-index: 2;
      color: oklch(88% 0.02 70);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .hero-portrait {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    /* Placeholder portrait */
    .portrait-placeholder {
      width: 100%; height: 100%;
      background:
        repeating-linear-gradient(
          135deg,
          oklch(32% 0.06 20) 0px, oklch(32% 0.06 20) 2px,
          oklch(26% 0.07 20) 2px, oklch(26% 0.07 20) 20px
        );
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 24px;
      min-height: 400px;
    }
    .portrait-label {
      text-align: center;
      color: oklch(55% 0.04 60);
      font-size: 11px;
      font-family: monospace;
      letter-spacing: .05em;
      background: oklch(20% 0.04 20 / .8);
      padding: 8px 14px;
      border-radius: var(--r-sm);
      border: 1px solid oklch(40% 0.05 40);
    }
    .portrait-label strong {
      display: block;
      color: oklch(65% 0.06 60);
      font-size: 12px;
      margin-bottom: 2px;
    }

    /* ─── MISSION BAND ────────────────────────────────────────────── */
    .mission-band {
      background: var(--cream-mid);
      border-bottom: 1px solid var(--border);
      padding: 64px 0;
    }
    .mission-band .container { text-align: center; }
    .mission-statement {
      font-family: var(--serif);
      font-size: clamp(22px, 2.6vw, 32px);
      font-style: italic;
      color: var(--maroon);
      line-height: 1.4;
      max-width: 880px;
      margin: 0 auto 48px;
      text-wrap: balance;
    }
    .mission-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 920px;
      margin: 0 auto;
    }
    .mission-pillar {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 24px;
      border-top: 2px solid var(--saffron);
    }
    .mission-pillar .mp-verb {
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 700;
      color: var(--maroon);
      letter-spacing: .01em;
    }
    .mission-pillar .mp-text {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
    }
    @media (max-width: 860px) {
      .mission-pillars { grid-template-columns: 1fr; gap: 24px; }
    }

    /* ─── ABOUT ───────────────────────────────────────────────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 64px;
      align-items: start;
    }
    .about-body p {
      font-size: 16px;
      line-height: 1.85;
      color: var(--text-mid);
      margin-bottom: 18px;
    }
    .about-body p strong {
      color: var(--maroon);
    }
    .about-sidebar {
      display: flex;
      flex-direction: column;
      gap: 1px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .about-fact {
      padding: 16px 20px;
      background: var(--cream);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .about-fact:nth-child(even) { background: var(--cream-mid); }
    .about-fact .fact-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text-lt);
      font-weight: 600;
    }
    .about-fact .fact-value {
      font-size: 14px;
      color: var(--text);
      font-weight: 500;
    }
    .about-photo-frame {
      margin-bottom: 20px;
      border-radius: var(--r);
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 28px oklch(28% 0.08 20 / .14);
    }
    .about-photo-frame img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      object-position: center 16%;
      display: block;
    }
    .about-photo-frame::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 4px;
      background: var(--saffron);
    }

    /* ─── TIMELINE ────────────────────────────────────────────────── */
    .timeline-track {
      position: relative;
      padding-left: 0;
    }
    .tl-item {
      display: grid;
      grid-template-columns: 160px 1px 1fr;
      gap: 0 32px;
      margin-bottom: 0;
    }
    .tl-item:last-child .tl-line { display: none; }
    .tl-date {
      text-align: right;
      padding: 24px 0;
    }
    .tl-date .era {
      font-family: var(--serif);
      font-size: 14px;
      color: var(--maroon);
      font-weight: 700;
    }
    .tl-date .period {
      font-size: 11px;
      color: var(--text-lt);
      letter-spacing: .05em;
    }
    .tl-spine {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .tl-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--saffron);
      border: 2px solid var(--cream);
      box-shadow: 0 0 0 2px var(--saffron);
      flex-shrink: 0;
      margin-top: 30px;
    }
    .tl-line {
      width: 1px;
      flex: 1;
      background: var(--border);
      margin-top: 4px;
    }
    .tl-body {
      padding: 20px 0 28px;
    }
    .tl-chapter {
      font-family: var(--serif);
      font-size: 18px;
      color: var(--maroon);
      font-weight: 700;
      margin-bottom: 6px;
    }
    .tl-desc {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 10px;
    }
    .tl-add {
      font-size: 11.5px;
      color: var(--text-lt);
      font-style: italic;
      border-left: 2px solid var(--saffron-lt);
      padding-left: 10px;
    }

    /* ─── LEGACY THEMES ───────────────────────────────────────────── */
    .themes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }
    .theme-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .theme-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px oklch(28% 0.08 20 / .12);
    }
    .theme-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }
    .theme-card:nth-child(1)::before { background: var(--saffron); }
    .theme-card:nth-child(2)::before { background: var(--gold); }
    .theme-card:nth-child(3)::before { background: var(--green); }
    .theme-card:nth-child(4)::before { background: var(--maroon); }
    .theme-icon {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--saffron);
      color: var(--maroon);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 700;
      font-style: italic;
    }
    .theme-card h3 {
      font-family: var(--serif);
      font-size: 20px;
      color: var(--maroon);
      margin-bottom: 10px;
    }
    .theme-card p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* ─── GALLERY ─────────────────────────────────────────────────── */
    .album-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }
    .album-tab {
      padding: 9px 20px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-sm);
      background: var(--cream);
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-mid);
      cursor: pointer;
      transition: all .2s;
      letter-spacing: .04em;
    }
    .album-tab:hover { border-color: var(--saffron); color: var(--maroon); }
    .album-tab.active {
      background: var(--maroon);
      border-color: var(--maroon);
      color: var(--cream);
    }
    .gallery-status {
      font-size: 13px;
      color: var(--text-lt);
      margin-bottom: 20px;
      min-height: 20px;
    }
    .gallery-status .dot {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--saffron);
      margin-right: 6px;
      animation: pulse 1s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
    }
    .gallery-item {
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--cream);
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
    }
    .gallery-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px oklch(0% 0 0 / .12);
    }
    .gallery-item canvas {
      display: block;
      width: 100%;
      height: auto;
    }
    .gallery-thumb-loading {
      height: 190px;
      background:
        repeating-linear-gradient(
          135deg,
          var(--sand) 0px, var(--sand) 2px,
          var(--cream-mid) 2px, var(--cream-mid) 22px
        );
      display: flex; align-items: center; justify-content: center;
      color: var(--text-lt);
      font-size: 12px;
    }
    .gallery-info {
      padding: 10px 14px;
      border-top: 1px solid var(--border);
    }
    .gallery-caption {
      font-size: 12px;
      color: var(--text-mid);
    }
    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 1000;
      background: oklch(5% 0 0 / .93);
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .lightbox.open { display: flex; }
    .lightbox canvas, .lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      border-radius: var(--r-sm);
      display: block;
    }
    .lightbox-nav {
      display: flex;
      gap: 16px;
      margin-top: 16px;
    }
    .lightbox-btn {
      background: oklch(100% 0 0 / .1);
      border: 1px solid oklch(100% 0 0 / .2);
      color: var(--cream);
      padding: 10px 24px;
      border-radius: var(--r-sm);
      cursor: pointer;
      font-family: var(--sans);
      font-size: 14px;
      transition: background .2s;
    }
    .lightbox-btn:hover { background: oklch(100% 0 0 / .2); }
    .lightbox-close {
      position: absolute;
      top: 20px; right: 28px;
      background: none; border: none;
      color: var(--cream); font-size: 28px;
      cursor: pointer; line-height: 1;
    }
    .lightbox-label {
      color: oklch(70% 0 0);
      font-size: 13px;
      margin-top: 10px;
    }

    /* ─── SPEECHES ────────────────────────────────────────────────── */
    .speeches-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    .speech-item {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      gap: 24px;
      padding: 24px 28px;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
      align-items: center;
      transition: background .2s;
      cursor: pointer;
    }
    .speech-item:last-child { border-bottom: none; }
    .speech-item:nth-child(even) { background: var(--cream-mid); }
    .speech-item:hover { background: var(--sand); }
    .speech-date {
      text-align: center;
      border-right: 1px solid var(--border);
      padding-right: 24px;
    }
    .speech-date .day {
      font-family: var(--serif);
      font-size: 28px;
      color: var(--maroon);
      font-weight: 700;
      line-height: 1;
    }
    .speech-date .mon {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--text-lt);
    }
    .speech-date .yr {
      font-size: 11px;
      color: var(--saffron);
      font-weight: 600;
    }
    .speech-body .speech-title {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }
    .speech-body .speech-context {
      font-size: 13px;
      color: var(--text-lt);
    }
    .speech-action {
      color: var(--saffron);
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    /* ─── NEWS ────────────────────────────────────────────────────── */
    .news-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start;
    }
    .news-featured {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 24px;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--cream);
      margin-bottom: 24px;
    }
    .news-featured-media { overflow: hidden; }
    .news-featured-media img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 15%;
      min-height: 220px;
    }
    .news-featured-body { padding: 24px 24px 24px 0; }
    .news-featured-headline {
      font-family: var(--serif);
      font-size: 21px;
      font-weight: 700;
      color: var(--maroon);
      line-height: 1.3;
      margin: 8px 0 10px;
    }
    .news-featured-excerpt {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .news-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .news-card-sm {
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--cream);
      padding: 20px;
      transition: border-color .2s, transform .2s;
    }
    .news-card-sm:hover {
      border-color: var(--saffron);
      transform: translateY(-2px);
    }
    .news-card-sm h4 {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
      margin: 8px 0 10px;
    }
    .news-tag {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--saffron);
      font-weight: 700;
    }
    .news-date {
      font-size: 11px;
      color: var(--text-lt);
      letter-spacing: .02em;
    }
    .news-statements {
      background: var(--maroon);
      border-radius: var(--r-lg);
      padding: 32px 28px;
    }
    .statements-title {
      font-family: var(--serif);
      font-size: 18px;
      color: var(--cream);
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid oklch(100% 0 0 / .15);
    }
    .statement {
      margin: 0 0 22px;
      padding-left: 16px;
      border-left: 2px solid var(--saffron);
    }
    .statement:last-child { margin-bottom: 0; }
    .statement p {
      font-family: var(--serif);
      font-style: italic;
      font-size: 14.5px;
      color: oklch(92% 0.02 70);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .statement cite {
      font-style: normal;
      font-size: 11px;
      color: var(--saffron-lt);
      letter-spacing: .03em;
    }
    @media (max-width: 860px) {
      .news-layout { grid-template-columns: 1fr; gap: 28px; }
      .news-featured { grid-template-columns: 1fr; }
      .news-featured-body { padding: 0 22px 22px; }
      .news-grid { grid-template-columns: 1fr; }
    }

    /* ─── CONNECT ─────────────────────────────────────────────────── */
    .connect-layout {
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: 64px;
      align-items: start;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 11px 14px;
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      font-family: var(--sans);
      font-size: 14px;
      color: var(--text);
      background: var(--cream);
      outline: none;
      transition: border .2s;
      resize: vertical;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--saffron);
    }
    .connect-sidebar {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-card {
      background: var(--cream-mid);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
    }
    .contact-card h3 {
      font-family: var(--serif);
      font-size: 18px;
      color: var(--maroon);
      margin-bottom: 8px;
    }
    .contact-card p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    /* ─── FOOTER ──────────────────────────────────────────────────── */
    .footer {
      background: var(--maroon);
      color: oklch(80% 0.02 70);
      padding: 48px 0 32px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      font-family: var(--serif);
      font-size: 14px;
      color: var(--cream);
      margin-bottom: 14px;
      font-weight: 600;
    }
    .footer-col p, .footer-col a {
      font-size: 13px;
      color: oklch(68% 0.02 70);
      line-height: 1.75;
      display: block;
    }
    .footer-col a:hover { color: var(--saffron); }
    .footer-bottom {
      border-top: 1px solid oklch(100% 0 0 / .1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: oklch(55% 0.02 70);
    }

    /* ─── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 860px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .connect-layout { grid-template-columns: 1fr; }
      .tl-item { grid-template-columns: 120px 1px 1fr; gap: 0 20px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .form-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
    }
  