      :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) ─────── */
      .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 80% 30%,
            rgba(212, 165, 116, 0.42) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse at 12% 88%,
            rgba(107, 140, 175, 0.42) 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-inner {
        position: relative;
        z-index: 2;
        padding: 200px 48px 130px;
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.3fr 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);
      }

      /* Index card on right */
      .index-card {
        position: relative;
        padding: 32px 32px 28px;
        border-radius: 22px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.13),
          rgba(255, 255, 255, 0.03)
        );
        backdrop-filter: blur(24px) saturate(140%);
        -webkit-backdrop-filter: blur(24px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow:
          0 30px 80px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
      .index-card .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        opacity: 0.72;
        text-transform: uppercase;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .index-card .label::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .index-card ol {
        list-style: none;
        padding: 0;
        margin: 0;
        counter-reset: idx;
      }
      .index-card ol li {
        counter-increment: idx;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        display: grid;
        grid-template-columns: 32px 1fr auto;
        gap: 14px;
        align-items: center;
        transition: padding-left 0.2s;
      }
      .index-card ol li:hover {
        padding-left: 6px;
      }
      .index-card ol li::before {
        content: counter(idx, decimal-leading-zero);
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.12em;
        color: var(--gold);
        opacity: 0.85;
      }
      .index-card ol li a {
        font-size: 15.5px;
        font-weight: 500;
        color: white;
        transition: color 0.2s;
      }
      .index-card ol li:hover a {
        color: var(--gold);
      }
      .index-card ol li .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.55);
      }

      .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: 720px;
      }
      .sec-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 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 · BULLETIN STRIP ═══════ */
      .bulletin-strip {
        padding-bottom: 130px;
      }
      .bulletin-card-large {
        display: grid;
        grid-template-columns: 320px 1fr auto;
        gap: 48px;
        align-items: center;
        padding: 36px;
        background: white;
        border-radius: 22px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-1);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .bulletin-card-large:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
      }
      /* paper preview */
      .paper {
        aspect-ratio: 3 / 4;
        background: linear-gradient(180deg, #fdfbf6 0%, #f6efe2 100%);
        border-radius: 8px;
        padding: 24px 22px;
        box-shadow:
          0 12px 30px rgba(11, 23, 38, 0.14),
          inset 0 0 0 1px rgba(184, 138, 82, 0.18);
        position: relative;
        display: flex;
        flex-direction: column;
        transform: rotate(-1.5deg);
        transition: transform 0.4s ease;
      }
      .bulletin-card-large:hover .paper {
        transform: rotate(0deg) scale(1.02);
      }
      .paper::before {
        content: "";
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(212, 165, 116, 0.18);
      }
      .paper .pmark {
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .paper .ptitle {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 500;
        color: var(--ink);
        line-height: 1.2;
        margin-bottom: 4px;
      }
      .paper .psubt {
        font-family: var(--serif);
        font-style: italic;
        font-size: 12px;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 14px;
      }
      .paper .pline {
        height: 1px;
        background: rgba(184, 138, 82, 0.3);
        margin-bottom: 12px;
      }
      .paper .prow {
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: 0.06em;
        color: rgba(11, 23, 38, 0.5);
        padding: 5px 0;
        border-bottom: 1px dashed rgba(184, 138, 82, 0.18);
        display: flex;
        justify-content: space-between;
      }
      .paper .pfoot {
        margin-top: auto;
        padding-top: 14px;
        font-family: var(--serif);
        font-style: italic;
        font-size: 11px;
        color: var(--navy);
        opacity: 0.6;
        text-align: center;
      }

      .bulletin-body .tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 16px;
      }
      .bulletin-body .tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .bulletin-body h2 {
        font-size: 38px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 12px;
        letter-spacing: -0.015em;
      }
      .bulletin-body h2 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .bulletin-body .lede {
        font-size: 15.5px;
        line-height: 1.8;
        color: rgba(11, 23, 38, 0.72);
        max-width: 460px;
        margin-bottom: 22px;
      }
      .bulletin-body .meta-row {
        display: flex;
        gap: 32px;
        padding: 16px 0;
        border-top: 1px solid var(--line);
      }
      .bulletin-body .meta-row > div {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: rgba(11, 23, 38, 0.5);
        text-transform: uppercase;
      }
      .bulletin-body .meta-row b {
        display: block;
        font-family: var(--sans);
        font-size: 14px;
        color: var(--ink);
        margin-top: 4px;
        letter-spacing: 0;
        text-transform: none;
        font-weight: 600;
      }
      .bulletin-action {
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-width: 180px;
      }
      .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-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 svg {
        width: 14px;
        height: 14px;
      }

      /* ═══════ 2 · 近期活动 (Recent Media — tabbed) ═══════ */
      .recent {
        background: var(--paper);
        padding-top: 130px;
        padding-bottom: 130px;
      }

      .tab-bar {
        display: flex;
        gap: 6px;
        margin-bottom: 44px;
        padding: 6px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 999px;
        width: max-content;
        box-shadow: var(--shadow-1);
      }
      .tab-bar button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 22px;
        border-radius: 999px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--ink);
        transition:
          background 0.2s,
          color 0.2s;
        white-space: nowrap;
      }
      .tab-bar button .ico {
        width: 18px;
        height: 18px;
        opacity: 0.8;
      }
      .tab-bar button:hover {
        background: var(--paper-2);
      }
      .tab-bar button.is-active {
        background: var(--ink);
        color: white;
      }
      .tab-bar button.is-active .ico {
        opacity: 1;
        color: var(--gold);
      }

      .tab-panel {
        display: none;
      }
      .tab-panel.is-active {
        display: grid;
      }

      /* film panel */
      .films-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 28px;
      }
      .film {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        background: var(--ink);
        aspect-ratio: 16 / 10;
        color: white;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px;
        transition:
          transform 0.4s ease,
          box-shadow 0.4s ease;
        box-shadow: var(--shadow-1);
      }
      .film h4 { text-decoration: none; }
      .film:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
      }
      .film .filmbg {
        position: absolute;
        inset: 0;
        background-color: transparent;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
      }
      /* Gradient fallback shown only when no cover image is set (empty filmbg). */
      .film .filmbg:not([style]) {
        background:
          radial-gradient(
            ellipse at 70% 30%,
            rgba(212, 165, 116, 0.4),
            transparent 60%
          ),
          linear-gradient(160deg, var(--navy) 0%, var(--ink) 100%);
      }
      .film .filmgrain {
        position: absolute;
        inset: 0;
        opacity: 0.18;
        pointer-events: none;
        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;
      }
      .film .placeholder {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: rgba(255, 255, 255, 0.45);
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }
      .film .play {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: grid;
        place-items: center;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .film:hover .play {
        background: var(--gold);
        border-color: var(--gold);
        transform: scale(1.08);
      }
      .film .play svg {
        width: 20px;
        height: 20px;
        margin-left: 3px;
      }
      .film .duration {
        position: absolute;
        top: 24px;
        left: 24px;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 6px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.08em;
      }
      .film .meta {
        position: relative;
        z-index: 2;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .film h4 {
        position: relative;
        z-index: 2;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.28;
        letter-spacing: -0.005em;
        margin-bottom: 8px;
      }
      .film .sub {
        position: relative;
        z-index: 2;
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        opacity: 0.7;
      }
      .film.size-lg {
        grid-column: span 6;
        aspect-ratio: 16 / 11;
        padding: 36px;
      }
      .film.size-lg h4 {
        font-size: 32px;
        line-height: 1.18;
      }
      .film.size-lg .sub {
        font-size: 16px;
      }
      .film.size-lg .play {
        width: 64px;
        height: 64px;
      }
      .film.size-md {
        grid-column: span 4;
      }
      .film.size-sm {
        grid-column: span 3;
      }

      /* photo news panel */
      .photos-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
      }
      .photo {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        background:
          repeating-linear-gradient(
            135deg,
            rgba(30, 58, 95, 0.06) 0 12px,
            rgba(30, 58, 95, 0.12) 12px 24px
          ),
          linear-gradient(135deg, #d8e0ea 0%, #c2cdda 100%);
        transition:
          transform 0.4s ease,
          box-shadow 0.4s ease;
        box-shadow: var(--shadow-1);
      }
      .photo:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
      }
      .photo .ph-bg {
        position: absolute;
        inset: 0;
        background-color: transparent;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
      }
      .photo .ph-label {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: rgba(30, 58, 95, 0.55);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        text-align: center;
        padding: 24px;
      }
      .photo .ph-label .ico {
        font-family: var(--serif);
        font-style: italic;
        font-size: 36px;
        color: var(--gold);
        margin-bottom: 8px;
        line-height: 1;
        display: block;
      }
      .photo .ph-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 24px 24px 22px;
        background: linear-gradient(
          180deg,
          transparent,
          rgba(11, 23, 38, 0.88)
        );
        color: white;
      }
      .photo .ph-caption .meta {
        position: relative;
        z-index: 2;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .photo .ph-caption h4 {
        position: relative;
        z-index: 2;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.28;
        letter-spacing: -0.005em;
        margin: 0;
      }
      .photo .ph-caption .sub {
        position: relative;
        z-index: 2;
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        opacity: 0.7;
        margin-top: 8px;
      }
      .photo .count {
        position: absolute;
        top: 14px;
        right: 14px;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(8px);
        border-radius: 6px;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.08em;
        color: white;
      }
      .photo.size-lg {
        grid-column: span 6;
        aspect-ratio: 16 / 10;
      }
      .photo.size-md {
        grid-column: span 4;
      }
      .photo.size-sm {
        grid-column: span 3;
      }

      /* video archive panel */
      .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .video-card {
        background: white;
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-1);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .video-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
      }
      .video-card .thumb {
        aspect-ratio: 16 / 9;
        position: relative;
        background-color: transparent;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
      }
      /* Gradient fallback only when no cover image (empty thumb). */
      .video-card .thumb:not([style]) {
        background:
          repeating-linear-gradient(
            135deg,
            rgba(30, 58, 95, 0.06) 0 12px,
            rgba(30, 58, 95, 0.12) 12px 24px
          ),
          linear-gradient(135deg, #e7ecf2 0%, #d8e0ea 100%);
      }
      .video-card .thumb .ph-label {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: rgba(30, 58, 95, 0.55);
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        text-align: center;
      }
      .video-card .play {
        position: absolute;
        bottom: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: white;
        box-shadow: var(--shadow-1);
        display: grid;
        place-items: center;
        color: var(--ink);
        transition: background 0.2s;
      }
      .video-card:hover .play {
        background: var(--gold);
        color: white;
      }
      .video-card .play svg {
        width: 14px;
        height: 14px;
        margin-left: 2px;
      }
      .video-card .body {
        padding: 20px 22px 22px;
      }
      .video-card .meta {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        color: var(--navy);
        opacity: 0.65;
        text-transform: uppercase;
        margin-bottom: 8px;
        display: flex;
        gap: 12px;
        align-items: center;
      }
      .video-card .meta .dur {
        padding: 2px 7px;
        border-radius: 4px;
        background: rgba(212, 165, 116, 0.16);
        color: var(--gold-deep);
        opacity: 1;
      }
      .video-card h4 {
        font-size: 16.5px;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.005em;
      }

      /* ═══════ 3 · 教会生活 ═══════ */
      .life {
        padding-top: 130px;
        padding-bottom: 130px;
      }
      .life-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
      }
      .life-card {
        grid-column: span 2;
        background: white;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 36px 32px 32px;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        display: flex;
        flex-direction: column;
        min-height: 360px;
      }
      .life-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
        border-color: rgba(212, 165, 116, 0.4);
      }
      .life-card .num {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        margin-bottom: 16px;
      }
      .life-card .glyph {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 56px;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 22px;
      }
      .life-card h4 {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.28;
        margin-bottom: 6px;
        letter-spacing: -0.01em;
      }
      .life-card .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 13.5px;
        color: var(--navy);
        opacity: 0.65;
        margin-bottom: 16px;
      }
      .life-card p {
        font-size: 14px;
        line-height: 1.75;
        color: rgba(11, 23, 38, 0.72);
        margin-bottom: 20px;
      }
      .life-card .links {
        margin-top: auto;
      }
      .life-card .links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--ink);
        font-weight: 500;
        padding: 7px 0;
        transition:
          color 0.2s,
          gap 0.2s;
      }
      .life-card .links a:hover {
        color: var(--navy);
        gap: 12px;
      }
      .life-card .links a + a {
        margin-left: 16px;
        padding-left: 16px;
        border-left: 1px solid var(--line);
      }
      .life-card .links a svg {
        width: 11px;
        height: 11px;
        opacity: 0.65;
      }

      /* Featured large life card */
      .life-card.feat {
        grid-column: span 3;
        background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
        color: white;
        padding: 44px 40px;
      }
      .life-card.feat::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -100px;
        width: 320px;
        height: 320px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.28),
          transparent 70%
        );
        pointer-events: none;
      }
      .life-card.feat h4 {
        color: white;
        font-size: 30px;
      }
      .life-card.feat .en {
        color: rgba(255, 255, 255, 0.55);
        font-size: 15px;
      }
      .life-card.feat p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 15px;
        max-width: 460px;
      }
      .life-card.feat .links a {
        color: white;
      }
      .life-card.feat .links a:hover {
        color: var(--gold);
      }
      .life-card.feat .glyph {
        color: var(--gold);
        font-size: 72px;
      }
      .life-card.feat .links a + a {
        border-color: rgba(255, 255, 255, 0.18);
      }
      .life-card.feat .links a svg {
        opacity: 0.9;
      }

      /* compact second-row card */
      .life-card.span3 {
        grid-column: span 3;
      }

      /* ═══════ 4 · 社区服务 ═══════ */
      .community {
        background: var(--ink);
        color: white;
        padding: 130px 48px;
        position: relative;
        overflow: hidden;
      }
      .community::before {
        content: "";
        position: absolute;
        top: -200px;
        left: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.14),
          transparent 70%
        );
        pointer-events: none;
      }
      .community::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        mask: radial-gradient(
          ellipse at 70% 60%,
          rgba(0, 0, 0, 0.4),
          transparent 70%
        );
        pointer-events: none;
      }
      .community .sec-head {
        position: relative;
        z-index: 2;
      }
      .community .sec-title {
        color: white;
      }
      .community .sec-eyebrow {
        color: var(--gold);
        opacity: 1;
      }
      .community .sec-eyebrow::before {
        background: var(--gold);
      }
      .community .sec-sub {
        color: rgba(255, 255, 255, 0.7);
      }

      .program-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
      .program {
        position: relative;
        padding: 44px 40px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.3s;
      }
      .program:hover {
        background: rgba(212, 165, 116, 0.06);
        border-color: rgba(212, 165, 116, 0.3);
        transform: translateY(-3px);
      }
      .program::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 260px;
        height: 260px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.18),
          transparent 70%
        );
        pointer-events: none;
      }
      .program .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;
      }
      .program .tag::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .program h3 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 10px;
        letter-spacing: -0.015em;
        position: relative;
      }
      .program h3 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .program .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        opacity: 0.65;
        margin-bottom: 22px;
        position: relative;
      }
      .program p {
        font-size: 14.5px;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.78);
        margin-bottom: 26px;
        position: relative;
        max-width: 520px;
      }
      .program ul {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        position: relative;
      }
      .program ul li {
        padding: 11px 0;
        padding-left: 22px;
        font-size: 13.5px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.78);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
      }
      .program ul li:first-child {
        border-top: none;
      }
      .program ul li::before {
        content: "";
        position: absolute;
        left: 4px;
        top: 19px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.85;
      }
      .program ul li b {
        color: white;
        font-weight: 600;
      }
      .program .pmeta {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        margin-bottom: 24px;
      }
      .program .pmeta div {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
      }
      .program .pmeta b {
        display: block;
        font-family: var(--sans);
        font-size: 13.5px;
        color: white;
        margin-top: 4px;
        letter-spacing: 0;
        text-transform: none;
        font-weight: 600;
      }
      .program .btn-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        position: relative;
      }
      .program .btn-gold {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 22px;
        border-radius: 999px;
        background: var(--gold);
        color: white;
        font-size: 13.5px;
        font-weight: 600;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .program .btn-gold:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .program .btn-gold svg {
        width: 14px;
        height: 14px;
      }
      .program .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 22px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.04);
        color: white;
        font-size: 13.5px;
        font-weight: 500;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .program .btn-outline:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
      }

      /* ─────── CLOSER ─────── */
      .closer {
        padding: 130px 48px;
        background:
          linear-gradient(135deg, rgba(11, 23, 38, 0.6), rgba(30, 58, 95, 0.6)),
          url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=2400&auto=format&fit=crop&q=80");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        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);
        margin-bottom: 0;
      }
      .closer h2 {
        font-family: var(--serif);
        font-size: clamp(40px, 5.2vw, 64px);
        font-weight: 400;
        line-height: 1.18;
        letter-spacing: -0.01em;
        margin-bottom: 28px;
      }
      .closer h2 em {
        font-style: italic;
        color: var(--gold);
      }
      .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-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 ─────── */
      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 .index-card {
        animation: heroIn 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s 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: 96px 28px 40px;
        overflow-y: auto;
      }
      .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.35s;
      }
      .mobile-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 80% 10%,
            rgba(212, 165, 116, 0.18) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse at 10% 90%,
            rgba(107, 140, 175, 0.18) 0%,
            transparent 55%
          );
        pointer-events: none;
      }
      .mobile-menu-inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      .mobile-menu a {
        font-size: 22px;
        font-weight: 500;
        color: white;
        padding: 18px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition:
          color 0.2s,
          padding-left 0.2s;
      }
      .mobile-menu a:hover,
      .mobile-menu a:active {
        color: var(--gold);
        padding-left: 12px;
      }
      .mobile-menu a::after {
        content: "→";
        font-size: 18px;
        opacity: 0.45;
      }
      .mobile-menu a.is-active {
        color: var(--gold);
      }
      .mobile-menu a.mm-cta {
        margin-top: 28px;
        background: var(--gold);
        color: white;
        border: none;
        border-radius: 999px;
        padding: 18px 28px;
        justify-content: center;
        font-weight: 600;
        font-size: 16px;
      }
      .mobile-menu a.mm-cta:hover {
        padding-left: 28px;
      }
      .mobile-menu a.mm-cta::after {
        content: "";
      }
      .mobile-menu .mm-foot {
        margin-top: auto;
        padding-top: 36px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.9;
      }
      .mobile-menu .mm-foot b {
        color: white;
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
      }
      body.menu-open {
        overflow: hidden;
      }

      /* ─────── RESPONSIVE ─────── */
      @media (max-width: 1100px) {
        .nav {
          padding: 16px 28px;
        }
        .nav.scrolled {
          padding: 10px 28px;
        }
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 48px;
          padding: 160px 32px 100px;
        }
        .hero-meta {
          padding: 0 32px;
        }
        .bulletin-card-large {
          grid-template-columns: 1fr;
          gap: 32px;
          padding: 28px;
        }
        .bulletin-action {
          flex-direction: row;
          min-width: 0;
        }
        .bulletin-action .btn {
          flex: 1;
        }
        .films-grid {
          grid-template-columns: repeat(6, 1fr) !important;
        }
        .film.size-lg,
        .film.size-md,
        .film.size-sm {
          grid-column: span 3;
          grid-row: auto;
          aspect-ratio: 16 / 10;
          padding: 28px;
        }
        .film.size-lg h4 {
          font-size: 24px;
        }
        .photos-grid {
          grid-template-columns: repeat(6, 1fr) !important;
        }
        .photo.size-lg,
        .photo.size-md,
        .photo.size-sm {
          grid-column: span 3;
        }
        .videos-grid {
          grid-template-columns: 1fr 1fr !important;
        }
        .life-grid {
          grid-template-columns: 1fr 1fr;
        }
        .life-card,
        .life-card.feat,
        .life-card.span3 {
          grid-column: span 1;
        }
        .program-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .footer-brand {
          max-width: none;
        }
        section {
          padding: 100px 32px;
        }
        .community {
          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;
        }
        .community {
          padding: 80px 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-text .eyebrow {
          font-size: 10.5px;
          padding: 6px 12px;
          margin-bottom: 20px;
        }
        .hero-title {
          font-size: clamp(36px, 11vw, 54px) !important;
          margin-bottom: 22px;
        }
        .hero-lede {
          font-size: 14.5px;
          line-height: 1.75;
        }
        .index-card {
          padding: 24px 24px !important;
          border-radius: 18px;
        }
        .index-card ol li a {
          font-size: 14.5px;
        }
        .hero-meta {
          display: none;
        }

        .bulletin-card-large {
          padding: 22px;
        }
        .paper {
          max-width: 240px;
          margin: 0 auto;
        }
        .bulletin-body h2 {
          font-size: 26px;
        }
        .bulletin-body .meta-row {
          gap: 18px;
          flex-wrap: wrap;
        }

        .tab-bar {
          width: 100%;
          overflow-x: auto;
          flex-wrap: nowrap;
        }
        .tab-bar button {
          padding: 10px 24px;
          font-size: 12.5px;
          white-space: nowrap;
        }
        .films-grid,
        .videos-grid {
          grid-template-columns: 1fr !important;
          gap: 18px;
        }
        .film.size-lg,
        .film.size-md,
        .film.size-sm {
          grid-column: span 1;
        }
        .photos-grid {
          grid-template-columns: 1fr 1fr !important;
          gap: 14px;
        }
        .photo.size-lg,
        .photo.size-md,
        .photo.size-sm {
          grid-column: span 2;
        }
        .photo .ph-caption {
          padding: 16px 16px 14px;
        }
        .photo .ph-caption h4 {
          font-size: 18px;
        }
        .life-grid {
          grid-template-columns: 1fr;
        }
        .life-card,
        .life-card.feat {
          padding: 28px 24px;
          min-height: 0;
        }
        .life-card.feat h4 {
          font-size: 24px;
        }
        .program {
          padding: 32px 24px;
        }
        .program h3 {
          font-size: 26px;
        }
        .program .pmeta {
          gap: 18px;
        }
        .program .btn-row {
          flex-direction: column;
          align-items: stretch;
        }

        .closer {
          padding: 80px 24px;
          background-attachment: scroll;
        }
        .closer h2 {
          font-size: clamp(30px, 8.5vw, 46px) !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;
        }
      }
