      :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;
      }

      /* ─────── NAV (shared, identical to news.html) ─────── */
      .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: 78vh;
        color: white;
        overflow: hidden;
        isolation: isolate;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 78% 20%,
            rgba(212, 165, 116, 0.4) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse at 10% 90%,
            rgba(107, 140, 175, 0.38) 0%,
            transparent 55%
          ),
          linear-gradient(180deg, #1e3a5f 0%, #0f2440 60%, #0b1c33 100%);
        z-index: -2;
      }
      .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-rule {
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background-image: linear-gradient(
          to bottom,
          transparent 0,
          transparent calc(2em - 1px),
          rgba(255, 255, 255, 0.04) calc(2em - 1px),
          rgba(255, 255, 255, 0.04) 2em
        );
        background-size: 100% 2em;
        mask: radial-gradient(
          ellipse at 30% 60%,
          rgba(0, 0, 0, 0.55),
          transparent 70%
        );
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        padding: 200px 48px 150px;
        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(44px, 5.4vw, 80px);
        font-weight: 700;
        line-height: 1.06;
        letter-spacing: -0.02em;
        margin-bottom: 32px;
        text-wrap: balance;
      }
      .hero-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
        letter-spacing: 0;
      }
      .hero-title .br {
        display: block;
      }
      .hero-lede {
        font-size: 17px;
        line-height: 1.85;
        max-width: 560px;
        color: rgba(255, 255, 255, 0.82);
      }

      /* Open notebook on the right */
      .notebook {
        position: relative;
        border-radius: 4px 22px 22px 4px;
        padding: 34px 32px 30px 46px;
        background: linear-gradient(180deg, #fbf6ea 0%, #efe2c5 100%);
        color: var(--ink);
        box-shadow:
          0 40px 100px rgba(0, 0, 0, 0.45),
          inset 0 0 0 1px rgba(184, 138, 82, 0.25),
          inset 14px 0 0 -10px rgba(184, 138, 82, 0.35);
        transform: rotate(-1.2deg);
      }
      .notebook::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 18px;
        bottom: 18px;
        width: 1.5px;
        background: rgba(184, 138, 82, 0.45);
      }
      .notebook::after {
        content: "";
        position: absolute;
        left: -8px;
        top: 28px;
        bottom: 28px;
        width: 14px;
        border-radius: 4px;
        background: repeating-linear-gradient(
          180deg,
          rgba(184, 138, 82, 0.55) 0 1px,
          transparent 1px 18px
        );
      }
      .nb-label {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.2em;
        color: var(--gold-deep);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
      }
      .nb-label::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold-deep);
      }
      .nb-title {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 30px;
        line-height: 1.15;
        color: var(--navy);
        margin-bottom: 18px;
      }
      .nb-list {
        list-style: none;
        counter-reset: idx;
      }
      .nb-list li {
        counter-increment: idx;
        display: grid;
        grid-template-columns: 28px 1fr auto;
        gap: 12px;
        align-items: center;
        padding: 12px 0;
        border-top: 1px dashed rgba(184, 138, 82, 0.45);
        transition: padding-left 0.2s;
      }
      .nb-list li:hover {
        padding-left: 6px;
      }
      .nb-list li::before {
        content: counter(idx, decimal-leading-zero);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: var(--gold-deep);
      }
      .nb-list li a {
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
      }
      .nb-list li:hover a {
        color: var(--gold-deep);
      }
      .nb-list li .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 12.5px;
        color: rgba(30, 58, 95, 0.6);
      }

      .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;
      }
      .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;
        }
      }

      /* ─────── 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;
      }
      .sec-head .left {
        max-width: 760px;
      }
      .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: 22px;
      }
      .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.06;
        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: 20px;
        font-size: 16.5px;
        line-height: 1.75;
        color: rgba(11, 23, 38, 0.7);
        max-width: 620px;
      }
      .sec-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 500;
        padding: 12px 18px;
        border-radius: 999px;
        background: var(--ink);
        color: white;
        transition:
          background 0.2s,
          gap 0.2s;
      }
      .sec-cta:hover {
        background: var(--navy);
        gap: 14px;
      }
      .sec-cta svg {
        width: 14px;
        height: 14px;
      }

      /* ═══════ 1 · 小組查經 ═══════ */
      .biblestudy {
        padding-bottom: 130px;
      }
      .bs-card {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 0;
        background: white;
        border-radius: 22px;
        border: 1px solid var(--line);
        overflow: hidden;
        box-shadow: var(--shadow-1);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .bs-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
      }
      .sg-left {
        position: relative;
        padding: 48px 52px;
        background:
          radial-gradient(
            900px 360px at 110% -10%,
            rgba(212, 165, 116, 0.16),
            transparent 55%
          ),
          linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
        color: white;
        overflow: hidden;
        isolation: isolate;
      }
      .sg-left::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 56px 56px;
        mask: radial-gradient(
          ellipse at 80% 30%,
          rgba(0, 0, 0, 0.5),
          transparent 70%
        );
      }
      .sg-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .sg-tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .sg-title {
        font-size: 44px;
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.015em;
        margin-bottom: 8px;
      }
      .sg-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .sg-en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        opacity: 0.65;
        margin-bottom: 22px;
      }
      .sg-lede {
        font-size: 15px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.78);
        margin-bottom: 28px;
        max-width: 480px;
      }
      .sg-pulse {
        display: flex;
        gap: 10px;
        align-items: center;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        padding: 10px 14px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.03);
        width: max-content;
        margin-bottom: 30px;
      }
      .sg-pulse .blink {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 12px var(--gold);
        animation: pulse 1.8s infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.4);
          opacity: 0.5;
        }
      }
      .bs-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 999px;
        background: var(--gold);
        color: white;
        font-size: 13.5px;
        font-weight: 600;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .bs-cta:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .bs-cta svg {
        width: 14px;
        height: 14px;
      }

      .sg-right {
        padding: 40px 44px;
        display: flex;
        flex-direction: column;
        background: white;
      }
      .sg-right h5 {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .sg-right h5::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .bs-groups {
        display: flex;
        flex-direction: column;
        gap: 14px;
        flex: 1;
      }
      .bs-group {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 16px;
        align-items: center;
        padding: 14px 16px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--paper-2);
        transition:
          background 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }
      .bs-group:hover {
        background: white;
        border-color: rgba(212, 165, 116, 0.35);
        transform: translateX(3px);
      }
      .bs-group .ch {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(212, 165, 116, 0.16);
        color: var(--gold-deep);
        font-family: var(--serif);
        font-style: italic;
        font-size: 30px;
        line-height: 1;
      }
      .bs-group .info b {
        font-size: 15px;
        font-weight: 600;
        display: block;
        margin-bottom: 3px;
      }
      .bs-group .info .sub {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        color: rgba(11, 23, 38, 0.55);
        text-transform: uppercase;
      }
      .bs-group .when {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--navy);
        letter-spacing: 0.08em;
        text-align: right;
      }
      .bs-group .when b {
        display: block;
        font-family: var(--sans);
        font-size: 13px;
        color: var(--ink);
        margin-bottom: 2px;
        letter-spacing: 0;
        font-weight: 600;
      }

      /* ═══════ 2 · 成人主日學 ═══════ */
      .sunday-school {
        background: var(--paper);
        padding-top: 130px;
        padding-bottom: 130px;
      }

      .ss-current {
        margin-bottom: 56px;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 36px;
        background: white;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow-2);
      }
      .ss-poster {
        position: relative;
        background:
          radial-gradient(
            600px 220px at 30% 110%,
            rgba(212, 165, 116, 0.4),
            transparent 60%
          ),
          linear-gradient(160deg, #1a2f4a 0%, #0b1726 100%);
        color: white;
        padding: 48px 44px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 360px;
        overflow: hidden;
        isolation: isolate;
      }
      .ss-poster::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.5;
        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;
      }
      .ss-poster .badge {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 999px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        background: var(--gold);
        color: white;
        text-transform: uppercase;
        font-weight: 600;
      }
      .ss-poster .ref {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold);
        opacity: 0.95;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .ss-poster h3 {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 8px;
      }
      .ss-poster .ch-title {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.005em;
      }
      .ss-poster .who {
        margin-top: 22px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        opacity: 0.7;
        text-transform: uppercase;
      }

      .ss-body {
        padding: 44px 44px;
      }
      .ss-body .meta-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 5px 12px;
        border-radius: 999px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        background: rgba(212, 165, 116, 0.16);
        color: var(--gold-deep);
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .ss-body h4 {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.01em;
        margin-bottom: 12px;
      }
      .ss-body h4 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .ss-body .lede {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(11, 23, 38, 0.72);
        margin-bottom: 22px;
      }
      .ss-body .takeaway {
        background: var(--paper-2);
        border-left: 2px solid var(--gold);
        padding: 16px 20px;
        border-radius: 4px;
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        line-height: 1.6;
        color: var(--navy);
        margin-bottom: 24px;
      }
      .ss-meta-row {
        display: flex;
        gap: 28px;
        padding-top: 22px;
        border-top: 1px solid var(--line);
        margin-bottom: 24px;
        flex-wrap: wrap;
      }
      .ss-meta-row > div {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: rgba(11, 23, 38, 0.55);
        text-transform: uppercase;
      }
      .ss-meta-row b {
        display: block;
        font-family: var(--sans);
        font-size: 13.5px;
        color: var(--ink);
        margin-top: 4px;
        letter-spacing: 0;
        text-transform: none;
        font-weight: 600;
      }
      .ss-body .actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      /* Post list */
      .ss-archive-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 22px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line);
      }
      .ss-archive-head h5 {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--navy);
        text-transform: uppercase;
      }
      .ss-archive-head .total {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--gold-deep);
        letter-spacing: 0.14em;
      }

      .ss-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .ss-row {
        display: grid;
        grid-template-columns: 60px 110px 1fr 140px 36px;
        gap: 28px;
        align-items: center;
        padding: 22px 4px;
        border-bottom: 1px solid var(--line);
        transition:
          background 0.2s,
          padding-left 0.2s;
      }
      .ss-row:hover {
        background: rgba(212, 165, 116, 0.05);
        padding-left: 18px;
      }
      .ss-row .ep {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.16em;
        color: var(--gold-deep);
      }
      .ss-row .dt {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.06em;
        color: var(--navy);
      }
      .ss-row .body h5 {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 4px;
        letter-spacing: -0.005em;
      }
      .ss-row .body h5 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .ss-row .body .scripture {
        font-family: var(--serif);
        font-style: italic;
        font-size: 13.5px;
        color: rgba(11, 23, 38, 0.6);
      }
      .ss-row .by {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        color: rgba(11, 23, 38, 0.55);
        text-transform: uppercase;
      }
      .ss-row .arr {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: grid;
        place-items: center;
        transition:
          background 0.2s,
          border-color 0.2s,
          color 0.2s;
      }
      .ss-row:hover .arr {
        background: var(--ink);
        border-color: var(--ink);
        color: white;
      }
      .ss-row .arr svg {
        width: 13px;
        height: 13px;
      }

      /* ═══════ 3 · 課程與書籍 (Imprints) ═══════ */
      .library {
        padding-top: 130px;
        padding-bottom: 130px;
      }

      /* Shelf — 4 spine cards */
      .shelf {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
      }
      .imprint {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        aspect-ratio: 3 / 4.2;
        color: white;
        padding: 32px 28px 28px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        box-shadow: var(--shadow-1);
        transition:
          transform 0.4s ease,
          box-shadow 0.4s ease;
        isolation: isolate;
      }
      .imprint::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
      }
      .imprint::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image:
          linear-gradient(
            180deg,
            transparent 0,
            transparent 16px,
            rgba(255, 255, 255, 0.04) 16px,
            rgba(255, 255, 255, 0.04) 17px,
            transparent 17px
          ),
          linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.18) 100%),
          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.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
        background-size:
          100% 18px,
          100% 100%,
          100% 100%;
        mix-blend-mode: overlay;
        opacity: 0.7;
        pointer-events: none;
      }
      .imprint:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-3);
      }
      .imprint.k-story::before {
        background:
          radial-gradient(
            ellipse at 70% 10%,
            rgba(255, 255, 255, 0.16),
            transparent 55%
          ),
          linear-gradient(160deg, #4a3120 0%, #2a1c14 100%);
      }
      .imprint.k-life::before {
        background:
          radial-gradient(
            ellipse at 70% 10%,
            rgba(255, 255, 255, 0.18),
            transparent 55%
          ),
          linear-gradient(160deg, #1e3a5f 0%, #0b1726 100%);
      }
      .imprint.k-tract::before {
        background:
          radial-gradient(
            ellipse at 70% 10%,
            rgba(255, 255, 255, 0.2),
            transparent 55%
          ),
          linear-gradient(160deg, #b88a52 0%, #8a5f30 100%);
      }
      .imprint.k-garden::before {
        background:
          radial-gradient(
            ellipse at 70% 10%,
            rgba(255, 255, 255, 0.16),
            transparent 55%
          ),
          linear-gradient(160deg, #3d5a4b 0%, #1f3329 100%);
      }
      .imprint .stamp {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        opacity: 0.85;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .imprint .stamp::before {
        content: "";
        width: 18px;
        height: 1px;
        background: currentColor;
        opacity: 0.7;
      }
      .imprint .imprint-glyph {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 100px;
        line-height: 0.9;
        margin: 6px 0 18px;
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.02em;
      }
      .imprint h4 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.18;
        margin-bottom: 4px;
        letter-spacing: -0.005em;
      }
      .imprint .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14.5px;
        opacity: 0.65;
        margin-bottom: 18px;
      }
      .imprint p {
        font-size: 13.5px;
        line-height: 1.75;
        opacity: 0.82;
        margin-bottom: auto;
      }
      .imprint .foot {
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }
      .imprint .foot .count b {
        color: white;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.04em;
      }
      .imprint .arr {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.4);
        display: grid;
        place-items: center;
        transition:
          background 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }
      .imprint:hover .arr {
        background: white;
        border-color: white;
        color: var(--ink);
        transform: rotate(-45deg);
      }
      .imprint .arr svg {
        width: 12px;
        height: 12px;
      }

      /* ─── Featured Event · 生命福音 講座系列 ─── */
      section.life-rack {
        margin-bottom: 50px;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow-2);
        position: relative;
        isolation: isolate;
        background:
          radial-gradient(
            900px 360px at 110% -10%,
            rgba(212, 165, 116, 0.18),
            transparent 55%
          ),
          linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
        color: white;
      }
      section.life-rack::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.45;
        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;
      }
      .life-rack .cr-status svg {
        display: block;
      }

      .feature-event {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 44px;
        padding: 36px 44px 36px;
      }
      .feature-event.no-poster {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .fe-poster {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 590 / 835;
        background: #0b1726;
        box-shadow:
          0 30px 60px rgba(0, 0, 0, 0.45),
          inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        transition: transform 0.35s ease;
        align-self: start;
      }
      .fe-poster:hover {
        transform: translateY(-3px) rotate(-0.4deg);
      }
      .fe-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .fe-poster-tag {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(8px);
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        color: white;
        text-transform: uppercase;
      }
      .fe-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-width: 0;
      }
      .fe-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        font-weight: 500;
      }
      .fe-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .fe-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.015em;
      }
      .fe-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .fe-subtitle {
        font-family: var(--serif);
        font-style: italic;
        font-size: 19px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: -4px;
      }
      .fe-lede {
        font-size: 14.5px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.78);
        max-width: 580px;
        margin: 4px 0 6px;
      }

      .fe-sessions {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .fe-session {
        display: grid;
        grid-template-columns: 80px 1fr auto;
        gap: 18px;
        align-items: center;
        padding: 14px 18px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition:
          background 0.2s,
          border-color 0.2s;
      }
      .fe-session:hover {
        background: rgba(212, 165, 116, 0.06);
        border-color: rgba(212, 165, 116, 0.3);
      }
      .fe-s-num {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
      }
      .fe-s-body {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
      }
      .fe-s-title {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.005em;
        line-height: 1.25;
      }
      .fe-s-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .fe-s-when {
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.65);
      }
      .fe-watch {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 999px;
        background: #c4302b;
        color: white;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.02em;
        transition:
          background 0.2s,
          transform 0.2s;
        white-space: nowrap;
      }
      .fe-watch:hover {
        background: #a8231f;
        transform: translateY(-2px);
      }
      .fe-watch svg {
        width: 18px;
        height: 18px;
      }

      .fe-where {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(212, 165, 116, 0.08);
        border: 1px solid rgba(212, 165, 116, 0.22);
        font-size: 13.5px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.85);
      }
      .fe-where svg {
        width: 16px;
        height: 16px;
        color: var(--gold);
        flex-shrink: 0;
      }
      .fe-where b {
        color: white;
        font-weight: 600;
      }

      .fe-bio {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
        margin-top: 4px;
      }
      .fe-bio summary {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: var(--gold);
        text-transform: uppercase;
        padding: 6px 0;
        list-style: none;
      }
      .fe-bio summary::-webkit-details-marker {
        display: none;
      }
      .fe-bio summary::after {
        content: "+";
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: rgba(212, 165, 116, 0.18);
        color: var(--gold);
        display: grid;
        place-items: center;
        font-size: 14px;
        line-height: 1;
        transition: transform 0.2s;
      }
      .fe-bio[open] summary::after {
        content: "−";
      }
      .fe-bio p {
        font-size: 13.5px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.78);
        padding-top: 12px;
        max-width: 620px;
      }

      .life-foot {
        padding: 22px 44px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(0, 0, 0, 0.18);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        flex-wrap: wrap;
      }
      .life-foot-host {
        color: rgba(255, 255, 255, 0.78);
      }

      /* ─── Coming-Soon Racks (Storyteller · Gospel for Life) ─── */
      .coming-rack {
        margin-bottom: 50px;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow-2);
        position: relative;
        isolation: isolate;
      }
      .story-rack {
        background:
          radial-gradient(
            900px 360px at 110% -10%,
            rgba(212, 165, 116, 0.22),
            transparent 55%
          ),
          linear-gradient(160deg, #4a3120 0%, #2a1c14 100%);
        color: white;
      }
      .life-rack {
        background:
          radial-gradient(
            900px 360px at 110% -10%,
            rgba(212, 165, 116, 0.18),
            transparent 55%
          ),
          linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
        color: white;
      }
      .coming-rack::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.45;
        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;
      }
      .cr-head {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 24px;
        align-items: end;
        padding: 38px 44px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }
      .cr-head .tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .cr-head .tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .cr-head h4 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.015em;
        margin-bottom: 8px;
      }
      .cr-head h4 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .cr-head .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        opacity: 0.65;
      }
      .cr-status {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.78);
        text-transform: uppercase;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
      }
      .cr-status .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 12px var(--gold);
        animation: pulse 1.8s infinite;
      }

      .cr-body {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 0;
        align-items: stretch;
      }
      .cr-cover {
        position: relative;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.18);
        display: grid;
        place-items: center;
        min-height: 280px;
        overflow: hidden;
      }
      .cr-cover.ink {
        background: rgba(0, 0, 0, 0.25);
      }

      /* Quill + text-strokes illustration for storyteller (essays) */
      .cr-cover .quill {
        position: relative;
        width: 200px;
        height: 220px;
        display: grid;
        place-items: center;
      }
      .cr-cover .quill .glyph {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 140px;
        line-height: 0.9;
        color: var(--gold);
        text-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
        position: relative;
        z-index: 2;
        letter-spacing: -0.02em;
      }
      .cr-cover .quill .strokes {
        position: absolute;
        left: 50%;
        bottom: 8px;
        transform: translateX(-50%);
        width: 170px;
        display: flex;
        flex-direction: column;
        gap: 7px;
        z-index: 1;
      }
      .cr-cover .quill .strokes span {
        display: block;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(
          90deg,
          rgba(212, 165, 116, 0.55),
          rgba(212, 165, 116, 0.05)
        );
      }
      .cr-cover .quill .strokes span:nth-child(1) {
        width: 100%;
      }
      .cr-cover .quill .strokes span:nth-child(2) {
        width: 80%;
      }
      .cr-cover .quill .strokes span:nth-child(3) {
        width: 92%;
      }
      .cr-cover .quill .strokes span:nth-child(4) {
        width: 64%;
      }

      /* Microphone illustration for storyteller */
      .cr-cover .mic {
        width: 96px;
        height: 96px;
        border-radius: 22px;
        background: linear-gradient(
          160deg,
          rgba(212, 165, 116, 0.22),
          rgba(212, 165, 116, 0.06)
        );
        border: 1px solid rgba(212, 165, 116, 0.45);
        display: grid;
        place-items: center;
        color: var(--gold);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        position: relative;
        z-index: 2;
      }
      .cr-cover .mic svg {
        width: 50px;
        height: 50px;
      }
      .cr-cover .lines {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 56px;
      }
      .cr-cover .lines span {
        display: block;
        width: 4px;
        border-radius: 999px;
        background: linear-gradient(
          180deg,
          var(--gold),
          rgba(212, 165, 116, 0.2)
        );
        animation: bars 1.6s ease-in-out infinite;
      }
      .cr-cover .lines span:nth-child(1) {
        height: 22px;
        animation-delay: 0s;
      }
      .cr-cover .lines span:nth-child(2) {
        height: 38px;
        animation-delay: 0.1s;
      }
      .cr-cover .lines span:nth-child(3) {
        height: 30px;
        animation-delay: 0.2s;
      }
      .cr-cover .lines span:nth-child(4) {
        height: 50px;
        animation-delay: 0.3s;
      }
      .cr-cover .lines span:nth-child(5) {
        height: 28px;
        animation-delay: 0.4s;
      }
      .cr-cover .lines span:nth-child(6) {
        height: 42px;
        animation-delay: 0.5s;
      }
      .cr-cover .lines span:nth-child(7) {
        height: 22px;
        animation-delay: 0.6s;
      }
      .cr-cover .lines span:nth-child(8) {
        height: 18px;
        animation-delay: 0.7s;
      }
      @keyframes bars {
        0%,
        100% {
          transform: scaleY(0.4);
          transform-origin: bottom;
        }
        50% {
          transform: scaleY(1);
          transform-origin: bottom;
        }
      }

      /* Paper stack for Gospel for Life */
      .cr-cover .paper-stack {
        position: relative;
        width: 180px;
        height: 220px;
      }
      .cr-cover .paper-stack .sheet {
        position: absolute;
        inset: 0;
        background: #fbf6ea;
        border-radius: 4px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(184, 138, 82, 0.3);
      }
      .cr-cover .paper-stack .s3 {
        transform: rotate(-6deg) translate(-10px, 8px);
        background: #e9dfc7;
        opacity: 0.5;
      }
      .cr-cover .paper-stack .s2 {
        transform: rotate(-2deg) translate(-4px, 4px);
        background: #f2e8d0;
        opacity: 0.75;
      }
      .cr-cover .paper-stack .s1 {
        transform: rotate(2deg);
        padding: 22px 18px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .cr-cover .paper-stack .pl {
        display: block;
        height: 6px;
        border-radius: 999px;
        background: rgba(74, 49, 32, 0.22);
      }
      .cr-cover .paper-stack .pl-1 {
        width: 70%;
        height: 9px;
        background: rgba(74, 49, 32, 0.55);
      }
      .cr-cover .paper-stack .pl-2 {
        width: 100%;
      }
      .cr-cover .paper-stack .pl-3 {
        width: 88%;
      }
      .cr-cover .paper-stack .pl-4 {
        width: 62%;
      }

      .cr-text {
        padding: 36px 44px;
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      .cr-text .lede {
        font-size: 16px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.85);
        max-width: 580px;
      }
      .cr-promise {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .cr-promise li {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 24px;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 14px;
        line-height: 1.55;
      }
      .cr-promise li:first-child {
        border-top: none;
      }
      .cr-promise li b {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        font-weight: 500;
        color: var(--gold);
        text-transform: uppercase;
        padding-top: 2px;
      }
      .cr-promise li span {
        color: rgba(255, 255, 255, 0.82);
      }
      .cr-cta-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        padding-top: 6px;
      }
      .cr-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 22px;
        border-radius: 999px;
        font-size: 13.5px;
        font-weight: 600;
        transition:
          background 0.2s,
          transform 0.2s,
          border-color 0.2s,
          color 0.2s;
      }
      .cr-btn svg {
        width: 14px;
        height: 14px;
      }
      .cr-btn.primary {
        background: var(--gold);
        color: white;
      }
      .cr-btn.primary:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .cr-btn.ghost {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.04);
        color: white;
      }
      .cr-btn.ghost:hover {
        background: rgba(255, 255, 255, 0.12);
      }

      /* ─── Storyteller Arc List · 小明和老王 chapter index ─── */
      .arc-list {
        display: flex;
        flex-direction: column;
      }
      .arc-row {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 32px;
        align-items: center;
        padding: 22px 44px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: background 0.25s;
      }
      .arc-row:last-child {
        border-bottom: none;
      }
      .arc-row:hover {
        background: rgba(212, 165, 116, 0.06);
      }
      .arc-row .arc-meta {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .arc-row .arc-num {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 4px;
      }
      .arc-row h5 {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.18;
        letter-spacing: -0.01em;
        color: white;
        text-wrap: balance;
      }
      .arc-row h5 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .arc-row .arc-en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 2px;
      }
      .arc-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .pill {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-family: var(--mono);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }
      .pill:hover {
        background: var(--gold);
        color: white;
        border-color: var(--gold);
        transform: translateY(-2px);
      }
      .pill.latest {
        background: var(--gold);
        color: white;
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.18);
      }
      .pill.first {
        background: rgba(212, 165, 116, 0.15);
        color: var(--gold);
        border-color: rgba(212, 165, 116, 0.45);
        font-style: italic;
        font-family: var(--serif);
        font-size: 17px;
      }
      .pill.latest:hover,
      .pill.first:hover {
        transform: translateY(-2px);
      }

      /* Story-rack status pill (override generic .cr-status used elsewhere) */
      .story-rack .cr-status .glyph {
        font-family: var(--serif);
        font-style: italic;
        color: var(--gold);
        font-size: 15px;
        line-height: 1;
        margin-right: 4px;
      }
      .story-rack .cr-status {
        padding: 8px 16px;
      }

      .story-foot {
        padding: 22px 44px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(0, 0, 0, 0.18);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        flex-wrap: wrap;
      }
      .story-foot-btn {
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 20px;
        border-radius: 999px;
        background: var(--gold);
        letter-spacing: 0.14em;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .story-foot-btn:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .story-foot-btn svg {
        width: 12px;
        height: 12px;
      }

      /* Story rack uses warm brown — give it its own gradient even without coming-rack */
      section.story-rack {
        margin-bottom: 50px;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow-2);
        position: relative;
        isolation: isolate;
        background:
          radial-gradient(
            900px 360px at 110% -10%,
            rgba(212, 165, 116, 0.22),
            transparent 55%
          ),
          linear-gradient(160deg, #4a3120 0%, #2a1c14 100%);
        color: white;
      }
      section.story-rack::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.45;
        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;
      }

      /* ─── Garden Audio Programme (Season list) ─── */
      .garden-block {
        margin-bottom: 50px;
        background: linear-gradient(160deg, #3d5a4b 0%, #1f3329 100%);
        border-radius: 22px;
        overflow: hidden;
        color: white;
        box-shadow: var(--shadow-2);
        position: relative;
        isolation: isolate;
      }
      .garden-block::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.5;
        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;
      }
      .garden-head {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 24px;
        align-items: end;
        padding: 38px 44px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }
      .garden-head .tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .garden-head .tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .garden-head h4 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.015em;
        margin-bottom: 8px;
      }
      .garden-head h4 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .garden-head .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        opacity: 0.65;
      }
      .garden-head .legend {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
      }
      .garden-head .legend svg {
        width: 12px;
        height: 12px;
        color: var(--gold);
      }

      .garden-sets {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
      }
      .gset {
        padding: 26px 30px 22px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        gap: 12px;
        transition: background 0.25s;
      }
      .gset:hover {
        background: rgba(255, 255, 255, 0.04);
      }
      .gset:nth-child(3n) {
        border-right: none;
      }
      .garden-sets > .gset:nth-last-child(-n + 3) {
        border-bottom: none;
      }
      .gset .head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 10px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
      }
      .gset .ep {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
      }
      .gset .series {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
      }
      .gset h5 {
        font-size: 16.5px;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.005em;
        text-wrap: balance;
      }
      .gset h5 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .gset ol {
        list-style: none;
        counter-reset: gx;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
      }
      .gset ol li {
        counter-increment: gx;
        display: grid;
        grid-template-columns: 20px 1fr 22px;
        gap: 10px;
        align-items: center;
        padding: 8px 0;
        font-size: 13px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.82);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }
      .gset ol li:first-child {
        border-top: none;
      }
      .gset ol li::before {
        content: counter(gx);
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.4);
      }
      .gset ol li.covenant {
        color: rgba(255, 255, 255, 0.62);
        font-family: var(--serif);
        font-style: italic;
        font-size: 13.5px;
      }
      .gset ol li .play {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(212, 165, 116, 0.18);
        color: var(--gold);
        display: grid;
        place-items: center;
        transition:
          background 0.2s,
          color 0.2s,
          transform 0.2s;
        cursor: pointer;
      }
      .gset ol li .play:hover {
        background: var(--gold);
        color: white;
        transform: scale(1.1);
      }
      .gset ol li .play svg {
        width: 8px;
        height: 8px;
        margin-left: 1px;
      }
      .garden-foot {
        padding: 22px 44px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(0, 0, 0, 0.18);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        flex-wrap: wrap;
      }
      .garden-foot a {
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 20px;
        border-radius: 999px;
        background: var(--gold);
        letter-spacing: 0.14em;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .garden-foot a:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .garden-foot a svg {
        width: 12px;
        height: 12px;
      }

      /* ─── Tract Rack · 福音小冊子全部篇目 ─── */
      .tract-rack {
        margin-bottom: 50px;
        border-radius: 22px;
        overflow: hidden;
        background:
          radial-gradient(
            900px 320px at 110% -10%,
            rgba(212, 165, 116, 0.22),
            transparent 55%
          ),
          linear-gradient(180deg, #fbf6ea 0%, #f3e8d0 100%);
        border: 1px solid rgba(184, 138, 82, 0.28);
        box-shadow: var(--shadow-2);
        color: var(--ink);
        position: relative;
      }
      .tract-rack::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(
          rgba(184, 138, 82, 0.04) 1px,
          transparent 1px
        );
        background-size: 100% 1.6em;
        opacity: 0.5;
        mask: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
      }
      .tract-rack-head {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 24px;
        align-items: end;
        padding: 38px 44px 28px;
        border-bottom: 1px solid rgba(184, 138, 82, 0.28);
        position: relative;
      }
      .tract-rack-head .tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .tract-rack-head .tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold-deep);
      }
      .tract-rack-head h4 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.015em;
        margin-bottom: 8px;
        color: #4a3120;
      }
      .tract-rack-head h4 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold-deep);
      }
      .tract-rack-head .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        color: rgba(74, 49, 32, 0.6);
      }
      .tract-rack-head .hand-stamp {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: var(--gold-deep);
        text-transform: uppercase;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(184, 138, 82, 0.4);
        background: rgba(255, 255, 255, 0.5);
      }
      .tract-rack-head .hand-stamp svg {
        width: 14px;
        height: 14px;
        color: var(--gold-deep);
      }

      .tract-grid {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        position: relative;
      }
      .tract {
        padding: 28px 32px 26px;
        border-right: 1px solid rgba(184, 138, 82, 0.22);
        border-bottom: 1px solid rgba(184, 138, 82, 0.22);
        display: flex;
        flex-direction: column;
        gap: 12px;
        transition:
          background 0.25s,
          transform 0.25s;
        position: relative;
        background: transparent;
      }
      .tract:hover {
        background: rgba(255, 255, 255, 0.55);
        transform: translateY(-2px);
      }
      .tract:nth-child(3n) {
        border-right: none;
      }
      .tract-grid > .tract:nth-last-child(-n + 3) {
        border-bottom: none;
      }
      .tract-no {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
        font-weight: 500;
      }
      .tract h5 {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.32;
        letter-spacing: -0.005em;
        color: #4a3120;
        text-wrap: balance;
      }
      .tract h5 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold-deep);
      }
      .tract-lede {
        font-size: 13.5px;
        line-height: 1.75;
        color: rgba(74, 49, 32, 0.78);
        font-family: var(--serif);
        font-style: italic;
        letter-spacing: 0.005em;
        margin: 2px 0 4px;
      }
      .tract-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.12em;
        color: rgba(74, 49, 32, 0.55);
        text-transform: uppercase;
        padding-top: 10px;
        border-top: 1px dashed rgba(184, 138, 82, 0.4);
        margin-top: auto;
      }
      .tract-meta .dot {
        opacity: 0.4;
      }

      .tract-actions {
        display: flex;
        gap: 8px;
        align-items: center;
        padding-top: 6px;
      }
      .t-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 9px 16px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.02em;
        transition:
          background 0.2s,
          color 0.2s,
          transform 0.2s,
          border-color 0.2s;
      }
      .t-btn svg {
        width: 12px;
        height: 12px;
      }
      .t-btn.primary {
        background: var(--gold-deep);
        color: white;
      }
      .t-btn.primary:hover {
        background: #4a3120;
        transform: translateY(-1px);
      }
      .t-btn.ghost {
        width: 36px;
        height: 36px;
        padding: 0;
        border: 1px solid rgba(184, 138, 82, 0.4);
        background: rgba(255, 255, 255, 0.5);
        color: var(--gold-deep);
      }
      .t-btn.ghost:hover {
        background: var(--gold-deep);
        color: white;
        border-color: var(--gold-deep);
      }

      .tract-rack-foot {
        padding: 22px 44px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(184, 138, 82, 0.28);
        background: rgba(184, 138, 82, 0.06);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: var(--gold-deep);
        text-transform: uppercase;
        flex-wrap: wrap;
        position: relative;
      }
      .t-foot-btn {
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 20px;
        border-radius: 999px;
        background: #4a3120;
        letter-spacing: 0.14em;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .t-foot-btn:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .t-foot-btn svg {
        width: 12px;
        height: 12px;
      }

      /* Reading list — latest items per imprint */
      .reading {
        background: white;
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow-1);
        overflow: hidden;
      }
      .reading-head {
        padding: 28px 36px;
        border-bottom: 1px solid var(--line);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        background: var(--paper-2);
      }
      .reading-head h5 {
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: 0.18em;
        color: var(--navy);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .reading-head h5::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }

      .reading-filters {
        display: flex;
        gap: 4px;
        padding: 4px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 999px;
      }
      .reading-filters button {
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 12.5px;
        font-weight: 500;
        color: var(--ink);
        transition:
          background 0.2s,
          color 0.2s;
        white-space: nowrap;
      }
      .reading-filters button:hover {
        background: var(--paper-2);
      }
      .reading-filters button.is-active {
        background: var(--ink);
        color: white;
      }

      .reading-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
      }
      .reading-item {
        padding: 28px 32px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: background 0.2s;
      }
      .reading-item:hover {
        background: var(--paper-2);
      }
      .reading-item:nth-child(3n) {
        border-right: none;
      }
      .reading-grid > .reading-item:nth-last-child(-n + 3) {
        border-bottom: none;
      }
      .reading-item .kind {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 6px;
      }
      .reading-item .kind .swatch {
        width: 10px;
        height: 10px;
        border-radius: 2px;
      }
      .reading-item.k-story .kind {
        color: #4a3120;
      }
      .reading-item.k-story .kind .swatch {
        background: #4a3120;
      }
      .reading-item.k-life .kind {
        color: var(--navy);
      }
      .reading-item.k-life .kind .swatch {
        background: var(--navy);
      }
      .reading-item.k-tract .kind {
        color: var(--gold-deep);
      }
      .reading-item.k-tract .kind .swatch {
        background: var(--gold-deep);
      }
      .reading-item.k-garden .kind {
        color: #3d5a4b;
      }
      .reading-item.k-garden .kind .swatch {
        background: #3d5a4b;
      }
      .reading-item h5 {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 6px;
        letter-spacing: -0.005em;
      }
      .reading-item h5 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .reading-item .by {
        font-family: var(--serif);
        font-style: italic;
        font-size: 13.5px;
        color: rgba(11, 23, 38, 0.55);
        margin-bottom: 8px;
      }
      .reading-item .meta {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.1em;
        color: rgba(11, 23, 38, 0.5);
        display: flex;
        gap: 14px;
        align-items: center;
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px dashed var(--line);
      }
      .reading-item .meta .dur {
        padding: 2px 7px;
        border-radius: 4px;
        background: rgba(212, 165, 116, 0.14);
        color: var(--gold-deep);
      }

      /* ─────── CLOSER ─────── */
      .closer {
        padding: 130px 48px;
        background:
          linear-gradient(135deg, rgba(11, 23, 38, 0.7), rgba(30, 58, 95, 0.6)),
          url("https://images.unsplash.com/photo-1474932430478-367dbb6832c1?w=2400&auto=format&fit=crop&q=80");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .closer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at center,
          transparent 30%,
          rgba(11, 23, 38, 0.6)
        );
      }
      .closer-inner {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
		padding-left: 24px;
		padding-right: 24px;
      }
      .closer .quote-mark {
        font-family: var(--serif);
        font-size: 100px;
        line-height: 1;
        color: var(--gold);
      }
      .closer h2 {
        font-family: var(--serif);
        font-size: clamp(40px, 5.2vw, 64px);
        font-weight: 400;
        line-height: 1.22;
        letter-spacing: -0.01em;
        margin-bottom: 16px;
      }
      .closer h2 em {
        font-style: italic;
        color: var(--gold);
      }
      .closer .ref {
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: 0.2em;
        opacity: 0.7;
        text-transform: uppercase;
        margin-bottom: 28px;
      }
      .closer p {
        font-size: 17px;
        line-height: 1.75;
        opacity: 0.85;
        max-width: 620px;
        margin: 0 auto 36px;
      }
      .closer .hero-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 999px;
        font-size: 13.5px;
        font-weight: 600;
        transition:
          transform 0.2s,
          background 0.2s,
          color 0.2s;
      }
      .btn svg {
        width: 14px;
        height: 14px;
      }
      .btn-solid {
        background: var(--ink);
        color: white;
      }
      .btn-solid:hover {
        background: var(--navy);
        transform: translateY(-2px);
      }
      .btn-line {
        border: 1px solid var(--line);
        color: var(--ink);
        background: white;
      }
      .btn-line:hover {
        background: var(--paper);
        border-color: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
      }
      .btn-primary {
        background: white;
        color: var(--navy);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
        background: var(--gold);
        color: white;
      }
      .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);
      }

      /* ─────── FOOTER (identical to news.html) ─────── */
      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;
      }
      .reveal.d5 {
        transition-delay: 0.3s;
      }

      .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 .notebook {
        animation: heroIn 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.65s both;
      }
      @keyframes heroIn {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      /* 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: 130px 28px 130px;
        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;
      }

      /* ─────── 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 120px;
        }
        .hero-meta {
          padding: 0 32px;
        }
        .bs-card {
          grid-template-columns: 1fr;
        }
        .sg-left {
          padding: 36px 32px;
        }
        .sg-right {
          padding: 32px;
        }
        .ss-current {
          grid-template-columns: 1fr;
        }
        .ss-body {
          padding: 36px 32px;
        }
        .ss-row {
          grid-template-columns: 50px 90px 1fr 36px;
        }
        .ss-row .by {
          display: none;
        }
        .shelf {
          grid-template-columns: repeat(2, 1fr);
        }
        .garden-head {
          padding: 30px 28px 24px;
        }
        .arc-row {
          padding: 20px 28px;
          grid-template-columns: 240px 1fr;
          gap: 24px;
        }
        .feature-event {
          grid-template-columns: 240px 1fr;
          gap: 28px;
          padding: 28px;
        }
        .fe-title {
          font-size: 28px;
        }
        .fe-session {
          grid-template-columns: 60px 1fr auto;
          padding: 12px 14px;
          gap: 12px;
        }
        .fe-s-title {
          font-size: 16px;
        }
        .life-foot {
          padding: 18px 28px;
        }
        .arc-row h5 {
          font-size: 19px;
        }
        .story-foot {
          padding: 18px 28px;
        }
        .cr-head {
          padding: 30px 28px 24px;
        }
        .cr-head h4 {
          font-size: 26px;
        }
        .cr-body {
          grid-template-columns: 1fr;
        }
        .cr-cover {
          min-height: 220px;
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .cr-text {
          padding: 28px 28px;
        }
        .garden-head h4 {
          font-size: 26px;
        }
        .garden-sets {
          grid-template-columns: 1fr 1fr;
        }
        .gset:nth-child(3n) {
          border-right: 1px solid rgba(255, 255, 255, 0.08);
        }
        .gset:nth-child(2n) {
          border-right: none;
        }
        .garden-sets > .gset:nth-last-child(-n + 3) {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .garden-sets > .gset:nth-last-child(-n + 2) {
          border-bottom: none;
        }
        .garden-foot {
          padding: 18px 28px;
        }
        .tract-rack-head {
          padding: 30px 28px 24px;
        }
        .tract-rack-head h4 {
          font-size: 26px;
        }
        .tract-grid {
          grid-template-columns: 1fr 1fr;
        }
        .tract:nth-child(3n) {
          border-right: 1px solid rgba(184, 138, 82, 0.22);
        }
        .tract:nth-child(2n) {
          border-right: none;
        }
        .tract-grid > .tract:nth-last-child(-n + 3) {
          border-bottom: 1px solid rgba(184, 138, 82, 0.22);
        }
        .tract-grid > .tract:nth-last-child(-n + 2) {
          border-bottom: none;
        }
        .tract-rack-foot {
          padding: 18px 28px;
        }
        .reading-grid {
          grid-template-columns: 1fr 1fr;
        }
        .reading-item:nth-child(3n) {
          border-right: 1px solid var(--line);
        }
        .reading-item:nth-child(2n) {
          border-right: none;
        }
        .reading-grid > .reading-item:nth-last-child(-n + 3) {
          border-bottom: 1px solid var(--line);
        }
        .reading-grid > .reading-item:nth-last-child(-n + 2) {
          border-bottom: none;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .footer-brand {
          max-width: none;
        }
        section {
          padding: 100px 32px;
        }
        footer {
          padding: 80px 32px 32px;
        }
      }

      @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 60px;
          gap: 36px;
        }
        .hero-title {
          font-size: clamp(36px, 11vw, 54px) !important;
          margin-bottom: 22px;
        }
        .hero-lede {
          font-size: 14.5px;
        }
        .notebook {
          padding: 28px 26px 24px 40px;
        }
        .nb-title {
          font-size: 22px;
        }
        .hero-meta {
          display: none;
        }

        .sg-card {
          grid-template-columns: 1fr !important;
        }
        .sg-title {
          font-size: 32px;
        }
        .sg-left,
        .sg-right {
          padding: 28px 24px !important;
        }
        .bs-group {
          grid-template-columns: 48px 1fr;
          gap: 14px;
          padding: 12px 14px;
        }
        .bs-group .ch {
          width: 48px;
          height: 48px;
          font-size: 24px;
        }
        .bs-group .when {
          grid-column: 2 / -1;
          text-align: left;
          padding-top: 4px;
        }

        /* Mobile: collapse sg-group into 3 stacked rows */
        .sg-group {
          grid-template-columns: 1fr !important;
          gap: 10px !important;
          padding: 16px !important;
          text-align: left;
        }
        .sg-group .ch {
          width: 48px !important;
          height: 48px !important;
          font-size: 24px !important;
        }
        .sg-group .when {
          text-align: left !important;
        }

        .ss-poster {
          padding: 32px 26px;
          min-height: auto;
        }
        .ss-poster h3 {
          font-size: 28px;
        }
        .ss-body {
          padding: 28px 24px;
        }
        .ss-meta-row {
          gap: 16px;
        }
        .ss-row {
          grid-template-columns: 50px 1fr 32px;
          gap: 14px;
          padding: 18px 4px;
        }
        .ss-row .dt {
          display: none;
        }
        .ss-row:hover {
          padding-left: 8px;
        }

        .shelf {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .imprint {
          padding: 24px 24px 20px;
        }
        .imprint .imprint-glyph {
          font-size: 64px;
        }
        .imprint h4 {
          font-size: 18px;
        }
        .imprint .en {
          font-size: 12.5px;
        }
        .imprint p {
          font-size: 12.5px;
        }
        .garden-head {
          padding: 24px 24px 22px;
          flex-direction: column;
          align-items: flex-start;
          display: flex;
          gap: 14px;
        }
        .arc-row {
          padding: 18px 24px;
          grid-template-columns: 1fr;
          gap: 12px;
        }
        .feature-event {
          grid-template-columns: 1fr;
          gap: 22px;
          padding: 24px;
        }
        .fe-poster {
          max-width: 220px;
          margin: 0 auto;
        }
        .fe-title {
          font-size: 24px;
        }
        .fe-subtitle {
          font-size: 16px;
        }
        .fe-session {
          grid-template-columns: 1fr;
          gap: 10px;
          padding: 14px;
        }
        .fe-watch {
          justify-content: center;
        }
        .life-foot {
          padding: 16px 24px;
          flex-direction: column;
          align-items: flex-start;
          gap: 6px;
          font-size: 9.5px;
        }
        .arc-row h5 {
          font-size: 18px;
        }
        .pill {
          width: 38px;
          height: 38px;
          font-size: 12px;
          border-radius: 12px;
        }
        .story-foot {
          padding: 16px 24px;
          flex-direction: column;
          align-items: stretch;
          text-align: center;
          font-size: 9.5px;
        }
        .story-foot-btn {
          justify-content: center;
        }
        .cr-head {
          padding: 22px 24px;
          flex-direction: column;
          align-items: flex-start;
          display: flex;
          gap: 14px;
        }
        .cr-head h4 {
          font-size: 22px;
        }
        .cr-cover {
          min-height: 180px;
          padding: 28px 0;
        }
        .cr-text {
          padding: 22px 24px;
          gap: 16px;
        }
        .cr-text .lede {
          font-size: 14.5px;
        }
        .cr-promise li {
          grid-template-columns: 1fr;
          gap: 4px;
          padding: 10px 0;
        }
        .cr-cta-row {
          flex-direction: column;
          align-items: stretch;
        }
        .cr-btn {
          justify-content: center;
        }
        .garden-head h4 {
          font-size: 22px;
        }
        .garden-sets {
          grid-template-columns: 1fr;
        }
        .gset {
          border-right: none !important;
          padding: 22px 24px;
        }
        .garden-sets > .gset:nth-last-child(-n + 2) {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .garden-sets > .gset:last-child {
          border-bottom: none;
        }
        .garden-foot {
          padding: 16px 24px;
          flex-direction: column;
          align-items: stretch;
          text-align: center;
          font-size: 9.5px;
        }
        .garden-foot a {
          justify-content: center;
        }
        .tract-rack-head {
          padding: 24px 24px 22px;
          flex-direction: column;
          align-items: flex-start;
          display: flex;
          gap: 14px;
        }
        .tract-rack-head h4 {
          font-size: 22px;
        }
        .tract-grid {
          grid-template-columns: 1fr;
        }
        .tract {
          border-right: none !important;
          padding: 22px 24px;
        }
        .tract-grid > .tract:nth-last-child(-n + 2) {
          border-bottom: 1px solid rgba(184, 138, 82, 0.22);
        }
        .tract-grid > .tract:last-child {
          border-bottom: none;
        }
        .tract-rack-foot {
          padding: 16px 24px;
          flex-direction: column;
          align-items: stretch;
          text-align: center;
          font-size: 9.5px;
        }
        .t-foot-btn {
          justify-content: center;
        }
        .reading-head {
          padding: 22px 24px;
          flex-direction: column;
          align-items: flex-start;
          gap: 14px;
        }
        .reading-filters {
          width: 100%;
          overflow-x: auto;
        }
        .reading-grid {
          grid-template-columns: 1fr;
        }
        .reading-item {
          border-right: none !important;
        }
        .reading-grid > .reading-item:nth-last-child(-n + 2) {
          border-bottom: 1px solid var(--line);
        }
        .reading-grid > .reading-item:last-child {
          border-bottom: none;
        }

        .closer {
          padding: 80px 24px;
          background-attachment: scroll;
        }
        .closer h2 {
          font-size: clamp(28px, 8vw, 42px) !important;
        }
        .closer .hero-actions {
          flex-direction: column;
          align-items: stretch;
        }
        .closer .btn {
          justify-content: center;
        }

        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;
        }
      }

/* ─── Phase F: missing .sg-card / .sg-group / .rf-btn rules from original design ─── */
/* ═══════ 1 · 小組查經 ═══════ */
      .smallgroup {
        padding-bottom: 130px;
      }

.sg-card {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 0;
        background: white;
        border-radius: 22px;
        border: 1px solid var(--line);
        overflow: hidden;
        box-shadow: var(--shadow-1);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }

.sg-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
      }

.sg-left {
        position: relative;
        padding: 48px 52px;
        background:
          radial-gradient(
            900px 360px at 110% -10%,
            rgba(212, 165, 116, 0.16),
            transparent 55%
          ),
          linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
        color: white;
        overflow: hidden;
        isolation: isolate;
      }

.sg-left::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 56px 56px;
        mask: radial-gradient(
          ellipse at 80% 30%,
          rgba(0, 0, 0, 0.5),
          transparent 70%
        );
      }

.sg-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 22px;
      }

.sg-tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }

.sg-title {
        font-size: 44px;
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.015em;
        margin-bottom: 8px;
      }

.sg-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }

.sg-en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        opacity: 0.65;
        margin-bottom: 22px;
      }

.sg-lede {
        font-size: 15px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.78);
        margin-bottom: 28px;
        max-width: 480px;
      }

.sg-pulse {
        display: flex;
        gap: 10px;
        align-items: center;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        padding: 10px 14px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.03);
        width: max-content;
        margin-bottom: 30px;
      }

.sg-pulse .blink {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 12px var(--gold);
        animation: pulse 1.8s infinite;
      }

.sg-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 999px;
        background: var(--gold);
        color: white;
        font-size: 13.5px;
        font-weight: 600;
        transition:
          background 0.2s,
          transform 0.2s;
      }

.sg-cta:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }

.sg-cta svg {
        width: 14px;
        height: 14px;
      }

.sg-right {
        padding: 40px 44px;
        display: flex;
        flex-direction: column;
        background: white;
      }

.sg-right h5 {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

.sg-right h5::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }

.sg-groups {
        display: flex;
        flex-direction: column;
        gap: 14px;
        flex: 1;
      }

.sg-group {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 16px;
        align-items: center;
        padding: 14px 16px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--paper-2);
        transition:
          background 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }

.sg-group:hover {
        background: white;
        border-color: rgba(212, 165, 116, 0.35);
        transform: translateX(3px);
      }

.sg-group .ch {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(212, 165, 116, 0.16);
        color: var(--gold-deep);
        font-family: var(--serif);
        font-style: italic;
        font-size: 30px;
        line-height: 1;
      }

.sg-group .info b {
        font-size: 15px;
        font-weight: 600;
        display: block;
        margin-bottom: 3px;
      }

.sg-group .info .sub {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        color: rgba(11, 23, 38, 0.55);
        text-transform: uppercase;
      }

.sg-group .when {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--navy);
        letter-spacing: 0.08em;
        text-align: right;
      }

.sg-group .when b {
        display: block;
        font-family: var(--sans);
        font-size: 13px;
        color: var(--ink);
        margin-bottom: 2px;
        letter-spacing: 0;
        font-weight: 600;
      }

/* ═══════════════════════════════════════════════════════════════════
 *  Learning §01 — Variant: bs-sheet card (video + this-week materials).
 *  Uses the same outer .sg-card grid, but the inner panels render a
 *  YouTube video on the left and the latest study sheet on the right.
 * ═══════════════════════════════════════════════════════════════════ */

/* LEFT — warm gradient + dotted pattern, video in middle */
.sg-card--sheet .sg-left--video {
    padding: 56px 56px;
    background: linear-gradient(160deg, var(--warm), var(--paper));
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    position: relative;
}
.sg-card--sheet .sg-left--video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(30, 58, 95, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    mask: none;
}
.sg-card--sheet .sg-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 23, 38, 0.18), 0 6px 18px rgba(11, 23, 38, 0.10);
    z-index: 1;
}
.sg-card--sheet .sg-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.sg-card--sheet .sg-video--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
}

/* RIGHT — white panel with eyebrow + title + body + features + buttons */
.sg-card--sheet .sg-right--sheet {
    background: white;
    padding: 64px 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sg-sheet-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: white;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.sg-sheet-tag .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: pulseDot 1.8s ease-in-out infinite;
}
.sg-sheet-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 14px;
}
.sg-sheet-title .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
}
.sg-sheet-desc {
    font-size: 15px;
    line-height: 1.78;
    color: rgba(11, 23, 38, 0.72);
    margin: 0 0 28px;
    max-width: 520px;
}
.sg-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 4px 0 32px;
}
.sg-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15.5px;
    color: var(--ink-2);
}
.sg-feature .tick {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sg-feature .tick svg {
    width: 14px;
    height: 14px;
}
.sg-sheet-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Use the same pulseDot keyframe defined elsewhere if present; declare
 * a copy here so this variant works even if biblestudy CSS isn't loaded. */
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

@media (max-width: 980px) {
    .sg-card--sheet .sg-left--video { padding: 40px; }
    .sg-card--sheet .sg-right--sheet { padding: 48px 40px; }
    .sg-sheet-title { font-size: 32px; }
}
@media (max-width: 720px) {
    .sg-card--sheet .sg-left--video { padding: 28px 24px; }
    .sg-card--sheet .sg-right--sheet { padding: 36px 24px; }
    .sg-sheet-title { font-size: 28px; }
}

/* ─── Buttons inside the .sg-card--sheet variant ─────────────────────
 * The learning page's default .btn-primary is white-on-dark (designed
 * for the hero's dark background). Inside the white sheet card we need
 * the bible-study-style navy-filled + outlined-pill pair. */
.sg-card--sheet .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--navy);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-1);
    border: 0;
    backdrop-filter: none;
}
.sg-card--sheet .btn-primary:hover {
    background: var(--gold-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.sg-card--sheet .btn-ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s, background 0.2s, border-color 0.2s;
}
.sg-card--sheet .btn-ghost-link:hover {
    gap: 12px;
    background: var(--paper-2);
    border-color: rgba(212, 165, 116, 0.5);
}
