:root {
      --t71-bg: #101311;
      --t71-bg-soft: #161a17;
      --t71-bg-card: #1a1f1b;
      --t71-bg-deep: #0a0d0b;
      --t71-text: #f2efe5;
      --t71-muted: #b9b6aa;
      --t71-gold: #b88a4a;
      --t71-gold-soft: #d2b07a;
      --t71-green: #6f8f78;
      --t71-green-dark: #3f5c49;
      --t71-line: rgba(242, 239, 229, 0.14);
      --t71-line-strong: rgba(184, 138, 74, 0.42);
      --t71-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
      --t71-radius-lg: 28px;
      --t71-radius-md: 18px;
      --t71-max: 1180px;
      --t71-header-h: 76px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--t71-bg);
    }

    body {
      margin: 0;
      color: var(--t71-text);
      background:
        radial-gradient(circle at 78% 8%, rgba(111, 143, 120, 0.13), transparent 28%),
        radial-gradient(circle at 12% 20%, rgba(184, 138, 74, 0.10), transparent 26%),
        linear-gradient(180deg, #0d100e 0%, var(--t71-bg) 42%, #0d100e 100%);
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Heiti TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.75;
      letter-spacing: 0.025em;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font: inherit; }

    ::selection {
      color: #111;
      background: var(--t71-gold-soft);
    }

    .t71-skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 9999;
      padding: 10px 14px;
      color: #111;
      background: var(--t71-text);
      border-radius: 8px;
      transform: translateY(-180%);
      transition: transform .2s ease;
    }

    .t71-skip-link:focus { transform: translateY(0); }

    .t71-container {
      width: min(calc(100% - 40px), var(--t71-max));
      margin-inline: auto;
    }

    .t71-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 16px;
      color: var(--t71-gold-soft);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .t71-eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--t71-gold);
    }

    .t71-section {
      position: relative;
      padding: 112px 0;
    }

    .t71-section--tight { padding: 80px 0; }

    .t71-section-heading {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
      align-items: end;
      gap: 48px;
      margin-bottom: 48px;
    }

    .t71-section-heading h2 {
      margin: 0;
      max-width: 780px;
      font-family: "Noto Serif TC", "PMingLiU", "Songti TC", serif;
      font-size: clamp(2.05rem, 4vw, 4.2rem);
      line-height: 1.14;
      letter-spacing: 0.02em;
      font-weight: 700;
    }

    .t71-section-heading p {
      margin: 0;
      color: var(--t71-muted);
      font-size: 1.02rem;
    }

    .t71-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--t71-line-strong), var(--t71-line), transparent);
    }

    .t71-site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      height: var(--t71-header-h);
      border-bottom: 1px solid transparent;
      transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
    }

    .t71-site-header.is-scrolled {
      background: rgba(10, 13, 11, 0.82);
      border-color: var(--t71-line);
      backdrop-filter: blur(16px);
    }

    .t71-nav-wrap {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .t71-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: max-content;
    }

    .t71-brand-mark {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      border: 1px solid var(--t71-line-strong);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--t71-gold-soft);
      background: rgba(184, 138, 74, 0.06);
      line-height: 1;
      text-align: center;
    }

    .t71-brand-mark span {
      font-family: Arial, Helvetica, sans-serif;
      font-size: .43rem;
      font-weight: 700;
      letter-spacing: .10em;
      transform: translateX(.04em);
    }

    .t71-brand-mark strong {
      margin-top: 4px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: .76rem;
      font-weight: 500;
      letter-spacing: .04em;
    }

    .t71-brand-copy { display: grid; gap: 1px; line-height: 1.2; }
    .t71-brand-copy strong { font-size: .92rem; letter-spacing: .16em; }
    .t71-brand-copy span { color: var(--t71-muted); font-size: .7rem; letter-spacing: .08em; }

    .t71-desktop-nav {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 28px);
      font-size: .86rem;
      color: #d8d5ca;
    }

    .t71-desktop-nav a {
      position: relative;
      padding: 12px 0;
    }

    .t71-desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 8px;
      height: 1px;
      background: var(--t71-gold);
      transition: right .25s ease;
    }

    .t71-desktop-nav a:hover::after,
    .t71-desktop-nav a:focus-visible::after { right: 0; }

    .t71-menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--t71-line);
      border-radius: 50%;
      color: var(--t71-text);
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
    }

    .t71-menu-toggle span,
    .t71-menu-toggle::before,
    .t71-menu-toggle::after {
      content: "";
      display: block;
      width: 18px;
      height: 1px;
      margin: 5px auto;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .t71-menu-toggle[aria-expanded="true"] span { opacity: 0; }
    .t71-menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
    .t71-menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

    .t71-mobile-nav {
      position: fixed;
      inset: var(--t71-header-h) 0 0 0;
      display: grid;
      align-content: start;
      gap: 4px;
      padding: 34px 24px 48px;
      background: rgba(10, 13, 11, 0.98);
      transform: translateX(100%);
      transition: transform .3s ease;
      overflow-y: auto;
    }

    .t71-mobile-nav.is-open { transform: translateX(0); }

    .t71-mobile-nav a {
      padding: 16px 4px;
      border-bottom: 1px solid var(--t71-line);
      font-size: 1.05rem;
    }

    .t71-hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: center;
      padding: calc(var(--t71-header-h) + 56px) 0 76px;
      overflow: clip;
    }

    .t71-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(242, 239, 229, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 239, 229, 0.025) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, black, transparent 85%);
    }

    .t71-hero-orbit {
      position: absolute;
      top: 15%;
      right: -12vw;
      width: min(64vw, 860px);
      aspect-ratio: 1;
      border: 1px solid rgba(184, 138, 74, .16);
      border-radius: 50%;
      box-shadow:
        0 0 0 80px rgba(184, 138, 74, .025),
        0 0 0 160px rgba(111, 143, 120, .018);
    }

    .t71-hero-orbit::before,
    .t71-hero-orbit::after {
      content: "";
      position: absolute;
      inset: 12%;
      border: 1px solid rgba(111, 143, 120, .18);
      border-radius: 50%;
    }

    .t71-hero-orbit::after {
      inset: 29%;
      border-color: rgba(242, 239, 229, .08);
    }

    .t71-hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
      gap: 72px;
      align-items: end;
    }

    .t71-hero-kicker {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
      color: var(--t71-gold-soft);
      font-size: .84rem;
      font-weight: 700;
      letter-spacing: .24em;
    }

    .t71-hero-kicker::before {
      content: "";
      width: 48px;
      height: 1px;
      background: var(--t71-gold);
    }

    .t71-hero h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(4.2rem, 11vw, 10.5rem);
      font-weight: 500;
      line-height: .85;
      letter-spacing: -0.055em;
    }

    .t71-hero h1 span {
      display: block;
      margin-top: 16px;
      color: var(--t71-text);
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.5rem, 3.8vw, 3.3rem);
      line-height: 1.2;
      letter-spacing: .06em;
    }

    .t71-hero-subtitle {
      max-width: 660px;
      margin: 32px 0 0;
      color: #d8d4c9;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.08rem, 2vw, 1.5rem);
      line-height: 1.9;
    }

    .t71-hero-dates {
      margin-top: 34px;
      display: inline-flex;
      align-items: center;
      gap: 18px;
      color: var(--t71-gold-soft);
      font-family: Georgia, serif;
      font-size: clamp(.95rem, 2vw, 1.25rem);
      letter-spacing: .12em;
    }

    .t71-hero-dates::before,
    .t71-hero-dates::after {
      content: "";
      width: 42px;
      height: 1px;
      background: var(--t71-line-strong);
    }

    .t71-hero-panel {
      position: relative;
      padding: 34px;
      border: 1px solid var(--t71-line-strong);
      border-radius: var(--t71-radius-lg);
      background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01)),
        rgba(16,19,17,.72);
      box-shadow: var(--t71-shadow);
      backdrop-filter: blur(12px);
    }

    .t71-hero-panel::before {
      content: "2071";
      position: absolute;
      top: 18px;
      right: 22px;
      color: rgba(242, 239, 229, .035);
      font-family: Georgia, serif;
      font-size: 5.5rem;
      line-height: 1;
      pointer-events: none;
    }

    .t71-countdown-label {
      margin: 0 0 22px;
      color: var(--t71-muted);
      font-size: .84rem;
      letter-spacing: .16em;
    }

    .t71-countdown {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .t71-time-unit {
      min-height: 108px;
      padding: 18px;
      border: 1px solid var(--t71-line);
      border-radius: 16px;
      background: rgba(255,255,255,.025);
    }

    .t71-time-unit strong {
      display: block;
      font-family: Georgia, serif;
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -.03em;
    }

    .t71-time-unit span {
      display: block;
      margin-top: 12px;
      color: var(--t71-muted);
      font-size: .74rem;
      letter-spacing: .16em;
    }

    .t71-countdown-note {
      margin: 20px 0 0;
      color: var(--t71-muted);
      font-size: .78rem;
    }

    .t71-scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 24px;
      z-index: 3;
      display: grid;
      place-items: center;
      gap: 8px;
      color: var(--t71-muted);
      font-size: .68rem;
      letter-spacing: .16em;
      transform: translateX(-50%);
    }

    .t71-scroll-cue::after {
      content: "";
      width: 1px;
      height: 44px;
      background: linear-gradient(var(--t71-gold), transparent);
      animation: cue 1.9s ease-in-out infinite;
      transform-origin: top;
    }

    @keyframes cue {
      0%, 100% { transform: scaleY(.35); opacity: .45; }
      50% { transform: scaleY(1); opacity: 1; }
    }

    .t71-manifesto {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 64px;
      align-items: start;
    }

    .t71-manifesto-title {
      position: sticky;
      top: calc(var(--t71-header-h) + 36px);
    }

    .t71-manifesto-title h2 {
      margin: 0;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(2.1rem, 4.8vw, 4.6rem);
      line-height: 1.25;
    }

    .t71-manifesto-copy {
      padding-left: 52px;
      border-left: 1px solid var(--t71-line-strong);
    }

    .t71-manifesto-copy blockquote {
      margin: 0;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.45rem, 3.2vw, 2.8rem);
      line-height: 1.75;
      letter-spacing: .04em;
    }

    .t71-manifesto-copy blockquote strong {
      color: var(--t71-gold-soft);
      font-weight: 700;
    }

    .t71-manifesto-copy p {
      margin: 30px 0 0;
      color: var(--t71-muted);
      font-size: 1.05rem;
    }

    .t71-identity-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .t71-identity-card {
      min-height: 230px;
      padding: 28px;
      border: 1px solid var(--t71-line);
      border-radius: var(--t71-radius-md);
      background: linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.008));
      transition: transform .3s ease, border-color .3s ease, background .3s ease;
    }

    .t71-identity-card:hover {
      transform: translateY(-6px);
      border-color: var(--t71-line-strong);
      background: linear-gradient(145deg, rgba(184,138,74,.065), rgba(255,255,255,.01));
    }

    .t71-identity-card .t71-number {
      color: var(--t71-gold);
      font-family: Georgia, serif;
      font-size: .82rem;
      letter-spacing: .16em;
    }

    .t71-identity-card h3 {
      margin: 50px 0 10px;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: 1.45rem;
      line-height: 1.35;
    }

    .t71-identity-card p {
      margin: 0;
      color: var(--t71-muted);
      font-size: .9rem;
    }

    .t71-timeline {
      position: relative;
      margin-top: 26px;
    }

    .t71-timeline::before {
      content: "";
      position: absolute;
      left: 170px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(var(--t71-gold), var(--t71-green), transparent);
    }

    .t71-timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 140px minmax(0, 1fr);
      gap: 60px;
      padding: 0 0 62px;
    }

    .t71-timeline-item::before {
      content: "";
      position: absolute;
      left: 165px;
      top: 7px;
      width: 11px;
      height: 11px;
      border: 2px solid var(--t71-bg);
      border-radius: 50%;
      background: var(--t71-gold-soft);
      box-shadow: 0 0 0 1px var(--t71-gold);
    }

    .t71-timeline-year {
      color: var(--t71-gold-soft);
      font-family: Georgia, serif;
      font-size: 1rem;
      line-height: 1.35;
      letter-spacing: .04em;
    }

    .t71-timeline-content {
      padding: 0 0 0 24px;
    }

    .t71-timeline-content h3 {
      margin: 0 0 10px;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.35rem, 2.5vw, 2rem);
    }

    .t71-timeline-content p {
      margin: 0;
      color: var(--t71-muted);
    }

    .t71-timeline-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .t71-timeline-tags span {
      padding: 6px 10px;
      border: 1px solid var(--t71-line);
      border-radius: 999px;
      color: #d9d6cc;
      font-size: .76rem;
    }

    .t71-pillars {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border: 1px solid var(--t71-line);
      border-radius: var(--t71-radius-lg);
      overflow: hidden;
      background: rgba(255,255,255,.015);
    }

    .t71-pillar {
      position: relative;
      min-height: 380px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid var(--t71-line);
      overflow: hidden;
    }

    .t71-pillar:last-child { border-right: 0; }

    .t71-pillar::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -100px;
      width: 250px;
      height: 250px;
      border: 1px solid rgba(242, 239, 229, .06);
      border-radius: 50%;
    }

    .t71-pillar small {
      color: var(--t71-gold-soft);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .18em;
    }

    .t71-pillar h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(2rem, 3.4vw, 3.1rem);
      line-height: 1.3;
    }

    .t71-pillar p {
      position: relative;
      z-index: 1;
      margin: 18px 0 0;
      color: var(--t71-muted);
      font-size: .95rem;
    }

    .t71-pillar--tech { background: linear-gradient(160deg, rgba(111,143,120,.16), transparent 58%); }
    .t71-pillar--culture { background: linear-gradient(160deg, rgba(184,138,74,.14), transparent 58%); }
    .t71-pillar--life { background: linear-gradient(160deg, rgba(242,239,229,.075), transparent 58%); }

    .t71-works-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 18px;
    }

    .t71-work-card {
      position: relative;
      min-height: 340px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--t71-line);
      border-radius: var(--t71-radius-md);
      background:
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008)),
        var(--t71-bg-card);
      overflow: hidden;
    }

    .t71-work-card::before {
      content: "";
      position: absolute;
      top: -90px;
      right: -90px;
      width: 220px;
      height: 220px;
      border: 1px solid rgba(184,138,74,.14);
      border-radius: 50%;
    }

    .t71-work-card--wide { grid-column: span 7; }
    .t71-work-card--mid { grid-column: span 5; }
    .t71-work-card--third { grid-column: span 4; min-height: 300px; }

    .t71-work-card .t71-work-type {
      position: relative;
      z-index: 1;
      color: var(--t71-gold-soft);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .16em;
    }

    .t71-work-card h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.7rem, 3vw, 2.8rem);
      line-height: 1.25;
    }

    .t71-work-card p {
      position: relative;
      z-index: 1;
      max-width: 620px;
      margin: 18px 0 0;
      color: var(--t71-muted);
    }

    .t71-books-layout {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 32px;
      align-items: stretch;
    }

    .t71-book-showcase {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .t71-book {
      position: relative;
      min-height: 440px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--t71-line-strong);
      border-radius: 8px 20px 20px 8px;
      background:
        linear-gradient(90deg, rgba(0,0,0,.38) 0 12px, transparent 12px),
        linear-gradient(145deg, #252a26, #161a17);
      box-shadow: 18px 22px 55px rgba(0,0,0,.25);
    }

    .t71-book::after {
      content: "";
      position: absolute;
      top: 18px;
      bottom: 18px;
      left: 14px;
      width: 1px;
      background: rgba(255,255,255,.08);
    }

    .t71-book small {
      color: var(--t71-gold-soft);
      letter-spacing: .16em;
    }

    .t71-book h3 {
      margin: 0;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(2rem, 4.2vw, 3.6rem);
      line-height: 1.2;
      writing-mode: vertical-rl;
      letter-spacing: .16em;
    }

    .t71-book p {
      margin: 0;
      color: var(--t71-muted);
      font-size: .85rem;
    }

    .t71-thought-panel {
      padding: 38px;
      border: 1px solid var(--t71-line);
      border-radius: var(--t71-radius-lg);
      background: rgba(255,255,255,.02);
    }

    .t71-thought-panel h3 {
      margin: 0 0 22px;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: 1.6rem;
    }

    .t71-thought-list {
      display: grid;
      gap: 0;
    }

    .t71-thought-item {
      padding: 19px 0;
      border-top: 1px solid var(--t71-line);
    }

    .t71-thought-item:first-child { border-top: 0; }

    .t71-thought-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .t71-thought-item span {
      color: var(--t71-muted);
      font-size: .88rem;
    }

    .t71-gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 16px;
    }

    .t71-photo-slot {
      position: relative;
      min-height: 280px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px dashed rgba(242,239,229,.22);
      border-radius: var(--t71-radius-md);
      background:
        linear-gradient(135deg, rgba(255,255,255,.025), transparent),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.012) 18px 19px);
      overflow: hidden;
    }

    .t71-photo-slot::after {
      content: "影像待補";
      position: absolute;
      inset: 50% auto auto 50%;
      color: rgba(242,239,229,.12);
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(2.2rem, 5vw, 4.8rem);
      white-space: nowrap;
      transform: translate(-50%, -50%) rotate(-7deg);
    }

    .t71-photo-slot--large { grid-column: span 7; min-height: 420px; }
    .t71-photo-slot--small { grid-column: span 5; }
    .t71-photo-slot--third { grid-column: span 4; }

    .t71-photo-slot strong,
    .t71-photo-slot span {
      position: relative;
      z-index: 1;
    }

    .t71-photo-slot strong { font-family: "Noto Serif TC", "PMingLiU", serif; font-size: 1.25rem; }
    .t71-photo-slot span { color: var(--t71-muted); font-size: .78rem; }

    .t71-letter {
      position: relative;
      max-width: 920px;
      margin-inline: auto;
      padding: clamp(36px, 7vw, 84px);
      border: 1px solid var(--t71-line-strong);
      border-radius: var(--t71-radius-lg);
      background:
        linear-gradient(135deg, rgba(184,138,74,.075), transparent 42%),
        rgba(255,255,255,.018);
      box-shadow: var(--t71-shadow);
    }

    .t71-letter::before {
      content: "2071";
      position: absolute;
      right: 34px;
      bottom: 8px;
      color: rgba(242,239,229,.035);
      font-family: Georgia, serif;
      font-size: clamp(5rem, 16vw, 10rem);
      line-height: 1;
    }

    .t71-letter h2 {
      margin: 0 0 28px;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      line-height: 1.2;
    }

    .t71-letter p {
      position: relative;
      z-index: 1;
      margin: 0 0 18px;
      color: #d8d5ca;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.05rem, 2vw, 1.34rem);
      line-height: 2;
    }

    .t71-letter-signature {
      margin-top: 36px !important;
      color: var(--t71-gold-soft) !important;
      text-align: right;
    }

    .t71-epitaph {
      text-align: center;
    }

    .t71-epitaph .t71-eyebrow { justify-content: center; }

    .t71-epitaph blockquote {
      max-width: 920px;
      margin: 0 auto;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(1.35rem, 3vw, 2.45rem);
      line-height: 1.95;
      letter-spacing: .045em;
    }

    .t71-epitaph blockquote em {
      color: var(--t71-gold-soft);
      font-style: normal;
    }

    .t71-archive-note {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 52px;
      align-items: start;
      padding: 46px;
      border: 1px solid var(--t71-line);
      border-radius: var(--t71-radius-lg);
      background: linear-gradient(135deg, rgba(111,143,120,.08), rgba(255,255,255,.015));
    }

    .t71-archive-note h2 {
      margin: 0;
      font-family: "Noto Serif TC", "PMingLiU", serif;
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 1.25;
    }

    .t71-archive-note p {
      margin: 0 0 16px;
      color: var(--t71-muted);
    }

    .t71-archive-formats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .t71-archive-formats span {
      padding: 8px 12px;
      border: 1px solid var(--t71-line-strong);
      border-radius: 999px;
      color: #ded9ce;
      font-size: .78rem;
    }

    .t71-site-footer {
      padding: 54px 0 34px;
      border-top: 1px solid var(--t71-line);
      background: var(--t71-bg-deep);
    }

    .t71-footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: end;
    }

    .t71-footer-brand {
      margin: 0 0 12px;
      font-family: Georgia, serif;
      font-size: 2rem;
      letter-spacing: .05em;
    }

    .t71-footer-copy,
    .t71-footer-meta {
      margin: 0;
      color: var(--t71-muted);
      font-size: .8rem;
    }

    .t71-footer-meta { text-align: right; }

    .t71-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .t71-reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    .t71-noscript-note {
      padding: 12px 18px;
      color: #111;
      background: var(--t71-gold-soft);
      text-align: center;
      font-weight: 700;
    }

    @media (max-width: 980px) {
      :root { --t71-header-h: 70px; }
      .t71-desktop-nav { display: none; }
      .t71-menu-toggle { display: block; }
      .t71-hero-grid,
      .t71-manifesto,
      .t71-books-layout,
      .t71-archive-note { grid-template-columns: 1fr; }
      .t71-hero { min-height: auto; padding-top: calc(var(--t71-header-h) + 80px); }
      .t71-hero-grid { gap: 48px; }
      .t71-hero-panel { max-width: 640px; }
      .t71-hero-orbit { top: 6%; right: -28vw; width: 95vw; }
      .t71-manifesto-title { position: static; }
      .t71-manifesto-copy { padding-left: 28px; }
      .t71-identity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .t71-pillars { grid-template-columns: 1fr; }
      .t71-pillar { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--t71-line); }
      .t71-pillar:last-child { border-bottom: 0; }
      .t71-work-card--wide,
      .t71-work-card--mid,
      .t71-work-card--third { grid-column: span 6; }
      .t71-photo-slot--large,
      .t71-photo-slot--small,
      .t71-photo-slot--third { grid-column: span 6; }
      .t71-section-heading { grid-template-columns: 1fr; gap: 22px; }
      .t71-archive-note { gap: 28px; }
    }

    @media (max-width: 680px) {
      .t71-container { width: min(calc(100% - 28px), var(--t71-max)); }
      .t71-section { padding: 82px 0; }
      .t71-section--tight { padding: 62px 0; }
      .t71-brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
      .t71-brand-mark span { font-size: .39rem; }
      .t71-brand-mark strong { font-size: .7rem; }
      .t71-brand-copy span { display: none; }
      .t71-hero { padding-bottom: 84px; }
      .t71-hero h1 { font-size: clamp(4rem, 23vw, 6.8rem); }
      .t71-hero h1 span { margin-top: 18px; font-size: clamp(1.35rem, 7vw, 2.1rem); }
      .t71-hero-kicker { letter-spacing: .14em; }
      .t71-hero-dates { gap: 10px; letter-spacing: .06em; }
      .t71-hero-dates::before,
      .t71-hero-dates::after { width: 18px; }
      .t71-hero-panel { padding: 24px; }
      .t71-time-unit { min-height: 96px; padding: 15px; }
      .t71-scroll-cue { display: none; }
      .t71-manifesto-copy { padding-left: 20px; }
      .t71-identity-grid { grid-template-columns: 1fr; }
      .t71-identity-card { min-height: 195px; }
      .t71-identity-card h3 { margin-top: 34px; }
      .t71-timeline::before { left: 8px; }
      .t71-timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 32px;
      }
      .t71-timeline-item::before { left: 3px; }
      .t71-timeline-content { padding-left: 0; }
      .t71-timeline-year { font-size: .92rem; }
      .t71-works-grid,
      .t71-gallery-grid { grid-template-columns: 1fr; }
      .t71-work-card--wide,
      .t71-work-card--mid,
      .t71-work-card--third,
      .t71-photo-slot--large,
      .t71-photo-slot--small,
      .t71-photo-slot--third { grid-column: auto; }
      .t71-work-card { min-height: 300px; }
      .t71-book-showcase { grid-template-columns: 1fr; }
      .t71-book { min-height: 320px; }
      .t71-book h3 { writing-mode: horizontal-tb; letter-spacing: .08em; }
      .t71-thought-panel { padding: 26px; }
      .t71-photo-slot,
      .t71-photo-slot--large { min-height: 280px; }
      .t71-letter { padding: 32px 24px; }
      .t71-archive-note { padding: 30px 24px; }
      .t71-footer-grid { grid-template-columns: 1fr; align-items: start; }
      .t71-footer-meta { text-align: left; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .t71-reveal { opacity: 1; transform: none; }
    }
  

/* =====================================================
   WordPress 區塊子佈景主題整合層
   ===================================================== */
html { scroll-padding-top: calc(var(--t71-header-h) + 18px); }
body { min-height: 100vh; }
body.t71-theme-active,
body.t71-theme-active .wp-site-blocks {
  margin: 0;
  padding: 0;
  color: var(--t71-text);
  background: var(--t71-bg);
}
body.t71-theme-active .wp-site-blocks { overflow: clip; }
body.t71-theme-active .wp-site-blocks > * { margin-block-start: 0; }
.t71-front-main { margin: 0 !important; padding: 0 !important; }
.t71-front-main > * { margin-block-start: 0 !important; }
.t71-site-header { top: 0; }
body.admin-bar .t71-site-header { top: 32px; }

.t71-main-nav { margin-left: auto; }
.t71-main-nav .wp-block-navigation__container {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.t71-main-nav .wp-block-navigation-item__content {
  position: relative;
  padding: 12px 0;
  color: #d8d5ca;
  font-size: .86rem;
  line-height: 1.45;
  text-decoration: none;
}
.t71-main-nav .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--t71-gold);
  transition: right .25s ease;
}
.t71-main-nav .wp-block-navigation-item__content:hover::after,
.t71-main-nav .wp-block-navigation-item__content:focus-visible::after { right: 0; }
.t71-main-nav .wp-block-navigation__responsive-container-open {
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--t71-text);
  border: 1px solid var(--t71-line-strong);
  border-radius: 50%;
  background: rgba(242,239,229,.025);
}
.t71-main-nav .wp-block-navigation__responsive-container-open svg { width: 25px; height: 25px; }
.t71-main-nav .wp-block-navigation__responsive-container-close {
  top: 28px;
  right: 26px;
  width: 48px;
  height: 48px;
  color: var(--t71-text);
  border: 1px solid var(--t71-line-strong);
  border-radius: 50%;
}
.t71-main-nav .wp-block-navigation__responsive-container.is-menu-open {
  padding: max(92px, calc(env(safe-area-inset-top) + 82px)) 30px 40px;
  color: var(--t71-text);
  background:
    radial-gradient(circle at 80% 10%, rgba(111,143,120,.18), transparent 30%),
    rgba(10,13,11,.985);
}
.t71-main-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  align-items: stretch;
  justify-content: flex-start;
}
.t71-main-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  width: min(100%, 540px);
  margin: 0 auto;
  align-items: stretch;
  gap: 0;
}
.t71-main-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
  border-bottom: 1px solid var(--t71-line);
}
.t71-main-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  display: block;
  width: 100%;
  padding: 18px 4px;
  font-family: "Noto Serif TC", "PMingLiU", "Songti TC", serif;
  font-size: clamp(1.35rem, 6vw, 2rem);
}
.t71-main-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after { display: none; }

/* 內頁與文章的共用展廳版型 */
.t71-page-main {
  min-height: calc(100vh - 280px);
  padding: calc(var(--t71-header-h) + 96px) 20px 112px;
  background:
    radial-gradient(circle at 84% 6%, rgba(111,143,120,.12), transparent 28%),
    linear-gradient(180deg, #0d100e, var(--t71-bg));
}
.t71-page-shell { width: min(100%, 860px); margin: 0 auto; }
.t71-page-shell--wide { width: min(100%, var(--t71-max)); }
.t71-page-kicker { margin: 0 0 18px; color: var(--t71-gold-soft); font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.t71-page-title,
.t71-page-main .wp-block-query-title {
  margin: 0 0 34px;
  color: var(--t71-text);
  font-family: "Noto Serif TC", "PMingLiU", "Songti TC", serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: .02em;
}
.t71-page-main .wp-block-post-content { color: #ddd9cd; font-size: 1.06rem; line-height: 1.95; }
.t71-page-main .wp-block-post-content h2,
.t71-page-main .wp-block-post-content h3,
.t71-page-main .wp-block-post-content h4 { color: var(--t71-text); font-family: "Noto Serif TC", "PMingLiU", "Songti TC", serif; }
.t71-page-main .wp-block-post-content a { color: var(--t71-gold-soft); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }
.t71-page-main .wp-block-post-featured-image img { border-radius: var(--t71-radius-md); }
.t71-post-meta { margin: -18px 0 40px; color: var(--t71-muted); font-size: .86rem; }
.t71-list-card {
  margin-bottom: 20px;
  padding: 30px;
  border: 1px solid var(--t71-line);
  border-radius: var(--t71-radius-md);
  background: rgba(242,239,229,.025);
}
.t71-list-card .wp-block-post-title { margin: 0 0 10px; font-family: "Noto Serif TC", "PMingLiU", "Songti TC", serif; font-size: clamp(1.45rem, 3vw, 2.2rem); }
.t71-list-card .wp-block-post-title a { text-decoration: none; }
.t71-list-card .wp-block-post-excerpt { color: var(--t71-muted); }
.t71-page-main .wp-block-query-pagination { margin-top: 42px; }
.t71-page-main .wp-block-query-pagination a { color: var(--t71-gold-soft); }
.t71-search-form .wp-block-search__input {
  color: var(--t71-text);
  border: 1px solid var(--t71-line-strong);
  background: var(--t71-bg-card);
}
.t71-search-form .wp-block-search__button { color: #111; background: var(--t71-gold-soft); }

/* 可插入的頁面版型樣式 */
.t71-page-intro {
  margin: 0 0 48px;
  padding: 38px;
  border: 1px solid var(--t71-line-strong);
  border-radius: var(--t71-radius-lg);
  background: linear-gradient(135deg, rgba(184,138,74,.09), rgba(111,143,120,.07));
}
.t71-page-intro p { color: var(--t71-muted); }
.t71-archive-card {
  padding: 28px;
  border: 1px solid var(--t71-line);
  border-radius: var(--t71-radius-md);
  background: var(--t71-bg-card);
}
.t71-timeline-entry {
  padding: 26px 0 26px 28px;
  border-left: 1px solid var(--t71-line-strong);
}
.t71-timeline-entry .wp-block-heading { margin-top: 0; }

@media (max-width: 980px) {
  .t71-main-nav .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) { display: none; }
  .t71-main-nav .wp-block-navigation__responsive-container-open { display: flex; }
}
@media (min-width: 981px) {
  .t71-main-nav .wp-block-navigation__responsive-container-open { display: none; }
}
@media (max-width: 782px) {
  body.admin-bar .t71-site-header { top: 46px; }
}
@media (max-width: 680px) {
  .t71-page-main { padding: calc(var(--t71-header-h) + 56px) 20px 82px; }
  .t71-page-intro { padding: 26px 22px; }
}
