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

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

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

      /* ─────  NAV  ───── */
      .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;
        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);
      }
      .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        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: var(--ink);
        border-radius: 999px;
        transition:
          background 0.2s,
          color 0.4s;
      }
      .nav-links a:hover {
        background: rgba(30, 58, 95, 0.06);
      }
      .nav-links a.active {
        color: var(--gold-deep);
      }
      .nav-cta {
        padding: 9px 18px !important;
        background: var(--navy);
        color: white !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;
      }

      /* ─────  HEADER (page hero — minimal, navy)  ───── */
      .page-hero {
        position: relative;
        padding: 180px 48px 90px;
        background:
          radial-gradient(
            1200px 520px at 75% -10%,
            rgba(212, 165, 116, 0.18),
            transparent 60%
          ),
          linear-gradient(
            160deg,
            var(--ink) 0%,
            var(--ink-2) 60%,
            var(--navy) 100%
          );
        color: white;
        overflow: hidden;
      }
      .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        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: 80px 80px;
        mask: radial-gradient(
          ellipse at 80% 30%,
          rgba(0, 0, 0, 0.5),
          transparent 65%
        );
      }
      .page-hero-inner {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: end;
      }
      .crumb {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 22px;
      }
      .crumb a {
        opacity: 0.7;
        transition: opacity 0.2s;
      }
      .crumb a:hover {
        opacity: 1;
      }
      .crumb .sep {
        opacity: 0.4;
      }

      .page-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(--gold);
        margin-bottom: 22px;
      }
      .page-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }

      .page-title {
        font-size: clamp(48px, 6.4vw, 88px);
        font-weight: 700;
        line-height: 1.04;
        letter-spacing: -0.02em;
        margin-bottom: 28px;
      }
      .page-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .page-lede {
        font-size: 17px;
        line-height: 1.75;
        opacity: 0.78;
        max-width: 540px;
      }

      .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 22px;
        border-left: 1px solid rgba(212, 165, 116, 0.3);
        padding-left: 36px;
      }
      .hero-stat .v {
        font-family: var(--serif);
        font-size: 56px;
        font-weight: 500;
        line-height: 1;
        color: var(--gold);
      }
      .hero-stat .v sup {
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 500;
        color: white;
        opacity: 0.65;
        margin-left: 6px;
        vertical-align: super;
      }
      .hero-stat .k {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.6;
        margin-top: 6px;
      }
      .hero-stat + .hero-stat {
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* ─────  FEATURED (本週週報)  ───── */
      .featured-wrap {
        background: var(--paper-2);
        padding: 130px 48px 130px;
      }
      .featured {
        max-width: 1400px;
        margin: 0 auto;
        background: white;
        border-radius: 28px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-2);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        margin-top: -160px;
        position: relative;
      }
      .featured-cover {
        position: relative;
        background: linear-gradient(160deg, var(--warm), var(--paper));
        padding: 56px 56px 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 560px;
        overflow: hidden;
      }
      .featured-cover::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          rgba(30, 58, 95, 0.06) 1px,
          transparent 1px
        );
        background-size: 24px 24px;
        opacity: 0.6;
      }
      .featured-pdf {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 360px;
        aspect-ratio: 8.5/11;
        background: white;
        border: 1px solid var(--line);
        box-shadow:
          0 30px 80px rgba(11, 23, 38, 0.18),
          0 4px 12px rgba(11, 23, 38, 0.06);
        border-radius: 4px;
        padding: 36px 30px;
        display: flex;
        flex-direction: column;
        transform: rotate(-1.5deg);
        transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
      }
      .featured-pdf:hover {
        transform: rotate(0deg) translateY(-6px);
      }
      .featured-pdf::after {
        content: "";
        position: absolute;
        top: 22px;
        right: 22px;
        width: 30px;
        height: 30px;
        background: var(--gold);
        border-radius: 50%;
      }
      .pdf-mark {
        font-family: var(--mono);
        font-size: 9.5px;
        letter-spacing: 0.22em;
        color: var(--gold-deep);
        text-transform: uppercase;
        margin-bottom: 18px;
      }
      .pdf-title-zh {
        font-family: var(--serif);
        font-size: 30px;
        font-weight: 500;
        line-height: 1.15;
        color: var(--ink);
        margin-bottom: 6px;
        letter-spacing: -0.01em;
      }
      .pdf-title-en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 28px;
      }
      .pdf-line {
        height: 1px;
        background: var(--line);
        margin: 14px 0;
      }
      .pdf-rows {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
      }
      .pdf-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        font-size: 11px;
        color: var(--ink-2);
        opacity: 0.85;
      }
      .pdf-row span:first-child {
        font-weight: 500;
      }
      .pdf-row span:last-child {
        font-family: var(--mono);
        font-size: 9.5px;
        opacity: 0.55;
      }
      .pdf-stripes {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .pdf-stripe {
        height: 4px;
        background: var(--paper);
        border-radius: 2px;
      }
      .pdf-stripe.short {
        width: 60%;
      }
      .pdf-stripe.mid {
        width: 80%;
      }
      .pdf-foot {
        margin-top: 18px;
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
        text-align: center;
        opacity: 0.7;
      }

      .featured-body {
        padding: 64px 64px 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .featured-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;
      }
      .featured-tag .pulse-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: white;
        animation: pulseDot 1.8s ease-in-out infinite;
      }
      @keyframes pulseDot {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.4;
          transform: scale(0.7);
        }
      }

      .featured-meta {
        display: flex;
        gap: 16px;
        align-items: center;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--navy);
        opacity: 0.6;
        margin-bottom: 18px;
      }
      .featured-meta .dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: currentColor;
      }

      .featured-title {
        font-size: 44px;
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.02em;
        color: var(--ink);
        margin-bottom: 14px;
      }
      .featured-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .featured-en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 18px;
        color: var(--navy);
        opacity: 0.65;
        margin-bottom: 24px;
      }
      .featured-desc {
        font-size: 15px;
        line-height: 1.75;
        color: rgba(11, 23, 38, 0.72);
        margin-bottom: 32px;
        max-width: 520px;
      }

      .featured-toc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 28px;
        padding: 22px 0;
        margin-bottom: 32px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }
      .toc-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        color: var(--ink-2);
      }
      .toc-item .num {
        font-family: var(--mono);
        font-size: 10px;
        color: var(--gold-deep);
        width: 18px;
      }

      .featured-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-download {
        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;
        transition:
          background 0.2s,
          transform 0.2s,
          box-shadow 0.2s;
        box-shadow: var(--shadow-1);
      }
      .btn-download:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
        box-shadow: var(--shadow-2);
      }
      .btn-download svg {
        width: 16px;
        height: 16px;
      }
      .btn-ghost-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 999px;
        border: 1px solid var(--line);
        color: var(--ink);
        font-size: 14px;
        font-weight: 500;
        transition:
          gap 0.2s,
          background 0.2s;
      }
      .btn-ghost-link:hover {
        gap: 12px;
        background: var(--paper);
      }
      .btn-ghost-link svg {
        width: 14px;
        height: 14px;
      }

      /* ─────  ARCHIVE  ───── */
      .archive {
        padding: 130px 48px 130px;
        background: var(--paper-2);
      }
      .archive-inner {
        max-width: 1400px;
        margin: 0 auto;
      }
      .sec-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 40px;
        gap: 40px;
        flex-wrap: wrap;
      }
      .sec-head .left {
        max-width: 720px;
      }
      .sec-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--navy);
        opacity: 0.85;
        text-transform: uppercase;
        margin-bottom: 18px;
      }
      .sec-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .sec-title {
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--ink);
      }
      .sec-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }

      /* Filter bar */
      .filter-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
        padding: 18px 24px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 16px;
        margin-bottom: 36px;
        box-shadow: var(--shadow-1);
      }
      .year-tabs {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
      }
      .year-tab {
        padding: 8px 16px;
        border-radius: 999px;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.1em;
        color: var(--navy);
        opacity: 0.6;
        transition:
          background 0.2s,
          opacity 0.2s,
          color 0.2s;
      }
      .year-tab:hover {
        opacity: 1;
        background: var(--paper);
      }
      .year-tab.active {
        background: var(--navy);
        color: white;
        opacity: 1;
      }
      .search-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 16px;
        background: var(--paper-2);
        border: 1px solid var(--line);
        border-radius: 999px;
        min-width: 260px;
      }
      .search-wrap svg {
        width: 14px;
        height: 14px;
        opacity: 0.5;
      }
      .search-wrap input {
        flex: 1;
        border: none;
        outline: none;
        background: none;
        font-family: var(--sans);
        font-size: 13.5px;
        color: var(--ink);
      }
      .search-wrap input::placeholder {
        color: rgba(11, 23, 38, 0.4);
      }

      /* Year section */
      .year-section {
        margin-bottom: 70px;
        scroll-margin-top: 100px;
      }
      .year-marker {
        display: flex;
        align-items: baseline;
        gap: 18px;
        margin-bottom: 28px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
      }
      .year-marker .y {
        font-family: var(--serif);
        font-size: 56px;
        font-weight: 500;
        color: var(--ink);
        line-height: 1;
        letter-spacing: -0.02em;
      }
      .year-marker .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
      }
      .year-marker .count {
        margin-left: auto;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        color: var(--navy);
        opacity: 0.55;
        text-transform: uppercase;
      }

      .bulletin-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
      }
      .bulletin-card {
        position: relative;
        display: flex;
        align-items: stretch;
        background: white;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 18px 20px 18px 18px;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        cursor: pointer;
        text-align: left;
        overflow: hidden;
      }
      .bulletin-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s;
      }
      .bulletin-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
        border-color: rgba(212, 165, 116, 0.4);
      }
      .bulletin-card:hover::before {
        transform: scaleY(1);
      }
      .bulletin-card.is-new::after {
        content: "NEW";
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 3px 8px;
        border-radius: 4px;
        background: var(--gold);
        color: white;
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: 0.14em;
      }
      .bc-thumb {
        flex-shrink: 0;
        width: 56px;
        height: 72px;
        background: linear-gradient(160deg, var(--paper) 0%, white 100%);
        border: 1px solid var(--line);
        border-radius: 4px;
        margin-right: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 8px 6px;
        overflow: hidden;
      }
      .bc-thumb::before {
        content: "";
        position: absolute;
        top: 6px;
        right: 6px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
      }
      .bc-thumb .lines {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin-top: auto;
      }
      .bc-thumb .lines span {
        height: 1.5px;
        background: rgba(30, 58, 95, 0.18);
        border-radius: 1px;
      }
      .bc-thumb .lines span:nth-child(1) {
        width: 80%;
      }
      .bc-thumb .lines span:nth-child(2) {
        width: 60%;
      }
      .bc-thumb .lines span:nth-child(3) {
        width: 70%;
      }

      .bc-body {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
      }
      .bc-meta {
        display: flex;
        gap: 10px;
        align-items: center;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        color: var(--navy);
        opacity: 0.55;
        text-transform: uppercase;
        margin-bottom: 6px;
      }
      .bc-meta .dot {
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: currentColor;
      }
      .bc-date {
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 500;
        line-height: 1.15;
        color: var(--ink);
        margin-bottom: 4px;
        letter-spacing: -0.01em;
      }
      .bc-date .m {
        color: var(--gold-deep);
        font-style: italic;
      }
      .bc-sub {
        font-size: 12.5px;
        color: rgba(11, 23, 38, 0.6);
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }
      .bc-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px dashed var(--line);
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.12em;
        color: var(--navy);
        opacity: 0.65;
        text-transform: uppercase;
      }
      .bc-foot .download {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--gold-deep);
        transition: gap 0.2s;
      }
      .bulletin-card:hover .bc-foot .download {
        gap: 10px;
      }
      .bc-foot .download svg {
        width: 11px;
        height: 11px;
      }
      .bc-size {
        opacity: 0.5;
      }

      .empty-state {
        padding: 60px 20px;
        text-align: center;
        color: rgba(11, 23, 38, 0.5);
        font-size: 14px;
        border: 1px dashed var(--line);
        border-radius: 16px;
        background: white;
      }

      /* ─────  SUBSCRIBE STRIP  ───── */
      .subscribe {
        padding: 130px 48px;
        background: linear-gradient(160deg, var(--ink), var(--ink-2));
        color: white;
        position: relative;
        overflow: hidden;
      }
      .subscribe::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.18),
          transparent 70%
        );
      }
      .subscribe-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
      }
      .subscribe h2 {
        font-size: clamp(36px, 4.5vw, 56px);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.02em;
        margin-bottom: 18px;
      }
      .subscribe h2 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .subscribe p {
        font-size: 16px;
        line-height: 1.75;
        opacity: 0.78;
        max-width: 480px;
      }

      .sub-channels {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .sub-channel {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 22px 24px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        transition:
          background 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }
      .sub-channel:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(212, 165, 116, 0.3);
        transform: translateX(4px);
      }
      .sub-channel-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        display: grid;
        place-items: center;
        color: white;
        box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
      }
      .sub-channel-icon svg {
        width: 20px;
        height: 20px;
      }
      .sub-channel-body {
        flex: 1;
      }
      .sub-channel-body b {
        display: block;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 2px;
      }
      .sub-channel-body span {
        font-size: 12.5px;
        opacity: 0.6;
        font-family: var(--mono);
        letter-spacing: 0.08em;
      }
      .sub-channel-arrow {
        opacity: 0.4;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .sub-channel:hover .sub-channel-arrow {
        opacity: 1;
        transform: translateX(4px);
      }

      /* ─────  FOOTER (sync with index.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(24px);
        transition:
          opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
          transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal.d1 {
        transition-delay: 0.06s;
      }
      .reveal.d2 {
        transition-delay: 0.12s;
      }
      .reveal.d3 {
        transition-delay: 0.18s;
      }
      .reveal.d4 {
        transition-delay: 0.24s;
      }

      /* ─────  RESPONSIVE  ───── */
      @media (max-width: 1100px) {
        .nav {
          padding: 14px 24px;
        }
        .page-hero {
          padding: 140px 24px 80px;
        }
        .page-hero-inner {
          grid-template-columns: 1fr;
          gap: 50px;
        }
        .hero-stats {
          flex-direction: row;
          border-left: none;
          border-top: 1px solid rgba(212, 165, 116, 0.3);
          padding-left: 0;
          padding-top: 30px;
          gap: 32px;
          flex-wrap: wrap;
        }
        .hero-stat + .hero-stat {
          padding-top: 0;
          border-top: none;
        }
        .featured-wrap {
          padding: 50px 24px 40px;
        }
        .featured {
          grid-template-columns: 1fr;
          margin-top: -100px;
        }
        .featured-cover {
          min-height: 380px;
          padding: 40px 24px;
        }
        .featured-body {
          padding: 40px 32px;
        }
        .featured-title {
          font-size: 32px;
        }
        .archive {
          padding: 70px 24px 40px;
        }
        .featured-toc {
          grid-template-columns: 1fr;
        }
        .subscribe {
          padding: 70px 24px;
        }
        .subscribe-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        footer {
          padding: 60px 24px 30px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
          margin-bottom: 40px;
        }
        .footer-brand {
          max-width: 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(30, 58, 95, 0.04);
        border: 1px solid rgba(30, 58, 95, 0.18);
        border-radius: 999px;
        cursor: pointer;
      }
      .nav-toggle span {
        width: 18px;
        height: 1.6px;
        background: var(--ink);
        border-radius: 2px;
        transition:
          transform 0.3s,
          opacity 0.3s,
          background 0.4s;
      }
      .nav-toggle.is-open {
        background: var(--ink);
        border-color: var(--ink);
      }
      .nav-toggle.is-open span {
        background: white;
      }
      .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6.6px) rotate(45deg);
      }
      .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6.6px) rotate(-45deg);
      }

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

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

        .page-hero {
          padding: 120px 24px 60px;
        }
        .page-hero-inner {
          gap: 36px;
        }
        .crumb {
          font-size: 11px !important;
          flex-wrap: wrap;
          gap: 6px !important;
        }
        .page-hero h1,
        .page-title {
          font-size: clamp(34px, 10vw, 48px) !important;
        }
        .hero-sub {
          font-size: 15px !important;
        }
        .hero-stats {
          gap: 22px;
        }
        .hero-stat .v {
          font-size: 26px !important;
        }
        .hero-stat .k {
          font-size: 10px !important;
        }

        .featured-wrap {
          padding: 36px 24px 32px;
        }
        .featured {
          margin-top: -70px;
          border-radius: 18px;
        }
        .featured-cover {
          min-height: 260px;
          padding: 30px 24px;
        }
        .featured-body {
          padding: 30px 24px;
        }
        .featured-title {
          font-size: 24px !important;
        }
        .featured-meta {
          font-size: 11px !important;
        }

        .archive {
          padding: 60px 24px 30px;
        }
        .bulletin-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .bulletin-card {
          padding: 22px 24px !important;
        }

        .subscribe {
          padding: 60px 24px;
        }
        .subscribe-inner {
          padding: 32px 24px !important;
        }
        .subscribe h2 {
          font-size: clamp(26px, 8vw, 36px) !important;
        }

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