/* ===================================
   Kouryu.info — Style v7 (2024)
   Thème : Salle de jeux chaleureuse
   Palette : Brun profond + Ambre doré
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Nunito:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
    --bg:        #120e0a;
    --bg-2:      #1c1610;
    --bg-3:      #241d14;
    --bg-4:      #2e2518;
    --bg-5:      #3a2f1e;
    --border:    rgba(212,145,30,0.12);
    --border-2:  rgba(212,145,30,0.25);
    --text:      #f0e6d0;
    --text-2:    #b8a888;
    --text-3:    #7a6a50;
    --gold:      #d4911e;
    --gold-2:    #f0a830;
    --gold-glow: rgba(212,145,30,0.2);
    --cream:     #f5edd8;
    --red:       #c94a1a;
    --font-title: 'Unbounded', sans-serif;
    --font-body:  'Nunito', sans-serif;
    --radius:    10px;
    --radius-lg: 18px;
    --shadow:    0 8px 32px rgba(0,0,0,0.5);
    --t:         0.22s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Texture grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px;
}

/* Lueur ambiante */
body::after {
    content: '';
    position: fixed;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212,145,30,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

a { color: var(--gold-2); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--cream); }

h1, h2, h3, h4 {
    font-family: var(--font-title);
    line-height: 1.15;
    color: var(--cream);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18,14,10,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.logo-k    { color: var(--gold); }
.logo-dot  { color: var(--gold); }
.logo-info { color: var(--text-3); font-weight: 400; font-size: 0.85rem; }

.main-nav { display: flex; gap: 0.1rem; }
.nav-item {
    font-family: var(--font-title);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: color var(--t), background var(--t);
}
.nav-item:hover  { color: var(--cream); background: var(--bg-3); }
.nav-item.active { color: var(--gold); background: rgba(212,145,30,0.1); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
}
.mobile-nav a {
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: var(--text-2);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--gold); }

body.nav-open .mobile-nav { display: flex; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MAIN ===== */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2rem 5rem;
    position: relative;
    z-index: 1;
}

/* ===== BOUTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
    background: var(--gold-2);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--gold-glow);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
    color: var(--text-2);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all var(--t);
}
.btn-ghost:hover { color: var(--cream); border-color: var(--gold); background: rgba(212,145,30,0.08); }

/* ===== ACCUEIL — HERO ===== */
.hero-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.5s ease both;
}
.hero-left {}
.hero-eyebrow {
    font-family: var(--font-title);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.hero-name {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.0;
    margin-bottom: 0.4rem;
}
.hero-name .gold { color: var(--gold); }
.hero-tagline {
    font-size: 0.82rem;
    color: var(--text-3);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}
.hero-intro {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 1.5rem;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 68px;
    flex-shrink: 0;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: var(--radius);
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-3);
    text-decoration: none;
    transition: all var(--t);
    overflow: hidden;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(212,145,30,0.1); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }

/* ===== SECTION COMMUNE ===== */
.section-label {
    font-family: var(--font-title);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ===== BLOC YOUTUBE ===== */
.yt-section {
    margin-bottom: 3rem;
    animation: fadeUp 0.5s 0.1s ease both;
}
.yt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.yt-title-group { display: flex; align-items: center; gap: 0.6rem; }
.yt-logo { width: 20px; height: 20px; color: #ff3333; flex-shrink: 0; }
.yt-heading { font-size: 1rem; font-weight: 700; }
.yt-subhead { font-size: 0.7rem; color: var(--text-3); letter-spacing: 0.06em; }

.btn-yt-sub {
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius);
    background: #cc0000;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background var(--t), transform var(--t);
    white-space: nowrap;
}
.btn-yt-sub:hover { background: #ff0000; color: #fff; transform: translateY(-1px); }

.yt-carousel {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 220px;
}
.yt-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    color: var(--text-3);
    font-size: 0.85rem;
    font-style: italic;
}
.yt-slide { display: none; flex-direction: row; min-height: 220px; }
.yt-slide.active { display: flex; }

.yt-slide-thumb {
    position: relative;
    flex: 0 0 52%;
    min-height: 220px;
    background: var(--bg-3);
    overflow: hidden;
}
.yt-slide-link {
    display: block;
    position: absolute;
    inset: 0;
}
.yt-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.yt-slide-link:hover .yt-slide-bg { transform: scale(1.04); }
.yt-slide-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background var(--t);
}
.yt-slide-link:hover .yt-slide-play { background: rgba(0,0,0,0.05); }
.yt-slide-play svg {
    width: 48px; height: 48px;
    color: #fff;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));
    transition: transform var(--t);
}
.yt-slide-link:hover .yt-slide-play svg { transform: scale(1.12); }

.yt-badge {
    position: absolute;
    top: 0.6rem; left: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-title);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}
.yt-badge.short { background: #065fd4; color: #fff; }

.yt-slide-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}
.yt-slide-counter {
    font-family: var(--font-title);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}
.yt-slide-title { font-size: 0.95rem; font-weight: 700; line-height: 1.35; }
.yt-slide-title a { color: var(--cream); text-decoration: none; }
.yt-slide-title a:hover { color: var(--gold-2); }
.yt-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-3); }
.yt-sep { opacity: 0.4; }
.yt-slide-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.yt-watch-btn { padding: 0.45rem 0.9rem; font-size: 0.72rem; }
.yt-nav-btns { display: flex; gap: 0.35rem; }
.yt-nav-btn {
    width: 34px; height: 34px;
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
    background: var(--bg-3);
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t);
}
.yt-nav-btn:hover { background: var(--bg-5); color: var(--gold); border-color: var(--gold); }
.yt-nav-btn svg { width: 16px; height: 16px; }
.yt-footer { text-align: center; padding-top: 0.75rem; }
.yt-error { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:220px; color:var(--text-3); font-size:0.85rem; gap:0.5rem; }

/* ===== BLOC "CE QUE JE JOUE" ===== */
.nowplaying-section {
    margin-bottom: 3rem;
    animation: fadeUp 0.5s 0.15s ease both;
}
.nowplaying-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.nowplaying-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--red));
    border-radius: 2px;
}
.nowplaying-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}
.nowplaying-info { flex: 1; }
.nowplaying-label {
    font-family: var(--font-title);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.nowplaying-game {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.2rem;
}
.nowplaying-meta { font-size: 0.8rem; color: var(--text-3); }
.nowplaying-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
}
.progress-label { font-size: 0.72rem; color: var(--text-3); font-family: var(--font-title); }
.progress-bar {
    width: 100px;
    height: 4px;
    background: var(--bg-4);
    border-radius: 2px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    border-radius: 2px;
    animation: grow 1s ease both;
}
@keyframes grow { from { width: 0 !important; } }

/* ===== GRILLE 2 COLONNES (YouTube + NowPlaying) ===== */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.5s 0.1s ease both;
}
.home-main {}
.home-aside {}

/* ===== SIDEBAR : PASSIONS & PRO ===== */
.aside-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.aside-title {
    font-family: var(--font-title);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.passion-list { display: flex; flex-direction: column; gap: 0.6rem; }
.passion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-2);
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    border-radius: var(--radius);
    transition: background var(--t), color var(--t);
    text-decoration: none;
}
.passion-item:hover { background: var(--bg-3); color: var(--cream); }
.passion-emoji { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
.passion-name { font-weight: 600; font-size: 0.82rem; color: var(--cream); }
.passion-desc { font-size: 0.73rem; color: var(--text-3); }

.pro-links { display: flex; flex-direction: column; gap: 0.4rem; }
.pro-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-2);
    text-decoration: none;
    transition: all var(--t);
    border: 1px solid transparent;
}
.pro-link:hover { background: var(--bg-3); color: var(--cream); border-color: var(--border); }
.pro-link svg { width: 15px; height: 15px; min-width: 15px; min-height: 15px; color: var(--gold); flex-shrink: 0; display: block; }

/* ===== SECTIONS INTERNES (web, seo, pao, cv) ===== */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.gold { color: var(--gold); }
.section-intro { font-size: 0.95rem; color: var(--text-2); margin-bottom: 2.5rem; }

/* Web layout */
.web-layout { display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; align-items: start; }
.web-nav {
    position: sticky; top: 76px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.75rem 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
.web-nav::-webkit-scrollbar { width: 3px; }
.web-nav::-webkit-scrollbar-thumb { background: var(--bg-5); border-radius: 2px; }
.nav-group { margin-bottom: 1.25rem; }
.nav-category {
    font-family: var(--font-title);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-3);
    padding: 0 0.9rem;
    margin-bottom: 0.2rem;
}
.nav-link {
    display: block;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    color: var(--text-2);
    text-decoration: none;
    transition: all var(--t);
}
.nav-link:hover { color: var(--cream); background: var(--bg-3); }
.nav-link.active { color: var(--gold); background: rgba(212,145,30,0.08); }
.no-db-msg { font-size: 0.78rem; color: var(--text-3); padding: 0.75rem; font-style: italic; }

.detail-placeholder { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:260px; color:var(--text-3); text-align:center; gap:0.75rem; }
.detail-placeholder svg { width:48px; height:48px; opacity:0.2; }
.detail-card { background:var(--bg-2); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.75rem; }
.detail-header { display:flex; justify-content:space-between; align-items:flex-start; gap:1.5rem; margin-bottom:1.25rem; padding-bottom:1.25rem; border-bottom:1px solid var(--border); }
.detail-header h2 { font-size:1.3rem; margin-bottom:0.25rem; }
.detail-url { font-size:0.78rem; color:var(--text-3); }
.detail-url:hover { color:var(--gold); }
.detail-thumb { width:110px; height:74px; object-fit:cover; border-radius:var(--radius); border:1px solid var(--border); flex-shrink:0; }
.detail-meta { display:flex; align-items:flex-start; gap:1rem; margin-bottom:0.75rem; font-size:0.82rem; }
.meta-label { font-family:var(--font-title); font-size:0.62rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-3); min-width:90px; padding-top:2px; }
.tech-tags { display:flex; flex-wrap:wrap; gap:0.35rem; }
.tag { background:var(--bg-3); border:1px solid var(--border); border-radius:4px; padding:0.12rem 0.45rem; font-size:0.72rem; color:var(--text-2); }
.detail-section { margin-bottom:1.25rem; padding-top:0.9rem; border-top:1px solid var(--border); }
.detail-label { font-family:var(--font-title); font-size:0.62rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-3); margin-bottom:0.4rem; }
.detail-section p { font-size:0.88rem; color:var(--text-2); line-height:1.75; }

/* Prose */
.prose-block { max-width: 740px; }
.prose-block p { font-size:0.95rem; color:var(--text-2); margin-bottom:1.1rem; line-height:1.85; }
.prose-block h2 { font-size:1.2rem; margin:2rem 0 0.9rem; padding-bottom:0.4rem; border-bottom:1px solid var(--border); }
.styled-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.65rem; margin-bottom:1.25rem; }
.styled-list li { padding-left:1.1rem; position:relative; font-size:0.88rem; color:var(--text-2); line-height:1.6; }
.styled-list li::before { content:'→'; position:absolute; left:0; color:var(--gold); font-family:var(--font-title); }
.styled-list li strong { color:var(--cream); }
.approach-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:0.9rem; margin-top:0.9rem; }
.approach-item { background:var(--bg-2); border:1px solid var(--border); border-radius:var(--radius); padding:1.1rem; }
.approach-num { font-family:var(--font-title); font-size:1.8rem; font-weight:900; color:var(--bg-5); line-height:1; margin-bottom:0.6rem; }
.approach-item h3 { font-size:0.85rem; margin-bottom:0.35rem; }
.approach-item p { font-size:0.78rem; color:var(--text-3); line-height:1.5; }
.tools-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:0.9rem; margin:1.25rem 0 1.75rem; }
.tool-card { background:var(--bg-2); border:1px solid var(--border); border-radius:var(--radius); padding:1.1rem; }
.tool-icon { width:36px; height:36px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-family:var(--font-title); font-weight:900; font-size:0.9rem; margin-bottom:0.65rem; }
.tool-card h3 { font-size:0.85rem; margin-bottom:0.35rem; }
.tool-card p { font-size:0.78rem; color:var(--text-3); line-height:1.5; }

/* CV */
.cv-layout { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:start; }
.cv-heading { font-family:var(--font-title); font-size:0.62rem; text-transform:uppercase; letter-spacing:0.15em; color:var(--gold); margin-bottom:1.25rem; }
.cv-item { margin-bottom:1.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--border); }
.cv-item:last-of-type { border-bottom:none; }
.cv-period { font-size:0.72rem; font-family:var(--font-title); color:var(--text-3); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.2rem; }
.cv-company { font-family:var(--font-title); font-size:0.95rem; font-weight:700; color:var(--cream); margin-bottom:0.1rem; }
.cv-role { font-size:0.75rem; color:var(--gold); font-family:var(--font-title); font-weight:600; margin-bottom:0.4rem; }
.cv-item p { font-size:0.82rem; color:var(--text-2); line-height:1.6; }
.skills-list { display:flex; flex-direction:column; gap:0.65rem; }
.skill-bar-item { display:flex; flex-direction:column; gap:0.25rem; }
.skill-bar-item span { font-size:0.8rem; color:var(--text-2); }
.bar { height:3px; background:var(--bg-5); border-radius:2px; overflow:hidden; }
.fill { height:100%; background:linear-gradient(90deg,var(--gold),var(--gold-2)); border-radius:2px; animation:grow 1s ease both; }
.contact-block { display:flex; flex-direction:column; gap:0.65rem; }
.contact-link { display:inline-flex; align-items:center; gap:0.45rem; font-size:0.88rem; color:var(--gold-2); }
.contact-location { display:flex; align-items:center; gap:0.45rem; font-size:0.82rem; color:var(--text-2); }

/* ===== FOOTER ===== */
.site-footer { border-top:1px solid var(--border); background:var(--bg-2); }
.footer-inner { max-width:1100px; margin:0 auto; padding:1.25rem 2rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.footer-logo { font-family:var(--font-title); font-weight:900; color:var(--cream); font-size:0.85rem; }
.footer-copy { font-size:0.72rem; color:var(--text-3); margin-left:0.5rem; }
.footer-right { font-size:0.78rem; color:var(--text-3); }
.footer-right a { color:var(--text-3); }
.footer-right a:hover { color:var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}
.section-content { animation:fadeUp 0.45s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .home-grid { grid-template-columns: 1fr; }
    .cv-layout { grid-template-columns: 1fr; gap:1.5rem; }
    .web-layout { grid-template-columns: 1fr; }
    .web-nav { position:static; max-height:none; }
    .hero-block { grid-template-columns: 1fr; }
    .hero-social { flex-direction:row; justify-content:center; }
}
@media (max-width: 680px) {
    .main-nav { display:none; }
    .nav-toggle { display:flex; }
    .main-content { padding:2rem 1.25rem 4rem; }
    .yt-slide.active { flex-direction:column; }
    .yt-slide-thumb { flex:none; min-height:180px; }
    .nowplaying-card { flex-wrap:wrap; }
    .nowplaying-progress { align-items:flex-start; }
    .footer-inner { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 480px) {
    .hero-name { font-size:2rem; }
    .approach-grid, .tools-grid { grid-template-columns:1fr; }
}
