:root{
    --bg:#0c0c0b;
    --bg-soft:#131311;
    --surface:#181816;
    --surface-2:#1e1e1b;
    --border:rgba(199,155,99,0.16);
    --border-strong:rgba(199,155,99,0.32);
    --text:#f1ebe0;
    --text-dim:#a9a294;
    --text-faint:#726b60;
    --gold:#c79b63;
    --gold-bright:#dcb87e;
    --gold-soft:rgba(199,155,99,0.12);
    --serif: 'EB Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --mono: 'DM Mono', monospace;
    --container: 1240px;
    --ease: cubic-bezier(.16,.8,.24,1);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  html[lang="zh"] body{font-family:'Noto Sans SC', var(--sans);}
  html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3, html[lang="zh"] .tagline, html[lang="zh"] .highlight, html[lang="zh"] .closing, html[lang="zh"] .note{
    font-family:'Noto Sans SC', var(--serif); font-style:normal;
  }
  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--sans);
    font-weight:400;
    line-height:1.6;
    overflow-x:hidden;
  }
  ::selection{background:var(--gold);color:#0c0c0b;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:var(--container);margin:0 auto;padding:0 40px;}
  .brandmark{font-family:var(--mono);color:var(--gold-bright);font-weight:500;}
  .eyebrow{
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:var(--gold);
  }
  h1,h2,h3{font-family:var(--serif);font-weight:500;letter-spacing:-0.01em;}
  .reveal{opacity:0;transform:translateY(28px);transition:opacity 1s var(--ease), transform 1s var(--ease);}
  .reveal.in{opacity:1;transform:translateY(0);}
  .reveal-stagger > *{opacity:0;transform:translateY(20px);transition:opacity .9s var(--ease), transform .9s var(--ease);}
  .reveal-stagger.in > *{opacity:1;transform:translateY(0);}
  .reveal-stagger.in > *:nth-child(1){transition-delay:.05s}
  .reveal-stagger.in > *:nth-child(2){transition-delay:.12s}
  .reveal-stagger.in > *:nth-child(3){transition-delay:.19s}
  .reveal-stagger.in > *:nth-child(4){transition-delay:.26s}
  .reveal-stagger.in > *:nth-child(5){transition-delay:.33s}
  .reveal-stagger.in > *:nth-child(6){transition-delay:.40s}
  .reveal-stagger.in > *:nth-child(7){transition-delay:.47s}
  .reveal-stagger.in > *:nth-child(8){transition-delay:.54s}

  /* ---------- HEADER ---------- */
  .site-header{
    position:fixed;top:0;left:0;right:0;z-index:100;
    display:flex;align-items:center;justify-content:space-between;
    padding:22px 40px;
    background:linear-gradient(to bottom, rgba(12,12,11,0.85), transparent);
    backdrop-filter:blur(2px);
    transition:background .4s ease, padding .4s ease, border-color .4s ease;
    border-bottom:1px solid transparent;
  }
  .site-header.scrolled{
    background:rgba(12,12,11,0.86);
    backdrop-filter:blur(14px);
    padding:14px 40px;
    border-bottom:1px solid var(--border);
  }
  .logo-group{display:flex;align-items:center;gap:14px;}
  .logo-mark{
    width:38px;height:38px;border:1px solid var(--border-strong);
    display:flex;align-items:center;justify-content:center;
    font-family:var(--mono);font-size:15px;color:var(--gold-bright);
    flex-shrink:0;
  }
  .logo-text{font-family:var(--sans);font-size:11.5px;letter-spacing:0.06em;line-height:1.35;color:var(--text-dim);text-transform:uppercase;}
  .logo-text strong{display:block;color:var(--text);font-weight:600;}
  nav.main-nav{display:flex;gap:36px;}
  nav.main-nav a{
    font-size:12.5px;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-dim);
    position:relative;padding-bottom:4px;transition:color .3s;
  }
  nav.main-nav a:hover{color:var(--text);}
  nav.main-nav a::after{content:'';position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--gold);transition:width .3s var(--ease);}
  nav.main-nav a:hover::after{width:100%;}

  /* language switch */
  .lang-switch{position:relative;}
  .lang-current{
    font-family:var(--mono);font-size:12.5px;letter-spacing:0.06em;color:var(--text-dim);
    display:flex;align-items:center;gap:6px;cursor:pointer;background:none;border:none;padding:0;
  }
  .lang-current svg{width:10px;height:10px;stroke:currentColor;fill:none;stroke-width:1.6;transition:transform .3s;}
  .lang-switch.open .lang-current svg{transform:rotate(180deg);}
  .lang-switch .lang-current:hover{color:var(--text);}
  .lang-menu{
    position:absolute;top:calc(100% + 14px);right:0;
    background:rgba(19,19,17,0.97);border:1px solid var(--border-strong);
    min-width:150px;display:none;flex-direction:column;
    backdrop-filter:blur(10px);
  }
  .lang-switch.open .lang-menu{display:flex;}
  .lang-menu button{
    text-align:left;padding:12px 16px;font-size:13px;font-family:var(--sans);color:var(--text-dim);
    background:none;border:none;cursor:pointer;transition:background .25s, color .25s;
    display:flex;justify-content:space-between;gap:10px;
  }
  .lang-menu button:hover{background:var(--gold-soft);color:var(--text);}
  .lang-menu button.active{color:var(--gold-bright);}
  .lang-menu button span.code{font-family:var(--mono);font-size:11px;color:var(--text-faint);}

  .menu-toggle{display:none;background:none;border:1px solid var(--border-strong);width:38px;height:38px;color:var(--text);align-items:center;justify-content:center;cursor:pointer;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;min-height:100vh;display:flex;align-items:center;
    padding-top:90px;overflow:hidden;
    background:radial-gradient(ellipse at 70% 30%, #17170f 0%, #0c0c0b 60%);
  }
  .hero-map-bg{position:absolute;inset:0;z-index:0;background:#0c0c0b;}
  #heroLeafletMap{
    position:absolute;inset:0;width:100%;height:100%;
    background:#0c0c0b !important;
    filter:grayscale(0.15) brightness(0.8) contrast(1.05);
  }
  .hero-map-scrim{
    position:absolute;inset:0;z-index:1;pointer-events:none;
    background:linear-gradient(100deg,
      rgba(12,12,11,0.94) 0%,
      rgba(12,12,11,0.74) 32%,
      rgba(12,12,11,0.4) 60%,
      rgba(12,12,11,0.58) 100%);
  }
  /* Leaflet theme overrides */
  .leaflet-container{background:#0c0c0b !important;font-family:var(--sans);}
  .leaflet-control-zoom{display:none;}
  .leaflet-control-attribution{display:none;}
  .map-credit{
    position:absolute;z-index:2;right:20px;bottom:20px;
    display:flex;align-items:center;gap:6px;
    font-family:var(--mono);font-size:10.5px;letter-spacing:0.04em;
    color:var(--text-faint);background:rgba(12,12,11,0.55);
    border:1px solid var(--border);padding:6px 12px;
    text-decoration:none;pointer-events:auto;
  }
  .map-credit .brandmark{font-size:11px;}
  .map-credit .credit-name{letter-spacing:0.1em;color:var(--text-faint);}
  .hero-pin{width:14px;height:14px;position:relative;cursor:pointer;}
  .hero-pin .dot{
    width:8px;height:8px;border-radius:50%;background:var(--gold-bright);
    position:absolute;top:3px;left:3px;
    box-shadow:0 0 0 0 rgba(220,184,126,0.5);
    animation:pulseDot 3.2s ease-in-out infinite;
  }
  @keyframes pulseDot{
    0%{box-shadow:0 0 0 0 rgba(220,184,126,0.45);opacity:.5;}
    50%{box-shadow:0 0 0 7px rgba(220,184,126,0);opacity:1;}
    100%{box-shadow:0 0 0 0 rgba(220,184,126,0);opacity:.5;}
  }
  .leaflet-popup-content-wrapper{
    background:rgba(19,19,17,0.96);color:var(--text);
    border:1px solid var(--border-strong);border-radius:0;
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
  }
  .leaflet-popup-content{margin:12px 16px;font-family:var(--sans);font-size:13px;line-height:1.4;}
  .leaflet-popup-tip-container{width:20px;}
  .leaflet-popup-tip{background:rgba(19,19,17,0.96);border:1px solid var(--border-strong);box-shadow:none;}
  .leaflet-popup-close-button{color:var(--text-faint) !important;}
  .leaflet-popup-close-button:hover{color:var(--gold-bright) !important;}
  .hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr 0.95fr;gap:60px;align-items:center;width:100%;}
  .hero-copy .eyebrow{margin-bottom:20px;display:block;}
  .hero-copy h1{font-size:clamp(30px,4vw,54px);line-height:1.12;color:var(--text);margin-bottom:22px;}
  .hero-copy .tagline{font-family:var(--serif);font-style:italic;color:var(--gold-bright);font-size:19px;margin-bottom:26px;line-height:1.5;}
  .hero-copy p.desc{color:var(--text-dim);font-size:15.5px;max-width:480px;margin-bottom:36px;}
  .btn-primary{
    display:inline-flex;align-items:center;gap:10px;
    background:var(--gold);color:#181410;font-family:var(--sans);font-weight:600;
    font-size:13.5px;letter-spacing:0.04em;text-transform:uppercase;
    padding:16px 30px;border:1px solid var(--gold);transition:all .35s var(--ease);
  }
  .btn-primary:hover{background:transparent;color:var(--gold-bright);}
  .btn-ghost{
    display:inline-flex;align-items:center;gap:8px;margin-left:22px;
    font-size:13px;color:var(--text-dim);border-bottom:1px solid var(--border-strong);padding-bottom:2px;
    transition:color .3s;
  }
  .btn-ghost:hover{color:var(--gold-bright);}
  .hero-visual{position:relative;height:520px;}
  .hero-stats{
    position:absolute;top:6%;right:0;
    background:rgba(19,19,17,0.72);backdrop-filter:blur(10px);
    border:1px solid var(--border);padding:30px 34px;
    display:flex;flex-direction:column;gap:18px;min-width:230px;
  }
  .stat-row{display:flex;align-items:baseline;gap:12px;border-bottom:1px solid var(--border);padding-bottom:14px;}
  .stat-row:last-child{border-bottom:none;padding-bottom:0;}
  .stat-num{font-family:var(--serif);font-size:26px;color:var(--gold-bright);min-width:78px;}
  .stat-label{font-size:12px;color:var(--text-dim);letter-spacing:0.02em;text-transform:uppercase;line-height:1.3;}
  .scroll-hint{
    position:absolute;bottom:34px;left:40px;z-index:2;display:flex;align-items:center;gap:10px;color:var(--text-faint);font-size:11.5px;letter-spacing:0.1em;text-transform:uppercase;
  }
  .scroll-hint .line{width:1px;height:34px;background:linear-gradient(var(--gold),transparent);}

  /* ---------- SECTION GENERIC ---------- */
  section{position:relative;}
  .section-label{font-family:var(--mono);font-size:12px;color:var(--gold);letter-spacing:0.16em;text-transform:uppercase;margin-bottom:18px;display:block;}
  .split{display:grid;grid-template-columns:1fr 1fr;min-height:600px;}
  .split-media{position:relative;overflow:hidden;background:var(--surface);}
  .split-copy{display:flex;flex-direction:column;justify-content:center;padding:80px 70px;background:var(--bg-soft);}
  .split-copy h2{font-size:clamp(26px,2.6vw,38px);color:var(--text);margin-bottom:24px;line-height:1.2;}
  .split-copy p{color:var(--text-dim);font-size:15.5px;margin-bottom:16px;max-width:480px;}
  .split-copy .highlight{color:var(--gold-bright);font-family:var(--serif);font-style:italic;font-size:18px;margin-top:12px;}

  /* ---------- IMAGE PLACEHOLDERS ---------- */
  .img-placeholder{
    position:absolute;inset:0;
    background:repeating-linear-gradient(135deg, var(--surface) 0 14px, var(--surface-2) 14px 28px);
    border:1px dashed var(--border-strong);
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
    text-align:center;padding:26px;
  }
  .img-placeholder .ph-icon{width:30px;height:30px;color:var(--text-faint);margin-bottom:4px;}
  .img-placeholder .ph-icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.2;}
  .img-placeholder .ph-file{font-family:var(--mono);font-size:12.5px;color:var(--gold-bright);letter-spacing:0.01em;word-break:break-all;}
  .img-placeholder .ph-size{font-family:var(--mono);font-size:11px;color:var(--text-faint);letter-spacing:0.02em;}
  .img-placeholder .ph-note{font-size:10.5px;color:var(--text-faint);max-width:230px;margin-top:2px;}

  .ph-chip{
    position:absolute;z-index:2;bottom:20px;right:20px;
    background:rgba(12,12,11,0.72);border:1px solid var(--border);
    padding:8px 14px;font-family:var(--mono);font-size:10.5px;color:var(--text-faint);
    letter-spacing:0.01em;text-align:right;line-height:1.5;
  }
  .ph-chip .ph-file{color:var(--gold-bright);display:block;}
  .real-img{
    position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;z-index:2;
  }
  @keyframes crossfadeModern{0%,40%{opacity:1;}55%,85%{opacity:0;}100%{opacity:1;}}

  /* ---------- WHY SECTION ---------- */
  .why-section{position:relative;padding:130px 0;min-height:600px;display:flex;align-items:center;}
  .why-bg{position:absolute;inset:0;z-index:1;
    background:
      linear-gradient(100deg, rgba(12,12,11,0.94) 30%, rgba(12,12,11,0.6) 65%, rgba(12,12,11,0.3)),
      repeating-linear-gradient(45deg,#181815 0 2px, #141412 2px 5px);
  }
  .why-content{position:relative;z-index:2;max-width:640px;}
  .why-content h2{font-size:clamp(28px,3vw,42px);margin-bottom:28px;line-height:1.18;}
  .why-list{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:30px;}
  .why-list li{display:flex;align-items:flex-start;gap:14px;color:var(--text-dim);font-size:15px;}
  .why-list li .dot{width:6px;height:6px;border-radius:50%;background:var(--gold);margin-top:8px;flex-shrink:0;}
  .why-content .closing{font-family:var(--serif);font-style:italic;font-size:19px;color:var(--gold-bright);line-height:1.5;}

  /* ---------- PROCESS ---------- */
  .process-section{padding:140px 0 120px;text-align:center;}
  .process-section h2{font-size:clamp(26px,2.8vw,38px);margin-bottom:70px;}
  .process-flow{
    display:flex;align-items:flex-start;justify-content:space-between;
    gap:4px;overflow-x:auto;padding-bottom:10px;
  }
  .process-step{display:flex;flex-direction:column;align-items:center;min-width:108px;flex:1;position:relative;}
  .process-step .icon-ring{
    width:64px;height:64px;border-radius:50%;border:1px solid var(--border-strong);
    display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--gold-bright);
    background:var(--surface);position:relative;z-index:2;
  }
  .process-step .icon-ring svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:1.4;}
  .process-step .step-num{font-family:var(--mono);font-size:11px;color:var(--text-faint);margin-bottom:8px;}
  .process-step .step-label{font-size:12.5px;color:var(--text-dim);line-height:1.35;max-width:120px;}
  .process-arrow{flex:0 0 auto;color:var(--border-strong);align-self:center;margin-top:32px;font-size:16px;}
  .process-note{
    max-width:620px;margin:70px auto 0;color:var(--text-dim);font-size:15px;
    border-top:1px solid var(--border);padding-top:30px;
  }

  /* ---------- COLLECTION GRID ---------- */
  .collection-section{padding:120px 0;}
  .section-head{max-width:640px;margin-bottom:60px;}
  .section-head h2{font-size:clamp(26px,2.8vw,38px);}
  .collection-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);}
  .collection-card{
    position:relative;aspect-ratio:4/5;overflow:hidden;background:var(--bg-soft);
  }
  .cc-media{position:absolute;inset:0;z-index:0;}
  .cc-media .real-img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:2;
    transition:transform .7s var(--ease);
  }
  .collection-card:hover .cc-media .real-img{transform:scale(1.06);}
  .cc-media .img-placeholder{position:absolute;inset:0;z-index:1;padding:18px;}
  .cc-media .img-placeholder .ph-icon{width:24px;height:24px;margin-bottom:2px;}
  .cc-media .img-placeholder .ph-file{font-size:10.5px;}
  .cc-media .img-placeholder .ph-size{font-size:10px;}
  .cc-scrim{
    position:absolute;inset:0;z-index:3;pointer-events:none;
    background:linear-gradient(to top,
      rgba(12,12,11,0.92) 0%,
      rgba(12,12,11,0.55) 34%,
      rgba(12,12,11,0.08) 62%,
      transparent 80%);
  }
  .cc-caption{
    position:absolute;left:0;right:0;bottom:0;z-index:4;
    display:flex;align-items:center;gap:12px;padding:20px 22px;
  }
  .cc-caption .cc-icon{width:24px;height:24px;color:var(--gold-bright);flex-shrink:0;}
  .cc-caption .cc-icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.3;}
  .cc-caption h3{font-family:var(--sans);font-weight:600;font-size:14px;color:var(--text);text-transform:none;letter-spacing:0.01em;line-height:1.3;}
  .collection-card .cc-index{
    position:absolute;top:16px;right:18px;z-index:4;
    font-family:var(--mono);font-size:10.5px;color:rgba(241,235,224,0.8);
    background:rgba(12,12,11,0.45);border:1px solid rgba(199,155,99,0.25);
    padding:3px 9px;
  }

  /* ---------- ABOUT / FOUNDER ---------- */
  .about-section{padding:130px 0;}
  .about-media{height:400px;position:relative;margin-bottom:60px;}
  .about-copy{max-width:760px;}
  .about-copy h2{font-size:clamp(26px,2.8vw,38px);margin-bottom:24px;}
  .about-copy p{color:var(--text-dim);font-size:15.5px;margin-bottom:16px;}

  .founder-section{padding:0 0 130px;}
  .founder-grid{display:grid;grid-template-columns:340px 1fr;gap:70px;align-items:center;}
  .founder-portrait{height:420px;position:relative;}
  .founder-copy .role{font-family:var(--mono);font-size:11.5px;color:var(--gold);letter-spacing:0.12em;text-transform:uppercase;margin-bottom:14px;}
  .founder-copy h3{font-size:30px;margin-bottom:18px;}
  .founder-copy p{color:var(--text-dim);font-size:15px;margin-bottom:22px;max-width:520px;}
  .founder-checklist{display:grid;grid-template-columns:1fr 1fr;gap:10px 30px;margin-bottom:26px;}
  .founder-checklist div{display:flex;gap:10px;align-items:flex-start;font-size:13.5px;color:var(--text-dim);}
  .founder-checklist svg{width:14px;height:14px;stroke:var(--gold-bright);fill:none;stroke-width:2;flex-shrink:0;margin-top:3px;}
  .founder-copy .note{font-family:var(--serif);font-style:italic;color:var(--gold-bright);font-size:16px;margin-bottom:26px;}
  .btn-outline{
    display:inline-flex;align-items:center;gap:8px;border:1px solid var(--border-strong);
    padding:12px 22px;font-size:12.5px;letter-spacing:0.05em;text-transform:uppercase;color:var(--text-dim);
    transition:all .3s;
  }
  .btn-outline:hover{border-color:var(--gold);color:var(--gold-bright);}

  /* ---------- ARCHIVE STATS ---------- */
  .archive-section{padding:100px 0 130px;text-align:center;}
  .archive-section h2{font-size:clamp(24px,2.6vw,34px);margin-bottom:60px;}
  .archive-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:1px;background:var(--border);}
  .archive-cell{background:var(--bg-soft);padding:38px 14px 28px;position:relative;overflow:hidden;}
  .archive-cell .ac-icon{width:26px;height:26px;margin:0 auto 18px;color:var(--gold);}
  .archive-cell .ac-icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.3;}
  .archive-cell .ac-num{font-family:var(--serif);font-size:26px;color:var(--gold-bright);display:block;margin-bottom:6px;}
  .archive-cell .ac-label{font-size:11px;color:var(--text-dim);letter-spacing:0.02em;text-transform:uppercase;line-height:1.4;}

  /* ---------- FUTURE ---------- */
  .future-section{padding:130px 0;}
  .future-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:70px;align-items:center;}
  .future-visual{height:520px;position:relative;}
  .phone-mock{
    position:absolute;left:8%;bottom:0;width:210px;height:430px;
    background:#0a0a09;border:6px solid #232019;border-radius:34px;
    box-shadow:0 40px 80px rgba(0,0,0,0.55);z-index:3;
  }
  .phone-mock .screen{
    position:absolute;inset:0;border-radius:26px;overflow:hidden;
    background:linear-gradient(180deg,#1c1c19,#0c0c0b 60%);
  }
  .phone-mock .screen .card{
    position:absolute;bottom:16px;left:12px;right:12px;background:rgba(19,19,17,0.9);
    border:1px solid var(--border);padding:14px;font-size:10.5px;
  }
  .phone-mock .screen .card .pin-label{color:var(--gold-bright);font-family:var(--mono);font-size:9.5px;letter-spacing:0.05em;text-transform:uppercase;margin-bottom:6px;}
  .phone-mock .screen .card h4{font-family:var(--serif);font-size:14px;color:var(--text);margin-bottom:3px;}
  .phone-mock .screen .card small{color:var(--text-faint);font-size:9.5px;}
  .future-plaque{
    position:absolute;right:4%;top:16%;width:230px;height:230px;z-index:3;
    background:linear-gradient(160deg,#221f1a,#131210);border:1px solid var(--border-strong);
    display:flex;align-items:center;justify-content:center;padding:22px;text-align:center;
    font-family:var(--mono);font-size:9.5px;color:var(--text-faint);letter-spacing:0.03em;line-height:1.8;
  }
  .future-copy h2{font-size:clamp(26px,2.8vw,38px);margin-bottom:22px;}
  .future-copy p{color:var(--text-dim);font-size:15.5px;margin-bottom:14px;max-width:480px;}
  .future-icons{display:flex;gap:34px;margin-top:34px;flex-wrap:wrap;}
  .future-icons div{display:flex;flex-direction:column;align-items:flex-start;gap:10px;max-width:140px;}
  .future-icons svg{width:22px;height:22px;stroke:var(--gold-bright);fill:none;stroke-width:1.4;}
  .future-icons span{font-size:12px;color:var(--text-dim);line-height:1.4;}

  /* ---------- QUOTE ---------- */
  .quote-section{
    min-height:70vh;background:#000;display:flex;flex-direction:column;align-items:center;justify-content:center;
    text-align:center;padding:100px 30px;
  }
  .quote-section h2{font-size:clamp(30px,4.4vw,58px);line-height:1.2;color:var(--text);max-width:820px;margin-bottom:44px;}
  .quote-section h2 em{color:var(--gold-bright);font-style:italic;}

  /* ---------- FOOTER ---------- */
  footer{background:var(--bg-soft);padding:70px 0 30px;border-top:1px solid var(--border);}
  .footer-top{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:50px;flex-wrap:wrap;gap:30px;}
  .footer-brand{display:flex;align-items:center;gap:14px;}
  .footer-links{display:flex;gap:60px;flex-wrap:wrap;}
  .footer-col h4{font-family:var(--mono);font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:var(--gold);margin-bottom:16px;}
  .footer-col a{display:block;font-size:13.5px;color:var(--text-dim);margin-bottom:10px;transition:color .3s;}
  .footer-col a:hover{color:var(--gold-bright);}
  .footer-social{display:flex;gap:14px;}
  .footer-social a{width:34px;height:34px;border:1px solid var(--border-strong);display:flex;align-items:center;justify-content:center;}
  .footer-social svg{width:14px;height:14px;stroke:var(--text-dim);fill:none;stroke-width:1.4;}
  .footer-bottom{display:flex;justify-content:space-between;border-top:1px solid var(--border);padding-top:24px;font-size:12px;color:var(--text-faint);flex-wrap:wrap;gap:10px;}
  .footer-bottom .brandmark-full{display:flex;align-items:center;gap:8px;}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    nav.main-nav{display:none;}
    .menu-toggle{display:flex;}
    .hero-inner{grid-template-columns:1fr;}
    .hero-visual{height:auto;margin-top:40px;}
    .hero-stats{position:static;margin-top:20px;}
    .split{grid-template-columns:1fr;}
    .split-media{height:320px;}
    .split-copy{padding:60px 32px;}
    .collection-grid{grid-template-columns:repeat(2,1fr);}
    .archive-grid{grid-template-columns:repeat(3,1fr);}
    .founder-grid{grid-template-columns:1fr;}
    .founder-portrait{height:320px;}
    .future-grid{grid-template-columns:1fr;}
    .future-visual{height:400px;}
    .process-flow{flex-wrap:wrap;justify-content:center;}
    .process-arrow{display:none;}
    .process-step{min-width:90px;}
  }
  @media (max-width:640px){
    .wrap{padding:0 22px;}
    .site-header{padding:16px 22px;}
    .collection-grid{grid-template-columns:1fr 1fr;}
    .archive-grid{grid-template-columns:repeat(2,1fr);}
    .btn-ghost{display:block;margin-left:0;margin-top:16px;}
  }
