      :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;
      }
      .nav.scrolled {
        background: rgba(247, 249, 252, 0.78);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid var(--line);
        padding: 12px 48px;
      }
      .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        color: white;
        transition: color 0.4s;
      }
      .nav.scrolled .nav-brand {
        color: var(--ink);
      }
      .nav-mark {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      .nav-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }
      .nav-name {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
      }
      .nav-name b {
        font-weight: 600;
        font-size: 14.5px;
        letter-spacing: 0.02em;
      }
      .nav-name span {
        font-family: var(--serif);
        font-style: italic;
        font-size: 11.5px;
        opacity: 0.75;
        letter-spacing: 0.02em;
      }

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

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

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

      .hero-title {
        font-size: clamp(48px, 6.4vw, 92px);
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: -0.02em;
        margin-bottom: 32px;
        text-wrap: balance;
      }
      .hero-title .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: 18px;
        line-height: 1.8;
        max-width: 540px;
        color: rgba(255, 255, 255, 0.82);
      }

      /* vision quote card */
      .vision-quote {
        position: relative;
        padding: 36px 36px 32px;
        border-radius: 22px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.13),
          rgba(255, 255, 255, 0.03)
        );
        backdrop-filter: blur(24px) saturate(140%);
        -webkit-backdrop-filter: blur(24px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow:
          0 30px 80px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
      .vision-quote .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        opacity: 0.72;
        text-transform: uppercase;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .vision-quote .label::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .vision-quote h2 {
        font-family: var(--serif);
        font-size: 38px;
        font-weight: 500;
        line-height: 1.15;
        letter-spacing: -0.01em;
        color: var(--gold);
        margin-bottom: 10px;
      }
      .vision-quote .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        opacity: 0.72;
        line-height: 1.5;
      }
      .vision-quote .sig {
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        font-size: 13px;
        line-height: 1.6;
        opacity: 0.78;
      }
      .vision-quote .sig b {
        color: white;
        font-weight: 600;
      }

      .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: 64px;
        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, 62px);
        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: 600px;
      }

      /* ─────────────────────────────────────────  PILLARS · 三大異象  ───────────────────────────── */
      .pillars {
        background: var(--paper-2);
        padding-bottom: 130px;
      }
      .pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      .pillar {
        position: relative;
        padding: 48px 40px 40px;
        border-radius: 24px;
        background: white;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-1);
        overflow: hidden;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        transition:
          transform 0.4s,
          box-shadow 0.4s;
      }
      .pillar:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-2);
      }
      .pillar .roman {
        font-family: var(--serif);
        font-size: 64px;
        line-height: 1;
        color: var(--gold);
        font-weight: 400;
        margin-bottom: 24px;
      }
      .pillar h3 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.015em;
        margin-bottom: 8px;
      }
      .pillar .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        opacity: 0.6;
        margin-bottom: 22px;
      }
      .pillar p {
        font-size: 14.5px;
        line-height: 1.8;
        opacity: 0.78;
      }
      .pillar.feature {
        background: linear-gradient(160deg, var(--navy) 0%, var(--ink) 100%);
        color: white;
        border-color: transparent;
      }
      .pillar.feature::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 320px;
        height: 320px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.4),
          transparent 70%
        );
        pointer-events: none;
      }
      .pillar.feature .roman {
        color: var(--gold);
      }
      .pillar.feature p {
        opacity: 0.85;
      }
      .pillar .ribbon {
        position: absolute;
        top: 36px;
        right: 36px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.5;
      }

      /* ─────────────────────────────────────────  BELIEFS · 我們所信  ───────────────────────────── */
      .beliefs {
        background: var(--ink);
        color: white;
        padding: 130px 48px;
        position: relative;
        overflow: hidden;
      }
      .beliefs::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.14),
          transparent 70%
        );
        pointer-events: none;
      }
      .beliefs::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 30% 40%,
          rgba(0, 0, 0, 0.4),
          transparent 70%
        );
        pointer-events: none;
      }
      .beliefs .sec-head {
        position: relative;
        z-index: 2;
      }
      .beliefs .sec-title {
        color: white;
      }
      .beliefs .sec-eyebrow {
        color: var(--gold);
        opacity: 1;
      }
      .beliefs .sec-eyebrow::before {
        background: var(--gold);
      }
      .beliefs .sec-sub {
        color: rgba(255, 255, 255, 0.7);
      }

      .beliefs-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        overflow: hidden;
      }
      .belief {
        background: var(--ink);
        padding: 36px 32px 36px;
        display: flex;
        flex-direction: column;
        min-height: 270px;
        transition: background 0.4s;
        position: relative;
      }
      .belief:hover {
        background: rgba(212, 165, 116, 0.06);
      }
      .belief .num {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        color: var(--gold);
        margin-bottom: 18px;
      }
      .belief .num::after {
        content: "—";
        margin-left: 8px;
        opacity: 0.5;
      }
      .belief h4 {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.005em;
        margin-bottom: 8px;
        color: white;
      }
      .belief .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 13.5px;
        opacity: 0.55;
        margin-bottom: 14px;
      }
      .belief p {
        font-size: 13.5px;
        line-height: 1.75;
        opacity: 0.75;
        margin-top: auto;
      }

      .creed-strip {
        position: relative;
        z-index: 2;
        margin-top: 56px;
        padding: 36px 40px;
        border-radius: 18px;
        background: linear-gradient(
          135deg,
          rgba(212, 165, 116, 0.1),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(212, 165, 116, 0.22);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }
      .creed-strip .text {
        max-width: 720px;
      }
      .creed-strip .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .creed-strip h3 {
        font-family: var(--serif);
        font-size: 28px;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 6px;
      }
      .creed-strip p {
        font-size: 14.5px;
        opacity: 0.78;
        line-height: 1.65;
      }
      .creed-tags {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .creed-tag {
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid rgba(212, 165, 116, 0.35);
        background: rgba(212, 165, 116, 0.08);
        font-family: var(--serif);
        font-size: 16px;
        color: var(--gold);
      }
      .creed-tag span {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        opacity: 0.7;
        margin-left: 8px;
        text-transform: uppercase;
      }

      /* ─────────────────────────────────────────  VALUES · 核心價值  ───────────────────────────── */
      .values {
        background: linear-gradient(
          180deg,
          var(--paper-2) 0%,
          var(--paper) 100%
        );
        padding-bottom: 130px;
      }
      .values-layout {
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 80px;
        align-items: start;
      }
      .values-aside {
        position: sticky;
        top: 120px;
      }
      .values-aside .roman-big {
        font-family: var(--serif);
        font-style: italic;
        font-size: 88px;
        line-height: 1;
        color: var(--gold);
        margin-bottom: 14px;
      }
      .values-aside h2 {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.05;
        letter-spacing: -0.02em;
        margin-bottom: 22px;
      }
      .values-aside h2 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .values-aside p {
        font-size: 15px;
        line-height: 1.8;
        opacity: 0.72;
        margin-bottom: 28px;
      }
      .values-aside .pin {
        padding: 18px 20px;
        border-left: 2px solid var(--gold);
        background: white;
        border-radius: 0 12px 12px 0;
        font-family: var(--serif);
        font-style: italic;
        font-size: 17px;
        line-height: 1.55;
        color: var(--navy);
      }
      .values-aside .pin .ref {
        display: block;
        margin-top: 10px;
        font-family: var(--mono);
        font-style: normal;
        font-size: 10.5px;
        letter-spacing: 0.16em;
        color: var(--gold-deep);
        text-transform: uppercase;
      }

      .values-list {
        display: flex;
        flex-direction: column;
      }
      .value-row {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 32px;
        padding: 36px 0;
        border-top: 1px solid var(--line);
        align-items: start;
        transition: padding-left 0.4s;
      }
      .value-row:hover {
        padding-left: 8px;
      }
      .value-row:last-child {
        border-bottom: 1px solid var(--line);
      }
      .value-row .idx {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 400;
        color: var(--gold-deep);
        line-height: 1;
        padding-top: 4px;
      }
      .value-row .idx-en {
        display: block;
        margin-top: 6px;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        opacity: 0.5;
        text-transform: uppercase;
        color: var(--ink);
      }
      .value-row h4 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -0.01em;
        margin-bottom: 6px;
      }
      .value-row .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        opacity: 0.55;
        margin-bottom: 14px;
      }
      .value-row p {
        font-size: 14.5px;
        line-height: 1.8;
        opacity: 0.78;
        max-width: 680px;
      }
      .value-row .scripture {
        display: inline-block;
        margin-top: 12px;
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.14em;
        padding: 5px 10px;
        border-radius: 6px;
        background: rgba(212, 165, 116, 0.14);
        color: var(--gold-deep);
        text-transform: uppercase;
      }

      /* ─────────────────────────────────────────  CTA 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;
      }
      .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.5vw, 70px);
        font-weight: 400;
        line-height: 1.15;
        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: 580px;
        margin: 0 auto 36px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          background 0.2s;
      }
      .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);
      }
      .btn svg {
        width: 14px;
        height: 14px;
      }
      .closer .hero-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ─────────────────────────────────────────  FOOTER (shared with home)  ───────────────────────────────── */
      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;
      }
      .reveal.d6 {
        transition-delay: 0.36s;
      }
      .reveal.d7 {
        transition-delay: 0.42s;
      }
      .reveal.d8 {
        transition-delay: 0.48s;
      }

      /* hero stagger */
      .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 .vision-quote {
        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;
        }
      }

      @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;
        }
        .beliefs-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .values-layout {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .values-aside {
          position: static;
        }
        .pillars-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .footer-brand {
          max-width: none;
        }
        section {
          padding: 100px 32px;
        }
        footer {
          padding: 80px 32px 32px;
        }
      }

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

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

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

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

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

        .vision-quote {
          padding: 26px 24px !important;
          border-radius: 18px;
        }
        .vision-quote h2 {
          font-size: 32px !important;
        }

        .hero-meta {
          padding: 0 24px;
          flex-direction: column;
          align-items: flex-start;
          gap: 24px;
          bottom: 24px;
        }
        .hero-meta-left {
          gap: 24px;
          flex-wrap: wrap;
        }

        .pillar-card {
          padding: 28px 24px;
        }
        .beliefs-grid {
          grid-template-columns: 1fr;
        }
        .belief {
          padding: 28px 24px;
        }

        .value-row {
          grid-template-columns: 60px 1fr;
          gap: 18px;
          padding: 26px 0;
        }
        .value-row .num {
          font-size: 22px;
        }
        .value-row h3 {
          font-size: 22px;
        }

        .welcome {
          padding: 80px 24px;
          background-attachment: scroll;
        }
        .welcome h2 {
          font-size: clamp(30px, 8.5vw, 46px) !important;
        }
        .welcome p {
          font-size: 14.5px;
        }
        .welcome .hero-actions {
          flex-direction: column;
          align-items: stretch;
        }
        .welcome .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;
        }
      }
