      :root {
        --ink: #0b1726;
        --ink-2: #1a2f4a;
        --navy: #1e3a5f;
        --navy-soft: #2d4a6e;
        --sky: #6b8caf;
        --sky-pale: #c8d6e5;
        --paper: #eef2f6;
        --paper-2: #f7f9fc;
        --gold: #d4a574;
        --gold-deep: #b88a52;
        --warm: #f0e5d3;
        --line: rgba(30, 58, 95, 0.12);
        --shadow-1:
          0 1px 2px rgba(11, 23, 38, 0.04), 0 8px 24px rgba(11, 23, 38, 0.06);
        --shadow-2:
          0 20px 60px rgba(11, 23, 38, 0.12), 0 4px 12px rgba(11, 23, 38, 0.06);
        --shadow-3: 0 40px 120px rgba(11, 23, 38, 0.18);
        --serif: "Cormorant Garamond", "Noto Serif TC", serif;
        --sans: "Noto Sans TC", "Helvetica Neue", "Helvetica", sans-serif;
        --mono: "JetBrains Mono", ui-monospace, monospace;
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        color: var(--ink);
        background: var(--paper-2);
        font-weight: 400;
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }
      img {
        display: block;
        max-width: 100%;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
        color: inherit;
      }

      .mono {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }
      .serif {
        font-family: var(--serif);
        font-weight: 400;
        letter-spacing: -0.01em;
      }

      /* ───────── NAV (shared with home) ───────── */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 18px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.4s ease;
      }
      .nav.scrolled {
        background: rgba(247, 249, 252, 0.78);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid var(--line);
        padding: 12px 48px;
      }
      .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        color: white;
        transition: color 0.4s;
      }
      .nav.scrolled .nav-brand {
        color: var(--ink);
      }
      .nav-mark {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      .nav-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }
      .nav-name {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
      }
      .nav-name b {
        font-weight: 600;
        font-size: 14.5px;
        letter-spacing: 0.02em;
      }
      .nav-name span {
        font-family: var(--serif);
        font-style: italic;
        font-size: 11.5px;
        opacity: 0.75;
        letter-spacing: 0.02em;
      }

      .nav-links {
        display: flex;
        gap: 4px;
        align-items: center;
      }
      .nav-links a {
        padding: 9px 16px;
        font-size: 13.5px;
        font-weight: 500;
        color: white;
        border-radius: 999px;
        transition:
          background 0.2s,
          color 0.4s;
      }
      .nav.scrolled .nav-links a {
        color: var(--ink);
      }
      .nav-links a:hover {
        background: rgba(255, 255, 255, 0.12);
      }
      .nav.scrolled .nav-links a:hover {
        background: rgba(30, 58, 95, 0.06);
      }
      .nav-links a.is-active {
        background: rgba(255, 255, 255, 0.14);
      }
      .nav.scrolled .nav-links a.is-active {
        background: rgba(30, 58, 95, 0.08);
        color: var(--navy);
      }
      .nav-cta {
        padding: 9px 18px !important;
        background: white;
        color: var(--navy) !important;
        border-radius: 999px;
        font-weight: 600 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }
      .nav-cta:hover {
        background: var(--gold) !important;
        color: white !important;
      }
      .nav.scrolled .nav-cta {
        background: var(--navy);
        color: white !important;
      }
      .nav.scrolled .nav-cta:hover {
        background: var(--gold) !important;
        color: white !important;
      }

      /* ───────── HERO ───────── */
      .hero {
        position: relative;
        min-height: 92vh;
        color: white;
        overflow: hidden;
        isolation: isolate;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 75% 25%,
            rgba(212, 165, 116, 0.42) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse at 15% 85%,
            rgba(107, 140, 175, 0.5) 0%,
            transparent 55%
          ),
          linear-gradient(180deg, #1e3a5f 0%, #0f2440 60%, #0b1c33 100%);
        z-index: -2;
      }
      .hero-photo {
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image: url("https://images.unsplash.com/photo-1473177104440-ffee2f376098?w=2400&auto=format&fit=crop&q=80");
        background-size: cover;
        background-position: center;
        opacity: 0.32;
        mix-blend-mode: screen;
      }
      .hero-grain {
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        opacity: 0.4;
        background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
        mix-blend-mode: overlay;
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        padding: 200px 48px 120px;
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        gap: 80px;
        align-items: end;
      }
      .hero-text .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-size: 11.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 32px;
      }
      .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 12px var(--gold);
      }

      .hero-title {
        font-size: clamp(48px, 6.4vw, 92px);
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: -0.02em;
        margin-bottom: 32px;
        text-wrap: balance;
      }
      .hero-title .br {
        display: block;
      }
      .hero-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
        letter-spacing: 0;
      }
      .hero-lede {
        font-size: 18px;
        line-height: 1.8;
        max-width: 540px;
        color: rgba(255, 255, 255, 0.82);
        margin-bottom: 36px;
      }
      .hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          background 0.2s,
          color 0.2s;
      }
      .btn-primary {
        background: white;
        color: var(--navy);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        background: var(--gold);
        color: white;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
      }
      .btn-ghost {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
      }
      .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.16);
      }
      .btn svg {
        width: 14px;
        height: 14px;
      }

      /* Hero right panel — series at-a-glance */
      .hero-side {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding-bottom: 12px;
      }
      .series-card {
        position: relative;
        padding: 36px 36px 32px;
        border-radius: 22px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.13),
          rgba(255, 255, 255, 0.03)
        );
        backdrop-filter: blur(24px) saturate(140%);
        -webkit-backdrop-filter: blur(24px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow:
          0 30px 80px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
      .series-card .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        opacity: 0.72;
        text-transform: uppercase;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .series-card .label::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .series-card h3 {
        font-family: var(--serif);
        font-size: 44px;
        font-weight: 500;
        line-height: 1.05;
        color: var(--gold);
        margin: 0 0 6px;
        letter-spacing: -0.01em;
      }
      .series-card .en-name {
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        opacity: 0.72;
        margin-bottom: 22px;
        line-height: 1.5;
      }

      .progress-block {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 14px 16px;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
      }
      .progress-block .nr {
        font-family: var(--serif);
        font-size: 30px;
        line-height: 1;
        color: white;
      }
      .progress-block .nr small {
        font-family: var(--mono);
        font-size: 11px;
        opacity: 0.55;
        letter-spacing: 0.14em;
      }
      .progress-track {
        height: 4px;
        background: rgba(255, 255, 255, 0.16);
        border-radius: 4px;
        overflow: hidden;
      }
      .progress-track > div {
        height: 100%;
        background: linear-gradient(90deg, var(--gold), var(--gold-deep));
        width: 53%;
        border-radius: 4px;
      }
      .progress-block .k {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        opacity: 0.6;
        text-transform: uppercase;
      }

      .hero-quote {
        font-family: var(--serif);
        font-style: italic;
        font-size: 19px;
        line-height: 1.55;
        opacity: 0.92;
        padding-left: 16px;
        border-left: 2px solid var(--gold);
      }
      .hero-quote span {
        display: block;
        margin-top: 8px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        opacity: 0.55;
        font-style: normal;
      }

      /* hero meta — bottom row, about-style */
      .hero-meta {
        position: absolute;
        bottom: 36px;
        left: 0;
        right: 0;
        z-index: 3;
        padding: 0 48px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .hero-meta-left {
        display: flex;
        align-items: flex-end;
        gap: 50px;
        color: rgba(255, 255, 255, 0.85);
      }
      .meta-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .meta-item .k {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        opacity: 0.6;
        text-transform: uppercase;
      }
      .meta-item .v {
        font-size: 14.5px;
        font-weight: 500;
      }
      .meta-item .v small {
        font-family: var(--mono);
        font-size: 11px;
        opacity: 0.65;
        margin-left: 4px;
        font-weight: 400;
        letter-spacing: 0.06em;
      }
      .scroll-hint {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }
      .scroll-hint .line {
        width: 36px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.6)
        );
        animation: scrollLine 2.2s ease-in-out infinite;
      }
      @keyframes scrollLine {
        0%,
        100% {
          transform: scaleX(0.4);
          transform-origin: left;
        }
        50% {
          transform: scaleX(1);
          transform-origin: left;
        }
      }

      /* hero entrance animation — staggered like About */
      .hero .hero-text > * {
        animation: heroIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
      }
      .hero .hero-text > *:nth-child(1) {
        animation-delay: 0.15s;
      }
      .hero .hero-text > *:nth-child(2) {
        animation-delay: 0.3s;
      }
      .hero .hero-text > *:nth-child(3) {
        animation-delay: 0.45s;
      }
      .hero .hero-text > *:nth-child(4) {
        animation-delay: 0.6s;
      }
      .hero .hero-side {
        animation: heroIn 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s both;
      }
      .hero .hero-meta {
        animation: heroIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.95s both;
      }
      @keyframes heroIn {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      /* ───────── SECTION CHROME ───────── */
      section {
        padding: 130px 48px;
        position: relative;
      }
      .container {
        max-width: 1400px;
        margin: 0 auto;
      }
      .sec-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 56px;
        gap: 40px;
        flex-wrap: wrap;
      }
      .sec-head .left {
        max-width: 720px;
      }
      .sec-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 18px;
      }
      .sec-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .sec-title {
        font-size: clamp(36px, 4.5vw, 60px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--ink);
      }
      .sec-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .sec-sub {
        margin-top: 18px;
        font-size: 16.5px;
        line-height: 1.7;
        color: rgba(11, 23, 38, 0.7);
        max-width: 580px;
      }
      .sec-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--navy);
        padding-bottom: 4px;
        border-bottom: 1px solid var(--navy);
        transition:
          gap 0.2s,
          color 0.2s,
          border-color 0.2s;
      }
      .sec-link:hover {
        gap: 14px;
        color: var(--gold-deep);
        border-color: var(--gold-deep);
      }

      /* ───────── FEATURE SERMON ───────── */
      .feature-section {
        background: linear-gradient(
          180deg,
          var(--paper-2) 0%,
          var(--paper) 100%
        );
      }
      .feature-grid {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        gap: 56px;
        align-items: stretch;
      }
      .feature-video {
        position: relative;
        aspect-ratio: 16/10;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-2);
        background-color: var(--navy);
        background-size: cover;
        background-position: center;
        cursor: pointer;
      }
      .feature-video::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(11,23,38,0.35), rgba(11,23,38,0.65));
        z-index: 1;
      }
      .feature-video .play-btn,
      .feature-video .video-strip { position: absolute; z-index: 2; }
      .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        display: grid;
        place-items: center;
        color: var(--navy);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        transition:
          transform 0.3s,
          background 0.3s,
          color 0.3s;
      }
      .feature-video:hover .play-btn {
        transform: translate(-50%, -50%) scale(1.08);
        background: var(--gold);
        color: white;
      }
      .play-btn::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.4);
        animation: pingRing 2.4s ease-out infinite;
      }
      @keyframes pingRing {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.4);
          opacity: 0;
        }
      }
      .play-btn svg {
        width: 28px;
        height: 28px;
        margin-left: 4px;
      }
      .video-strip {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 22px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
        color: white;
      }
      .video-chip {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        padding: 6px 10px;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(10px);
      }
      .video-progress {
        margin-top: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--mono);
        font-size: 11px;
        opacity: 0.88;
      }
      .video-progress .bar {
        flex: 1;
        height: 3px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 4px;
        overflow: hidden;
      }
      .video-progress .bar > span {
        display: block;
        height: 100%;
        width: 32%;
        background: var(--gold);
        border-radius: 4px;
      }

      .feature-text {
        background: white;
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 44px 44px 36px;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-1);
      }
      .series-labels {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 22px;
      }
      .series-labels .series-tag {
        margin-bottom: 0;
      }
      .series-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 6px;
        background: rgba(212, 165, 116, 0.15);
        color: var(--gold-deep);
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        width: max-content;
        margin-bottom: 22px;
        text-transform: uppercase;
      }
      .feature-text h3 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.18;
        letter-spacing: -0.01em;
        margin-bottom: 14px;
      }
      .feature-text .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        opacity: 0.6;
        margin-bottom: 22px;
      }
      .feature-text .verse {
        font-family: var(--serif);
        font-style: italic;
        font-size: 18px;
        line-height: 1.65;
        color: rgba(11, 23, 38, 0.78);
        border-left: 2px solid var(--gold);
        padding-left: 18px;
        margin-bottom: 26px;
      }
      .verse-ref {
        display: block;
        margin-top: 8px;
        font-family: var(--mono);
        font-size: 10.5px;
        opacity: 0.6;
        letter-spacing: 0.12em;
        font-style: normal;
      }
      .feature-speaker {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 0 24px;
        border-bottom: 1px solid var(--line);
        margin-bottom: 24px;
      }
      .avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--sky), var(--navy));
        display: grid;
        place-items: center;
        color: white;
        font-weight: 600;
        font-size: 15px;
        flex-shrink: 0;
      }
      .speaker-info {
        font-size: 14px;
        line-height: 1.4;
      }
      .speaker-info b {
        font-weight: 600;
      }
      .speaker-info span {
        display: block;
        font-family: var(--mono);
        font-size: 10.5px;
        opacity: 0.6;
        letter-spacing: 0.1em;
        margin-top: 3px;
      }
      .feature-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: auto;
      }
      .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid var(--line);
        background: white;
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
      }
      .pill:hover {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
      }
      .pill.dark {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
      }
      .pill.dark:hover {
        background: var(--gold);
        border-color: var(--gold);
      }
      .pill svg {
        width: 13px;
        height: 13px;
      }

      /* ───────── SERIES TRIO ───────── */
      .series-section {
        background: var(--ink);
        color: white;
        padding: 130px 48px;
        position: relative;
        overflow: hidden;
      }
      .series-section::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -100px;
        width: 700px;
        height: 700px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.14),
          transparent 70%
        );
        pointer-events: none;
      }
      .series-section .sec-title {
        color: white;
      }
      .series-section .sec-eyebrow {
        color: var(--gold);
        opacity: 1;
      }
      .series-section .sec-eyebrow::before {
        background: var(--gold);
      }
      .series-section .sec-sub {
        color: rgba(255, 255, 255, 0.7);
      }
      .series-section .sec-link {
        color: white;
        border-color: rgba(255, 255, 255, 0.5);
      }

      .series-trio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative;
        z-index: 2;
      }
      .series-tile {
        position: relative;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(
          160deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.01)
        );
        padding: 38px 34px 34px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition:
          transform 0.4s,
          border-color 0.4s,
          background 0.4s;
        cursor: pointer;
        min-height: 460px;
      }
      .series-tile:hover {
        transform: translateY(-6px);
        border-color: rgba(212, 165, 116, 0.45);
        background: linear-gradient(
          160deg,
          rgba(255, 255, 255, 0.07),
          rgba(255, 255, 255, 0.02)
        );
      }
      .series-tile .nr {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold);
        margin-bottom: 24px;
      }
      .series-tile .book {
        font-family: var(--serif);
        font-size: 14px;
        font-style: italic;
        opacity: 0.55;
        margin-bottom: 6px;
      }
      .series-tile h3 {
        font-family: var(--serif);
        font-size: 42px;
        font-weight: 500;
        line-height: 1.04;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
      }
      .series-tile .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 15px;
        opacity: 0.6;
        margin-bottom: 22px;
      }
      .series-tile p {
        font-size: 14px;
        line-height: 1.75;
        opacity: 0.75;
        margin-bottom: 26px;
      }
      .series-tile .strip {
        margin-top: auto;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
      }
      .series-tile .strip .it .v {
        font-family: var(--serif);
        font-size: 22px;
        line-height: 1;
        font-weight: 500;
      }
      .series-tile .strip .it .k {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        opacity: 0.55;
        margin-top: 4px;
        text-transform: uppercase;
      }
      .series-tile .cta {
        position: absolute;
        top: 32px;
        right: 32px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.18);
        display: grid;
        place-items: center;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.3s;
      }
      .series-tile:hover .cta {
        background: var(--gold);
        border-color: var(--gold);
        transform: rotate(-45deg);
      }
      .series-tile .cta svg {
        width: 13px;
        height: 13px;
      }

      .series-tile.is-current {
        background: linear-gradient(
          160deg,
          rgba(212, 165, 116, 0.18),
          rgba(212, 165, 116, 0.02)
        );
        border-color: rgba(212, 165, 116, 0.4);
      }
      .series-tile .badge {
        position: absolute;
        top: 30px;
        right: 80px;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.16em;
        padding: 4px 10px;
        border-radius: 4px;
        background: var(--gold);
        color: white;
        text-transform: uppercase;
      }

      /* ───────── ARCHIVE ───────── */
      .archive {
        background: var(--paper-2);
      }
      .archive-shell {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 56px;
      }
      .archive-side {
        position: sticky;
        top: 100px;
        height: max-content;
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .filter-group h6 {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--navy);
        opacity: 0.7;
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .filter-list {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .filter-list button {
        text-align: left;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 13.5px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(11, 23, 38, 0.78);
        transition:
          background 0.2s,
          color 0.2s;
      }
      .filter-list button:hover {
        background: rgba(30, 58, 95, 0.06);
        color: var(--ink);
      }
      .filter-list button.is-on {
        background: var(--ink);
        color: white;
      }
      .filter-list button.is-on .ct {
        color: var(--gold);
        opacity: 1;
      }
      .filter-list button .ct {
        font-family: var(--mono);
        font-size: 11px;
        opacity: 0.45;
        letter-spacing: 0.08em;
      }
      .filter-search {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 12px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .filter-search:focus-within {
        border-color: var(--navy);
        box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.08);
      }
      .filter-search input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-family: inherit;
        font-size: 13.5px;
        color: var(--ink);
      }
      .filter-search input::placeholder {
        color: rgba(11, 23, 38, 0.4);
      }
      .filter-search svg {
        width: 14px;
        height: 14px;
        color: rgba(11, 23, 38, 0.4);
      }

      .archive-main {
        display: flex;
        flex-direction: column;
      }
      .archive-toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 16px;
      }
      .archive-count {
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.65;
      }
      .archive-count b {
        color: var(--ink);
        opacity: 1;
        font-weight: 600;
        font-size: 13.5px;
        margin-right: 4px;
      }
      .sort-tabs {
        display: inline-flex;
        padding: 4px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 999px;
        gap: 2px;
      }
      .sort-tabs button {
        padding: 7px 14px;
        border-radius: 999px;
        font-size: 12.5px;
        font-weight: 500;
        color: rgba(11, 23, 38, 0.6);
        transition:
          background 0.2s,
          color 0.2s;
      }
      .sort-tabs button.is-on {
        background: var(--ink);
        color: white;
      }

      .archive-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid var(--line);
      }
      .row {
        display: grid;
        grid-template-columns: 120px 110px 1.6fr 1fr 90px 110px;
        gap: 24px;
        padding: 22px 16px;
        border-bottom: 1px solid var(--line);
        align-items: center;
        transition:
          background 0.2s,
          padding 0.2s;
        cursor: pointer;
        position: relative;
      }
      /* Cover thumbnail — 120×66 (≈16:9), rounded, with a soft border. */
      .row-cover {
        width: 120px;
        height: 66px;
        border-radius: 10px;
        overflow: hidden;
        background: var(--paper);
        border: 1px solid var(--line);
        flex-shrink: 0;
      }
      .row-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .row-cover-placeholder {
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
        background-image:
          linear-gradient(135deg, transparent 45%, rgba(11, 23, 38, 0.06) 45%, rgba(11, 23, 38, 0.06) 55%, transparent 55%),
          linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
        background-size: 14px 14px, 100% 100%;
      }
      /* Stretched link — makes the entire row clickable while keeping the
       * action buttons (and series tag) as independent links. Anchor is
       * empty so it doesn't add visible text; aria-label provides the
       * accessible name. */
      .row-link-stretched {
        position: absolute;
        inset: 0;
        z-index: 0;
        text-decoration: none;
      }
      /* Lift everything that needs its own click target above the
       * stretched-link pseudo so they remain interactive. */
      .row > .row-actions,
      .row > .row-tag {
        position: relative;
        z-index: 1;
      }
      .row:hover {
        background: white;
        padding-left: 22px;
      }
      .row .date {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.1em;
        color: rgba(11, 23, 38, 0.6);
        text-transform: uppercase;
      }
      .row .date b {
        display: block;
        font-family: var(--serif);
        font-size: 22px;
        line-height: 1;
        color: var(--ink);
        font-weight: 500;
        margin-bottom: 4px;
        letter-spacing: 0;
        text-transform: none;
      }
      .row-title h4 {
        font-size: 17.5px;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.005em;
        margin-bottom: 4px;
      }
      .row-title .verse {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        opacity: 0.6;
      }
      .row-meta {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 13px;
      }
      .row-meta .who {
        color: var(--ink);
        font-weight: 500;
      }
      .row-meta .lang {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.12em;
        color: rgba(11, 23, 38, 0.5);
        text-transform: uppercase;
      }
      .row-tag {
        justify-self: start;
        padding: 5px 10px;
        border-radius: 999px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.12em;
        background: rgba(30, 58, 95, 0.07);
        color: var(--navy);
        text-transform: uppercase;
      }
      .row-tag.gold {
        background: rgba(212, 165, 116, 0.15);
        color: var(--gold-deep);
      }
      .row-tag.sky {
        background: rgba(107, 140, 175, 0.16);
        color: var(--navy-soft);
      }
      .row-actions {
        display: flex;
        gap: 6px;
        justify-content: flex-end;
      }
      .row-actions button,
      .row-actions .row-action-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: white;
        display: grid;
        place-items: center;
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
        color: rgba(11, 23, 38, 0.7);
        text-decoration: none;
      }
      .row-actions button:hover,
      .row-actions .row-action-btn:hover {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
      }
      .row-actions button svg,
      .row-actions .row-action-btn svg {
        width: 13px;
        height: 13px;
      }
      .row .duration {
        display: none;
      }
      .archive-foot {
        margin-top: 36px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }
      .load-more {
        padding: 12px 22px;
        border-radius: 999px;
        border: 1px solid var(--ink);
        color: var(--ink);
        font-weight: 500;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        transition:
          background 0.2s,
          color 0.2s;
      }
      .load-more:hover {
        background: var(--ink);
        color: white;
      }
      .load-more svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
      }
      .pager-mono {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        opacity: 0.55;
        text-transform: uppercase;
      }

      /* ───────── RESOURCES ───────── */
      .resources {
        background: var(--paper);
        padding-top: 130px;
      }
      .res-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .res-card {
        background: white;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 32px 28px 28px;
        display: flex;
        flex-direction: column;
        transition:
          transform 0.4s,
          box-shadow 0.4s;
        cursor: pointer;
        min-height: 280px;
      }
      .res-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-2);
      }
      .res-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        color: white;
        display: grid;
        place-items: center;
        margin-bottom: 22px;
        box-shadow: 0 10px 24px rgba(212, 165, 116, 0.32);
      }
      .res-icon svg {
        width: 22px;
        height: 22px;
      }
      .res-card h4 {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 6px;
        letter-spacing: -0.005em;
      }
      .res-card .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        opacity: 0.55;
        margin-bottom: 14px;
      }
      .res-card p {
        font-size: 13.5px;
        line-height: 1.7;
        opacity: 0.7;
        margin-bottom: 22px;
      }
      .res-card .ft {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        color: var(--navy);
      }
      .res-card .ft svg {
        width: 14px;
        height: 14px;
        transition: transform 0.2s;
      }
      .res-card:hover .ft svg {
        transform: translateX(4px);
      }

      /* ───────── SUBSCRIBE ───────── */
      .subscribe {
        padding: 130px 48px;
        background:
          linear-gradient(135deg, rgba(11, 23, 38, 0.7), rgba(30, 58, 95, 0.7)),
          url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=2400&auto=format&fit=crop&q=80");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        position: relative;
        overflow: hidden;
      }
      .subscribe::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at center,
          transparent 30%,
          rgba(11, 23, 38, 0.6)
        );
      }
      .sub-inner {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .sub-left .lab {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 18px;
      }
      .sub-left h2 {
        font-size: clamp(40px, 5vw, 64px);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 22px;
      }
      .sub-left h2 em {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .sub-left p {
        font-size: 16px;
        line-height: 1.75;
        opacity: 0.82;
        max-width: 480px;
      }
      .sub-right {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .sub-channel {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 20px;
        align-items: center;
        padding: 22px 24px;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 18px;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.3s;
        cursor: pointer;
      }
      .sub-channel:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(212, 165, 116, 0.4);
        transform: translateX(4px);
      }
      .sub-mark {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        display: grid;
        place-items: center;
      }
      .sub-mark svg {
        width: 24px;
        height: 24px;
      }
      .sub-channel .t {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 3px;
      }
      .sub-channel .h {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        opacity: 0.65;
      }
      .sub-channel .arr {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.22);
        display: grid;
        place-items: center;
        transition:
          background 0.3s,
          transform 0.3s;
      }
      .sub-channel:hover .arr {
        background: var(--gold);
        border-color: var(--gold);
        transform: rotate(-45deg);
      }
      .sub-channel .arr svg {
        width: 13px;
        height: 13px;
      }

      /* ───────── FOOTER (shared) ───────── */
      footer {
        background: var(--ink);
        color: rgba(255, 255, 255, 0.78);
        padding: 100px 48px 36px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1.3fr 1fr;
        gap: 64px;
        max-width: 1400px;
        margin: 0 auto 80px;
      }
      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-width: 420px;
      }
      .footer-brand h3 {
        font-size: 20px;
        font-weight: 700;
        color: white;
        line-height: 1.3;
      }
      .footer-brand .en {
        font-family: var(--serif);
        font-style: italic;
        opacity: 0.65;
        font-size: 14.5px;
      }
      .footer-brand p {
        font-size: 13.5px;
        line-height: 1.85;
        opacity: 0.7;
      }
      .footer-col h5 {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 18px;
      }
      .footer-col a {
        font-size: 13.5px;
        opacity: 0.78;
        transition:
          opacity 0.2s,
          color 0.2s;
      }
      .footer-col a:hover {
        opacity: 1;
        color: var(--gold);
      }
      .footer-col p {
        font-size: 13.5px;
        line-height: 1.7;
        opacity: 0.78;
      }
      .footer-addr-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .footer-addr {
        padding-left: 14px;
        border-left: 1px solid rgba(212, 165, 116, 0.4);
      }
      .footer-addr .lang {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 4px;
      }
      .footer-addr .where {
        font-size: 13.5px;
        line-height: 1.55;
        opacity: 0.85;
        color: white;
        font-weight: 500;
      }
      .footer-meet {
        margin-top: 14px;
        padding: 14px 16px;
        background: rgba(212, 165, 116, 0.1);
        border: 1px solid rgba(212, 165, 116, 0.25);
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .footer-meet + .footer-meet {
        margin-top: 8px;
      }
      .footer-meet svg {
        width: 16px;
        height: 16px;
        color: var(--gold);
        flex-shrink: 0;
      }
      .footer-meet .t {
        font-size: 13px;
        line-height: 1.4;
      }
      .footer-meet .t b {
        color: white;
        font-weight: 600;
      }
      .footer-contact-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .footer-contact {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: baseline;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .footer-contact:last-child {
        border-bottom: none;
      }
      .footer-contact .name {
        font-size: 13.5px;
        color: white;
        font-weight: 500;
      }
      .footer-contact .name span {
        display: block;
        font-size: 11.5px;
        opacity: 0.6;
        font-weight: 400;
        margin-top: 2px;
      }
      .footer-contact .tel {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.05em;
        color: var(--gold);
        white-space: nowrap;
      }
      .footer-office {
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
        line-height: 1.7;
        opacity: 0.7;
      }
      .footer-office b {
        color: white;
        font-weight: 600;
        opacity: 1;
      }
      .footer-bottom {
        max-width: 1400px;
        margin: 0 auto;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        opacity: 0.55;
        text-transform: uppercase;
      }

      /* ───────── REVEAL ───────── */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
          transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal.d1 {
        transition-delay: 0.06s;
      }
      .reveal.d2 {
        transition-delay: 0.12s;
      }
      .reveal.d3 {
        transition-delay: 0.18s;
      }
      .reveal.d4 {
        transition-delay: 0.24s;
      }

      /* ───────── RESPONSIVE ───────── */
      @media (max-width: 1100px) {
        .nav {
          padding: 16px 28px;
        }
        .nav.scrolled {
          padding: 10px 28px;
        }
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 48px;
          padding: 160px 32px 100px;
        }
        .feature-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .series-trio {
          grid-template-columns: 1fr;
        }
        .archive-shell {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .archive-side {
          position: static;
        }
        .row {
          grid-template-columns: 80px 80px 1fr auto;
        }
        .row-cover {
          width: 80px;
          height: 44px;
          border-radius: 8px;
        }
        .row-meta,
        .row-tag {
          display: none;
        }
        .res-grid {
          grid-template-columns: 1fr 1fr;
        }
        .sub-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .hero-meta {
          padding: 0 32px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        section {
          padding: 90px 32px;
        }
        footer {
          padding: 80px 32px 32px;
        }
      }

      /* ─────  MOBILE NAV TOGGLE  ───── */
      .nav-toggle {
        display: none;
        width: 44px;
        height: 44px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 999px;
        cursor: pointer;
        transition:
          background 0.2s,
          border-color 0.4s;
      }
      .nav.scrolled .nav-toggle {
        border-color: rgba(30, 58, 95, 0.18);
        background: rgba(30, 58, 95, 0.04);
      }
      .nav-toggle span {
        width: 18px;
        height: 1.6px;
        background: white;
        border-radius: 2px;
        transition:
          transform 0.3s,
          opacity 0.3s,
          background 0.4s;
      }
      .nav.scrolled .nav-toggle span {
        background: var(--ink);
      }
      .nav-toggle.is-open {
        background: white;
        border-color: white;
      }
      .nav-toggle.is-open span {
        background: var(--ink);
      }
      .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6.6px) rotate(45deg);
      }
      .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6.6px) rotate(-45deg);
      }

      .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 99;
        background: linear-gradient(160deg, #0f2440 0%, #0b1c33 100%);
        opacity: 0;
        visibility: hidden;
        transition:
          opacity 0.35s,
          visibility 0s linear 0.35s;
        display: flex;
        flex-direction: column;
        padding: 96px 28px 40px;
        overflow-y: auto;
      }
      .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.35s;
      }
      .mobile-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 80% 10%,
            rgba(212, 165, 116, 0.18) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse at 10% 90%,
            rgba(107, 140, 175, 0.18) 0%,
            transparent 55%
          );
        pointer-events: none;
      }
      .mobile-menu-inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      .mobile-menu a {
        font-size: 22px;
        font-weight: 500;
        color: white;
        padding: 18px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition:
          color 0.2s,
          padding-left 0.2s;
      }
      .mobile-menu a:hover,
      .mobile-menu a:active {
        color: var(--gold);
        padding-left: 12px;
      }
      .mobile-menu a::after {
        content: "→";
        font-size: 18px;
        opacity: 0.45;
      }
      .mobile-menu a.is-active {
        color: var(--gold);
      }
      .mobile-menu a.mm-cta {
        margin-top: 28px;
        background: var(--gold);
        color: white;
        border: none;
        border-radius: 999px;
        padding: 18px 28px;
        justify-content: center;
        font-weight: 600;
        font-size: 16px;
      }
      .mobile-menu a.mm-cta:hover {
        padding-left: 28px;
      }
      .mobile-menu a.mm-cta::after {
        content: "";
      }
      .mobile-menu .mm-foot {
        margin-top: auto;
        padding-top: 36px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.9;
      }
      .mobile-menu .mm-foot b {
        color: white;
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
      }
      body.menu-open {
        overflow: hidden;
      }

      /* ─────  MOBILE ≤ 720px  ───── */
      @media (max-width: 720px) {
        .nav {
          padding: 12px 24px;
        }
        .nav.scrolled {
          padding: 10px 24px;
        }
        .nav-links {
          display: none;
        }
        .nav-toggle {
          display: flex;
        }
        .nav-name span {
          display: none;
        }
        .nav-name b {
          font-size: 13px;
        }
        .nav-mark {
          width: 38px;
          height: 38px;
        }

        section {
          padding: 72px 24px;
        }
        .sec-head {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
          margin-bottom: 32px;
        }
        .sec-title {
          font-size: clamp(26px, 7.5vw, 38px) !important;
        }
        .sec-sub {
          font-size: 14.5px;
        }

        .hero {
          min-height: auto;
        }
        .hero-inner {
          padding: 130px 24px 100px;
          gap: 36px;
        }
        .hero-text .eyebrow {
          font-size: 10.5px;
          padding: 6px 12px;
          margin-bottom: 20px;
        }
        .hero-title {
          font-size: clamp(36px, 11vw, 54px) !important;
          margin-bottom: 22px;
        }
        .hero-lede {
          font-size: 15px !important;
          line-height: 1.7;
        }
        .hero-meta {
          padding: 0 24px;
          flex-direction: column;
          align-items: flex-start;
          gap: 24px;
          bottom: 24px;
        }
        .hero-meta-left {
          gap: 24px;
          flex-wrap: wrap;
        }

        .feature-card,
        .feature-meta {
          padding: 26px 24px !important;
          border-radius: 18px;
        }
        .row {
          grid-template-columns: 70px 1fr;
          gap: 14px;
          padding: 18px 0;
        }
        .row-cover {
          display: none;
        }
        .row .num {
          font-size: 22px !important;
        }
        .row h4 {
          font-size: 16px !important;
        }

        .archive-side {
          padding: 28px 24px !important;
          border-radius: 18px;
        }
        .res-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .res-card {
          padding: 26px 24px !important;
        }

        .sub-inner h2 {
          font-size: clamp(28px, 8vw, 38px) !important;
        }

        footer {
          padding: 64px 24px 28px;
        }
        .footer-grid {
          gap: 44px;
          margin-bottom: 48px;
        }
        .footer-brand h3 {
          font-size: 17px;
        }
        .footer-contact {
          grid-template-columns: 1fr;
          gap: 4px;
        }
        .footer-bottom {
          font-size: 10px;
          letter-spacing: 0.12em;
        }
      }

/* ─── Sermon archive — pagination ───────────────────────── */
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    padding: 18px 0;
}
.archive-page-list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.archive-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    color: var(--ink-2);
    font-size: 14px;
    font-family: var(--mono);
    letter-spacing: 0.04em;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.archive-page-btn:hover:not(:disabled) {
    background: var(--paper-2);
    border-color: rgba(212, 165, 116, 0.55);
    color: var(--ink);
}
.archive-page-btn.is-current {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    cursor: default;
}
.archive-page-btn.is-current:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
.archive-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.archive-page-btn svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 720px) {
    .archive-pagination {
        margin-top: 24px;
        gap: 6px;
    }
    .archive-page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
