*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Dark theme (default) ── */
:root {
    --bg: #151b23;
    --bg-surface: #1c2535;
    --bg-card: #1f2a3a;
    --nav-blur-bg: rgba(21,27,35,.84);
    --aqua: #00D4E8;
    --aqua-mid: rgba(0,212,232,.45);
    --aqua-glow: rgba(0,212,232,.10);
    --aqua-border: rgba(0,212,232,.18);
    --gold: #C4A35A;
    --gold-dim: rgba(196,163,90,.55);
    --text: #EDE8DF;
    --text-dim: rgba(237,232,223,.52);
    --text-ghost: rgba(237,232,223,.22);
    --border: rgba(255,255,255,.055);
    --ghost-stroke: rgba(0,212,232,.35);
    --grain-opacity: 0.35;
    --canvas-opacity: 0.45;
    --orb1: #00D4E820;
    --orb2: #0055FF18;
    --orb3: #00D4E812;
}

/* ── Light theme ── */
[data-theme="light"] {
    --bg: #D8D2C6;
    --bg-surface: #CEC8BC;
    --bg-card: #D3CEC3;
    --nav-blur-bg: rgba(216,210,198,.90);
    --aqua: #007B84;
    --aqua-mid: rgba(0,123,132,.42);
    --aqua-glow: rgba(0,123,132,.08);
    --aqua-border: rgba(0,123,132,.20);
    --gold: #7A5212;
    --gold-dim: rgba(122,82,18,.48);
    --text: #0E1B2A;
    --text-dim: rgba(14,27,42,.82);
    --text-ghost: rgba(14,27,42,.64);
    --border: rgba(36,48,64,.10);
    --ghost-stroke: rgba(0,123,132,.62);
    --grain-opacity: 0.18;
    --canvas-opacity: 0.50;
    --orb1: rgba(0,123,132,.10);
    --orb2: rgba(0,55,150,.07);
    --orb3: rgba(0,123,132,.07);
}

/* ── Theme transition ── */
html {
    scroll-behavior: smooth;
    transition: background-color .55s ease;
}
body, nav, .m-card, .a-card, .exp-row, #team, .cta-btn, .chip, .leader-badge {
    transition:
        background-color .55s ease,
        background .55s ease,
        border-color .55s ease,
        color .55s ease;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* ── Cursor ── */
#cur {
    width: 7px; height: 7px;
    background: var(--aqua);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s, background-color .3s;
}
#cur-ring {
    width: 30px; height: 30px;
    border: 1px solid var(--aqua-mid);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .3s, height .3s, border-color .3s;
}

/* ── Grain overlay ── */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9000;
    opacity: var(--grain-opacity);
    transition: opacity .55s ease;
}

/* ── Ambient orbs ── */
.orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); animation: drift 24s infinite ease-in-out; }
.o1 { width:700px; height:700px; background:radial-gradient(circle, var(--orb1), transparent 65%); top:-200px; right:-180px; animation-duration:30s; }
.o2 { width:500px; height:500px; background:radial-gradient(circle, var(--orb2), transparent 65%); bottom:10%; left:-180px; animation-duration:22s; animation-delay:-9s; }
.o3 { width:350px; height:350px; background:radial-gradient(circle, var(--orb3), transparent 65%); top:45%; left:42%; animation-duration:26s; animation-delay:-14s; }

@keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    33%  { transform: translate(25px,-18px) scale(1.06); }
    66%  { transform: translate(-18px,22px) scale(0.94); }
}

/* ── Canvas ── */
#hero-canvas {
    position: absolute; inset: 0;
    opacity: var(--canvas-opacity);
    pointer-events: none; z-index: 0;
    transition: opacity .55s ease;
}

/* ── Nav ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    padding: 28px 56px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: padding .4s ease, background .4s ease, border-color .4s ease;
}
nav.stuck {
    padding: 16px 56px;
    background: var(--nav-blur-bg);
    backdrop-filter: blur(24px);
    border-color: var(--border);
}
.logo {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem;
    letter-spacing: .38em; text-decoration: none; color: var(--text);
}
.logo b { color: var(--aqua); font-weight: inherit; }

.nav-list { display: flex; gap: 40px; list-style: none; }
.nav-list a {
    font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-dim); text-decoration: none; position: relative;
    transition: color .3s;
}
.nav-list a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--aqua);
    transition: width .35s cubic-bezier(.22,1,.36,1);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after { width: 100%; }

/* Nav controls */
.nav-controls { display: flex; align-items: center; gap: 14px; }

.lang-btn {
    display: flex; align-items: center; gap: 4px;
    background: none; border: 1px solid var(--border); border-radius: 100px;
    padding: 5px 13px; cursor: none;
    font-family: 'Syne', sans-serif; font-size: .6rem;
    font-weight: 700; letter-spacing: .2em;
    transition: border-color .3s, background .3s, transform .2s;
}
.lang-btn:hover {
    border-color: var(--aqua);
    background: var(--aqua-glow);
    transform: scale(1.04);
}
.lang-btn .lv, .lang-btn .le { color: var(--text-ghost); transition: color .3s; }
.lang-btn .sep { color: var(--text-ghost); margin: 0 2px; transition: color .3s; }
.lang-btn .active { color: var(--aqua); }
.lang-btn:hover .lv:not(.active),
.lang-btn:hover .le:not(.active) { color: var(--aqua); }
.lang-btn:hover .sep { color: var(--aqua-mid); }

.theme-btn {
    width: 33px; height: 33px;
    background: none; border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: none; color: var(--text-dim);
    position: relative; overflow: visible;
    transition: border-color .3s, color .3s;
}
.theme-btn:hover { border-color: var(--aqua-border); color: var(--aqua); }
.theme-btn svg { width: 14px; height: 14px; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.theme-btn:hover svg { transform: rotate(20deg); }

.icon-sun, .icon-moon { transition: opacity .3s, transform .3s; }
[data-theme="dark"]  .icon-sun  { opacity: 1; transform: scale(1); }
[data-theme="dark"]  .icon-moon { opacity: 0; transform: scale(.5); position: absolute; }
[data-theme="light"] .icon-moon { opacity: 1; transform: scale(1); }
[data-theme="light"] .icon-sun  { opacity: 0; transform: scale(.5); position: absolute; }
[data-theme="light"] .drawer-close { background: rgba(240,234,224,.88); }

/* ── Hero ── */
#hero {
    position: relative; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 90px 56px 0; z-index: 1; overflow: hidden;
}
.hero-tag {
    font-size: .62rem; letter-spacing: .45em; text-transform: uppercase;
    color: var(--aqua); margin-bottom: 36px;
    opacity: 0; transform: translateY(16px);
    animation: fu .9s ease forwards .4s;
}
.hero-hl {
    font-family: 'Cormorant', serif;
    font-size: clamp(4.5rem, 13vw, 12.5rem);
    font-weight: 300; line-height: .88; letter-spacing: -.025em;
}
.hl-wrap { overflow: hidden; display: block; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hl-inner {
    display: block; opacity: 0; transform: translateY(105%);
    animation: su .95s cubic-bezier(.22,1,.36,1) forwards;
}
.hl-wrap:nth-child(1) .hl-inner { animation-delay: .55s; }
.hl-wrap:nth-child(2) .hl-inner { animation-delay: .70s; }
.hl-wrap:nth-child(3) .hl-inner { animation-delay: .85s; }
.hl-inner .em   { font-style: italic; color: var(--aqua); transition: color .55s ease; }
.hl-inner .gold { color: var(--gold); transition: color .55s ease; }
.hl-inner .ghost {
    -webkit-text-stroke: 1px var(--ghost-stroke);
    color: transparent;
}

.hero-foot {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-top: 52px; opacity: 0; transform: translateY(20px);
    animation: fu .9s ease forwards 1.15s;
}
.hero-desc { max-width: 360px; font-size: .9rem; line-height: 1.78; color: var(--text-dim); }
.hero-badge { text-align: right; }
.hero-badge-label {
    font-size: .6rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--text-ghost); margin-bottom: 6px;
}
.hero-badge-value {
    font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 600;
    color: var(--gold); letter-spacing: .06em;
}
.hero-scroll {
    position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fu .9s ease forwards 1.5s;
}
.hero-scroll span { font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--text-ghost); }
.scroll-bar {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, var(--aqua), transparent);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:.9} }
@keyframes fu { to { opacity:1; transform:translateY(0); } }
@keyframes su { to { opacity:1; transform:translateY(0); } }

/* ── Shared ── */
section { position: relative; z-index: 1; }
.wrap { max-width: 1380px; margin: 0 auto; padding: 0 56px; }

.sec-head { display: flex; align-items: center; gap: 20px; margin-bottom: 88px; }
.sec-num { font-family: 'Cormorant', serif; font-size: .85rem; color: var(--aqua); font-weight: 300; }
.sec-line { width: 52px; height: 1px; background: var(--aqua-border); }
.sec-lbl { font-size: .62rem; letter-spacing: .42em; text-transform: uppercase; color: var(--text-ghost); }

/* ── About ── */
#about { padding: 170px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 100px; align-items: center; }
.about-h {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 300; line-height: 1.08; margin-bottom: 36px;
}
.about-h em { font-style: italic; color: var(--aqua); }
.about-p { font-size: .9rem; line-height: 1.82; color: var(--text-dim); margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.chip {
    padding: 5px 15px; border: 1px solid var(--aqua-border); border-radius: 100px;
    font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--aqua);
    transition: background .3s, color .3s, border-color .3s;
}
.chip:hover { background: var(--aqua); color: var(--bg); border-color: var(--aqua); }

.about-vis { position: relative; height: 440px; }
.a-card {
    position: absolute; background: var(--bg-card);
    border: 1px solid var(--border); padding: 36px;
}
.a-card-main { width: 100%; top: 0; right: 0; border-left: 2px solid var(--aqua); }
.a-card-sub { width: 78%; bottom: 0; left: 0; background: var(--aqua-glow); border-color: var(--aqua-border); }
.a-stat { font-family: 'Cormorant', serif; font-size: 4.5rem; font-weight: 300; color: var(--aqua); line-height: 1; margin-bottom: 6px; }
.a-stat-lbl { font-size: .72rem; color: var(--text-dim); letter-spacing: .05em; }
.a-divider { width: 36px; height: 1px; background: var(--aqua-border); margin: 22px 0; }
.a-tag-sm { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--aqua); margin-bottom: 10px; }
.a-big { font-family: 'Cormorant', serif; font-size: 1.7rem; font-weight: 300; }
.a-card-info { font-size: .78rem; color: var(--text-dim); line-height: 1.7; }
.a-card-domain { font-size: .72rem; color: var(--text-dim); letter-spacing: .1em; }

/* ── About Video ── */
.about-video { margin-top: 110px; }

.video-intro { text-align: center; margin-bottom: 52px; }
.video-label {
    display: flex; align-items: center; justify-content: center;
    gap: 18px; margin-bottom: 22px;
}
.vi-line { flex: 0 0 44px; height: 1px; background: var(--aqua-border); }
.video-label span {
    font-size: .6rem; letter-spacing: .44em; text-transform: uppercase; color: var(--aqua);
}
.video-title {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 18px;
}
.video-title em { font-style: italic; color: var(--aqua); }
.video-desc {
    font-size: .88rem; color: var(--text-dim); line-height: 1.82;
    max-width: 500px; margin: 0 auto;
}

.video-shell {
    border: 1px solid var(--aqua-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 80px var(--aqua-glow), 0 0 140px rgba(0,212,232,.04);
}
.video-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--aqua-border);
    padding: 11px 18px;
    display: flex; align-items: center; gap: 14px;
}
.vb-dots { display: flex; gap: 7px; }
.vb-dots span { width: 10px; height: 10px; border-radius: 50%; }
.vb-dots span:nth-child(1) { background: rgba(0,212,232,.6); }
.vb-dots span:nth-child(2) { background: rgba(196,163,90,.5); }
.vb-dots span:nth-child(3) { background: rgba(237,232,223,.18); }
.vb-label {
    flex: 1; text-align: center;
    font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--text-ghost);
    margin-right: 38px; /* offset dots width */
}
.video-wrap {
    position: relative; padding-top: 56.25%; background: #000;
}
.video-wrap iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}

/* ── Expertise ── */
#expertise { padding: 170px 0; }
.exp-hl {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 300; line-height: 1.06;
    max-width: 860px; margin-bottom: 100px;
}
.exp-hl em { font-style: italic; color: var(--aqua); }
.exp-list { border-top: 1px solid var(--border); }
.exp-row {
    display: grid; grid-template-columns: 72px 1fr 1fr 36px;
    gap: 48px; align-items: center;
    padding: 38px 0; border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: padding-left .4s cubic-bezier(.22,1,.36,1), border-color .55s ease;
}
.exp-row::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--aqua-glow), transparent 60%);
    opacity: 0; transition: opacity .4s;
}
.exp-row:hover { padding-left: 20px; }
.exp-row:hover::before { opacity: 1; }
.exp-n { font-family: 'Cormorant', serif; font-size: .85rem; color: var(--text-ghost); font-weight: 300; }
.exp-name { font-family: 'Cormorant', serif; font-size: 2rem; font-weight: 300; }
.exp-desc { font-size: .82rem; color: var(--text-dim); line-height: 1.65; }
.exp-arr {
    font-size: 1.3rem; color: var(--aqua);
    opacity: 0; transform: translateX(-8px);
    transition: opacity .35s, transform .35s;
}
.exp-row:hover .exp-arr { opacity: 1; transform: translateX(0); }

/* ── Team ── */
#team {
    padding: 170px 0;
    background: linear-gradient(to bottom, transparent, var(--bg-surface) 10%, var(--bg-surface) 90%, transparent);
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.m-card {
    position: relative; padding: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden; transition: border-color .4s;
}
.m-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--aqua), transparent);
    transform: scaleX(0); transition: transform .5s cubic-bezier(.22,1,.36,1);
    z-index: 2;
}
.m-card:hover { border-color: var(--aqua-border); }
.m-card:hover::before { transform: scaleX(1); }
.m-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 30%, var(--aqua-glow), transparent 65%);
    opacity: 0; transition: opacity .5s; z-index: 1; pointer-events: none;
}
.m-card:hover .m-glow { opacity: 1; }

/* Photo */
.m-photo {
    position: relative; height: 300px; overflow: hidden;
}
.m-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: grayscale(15%) brightness(.82);
    transition: transform .75s cubic-bezier(.22,1,.36,1), filter .5s ease;
    display: block;
}
.m-card:hover .m-photo img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(.92);
}
.m-photo-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
    pointer-events: none;
}

/* Body */
.m-body { padding: 28px 40px 48px; position: relative; z-index: 1; }
.m-role { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--aqua); margin-bottom: 12px; }
.m-name { font-family: 'Cormorant', serif; font-size: 1.85rem; font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.m-line { width: 36px; height: 1px; background: var(--aqua-border); margin-bottom: 20px; }
.m-desc { font-size: .82rem; line-height: 1.72; color: var(--text-dim); }
.leader-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px; border: 1px solid var(--gold-dim);
    border-radius: 100px; font-size: .58rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold); margin-top: 16px;
}
.leader-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── Contact ── */
#contact { padding: 170px 0 90px; }
.contact-inner { text-align: center; }
.contact-tag { font-size: .62rem; letter-spacing: .44em; text-transform: uppercase; color: var(--aqua); margin-bottom: 32px; }
.contact-hl {
    font-family: 'Cormorant', serif;
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    font-weight: 300; line-height: .96; margin-bottom: 56px;
}
.contact-hl em { font-style: italic; color: var(--aqua); }
.cta-btn {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 15px 44px; border: 1px solid var(--aqua-border);
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--aqua); text-decoration: none; position: relative; overflow: hidden;
    transition: color .4s;
}
.cta-btn::before {
    content: ''; position: absolute; inset: 0; background: var(--aqua);
    transform: translateX(-100%); transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.cta-btn span { position: relative; z-index: 1; }
.cta-btn:hover { color: var(--bg); }
.cta-btn:hover::before { transform: translateX(0); }

.footer-bar {
    margin-top: 130px; padding-top: 36px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.f-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: .95rem; letter-spacing: .34em; }
.f-logo b { color: var(--aqua); font-weight: inherit; }
.f-copy { font-size: .68rem; color: var(--text-ghost); letter-spacing: .08em; }
.f-domain { font-size: .68rem; color: var(--text-ghost); letter-spacing: .15em; }

/* ── Card hint ── */
.m-hint {
    display: flex; align-items: center; gap: 10px;
    margin-top: 22px;
    font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--aqua);
    opacity: 0; transform: translateX(-6px);
    transition: opacity .3s, transform .3s;
}
.m-card:hover .m-hint { opacity: 1; transform: translateX(0); }
.m-hint-line { width: 20px; height: 1px; background: var(--aqua-border); }

/* ── Drawer backdrop ── */
.drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 799;
    opacity: 0; pointer-events: none;
    transition: opacity .45s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

/* ── Drawer panel ── */
.drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 480px; max-width: 100vw;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 800;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(.22,1,.36,1), background-color .55s ease, border-color .55s ease;
    overflow-y: auto; overflow-x: hidden;
    scrollbar-width: none;
}
.drawer::-webkit-scrollbar { display: none; }
.drawer.open { transform: translateX(0); }

.drawer-close {
    position: absolute; top: 18px; right: 18px;
    width: 34px; height: 34px;
    background: rgba(2,5,9,.7); border: 1px solid var(--border);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: none; color: var(--text-dim); z-index: 2;
    transition: border-color .3s, color .3s;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.drawer-close:hover { border-color: var(--aqua-border); color: var(--aqua); }
.drawer-close svg { width: 13px; height: 13px; }

.drawer-photo {
    position: relative; height: 380px; overflow: hidden;
}
.drawer-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top; display: block;
}
.drawer-photo .m-photo-fade { height: 140px; }

.drawer-body { padding: 20px 44px 64px; }

.drawer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px; border: 1px solid var(--gold-dim);
    border-radius: 100px; font-size: .58rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
    transition: border-color .55s ease, color .55s ease;
}
.drawer-badge-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.drawer-role {
    font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
    color: var(--aqua); margin-bottom: 10px;
}
.drawer-name {
    font-family: 'Cormorant', serif;
    font-size: 2.6rem; font-weight: 300; line-height: 1.1; margin-bottom: 28px;
}
.drawer-line { width: 36px; height: 1px; background: var(--aqua-border); margin-bottom: 24px; }
.drawer-bio {
    font-size: .88rem; line-height: 1.88; color: var(--text-dim); margin-bottom: 44px;
}

.drawer-social-label {
    font-size: .6rem; letter-spacing: .38em; text-transform: uppercase;
    color: var(--text-ghost); margin-bottom: 14px;
}
.drawer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 20px; border: 1px solid var(--border);
    font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; color: var(--text-dim);
    position: relative; overflow: hidden;
    transition: color .35s, border-color .35s;
    cursor: none;
}
.social-btn svg { width: 15px; height: 15px; flex-shrink: 0; position: relative; z-index: 1; }
.social-btn span { position: relative; z-index: 1; }
.social-btn::before {
    content: ''; position: absolute; inset: 0;
    transform: translateY(100%);
    transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.social-btn:hover { color: #fff; border-color: transparent; }
.social-btn:hover::before { transform: translateY(0); }
.social-btn.yt::before { background: #FF0000; }
.social-btn.tt::before { background: #010101; }

@media (max-width: 540px) {
    .drawer { width: 100%; border-left: none; }
    .drawer-body { padding: 20px 28px 56px; }
}

/* ── Reveal ── */
.rv {
    opacity: 0; transform: translateY(38px);
    transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1);
}
.rv.on { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .45s; }

/* ── Lang transition ── */
[data-t] { transition: opacity .2s ease; }
[data-t].fading { opacity: 0 !important; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-vis { display: none; }
    .exp-row { grid-template-columns: 48px 1fr; gap: 24px; }
    .exp-desc, .exp-arr { display: none; }
}
@media (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    nav { padding: 20px 28px; }
    nav.stuck { padding: 14px 28px; }
    .nav-list { display: none; }
    #hero { padding: 70px 28px 0; }
    .wrap { padding-left: 28px; padding-right: 28px; }
    .hero-foot { flex-direction: column; align-items: flex-start; gap: 28px; }
    .hero-badge { text-align: left; }
}
@media (max-width: 500px) {
    .nav-list { display: none; }
}
