/* =========================================================
   NECATI ÇOKLAR — Soccer Coach Portfolio
   v3 — Modern, sinematik, full-bleed
   2026-05-27
   ========================================================= */

:root {
    --color-bg: #060606;
    --color-text: #ffffff;
    --color-text-soft: rgba(255, 255, 255, 0.88);
    --color-text-mute: rgba(255, 255, 255, 0.55);
    --color-accent: #eb0027;
    --color-accent-2: #ff3a4f;
    --color-line: rgba(255, 255, 255, 0.12);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sidebar-w: 160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }
a:hover { color: var(--color-accent); }
img { max-width: 100%; height: auto; display: block; }

/* ===== BACKGROUND (full-bleed sinematik) ===== */
.bg-stage {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.bg-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%; /* üst kısımdan başla — yüz görünür */
    transform: scale(1.06);
    animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1.06) translateX(0); }
    to   { transform: scale(1.12) translateX(-15px); }
}
/* Vignette + sağa karartma + alt gradient (yazı netliği için kuvvetli) */
.bg-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.15) 30%, rgba(6,6,6,0.55) 75%, rgba(6,6,6,0.98) 100%),
        linear-gradient(95deg, rgba(6,6,6,0.78) 0%, rgba(6,6,6,0.35) 30%, rgba(6,6,6,0.55) 60%, rgba(6,6,6,0.95) 100%);
    pointer-events: none;
}
/* Ekstra karartma — metin alanında daha koyu */
.bg-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(6,6,6,0.45) 0%, rgba(6,6,6,0) 60%);
    pointer-events: none;
    z-index: 1;
}

/* ===== LEFT SIDEBAR (v4 — modern minimalist) ===== */
.site-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: rgba(8, 8, 10, 0.72);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-right: 1px solid rgba(255,255,255,0.06);
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 30px 0 22px;
    box-shadow: 2px 0 30px rgba(0,0,0,0.4);
}

/* LOGO BLOCK */
.sb-logo {
    text-align: center;
    padding: 0 14px 22px;
    margin-bottom: 22px;
    position: relative;
}
.sb-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    box-shadow: 0 0 10px rgba(235,0,39,0.5);
}
.sb-logo .sig {
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.5px;
    transform: rotate(-4deg);
    display: inline-block;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.sb-logo:hover .sig { transform: rotate(-6deg) scale(1.05); }
.sb-logo .sub {
    display: block;
    font-size: 8.5px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 700;
}

/* NAV */
.sb-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 10px;
}
.sb-nav a {
    padding: 14px 14px 14px 20px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    position: relative;
    transition: color .3s ease, background .3s ease, transform .3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.sb-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.sb-nav a:hover .dot {
    background: #fff;
    width: 14px;
}

/* yatay çizgi indicator (nokta yerine) */
.sb-nav a .dot {
    display: inline-block;
    width: 6px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    transition: all .35s cubic-bezier(.2,.7,.2,1);
    flex-shrink: 0;
}

/* ACTIVE STATE */
.sb-nav a.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(235,0,39,0.14) 0%, rgba(235,0,39,0.02) 100%);
}
.sb-nav a.active .dot {
    background: var(--color-accent);
    width: 18px;
    box-shadow: 0 0 12px rgba(235,0,39,0.7);
}
.sb-nav a.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 28px;
    background: var(--color-accent);
    border-radius: 4px 0 0 4px;
    box-shadow: 0 0 14px rgba(235,0,39,0.6);
}

/* SOCIAL FOOTER */
.sb-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 18px 14px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 0 8px;
}
.sb-social a {
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    border: 1px solid rgba(255,255,255,0.05);
}
.sb-social a:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(235,0,39,0.4);
}

/* ===== MAIN ===== */
.main {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* ===== HERO ===== */
.hero-stage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8% 80px 8%;
    position: relative;
}
.hero-content {
    max-width: 880px;
    margin-left: auto;
    animation: fadeUp 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 6px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-content .eyebrow::before {
    content: '';
    width: 44px; height: 1px;
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(235,0,39,0.5);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 9vw, 132px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
    display: inline-block;
}
.hero-lead {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--color-text-soft);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 36px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-signature {
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(235,0,39,0.5);
    font-family: 'Dancing Script', cursive;
    font-size: clamp(34px, 4vw, 52px);
    color: #fff;
    line-height: 1.05;
    display: inline-block;
}
.hero-signature .role {
    display: block;
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--color-text-mute);
    letter-spacing: 4.5px;
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 700;
}

.hero-cta { margin-top: 42px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    padding: 15px 32px;
    background: var(--color-accent);
    color: #fff !important;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid var(--color-accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(235,0,39,0.35);
}
.btn:hover { background: #ff1640; color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(235,0,39,0.5); }
.btn.ghost {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    color: #fff !important;
    backdrop-filter: blur(10px);
    box-shadow: none;
}
.btn.ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* Scroll arrow */
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 22px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 10px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE LAYOUT (about/exp/philo/susa) ===== */
.page-stage {
    min-height: 100vh;
    padding: 80px 8% 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.page-content {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both;
}
.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 6px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}
.page-eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--color-accent);
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 9vw, 130px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.page-subtitle {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.meta-list {
    list-style: none;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-soft);
}
.meta-list li { display: flex; gap: 14px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.meta-list li strong { color: var(--color-accent); min-width: 110px; font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; align-self: center; }

.page-body p {
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
}
.page-body p strong { color: #fff; font-weight: 700; }
.page-body p em { color: var(--color-accent); font-style: italic; }

/* SECTION */
.section { margin-top: 60px; }
.section-head {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-line);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.5px;
}
.section-head h2 .accent { color: var(--color-accent); font-style: italic; font-weight: 400; }
.section-head .sub {
    font-size: 10.5px;
    letter-spacing: 3.5px;
    color: var(--color-text-mute);
    text-transform: uppercase;
    font-weight: 700;
}

/* TIMELINE */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 10px; top: 12px; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-line) 100%);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item::before {
    content: '';
    position: absolute;
    left: -26px; top: 6px;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(235,0,39,0.25), 0 0 18px rgba(235,0,39,0.5);
}
.tl-year { font-family: var(--font-display); font-size: 20px; color: var(--color-accent); font-weight: 700; margin-bottom: 6px; }
.tl-role { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.tl-club { font-size: 12px; color: var(--color-text-mute); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.tl-desc { color: var(--color-text-soft); font-size: 14.5px; line-height: 1.75; }

/* STATS */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-line);
    border: 1px solid var(--color-line);
    border-radius: 4px;
    overflow: hidden;
    margin: 36px 0;
}
.stat-block { background: rgba(6,6,6,0.6); padding: 24px 18px; text-align: center; backdrop-filter: blur(10px); }
.stat-block .num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--color-accent); line-height: 1; }
.stat-block .lbl { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--color-text-mute); margin-top: 8px; font-weight: 700; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.value-card {
    padding: 28px 24px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border: 1px solid var(--color-line);
    border-radius: 6px;
    transition: all .3s;
}
.value-card:hover {
    border-color: var(--color-accent);
    background: rgba(235,0,39,0.06);
    transform: translateY(-3px);
}
.value-card .v-num { font-family: var(--font-display); font-size: 30px; color: var(--color-accent); font-weight: 700; margin-bottom: 10px; line-height: 1; font-style: italic; }
.value-card h4 { font-size: 15px; margin-bottom: 8px; font-weight: 700; color: #fff; letter-spacing: 0.3px; }
.value-card p { color: var(--color-text-soft); font-size: 13px; line-height: 1.65; margin: 0; }

/* ABOUT — hero foto bloku */
.about-hero {
    margin: 32px 0 36px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-line);
}
.about-hero img {
    width: 100%;
    height: clamp(280px, 50vh, 480px);
    object-fit: cover;
    object-position: center top;
}
.about-hero-cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(6,6,6,0.95) 20%, rgba(6,6,6,0) 100%);
    padding: 50px 28px 22px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 1.35;
}
.about-hero-cap strong { color: #fff; font-weight: 700; }
.about-hero-cap em { color: var(--color-accent); font-weight: 400; font-style: italic; display: block; margin-top: 2px; }

/* ABOUT — duo grid (2 sütun foto) */
.about-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 0;
}
.about-duo-item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
    background: #0d0d0d;
}
.about-duo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.about-duo-item:hover img { transform: scale(1.06); }
.about-duo-item .cap {
    position: absolute;
    bottom: 12px; left: 14px;
    background: rgba(6,6,6,0.72);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    .about-duo { grid-template-columns: 1fr; }
    .about-hero img { height: 260px; }
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.gallery-grid .g-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: #0d0d0d;
    position: relative;
}
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

/* VIDEO */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.video-item {
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    transition: all .3s;
}
.video-item:hover { border-color: var(--color-accent); }
.video-item .v-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-item .v-frame iframe, .video-item .v-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-item.vertical .v-frame { aspect-ratio: 9/16; }
.video-item .v-meta { padding: 12px 16px; background: rgba(255,255,255,0.03); }
.video-item .v-meta strong { display: block; font-size: 13px; color: #fff; margin-bottom: 3px; font-weight: 700; }
.video-item .v-meta small { font-size: 11px; color: var(--color-text-mute); }

/* ===== MOBILE TOP BAR (only mobile, default hidden) ===== */
.mobile-topbar { display: none; }

/* ===== HAMBURGER ICON ===== */
.hamb {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: all .3s;
}
.hamb:hover { background: rgba(255,255,255,0.14); }
.hamb span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.hamb span:nth-child(1) { top: 14px; }
.hamb span:nth-child(2) { top: 21px; width: 14px; }
.hamb span:nth-child(3) { top: 28px; }

body.menu-open .hamb { background: var(--color-accent); border-color: var(--color-accent); }
body.menu-open .hamb span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .hamb span:nth-child(2) { opacity: 0; transform: translateX(-12px); }
body.menu-open .hamb span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ===== BACKDROP ===== */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
    z-index: 40;
}
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; }

/* ===== MOBILE STYLES ===== */
@media (max-width: 880px) {

    /* Foto pozisyonu */
    .bg-stage img { object-position: 50% 15%; }
    .bg-stage::after {
        background:
            linear-gradient(180deg, rgba(6,6,6,0.6) 0%, rgba(6,6,6,0.15) 30%, rgba(6,6,6,0.85) 65%, rgba(6,6,6,0.99) 100%);
    }
    .bg-stage::before { display: none; }

    /* TOP BAR */
    .mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 55;
        padding: 12px 18px;
        background: rgba(8,8,10,0.7);
        backdrop-filter: blur(20px) saturate(140%);
        -webkit-backdrop-filter: blur(20px) saturate(140%);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-topbar .tb-logo {
        font-family: 'Dancing Script', cursive;
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        transform: rotate(-3deg);
        display: inline-block;
    }
    .mobile-topbar .tb-logo small {
        display: inline-block;
        font-family: var(--font-body);
        font-size: 8px;
        letter-spacing: 2.5px;
        color: var(--color-accent);
        font-weight: 800;
        text-transform: uppercase;
        margin-left: 10px;
        vertical-align: middle;
        transform: rotate(3deg);
    }

    .hamb { display: block; }

    /* SIDEBAR → FULL-SCREEN OVERLAY MENÜ */
    .site-sidebar {
        width: min(85vw, 360px);
        left: -100%;
        top: 0;
        bottom: 0;
        padding: 90px 0 30px;
        background: rgba(8,8,10,0.95);
        backdrop-filter: blur(30px) saturate(150%);
        border-right: 1px solid rgba(255,255,255,0.08);
        transition: left .45s cubic-bezier(.2,.7,.2,1);
        z-index: 60;
        box-shadow: 8px 0 40px rgba(0,0,0,0.6);
    }
    body.menu-open .site-sidebar { left: 0; }

    /* LOGO içinde imza büyük gözüksün, mobil menüde */
    .sb-logo { padding: 0 28px 22px; margin-bottom: 24px; text-align: left; }
    .sb-logo::after {
        left: 28px;
        transform: none;
        width: 50px;
    }
    .sb-logo .sig { font-size: 38px; transform: rotate(-4deg); }
    .sb-logo .sub { font-size: 10px; letter-spacing: 4px; margin-top: 14px; }

    /* NAV — büyük dikey, modern app gibi */
    .sb-nav {
        padding: 18px 18px;
        gap: 4px;
    }
    .sb-nav a {
        padding: 18px 20px !important;
        font-size: 16px !important;
        letter-spacing: 1px;
        font-weight: 700;
        text-transform: none;
        gap: 18px;
        border-radius: 10px;
        font-family: var(--font-display);
    }
    .sb-nav a .dot {
        width: 8px;
        height: 2px;
        border-radius: 2px;
    }
    .sb-nav a:hover .dot { width: 22px; }
    .sb-nav a.active .dot { width: 28px; }
    .sb-nav a.active {
        background: linear-gradient(90deg, rgba(235,0,39,0.18) 0%, rgba(235,0,39,0.04) 100%);
    }
    .sb-nav a.active::after { display: none; }

    /* SOSYAL ALTTA */
    .sb-social {
        grid-template-columns: repeat(4, 1fr);
        padding: 22px 22px 0;
        gap: 10px;
        margin: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .sb-social a {
        font-size: 16px;
        border-radius: 12px;
        background: rgba(255,255,255,0.05);
    }

    /* MAIN — sidebar artık overlay, margin yok */
    .main {
        margin-left: 0;
        padding-top: 70px; /* mobile topbar yüksekliği */
    }

    /* HERO mobile */
    .hero-stage {
        padding: 60px 22px 60px;
        justify-content: flex-end;
        min-height: calc(100vh - 70px);
    }
    .hero-content { max-width: 100%; margin-left: 0; position: relative; z-index: 2; }
    .hero-title { font-size: clamp(38px, 11vw, 70px) !important; letter-spacing: -1.5px; }
    .hero-lead { font-size: 14px; }
    .hero-signature { font-size: clamp(26px, 6vw, 38px); }

    /* PAGE mobile */
    .page-stage { padding: 30px 22px 80px; }
    .page-content { max-width: 100%; margin-left: 0; }
    .page-title { font-size: clamp(44px, 14vw, 80px); letter-spacing: -2px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }

    .meta-list li { flex-direction: column; gap: 2px; padding: 8px 0; }
    .meta-list li strong { min-width: auto; }
}

@media (max-width: 480px) {
    .mobile-topbar .tb-logo { font-size: 22px; }
    .mobile-topbar .tb-logo small { font-size: 7px; letter-spacing: 2px; margin-left: 6px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .sb-nav a { font-size: 15px !important; padding: 16px 18px !important; }
    .sb-logo .sig { font-size: 32px; }
}

/* Body lock when menu open */
body.menu-open { overflow: hidden; }
