:root { --bg:#fff; --text:#111; --gap:3px; --t-fluid:all 0.7s cubic-bezier(0.16, 1, 0.3, 1); --border: rgba(255,255,255,0.1); --red: #e60000; }
    * { box-sizing:border-box; margin:0; padding:0; }
    html { scrollbar-gutter: stable; }
    body { background-color:#080808; color:#f5f5f6; font-family:'Inter',sans-serif; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
    
    /* ==========================================================================
   ADVANCED LOADER (Hollywood VFX Style)
   ========================================================================== */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .25s ease;
}

.loader-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

/* Hollywood Anamorphic Lens Flare Background */
.vfx-flare {
  position: absolute;
  width: 150vw;
  height: 2px;
  background: rgba(255, 60, 0, 0.8);
  box-shadow: 0 0 20px 5px rgba(255, 60, 0, 0.4), 0 0 50px 10px rgba(255, 0, 0, 0.2);
  transform: scaleX(0);
  opacity: 0;
  animation: anamorphicFlare 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  z-index: 1;
}

/* Advanced CSS Cinematic Typography (VFX Studio Glitch) */
.cinematic-text-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cinematic-text {
  font-family: 'Outfit', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  text-align: center;
}

.heated-logo {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  line-height: .95;
  font-size: clamp(40px, 8vw, 110px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .06em;
}

.heated-logo span {
  display: block;
  will-change: transform, opacity, filter;
  /* emulate Vessel default Expo feel: fast-in, settle, hold, fast-out */
  animation: loaderExpoDefault 2.8s linear infinite;
}

.heated-logo span:last-child { animation-delay: .12s; }

.heated-logo::before,
.heated-logo::after {
  content: none !important;
}

/* Legacy cinematic split layers disabled for new expo loader */
.cinematic-text::before,
.cinematic-text::after {
  content: none;
}

@keyframes loaderExpoDefault {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(.90);
    filter: blur(10px);
  }
  8% {
    opacity: .04;
    transform: translateY(24px) scale(.91);
    filter: blur(9px);
  }
  16% {
    opacity: .22;
    transform: translateY(16px) scale(.95);
    filter: blur(6px);
  }
  24% {
    opacity: .78;
    transform: translateY(4px) scale(.99);
    filter: blur(2px);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  84% {
    opacity: .92;
    transform: translateY(-2px) scale(1.01);
    filter: blur(.6px);
  }
  92% {
    opacity: .45;
    transform: translateY(-7px) scale(1.03);
    filter: blur(3px);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(1.06);
    filter: blur(6px);
  }
}

/* Film Grain */
.heat-fog {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  animation: grainShift 0.5s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2px, 2px); }
  100% { transform: translate(2px, -2px); }
}

@keyframes anamorphicFlare {
  0% { transform: scaleX(0); opacity: 0; }
  15% { transform: scaleX(1); opacity: 1; height: 1px; }
  25% { transform: scaleX(1); opacity: 0.8; height: 4px; box-shadow: 0 0 40px 10px rgba(255, 60, 0, 0.6); }
  40% { transform: scaleX(0.8); opacity: 0.3; height: 1px; }
  80% { transform: scaleX(1.2); opacity: 0.1; }
  100% { transform: scaleX(0); opacity: 0; }
}

@keyframes vfxReveal {
  0% { 
    opacity: 0; 
    filter: blur(20px) contrast(5); 
    transform: scale(1.2); 
    letter-spacing: 1em;
  }
  15% {
    /* Hard snap in with extreme contrast */
    opacity: 1;
    filter: blur(0px) contrast(1);
    transform: scale(1);
    letter-spacing: 0.5em;
    text-shadow: 0 0 20px #fff;
  }
  18% { opacity: 0; } /* Quick blackout frame (flicker) */
  20% { opacity: 1; text-shadow: none; }
  25% {
    /* Stabilize */
    transform: scale(1);
  }
  80% {
    /* Slow, menacing creep towards camera */
    transform: scale(1.02);
    filter: blur(0px);
    opacity: 1;
  }
  100% { 
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes vfxGlitchRed {
  0%, 14% { opacity: 0; transform: translateX(0); }
  15% { opacity: 1; transform: translateX(-8px) skewX(10deg); filter: blur(2px); }
  18% { opacity: 0; }
  20% { opacity: 0.8; transform: translateX(-4px); }
  22% { opacity: 0; transform: translateX(0); }
}

@keyframes vfxGlitchCyan {
  0%, 14% { opacity: 0; transform: translateX(0); }
  15% { opacity: 1; transform: translateX(8px) skewX(-10deg); filter: blur(2px); }
  18% { opacity: 0; }
  20% { opacity: 0.8; transform: translateX(4px); }
  22% { opacity: 0; transform: translateX(0); }
}

body > .container, body > header {
  transition: opacity 0.5s ease; /* Fast fade in for content, no blur */
}
body.is-loading > .container, body.is-loading > header {
  filter: blur(15px);
  opacity: 0.2;
}

    /* Background Animation */
    .aura-bg { position:fixed; inset:0; z-index:-2; overflow:hidden; background:#080808; }
    .aura-blob { position:absolute; width:65vw; height:65vw; border-radius:50%; filter:blur(120px); opacity:0.42; mix-blend-mode:screen; }
    .aura-1 { background:radial-gradient(circle, #e60000 0%, transparent 75%); top:-10%; left:-10%; animation:flowA 20s ease-in-out infinite alternate; }
    .aura-2 { background:radial-gradient(circle, #7a0000 0%, transparent 75%); bottom:-15%; right:-5%; animation:flowB 25s ease-in-out infinite alternate; }
    .aura-3 { background:radial-gradient(circle, #2a002a 0%, transparent 75%); top:30%; left:20%; animation:flowC 30s linear infinite; opacity:0.25; }
    @keyframes flowA { from{transform:translate(0,0) scale(1)} to{transform:translate(35%,15%) scale(1.3)} }
    @keyframes flowB { from{transform:translate(0,0) scale(1.2)} to{transform:translate(-25%,-35%) scale(0.8)} }
    @keyframes flowC { 0%{transform:rotate(0deg) translate(20%,0) rotate(0deg)} 100%{transform:rotate(360deg) translate(20%,0) rotate(-360deg)} }

    header { 
      height: 100px;
      padding: 15px 20px; 
      position:sticky; 
      top:0; 
      background:rgba(8, 8, 8, 0.65); 
      backdrop-filter:blur(30px); 
      z-index:20; 
      border-bottom:1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
    }
    .header-logo {
      position: absolute;
      left: 50%;
      top: 40%;
      transform: translate(-50%, -50%);
      height: 192px;
      display: flex;
      align-items: center;
      pointer-events: none;
    }
    .header-logo img {
      height: 100%;
      width: auto;
      filter: none !important;
      -webkit-filter: none !important;
    }
    .brand h1 { font-family:'Outfit',sans-serif; font-size:10px; text-transform:uppercase; letter-spacing:.5em; font-weight:400; opacity:.8; color:#fff; line-height: 1; }
    .container { width:100%; padding:1px; position:relative; z-index:1; }
    .video-wall, .wall { display:block; width:100%; margin-bottom:18px; }
    .v-row { display:flex; gap:var(--gap); margin-bottom:var(--gap); width:100%; align-items:stretch; overflow:hidden; }
    .wall { display:block; width:100%; column-count:6; column-gap:var(--gap); }
    .tile { background:rgba(255,255,255,0.04); display:block; overflow:hidden; cursor:pointer; transition:opacity .2s ease; position:relative; }
    .tile:hover { opacity:.82; }
    .tile img, .tile video { width:100%; height:100%; display:block; object-fit:contain; background:#000; }
/* static wall masonry: intrinsic image height (no crop) */
.wall .tile img { width: 100%; height: auto; object-fit: contain; background: transparent; display:block; margin: 0 auto; }
    .tile.video-tile video{transition:filter .25s ease;}
    .tile .hover-mask{position:absolute; inset:0; display:flex; align-items:center; justify-content:center; padding:14px; background:linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.30) 45%, rgba(0,0,0,.10)); opacity:0; transition:opacity .24s ease; pointer-events:none;}
    .tile .hover-title{color:#fff; font-family:'Outfit',sans-serif; font-weight:500; letter-spacing:.06em; font-size:20px; line-height:1.2; text-align:center; text-transform:uppercase; text-shadow:0 1px 10px rgba(0,0,0,.38);}
    .tile.video-tile:hover video{filter:grayscale(1) brightness(.72);}
    .tile.video-tile:hover .hover-mask{opacity:1;}
    .video-wall .tile { flex:0 0 auto; min-height:200px; max-height:250px; border-radius:2px; }
    .video-wall .tile video { object-fit: contain; }
    .wall .tile { display:inline-block; width:100%; break-inside:avoid; margin-bottom:var(--gap); }
    .divider { height:1px; background:#fff; opacity:.1; margin:12px 0 0; }
    .section-tag {
      font-family: 'Outfit', sans-serif;
      font-size: 10px;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      padding: 12px 20px 48px;
      text-align: left;
      display: flex;
      align-items: baseline;
      gap: 15px;
    }
    .section-tag small {
      font-size: 8px;
      opacity: 0.6;
      letter-spacing: 0.4em;
    }
    .tile video::-webkit-media-controls { display:none !important; }

    /* Staff Section */
    .staff-section { padding: 120px 20px 20px; text-align: center; }
    .staff-title { font-family: 'Outfit'; font-size: 11px; text-transform: uppercase; letter-spacing: 0.4em; opacity: 0.4; margin-bottom: 60px; }
    .staff-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
    .staff-item { cursor: pointer; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
    .staff-avatar { width: 160px; height: 160px; border-radius: 50%; background: #111; margin: 0 auto 25px; overflow: hidden; border: 1px solid var(--border); transition: var(--t-fluid); -webkit-transform: translateZ(0); transform: translateZ(0); }
    .staff-avatar img { width: 100%; height: 100%; object-fit: cover; filter: none; transition: 0.6s ease; -webkit-transform: translateZ(0); transform: translateZ(0); }
    .staff-item:hover .staff-avatar { transform: scale(1.05); border-color: var(--red); }
    .staff-item:hover .staff-avatar img { filter: none; }
    .staff-name { font-family: 'Outfit'; font-size: 18px; letter-spacing: 0.05em; font-weight: 300; }
    .staff-role { font-size: 9px; text-transform: uppercase; color: #666; margin-top: 8px; letter-spacing: 0.12em; }

    /* Contact Section */
    .contact-section { padding: 120px 20px 100px; max-width: 1180px; margin: 0 auto; text-align: left; }
    .contact-inner { display: flex; justify-content: space-between; gap: 150px; align-items: flex-start; }
    .contact-left { flex: 0 0 420px; }
    .contact-right { flex: 1; min-width: 0; }
    
    .contact-title { font-family: 'Outfit'; font-size: 11px; text-transform: uppercase; letter-spacing: 0.4em; opacity: 0.4; margin-bottom: 50px; }
    
    .contact-intro { font-family: 'Inter'; font-size: 14px; color: #aaa; font-weight: 300; line-height: 1.8; margin-bottom: 40px; display: flex; flex-direction: column; gap: 30px; }
    .contact-intro p { margin: 0; }
    .inline-link { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
    .inline-link:hover { color: var(--red); border-color: var(--red); }
    
    .contact-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 10px; }
    .contact-info-block { display: flex; flex-direction: column; gap: 8px; }
    .info-label { font-family: 'Outfit'; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); }
    .contact-text, .contact-email { font-family: 'Outfit'; font-size: 18px; color: #fff !important; letter-spacing: 0.05em; font-weight: 300; margin-top: 0; }
    
    .contact-social { display: flex; justify-content: flex-start; margin-top: 5px; margin-bottom: 20px; }
    .social-link { color: #fff; transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; }
    .social-link:hover { color: var(--red); transform: translateY(-4px) scale(1.1); }
    
    .contact-form { width: 100%; display: flex; flex-direction: column; gap: 35px; }
    .form-row { display: flex; gap: 30px; }
    .form-field.half { flex: 1; }
    .form-field { display: flex; flex-direction: column; gap: 10px; width: 100%; }
    .form-field label { font-family: 'Outfit'; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: #888; }
    .form-field label small { opacity: 0.5; text-transform: lowercase; font-size: 9px; letter-spacing: 0.1em; }
    .contact-form input, .contact-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.15); color: #fff; font-family: 'Inter'; font-size: 15px; padding: 12px 0; outline: none; transition: border-color 0.3s; border-radius: 0; resize: none; -webkit-appearance: none; }
    .contact-form input:focus, .contact-form textarea:focus { border-bottom-color: #fff; }
    
    /* Custom Scrollbar for Textarea */
    .contact-form textarea::-webkit-scrollbar { width: 4px; }
    .contact-form textarea::-webkit-scrollbar-track { background: transparent; }
    .contact-form textarea::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 4px; }
    .contact-form textarea::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.4); }
    
    /* Chrome Autofill Nuke Hack */
    .contact-form input:-webkit-autofill,
    .contact-form input:-webkit-autofill:hover, 
    .contact-form input:-webkit-autofill:focus, 
    .contact-form input:-webkit-autofill:active{
        -webkit-background-clip: text;
        -webkit-text-fill-color: white !important;
        transition: background-color 5000s ease-in-out 0s;
    }
    
    .submit-btn {
      align-self: flex-start;
      margin-top: 15px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      font-family: 'Outfit';
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      padding: 12px 32px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 0;
    }
    .submit-btn:hover {
      border-color: var(--red);
      color: var(--red);
      background: rgba(230,0,0,0.03);
    }

    /* Sponsor Marquee */
    .sponsor-section { padding: 40px 0 0; width: 100%; overflow: hidden; position: relative; }
    .sponsor-title { font-family: 'Outfit'; font-size: 9px; text-transform: uppercase; letter-spacing: 0.4em; opacity: 0.3; text-align: center; margin-bottom: 40px; }
    .marquee { 
      display: flex; 
      width: max-content; 
      gap: 0;
      opacity: 1; 
      transition: opacity 0.5s ease;
      will-change: transform;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      animation: marqueeScroll var(--marquee-duration, 40s) linear infinite;
    }
    .marquee.ready { opacity: 1; }
    .marquee-track { 
      display: flex; 
      align-items: center; 
      justify-content: flex-start; 
      width: max-content; 
      gap: 64px; 
      padding-right: 0; 
    }
    .marquee-item { 
      flex: 0 0 190px; 
      width: 190px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      height: 56px; 
      opacity: 0.45; 
      transition: opacity 0.3s; 
    }
    .marquee-item:hover { opacity: 0.95; }
    .marquee-item img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }

    @keyframes marqueeScroll {
      0% { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); }
    }

    /* [Level 2] Detail & Bio Views */
    #detail-view, #bio-view, #bio-view-ruijie, #bio-view-letian, #bio-view-shichuan, #bio-view-yilun, #bio-view-xuhang, #bio-view-zezheng {
      position: fixed; inset: 0; background: rgba(8,8,8,0.55); z-index: 1000;
      opacity: 0; pointer-events: none; transition: var(--t-fluid); transform: scale(1.02);
      backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); display: flex; flex-direction: column;
    }
    #detail-view.active, #bio-view.active, #bio-view-ruijie.active, #bio-view-letian.active, #bio-view-shichuan.active, #bio-view-yilun.active, #bio-view-xuhang.active, #bio-view-zezheng.active { opacity: 1; pointer-events: auto; transform: scale(1); }
    .detail-scroller { width: 100%; height: 100%; overflow-y: auto; overflow-x: hidden; display: block; }
    #detail-content { width: 100%; }
    .close-btn { position: absolute; top: 40px; right: 40px; cursor: pointer; z-index: 1010; width: 30px; height: 30px; opacity: 0.6; transition: 0.4s; }
    .close-btn:hover { transform: rotate(90deg); opacity: 1; }
    .close-btn::before, .close-btn::after { content: ''; position: absolute; width: 24px; height: 1px; background: #fff; top: 15px; }
    .close-btn::before { transform: rotate(45deg); } .close-btn::after { transform: rotate(-45deg); }

    /* Bio Layout - Clean Minimalist (No Underlines) */
    .bio-scroller { width: 100%; height: 100%; overflow-y: auto; scroll-behavior: smooth; }
    .bio-container { max-width: 1200px; margin: 0 auto; padding: 140px 40px; }
    .bio-header { margin-bottom: 80px; }
    .bio-header h2 { font-family: 'Outfit'; font-size: clamp(40px, 6vw, 72px); font-weight: 200; line-height: 1.1; margin-bottom: 25px; }
    .bio-header h2 strong { font-weight: 500; color: #fff; }
    .bio-header .titles { font-family: 'Outfit'; font-size: 14px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red); margin-bottom: 35px; line-height: 1.6; }
    .bio-header .intro-text { font-size: 16px; line-height: 1.8; color: #aaa; font-weight: 300; max-width: 1000px; }

    .bio-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; margin-bottom: 100px; }
    .bio-section-title { font-family: 'Outfit'; font-size: 11px; text-transform: uppercase; letter-spacing: 0.35em; color: #555; margin-bottom: 45px; }
    .exp-item { margin-bottom: 45px; }
    .exp-date { font-family: 'Outfit'; font-size: 11px; color: #666; margin-bottom: 12px; letter-spacing: 0.05em; }
    .exp-content h4 { font-size: 17px; font-weight: 400; color: #fff; margin-bottom: 6px; }
    .exp-content .sub-title { font-size: 13px; color: #777; font-weight: 300; margin-bottom: 8px; display: block; }
    .exp-content p { font-size: 14px; color: #999; line-height: 1.7; font-weight: 300; }

    .link-group-title { font-family: 'Outfit'; font-size: 13px; color: #fff; margin-bottom: 20px; border-left: 2px solid var(--red); padding-left: 15px; }
    .link-list { list-style: none; margin-bottom: 40px; }
    .link-item { margin-bottom: 12px; padding-left: 20px; position: relative; }
    .link-item::before { content: '→'; position: absolute; left: 0; color: #444; font-size: 12px; }
    .link-item a { color: #999; text-decoration: none; font-size: 13px; transition: 0.3s; font-weight: 300; }
    .link-item a:hover { color: var(--red); padding-left: 5px; }

    /* Bio Works Grid - Masonry Style matching Main Page */
    .bio-works-grid { 
      display: block; 
      width: 100%; 
      column-count: 2; 
      column-gap: 12px; 
      margin-top: 15px; 
    }
    .bio-works-grid .work-item { 
      display: inline-block;
      width: 100%;
      break-inside: avoid;
      margin-bottom: 12px;
      background: rgba(255,255,255,0.02); 
      overflow: hidden; 
      position: relative;
      transition: opacity 0.2s ease;
    }
    .bio-works-grid .work-item:hover {
      opacity: 0.82;
    }
    .bio-works-grid .work-item img { 
      width: 100%; 
      height: auto; 
      display: block; 
      object-fit: contain; 
      background: transparent;
    }

    .bio-full-section { border-top: 1px solid var(--border); padding-top: 80px; margin-top: 40px; }
    .pub-item { margin-bottom: 50px; display: grid; grid-template-columns: 40px 1fr; gap: 20px; }
    .pub-num { font-family: 'Outfit'; font-size: 18px; color: var(--red); font-weight: 300; }
    .pub-content { font-size: 15px; color: #ccc; line-height: 1.8; font-weight: 300; }
    .pub-content strong { color: #fff; font-weight: 400; }
    .pub-meta { font-size: 13px; color: #666; margin-top: 8px; display: block; font-style: italic; }

    /* Project View */
    .detail-content { width: 100%; min-height: 100vh; display: flex; }
    .detail-content.landscape { flex-direction: column; align-items: center; }
    .landscape .media-box { width: 100vw; height: auto; display: block; overflow: hidden; background: #000; }
    .landscape .media-box video, .landscape .media-box img { width: 100vw; height: auto; display: block; }
    .landscape .info-box { width: 100%; max-width: 1300px; padding: 120px 60px 180px; display: flex; gap: 140px; text-align: left; }
    .landscape .info-left { flex: 1.8; }
    .landscape .info-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,0.06); margin: 0 40px; }
    .landscape .info-right { flex: 1; }
    
    .detail-content.portrait { flex-direction: row; align-items: stretch; min-height: 100vh; }
    .portrait .media-box { height: 100vh; flex: 1.8; display: flex; justify-content: center; background: rgba(255,255,255,0.02); position: sticky; top: 0; }
    .portrait .media-box video, .portrait .media-box img { height: 100vh; width: auto; display: block; box-shadow: 0 0 120px rgba(230,0,0,0.4); }
    .portrait .info-box { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 60px 100px; min-width: 420px; }
    .portrait .info-divider { height: 1px; width: 40px; background: var(--red); margin: 40px 0; align-self: flex-start; opacity: 0.6; }

    .info-box h2 { font-family: 'Outfit'; font-size: 36px; font-weight: 200; margin-bottom: 28px; color: #fff; letter-spacing: -0.01em; line-height: 1.2; }
    .info-box p { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 40px; max-width: 540px; }

    /* Archive Meta Refined */
    .archive-meta { display: flex; flex-direction: column; gap: 28px; padding-top: 10px; }
    .meta-tag { display: flex; flex-direction: column; gap: 6px; }
    .meta-label { font-family: 'Outfit'; font-size: 9px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.45); font-weight: 400; }
    .meta-value { font-family: 'Inter'; font-size: 14px; color: #fff; font-weight: 300; letter-spacing: 0.01em; }

    @media (max-width: 1100px) {
      .wall { column-count: 4; }
      .bio-grid { grid-template-columns: 1fr; gap: 60px; }
      
      .contact-inner { flex-direction: column; gap: 60px; }
      .contact-left, .contact-right { flex: none; width: 100%; max-width: 100%; }
      .contact-info-row { grid-template-columns: 1fr; gap: 20px; }

      /* unify level-2 detail to vertical layout on tablet+mobile to avoid transitional broken state */
      .detail-content,
      .detail-content.landscape,
      .detail-content.portrait { display:flex; flex-direction:column; align-items:stretch; min-height:auto; }

      .landscape .media-box,
      .portrait .media-box {
        width: 100vw;
        height: auto;
        position: static;
        display: block;
      }

      .landscape .media-box video,
      .landscape .media-box img,
      .portrait .media-box video,
      .portrait .media-box img {
        width: 100vw;
        height: auto;
        max-height: none;
        object-fit: contain;
      }

      .landscape .info-box,
      .portrait .info-box {
        width: 100%;
        padding: 44px 24px 72px;
        min-width: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .landscape .info-divider,
      .portrait .info-divider {
        width: 100%;
        height: 1px;
        margin: 0;
      }
    }

    @media (max-width: 768px) {
      .wall { column-count: 2; column-gap: var(--gap); }
      .video-wall .tile { min-height: 0 !important; max-height: none !important; }
      .video-wall .tile video,
      .video-wall .tile img { object-fit: contain; object-position: center center; }
      .marquee { gap: 0; }
      .marquee-track { gap: 40px; padding-right: 0; }
      .marquee-item { flex-basis: 140px; width: 140px; height: 44px; }

      /* Mobile Header Adaptation */
      header { height: 75px; padding: 0 15px; }
      .header-logo { height: 90px; top: 35%; }
      .brand { max-width: 100%; }
      .brand h1 { font-size: 7px; letter-spacing: 0.2em; white-space: nowrap; padding-bottom: 8px; }

      /* mobile: force detail page to top-bottom layout for both landscape/portrait */
      .detail-content,
      .detail-content.landscape,
      .detail-content.portrait { display:flex; flex-direction:column; align-items:stretch; min-height:auto; }

      .landscape .media-box,
      .portrait .media-box {
        width: 100vw;
        height: auto;
        position: static;
        display: block;
      }

      .landscape .media-box video,
      .landscape .media-box img,
      .portrait .media-box video,
      .portrait .media-box img {
        width: 100vw;
        height: auto;
        max-height: none;
        object-fit: contain;
      }

      .landscape .info-box,
      .portrait .info-box {
        width: 100%;
        padding: 36px 20px 64px;
        min-width: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .landscape .info-divider,
      .portrait .info-divider {
        width: 100%;
        height: 1px;
        margin: 0;
      }
    }
