  <style>
    /* ── Reset ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; -webkit-tap-highlight-color: transparent; }
    ul { list-style: none; }

    /* ── Design Tokens ─────────────────────────────────── */
    :root {
      --bg:      #0C0B0C;
      --s1:      #111011;
      --s2:      #171416;
      --s3:      #e7e7e712;
      --s4:      #4b4444;
      --white:   #FFFFFF;
      --t1:      #F2F2F0;
      --t2:      #aaa6a6;
      --t3:      #857c7c;
      --t4:      #7c7575;
      --g:       #6E1C2E;
      --g-h:     #982944;
      --g-l:     #B93A59;
      --g-glow:  rgba(181,58,86,.04);
      --g-b:     rgba(181,58,86,.04);
      --border:  rgba(181,58,86,.10);
      --bm:      rgba(255,255,255,.10);
      --syn:     #B53A56;
      --syn-b:   rgba(181,58,86,.12);
      --syn-bg:  #120A0C;
      --max-w:   1100px;
      --ease:    cubic-bezier(.25,.46,.45,.94);
      --ease-sm: cubic-bezier(.4,0,.2,1);
      --f:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --f-serif: 'Instrument Serif', 'Georgia', 'Times New Roman', serif;
    }

    /* ── Base ──────────────────────────────────────────── */
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--f); background: var(--bg); color: var(--t1);
      line-height: 1.72; -webkit-font-smoothing: antialiased;
      overflow-x: hidden; overscroll-behavior-x: none; opacity: 0; transition: opacity .45s ease;
    }
    body.loaded { opacity: 1; }
    body::before {
      content: ''; position: fixed; inset: 0; z-index: 9000; pointer-events: none;
      opacity: .01;
      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.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    /* ── Custom Cursor ─────────────────────────────────── */
    @media (pointer: fine) { body, a, button { cursor: none; } }
    #cur-dot, #cur-ring { display: none; position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; will-change: transform; }
    @media (pointer: fine) { #cur-dot { display: block; } #cur-ring { display: block; } }
    #cur-dot { width: 5px; height: 5px; background: var(--g); margin: -2.5px 0 0 -2.5px; transition: transform .1s var(--ease), opacity .15s; box-shadow: 0 0 12px rgba(122,30,45,.25); }
    #cur-ring { width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.18); margin: -13px 0 0 -13px; transition: width .28s var(--ease-sm), height .28s var(--ease-sm), margin .28s var(--ease-sm), border-color .22s, opacity .2s; }
    #cur-ring.hov { width: 44px; height: 44px; margin: -22px 0 0 -22px; border-color: var(--g-b); opacity: .55; }
    #cur-dot.click { transform: scale(.4); opacity: .5; }
    #cur-ring.click { opacity: .2; }

    /* ── Layout ────────────────────────────────────────── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
    section { padding: 8rem 0; }

    /* ── Shared Components ─────────────────────────────── */
    .label {
      display: inline-flex; align-items: center;
      font-size: .62rem; font-weight: 600; letter-spacing: .24em;
      text-transform: uppercase; color: var(--t3);
    }
    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700;
      line-height: 1.12; letter-spacing: -.03em; color: var(--white);
    }

    /* ── Buttons ───────────────────────────────────────── */
    .btn { display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 600; letter-spacing: .02em; padding: .82rem 1.75rem; border-radius: 8px; transition: all .22s var(--ease); }
    .btn-primary { background: transparent; color: var(--t1); border: 1px solid rgba(122,30,45,.45); border-radius: 8px; }
    .btn-primary:hover { background: var(--g-glow); border-color: rgba(122,30,45,.6); color: var(--white); transform: translateY(-1px); }
    .btn-outline { border: 1px solid var(--bm); color: var(--t1); }
    .btn-outline:hover { border-color: var(--g-b); color: var(--white); background: var(--g-glow); transform: translateY(-1px); }
    .btn .arr { transition: transform .2s; }
    .btn:hover .arr { transform: translateX(3px); }

    /* ── Scroll Reveal ─────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

    /* ══════════════════════════════════════════════════════
       NAV
    ══════════════════════════════════════════════════════ */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.35rem 0; background: rgba(12,11,12,.92); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); border-bottom: 1px solid rgba(255,255,255,.042); transition: padding .3s var(--ease-sm), background .3s, border-color .3s; }
    .nav.scrolled { padding: .9rem 0; background: rgba(12,11,12,.96); border-bottom-color: rgba(255,255,255,.06); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { font-family: var(--f-serif); font-size: 1.15rem; font-weight: 400; color: var(--white); letter-spacing: .08em; }
    .nav-logo span { color: var(--g); letter-spacing: 0; }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; }
    .nav-links a { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .01em; position: relative; transition: color .2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--g); transition: width .24s var(--ease); }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { font-size: .79rem; font-weight: 600; letter-spacing: .01em; background: var(--g); color: #000; padding: .5rem 1.3rem; border-radius: 7px; transition: background .18s, transform .18s, box-shadow .18s; }
    .nav-cta:hover { background: var(--g-l); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(122,30,45,.28); }
    .nav-cta::after { display: none; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 101; position: relative; width: 30px; height: 28px; align-items: center; justify-content: center; }
    .nav-toggle span { width: 22px; height: 1.5px; background: var(--t1); display: block; transition: opacity .3s var(--ease), transform .3s var(--ease), width .3s var(--ease); position: absolute; }
    .nav-toggle span:nth-child(1) { top: 7px; }
    .nav-toggle span:nth-child(2) { top: 13px; }
    .nav-toggle span:nth-child(3) { top: 19px; }
    .nav-toggle.open span { opacity: 0; transform: scaleX(0) translateX(-4px); }
    .nav-toggle-book { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 28px; height: 22px; opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; color: #fff; }
    .nav-toggle.open .nav-toggle-book { opacity: 1; }

    /* ══════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════ */
    .hero { min-height: auto; position: relative; overflow: hidden; display: flex; align-items: center; }
    .hero-dots { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.032) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, black 0%, transparent 100%); }
    .hero-glow { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(122,30,45,.10) 0%, transparent 62%); pointer-events: none; animation: glow-breathe 9s ease-in-out infinite; }
    .hero-glow-ambient { position: absolute; left: -8%; top: 35%; transform: translateY(-50%); width: 680px; height: 480px; border-radius: 50%; background: radial-gradient(ellipse, rgba(122,30,45,.10) 0%, transparent 65%); pointer-events: none; animation: glow-breathe 14s ease-in-out infinite reverse; }
    @keyframes glow-breathe { 0%, 100% { opacity: .6; transform: translateY(-50%) scale(1); } 50% { opacity: .85; transform: translateY(-50%) scale(1.06); } }

    .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5.5rem; align-items: center; padding: 8rem 0 5.5rem; position: relative; }
    .hero-text { display: flex; flex-direction: column; gap: 1.6rem; align-items: center; }

    .hero-badge { display: inline-flex; align-items: center; gap: .55rem; font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--g); background: var(--g-glow); border: 1px solid var(--g-b); padding: .36rem .95rem; border-radius: 100px; width: fit-content; backdrop-filter: blur(8px); }
    .badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--g); animation: pulse 3s ease infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.6); } }

    .hero-name { font-size: clamp(3.2rem, 7.5vw, 5.5rem); font-weight: 700; letter-spacing: -.045em; line-height: 1; color: var(--white); margin-top: 1.25rem; margin-bottom: -.8rem; }
    .hero-title { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 600; color: var(--t1); letter-spacing: -.02em; line-height: 1.35; margin-bottom: -0.6rem; }
    .hero-title .accent { color: var(--g); }
    .hero-sub { font-family: var(--f-serif); font-size: 1.02rem; font-weight: 400; color: rgba(255,255,255,.45); line-height: 1.85; max-width: 470px; }
    .hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

    .hero-photo-col { display: flex; justify-content: flex-end; align-items: center; transform: translateY(-80px); }
    .hero-photo-wrap { position:relative; width:360px; height:500px; flex-shrink:0; overflow:hidden; border-radius:22px; box-shadow: 0 25px 60px rgba(0,0,0,.045), 0 0 40px rgba(122,30,45,.18); }
    .hero-photo-ring-outer { display:none; }
    .hero-photo-ring-inner { display:none; }
    .hero-photo-img { width: 100%; height: 100%; object-fit: cover; transform:scale(1.22); object-position: center 18%; border-radius: 22px; border: none; position: relative; z-index: 1; filter: grayscale(.05) contrast(1.08) brightness(.97) saturate(1); }
    .hero-photo-wrap::after { content: ''; position: absolute; inset: 0; border-radius: 22px; z-index: 2; pointer-events: none; border: none; background: radial-gradient(circle at center, rgba(8,8,8,.35) 100%, transparent 65%); }
    .hero-photo-wrap::before { content: ''; position: absolute; inset: -20px; border-radius: 22px; z-index: -1; pointer-events: none; background: radial-gradient(circle, rgba(122,30,45,.20) 0%, transparent 70%); filter:blur(30px); }
    .hero-photo-placeholder { width: 100%; height: 100%; border-radius: 22px; background: linear-gradient(145deg, var(--s3), var(--s2)); border: 1px solid var(--g-b); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; font-weight: 700; color: var(--g); }


    /* ══════════════════════════════════════════════════════
       FEATURED WRITING
    ══════════════════════════════════════════════════════ */
    #writing { background: var(--s1); }
    .writing-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
    .writing-intro { font-family: var(--f-serif); font-size: 1rem; color: var(--t2); line-height: 1.85; align-self: end; }

    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.038); border: 1px solid rgba(255,255,255,.038); }
    .feat-card { background: var(--bg); padding: 2.5rem 2.25rem; display: flex; flex-direction: column; gap: 1.15rem; transition: background .22s; position: relative; overflow: hidden; }
    .feat-card:hover { background: #191314; }
    .feat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--g); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
    .feat-card:hover::after { transform: scaleX(1); }
    .feat-num { font-size: .58rem; font-weight: 700; letter-spacing: .18em; color: var(--g); }
    .feat-title { font-size: 1.2rem; font-weight: 600; color: var(--white); letter-spacing: -.02em; line-height: 1.25; }
    .feat-desc { font-size: .84rem; color: var(--t2); line-height: 1.72; flex: 1; }
    .feat-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .25rem; }
    .feat-tag { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); background: var(--s3); padding: .25rem .6rem; border-radius: 4px; }
    .feat-link { font-size: .76rem; font-weight: 600; color: var(--g); display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; }
    .feat-card:hover .feat-link { gap: .65rem; }

    /* ══════════════════════════════════════════════════════
       CAPABILITIES
    ══════════════════════════════════════════════════════ */
    #capabilities { background: var(--bg); }
    .cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

    .cap-tier-label { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); margin-bottom: 1.4rem; display: flex; align-items: center; gap: .55rem; }
    .cap-tier-label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--t4); }
    .skills-core-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.75rem; }
    .skill-core-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem 1rem; background: transparent; border: 1px solid rgba(255,255,255,.07); border-radius: 6px; font-size: .79rem; font-weight: 500; color: var(--t2); transition: color .2s, border-color .2s; }
    .skill-core-chip:hover { color: var(--t1); border-color: var(--g-b); }
    .skill-core-chip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--g); flex-shrink: 0; opacity: .6; }

    .skills-sup-grid { display: flex; flex-wrap: wrap; gap: .35rem; }
    .skill-sup-chip { font-size: .73rem; font-weight: 400; color: var(--t3); background: transparent; border: none; padding: 0; }
    .skill-sup-chip::after { content: '·'; margin-left: .35rem; opacity: .3; }
    .skill-sup-chip:last-child::after { display: none; }
    .skill-sup-chip:hover { color: var(--t2); }

    /* ══════════════════════════════════════════════════════
       SUPPORTING WORK
    ══════════════════════════════════════════════════════ */
    #supporting { background: var(--s1); }
    .supp-head { margin-bottom: 2.5rem; }
    .supp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.038); border: 1px solid rgba(255,255,255,.038); }
    .supp-card { background: var(--s2); padding: 2rem; display: flex; flex-direction: column; gap: .75rem; transition: background .2s; }
    .supp-card:hover { background: var(--s3); }
    .supp-icon { font-size: 1.25rem; color: var(--t3); line-height: 1; }
    .supp-title { font-size: .92rem; font-weight: 600; color: var(--t1); letter-spacing: -.01em; }
    .supp-desc { font-size: .79rem; color: var(--t3); line-height: 1.65; flex: 1; }
    .supp-link { font-size: .72rem; font-weight: 600; color: var(--t3); display: inline-flex; align-items: center; gap: .35rem; transition: color .2s, gap .2s; }
    .supp-card:hover .supp-link { color: var(--g); gap: .55rem; }

    /* ══════════════════════════════════════════════════════
       LANGUAGES
    ══════════════════════════════════════════════════════ */
    #languages { background: var(--bg); }
    .langs-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
    .langs-intro { font-family: var(--f-serif); font-size: 1rem; color: var(--t2); line-height: 1.85; align-self: end; }
    .langs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.038); border: 1px solid rgba(255,255,255,.038); }
    .lang-card { background: var(--s1); padding: 2.25rem 2rem; transition: background .2s; }
    .lang-card:hover { background: #191314; }
    .lang-name { font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -.04em; margin-bottom: .2rem; }
    .lang-level { font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g); margin-bottom: .85rem; }
    .lang-desc { font-size: .8rem; color: var(--t3); line-height: 1.68; }

    /* ══════════════════════════════════════════════════════
       ABOUT
    ══════════════════════════════════════════════════════ */
    #about { background: var(--s1); }
    .about-wrap { max-width: 660px; }
    .about-body { font-family: var(--f-serif); font-size: 1.04rem; color: var(--t2); line-height: 1.95; }
    .about-body p + p { margin-top: 1.4rem; }
    .about-body .em { color: var(--t1); font-style: italic; font-weight: 400; }
    .about-body .break { margin-top: 2.25rem; }
    .about-body .end { font-family: var(--f-serif); color: var(--t1); font-style: normal; font-weight: 400; font-size: 1.08rem; line-height: 1.9; }

    /* ══════════════════════════════════════════════════════
       SYNAPSE COMPACT
    ══════════════════════════════════════════════════════ */
    #synapse { padding: 5rem 0; background: var(--bg); }
    .synapse-compact { background: var(--syn-bg); border: 1px solid var(--syn-b); border-radius: 12px; padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; position: relative; overflow: hidden; }
    .synapse-compact::before { content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(181,58,86,.05) 0%, transparent 65%); pointer-events: none; }
    .syn-compact-left { flex: 1; }
    .syn-compact-badge { display: inline-flex; align-items: center; gap: .55rem; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--syn); background: rgba(181,58,86,.07); border: 1px solid rgba(181,58,86,.18); padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.1rem; }
    .syn-compact-badge::before { content: '◉'; font-size: .7rem; }
    .syn-compact-title { font-size: 1.35rem; font-weight: 600; color: var(--white); letter-spacing: -.025em; margin-bottom: .55rem; line-height: 1.25; }
    .syn-compact-desc { font-size: .86rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 520px; }
    .syn-compact-right { flex-shrink: 0; }
    .syn-btn { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .03em; color: var(--syn); border: 1px solid rgba(181,58,86,.25); padding: .7rem 1.5rem; border-radius: 7px; transition: background .2s, border-color .2s, transform .2s; white-space: nowrap; }
    .syn-btn:hover { background: rgba(181,58,86,.07); border-color: rgba(181,58,86,.5); transform: translateY(-1px); }
    .syn-btn .arr { transition: transform .2s; }
    .syn-btn:hover .arr { transform: translateX(3px); }

    /* ══════════════════════════════════════════════════════
       CONTACT
    ══════════════════════════════════════════════════════ */
    #contact { background: var(--s1); }
    .contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
    .contact-inner .label { margin-bottom: 1.5rem; }
    .contact-cta { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -.04em; color: var(--white); line-height: 1.18; margin-bottom: 1.1rem; }
    .contact-sub { font-size: .92rem; color: var(--t2); line-height: 1.78; margin-bottom: 2.5rem; }
    .contact-divider { width: 36px; height: 1px; background: var(--border); margin: 2.5rem auto; }
    .contact-socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.25rem; }
    .soc-group { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
    .soc-platform { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--t3); }
    .soc-handle { font-size: .82rem; font-weight: 500; color: var(--t1); transition: color .18s; }
    .soc-handle:hover { color: var(--g); }

    /* ══════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════ */
    .footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2.25rem 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-brand { font-size: .85rem; font-weight: 600; color: var(--white); }
    .footer-brand span { color: var(--t3); font-weight: 400; }
    .footer-copy { font-size: .68rem; color: var(--t3); letter-spacing: .04em; }
    .footer-nav { display: flex; gap: 1.75rem; }
    .footer-nav a { font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--t3); transition: color .18s; }
    .footer-nav a:hover { color: var(--g); }

    /* ══════════════════════════════════════════════════════
       NOTES
    ══════════════════════════════════════════════════════ */
    #notes { background: var(--bg); padding: 7rem 0; }
    .notes-inner { max-width: 620px; }
    .notes-line { font-family: var(--f-serif); font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 400; color: var(--t2); letter-spacing: 0; line-height: 1.65; }
    .notes-line + .notes-line { margin-top: 1rem; }
    .notes-line .em { color: var(--t1); font-style: italic; font-weight: 400; }
    .notes-divider { width: 24px; height: 1px; background: var(--t4); margin: 2.25rem 0; }

    /* ══════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .feat-card:last-child { grid-column: 1 / -1; }
      .cap-grid { grid-template-columns: 1fr; gap: 3rem; }
      .supp-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      section { padding: 5rem 0; }
      .container { padding: 0 1.25rem; }

      /* Nav */
      .nav { background: #0E0B0C; backdrop-filter: none; -webkit-backdrop-filter: none; }
      .nav.scrolled { background: #0E0B0C; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column; position: fixed; inset: 0;
        background: rgba(14,11,12,.97); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
        align-items: flex-start; justify-content: center;
        gap: 0; z-index: 99;
        padding: 0 2.5rem 0 2.5rem;
      }
      .nav-links.open li { width: 100%; }
      .nav-links.open a {
        display: block; font-size: 1.1rem; font-weight: 400; letter-spacing: -.01em;
        color: rgba(255,255,255,.45); padding: .85rem 0;
        border-bottom: 1px solid rgba(255,255,255,.045);
        transition: color .2s, padding-left .2s;
      }
      .nav-links.open a:hover { color: var(--white); padding-left: .35rem; }
      .nav-links.open a::after { display: none; }
      .nav-links.open li:last-child { margin-top: 2.25rem; }
      .nav-links.open .nav-cta {
        display: inline-block;
        font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
        color: var(--g); background: none; padding: .5rem 0;
        border: none; border-bottom: none !important; border-radius: 0;
      }
      .nav-links.open .nav-cta:hover { color: var(--g-l); padding-left: 0; }
      .menu-wordmark { display: none; font-size: .75rem; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.18); padding-bottom: 2.5rem; margin-bottom: .5rem; }
      .menu-wordmark span { color: var(--g); }
      .nav-links.open .menu-wordmark { display: block; }
      .nav-toggle { display: flex; }

      /* Hero */
      .hero-grid { display:flex; flex-direction:column; grid-template-columns: 1fr; text-align: center; padding: 2rem 0 3rem; gap: 1rem; }
      .hero-text { width: 100%; align-items: center; }
      .hero-badge, .hero-actions { width:100%; justify-content: center; align-items: center; }
      .hero-sub { margin: 0 auto; max-width: 420px; }
      .hero-name { font-size: clamp(2.8rem, 9vw, 4rem); }
      .hero-photo-img{ object-position:center 8%; transform:scale(1.18); }
      .hero-photo-col { order:-1; justify-content: center; transform: translateY(-80px); }
      .hero-photo-wrap { width: 250px; height: 340px; }
      .hero-photo-wrap::after { background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(14,11,12,.75) 0%, rgba(14,11,12,.25) 40%, transparent 65%); }
      .hero-photo-wrap::before { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14,11,12,.4) 0%, transparent 60%); }
      .hero-glow, .hero-glow-ambient { display: none; }

      /* Writing */
      .writing-head { grid-template-columns: 1fr; gap: 1.5rem; }
      .feat-grid { grid-template-columns: 1fr; }
      .feat-card:last-child { grid-column: auto; }

      /* Capabilities */
      .cap-grid { grid-template-columns: 1fr; gap: 2.5rem; }

      /* Supporting */
      .supp-grid { grid-template-columns: 1fr; }

      /* Languages */
      .langs-head { grid-template-columns: 1fr; gap: 1.5rem; }
      .langs-grid { grid-template-columns: 1fr; }

      /* About */
      .about-wrap { max-width: 100%; }

      /* Synapse */
      #synapse { padding: 3.5rem 0; }
      .synapse-compact { display: flex; flex-direction: column; align-items: stretch; padding: 2rem; gap: 1.75rem; }
      .syn-compact-right { width: 100%; }
      .syn-btn { display: flex; width: 100%;  max-width: 320px; margin: 0 auto; justify-content: center; align-items: center;  box-sizing: border-box; }

      /* Footer */
      .footer-inner { justify-content: center; text-align: center; } 
      .footer-nav { justify-content: center; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 1rem; }
      .hero-actions {display: flex; flex-direction: column; align-items: center; align-items: stretch; width: 100%; max-width: 340px; margin: 0 auto; gap: 1rem; }
      .hero-actions .btn { display: flex; width:100%; justify-content: center; align-items:center; box-sizing: border-box; }
      .hero-photo-wrap { width: 260px; height: 330px; }
      .hero-grid { padding: 1rem 0 2rem; }
      .nav { padding: 1rem 0; }
      .contact-socials { gap: 1.25rem 1.5rem; }
    }

    /* ── Language Switcher ─────────────────────────────── */
    .lang-switcher { display: flex; align-items: center; gap: .28rem; margin-left: 1.5rem; padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.06); }
    .lang-btn { font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--t3); transition: color .18s; line-height: 1; }
    .lang-btn::after { display: none !important; }
    .lang-btn:hover { color: var(--t2); }
    .lang-btn.lang-active { color: var(--g); }
    .lang-sep { color: rgba(255,255,255,.1); font-size: .55rem; user-select: none; line-height: 1; }
    .lang-mobile-item { display: none; }
    @media (max-width: 768px) {
      .lang-switcher { display: none; }
      .nav-links.open .lang-mobile-item { display: flex !important; align-items: center; gap: .5rem; padding: 1.25rem 0 .5rem; width: 100%; border-bottom: none !important; }
      .nav-links.open .lang-mobile-item .lang-btn { display: inline !important; color: rgba(255,255,255,.3); padding: 0; font-size: .82rem; border: none; width: auto; }
      .nav-links.open .lang-mobile-item .lang-btn:hover { color: rgba(255,255,255,.6); padding-left: 0; }
      .nav-links.open .lang-mobile-item .lang-btn.lang-active { color: var(--g); }
      .nav-links.open .lang-mobile-item .lang-sep { color: rgba(255,255,255,.15); font-size: .6rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1 !important; transform: none !important; }
    }
  </style>