:root {
    --bg: #f3ede4;
    --surface: rgba(255, 252, 247, 0.9);
    --text: #16181c;
    --muted: #5f646d;
    --brand: #b58a4f;
    --brand-deep: #7a5830;
    --brand-ink: #20170f;
    --navy: #111821;
    --navy-soft: #171e27;
    --line: rgba(22, 24, 28, 0.1);
    --shadow: 0 24px 64px rgba(16, 22, 29, 0.1);
    --container: min(1160px, calc(100vw - 48px));
    --radius-xl: 28px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(181, 138, 79, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.site-shell { min-height: 100vh; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(10, 14, 20, 0.44);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}
.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.brand-lockup {
    display: inline-grid;
    gap: 6px;
    line-height: 1;
}
.brand-top {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
}
.brand-mark,
.brand-bottom {
    display: block;
    color: #f8f4ee;
    font-family: var(--font);
    text-transform: uppercase;
}
.brand-mark {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    padding-left: calc(0.12em + 10px);
}
.brand-divider {
    color: rgba(248, 244, 238, 0.42);
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(1px);
}
.brand-name-stack {
    display: inline-grid;
    gap: 2px;
    margin-left: -3px;
    padding-top: 2px;
}
.brand-name-stack span {
    display: block;
    color: rgba(248, 244, 238, 0.84);
    font-family: var(--font);
    font-size: 0.54rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.brand-bottom {
    padding-top: 7px;
    padding-left: 5px;
    border-top: 1px solid rgba(248, 244, 238, 0.18);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: rgba(248, 244, 238, 0.72);
}
.footer-brand,
h1, h2, h3 { font-family: var(--font); }
.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-nav[hidden] {
    display: none !important;
}
.site-nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: #fff; }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero,
.contact-hero { position: relative; overflow: hidden; }
.hero {
    min-height: 100svh;
    padding: 120px 0 44px;
    background: #0f141c;
}
.hero-media,
.contact-hero-media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}
.hero-media {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 55%),
        url("assets/images/pxfuel.jpg");
    background-position: center center;
    background-size: cover;
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 14, 19, 0.94) 0%, rgba(9, 14, 19, 0.8) 46%, rgba(9, 14, 19, 0.55) 100%),
        radial-gradient(circle at 76% 18%, rgba(185, 146, 82, 0.18), transparent 20%);
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}
.hero-shell {
    position: relative;
    z-index: 1;
    width: var(--container);
    margin: 0 auto;
    min-height: calc(100svh - 164px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
    align-items: center;
    gap: 36px;
}
.hero-copy { max-width: 650px; color: #f8f4ee; }
.hero-kicker,
.hero-lead,
.contact-hero p,
.statement-copy p,
.practice-item p,
.founder-copy p,
.contact-cta-copy p,
.footer-grid p,
.footer-grid a,
.footer-grid span,
.contact-note p {
    line-height: 1.68;
    font-size: 0.98rem;
}
.hero-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
}
.hero-lead { max-width: 34rem; color: rgba(248, 244, 238, 0.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
}
.hero-facts div {
    display: grid;
    gap: 5px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-facts strong {
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.hero-facts span {
    color: rgba(248, 244, 238, 0.7);
    line-height: 1.5;
    font-size: 0.92rem;
    white-space: nowrap;
}
.hero-panel {
    padding: 22px 22px 22px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.hero-panel-label {
    margin: 0 0 14px;
    color: #e2c18d;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 700;
}
.hero-panel-copy {
    display: grid;
    gap: 12px;
}
.hero-panel-copy p {
    margin: 0;
    color: rgba(255, 248, 240, 0.9);
    line-height: 1.74;
    font-size: 0.95rem;
}

.intro-band {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    background: linear-gradient(90deg, var(--brand-ink), var(--navy-soft));
    color: #efe7da;
}
.intro-band-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
}
.intro-band-grid p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.72;
}

.section { padding: 88px 0; }
.statement-section { padding-top: 78px; }
.statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: start;
}
.section-heading { display: grid; gap: 10px; }
.statement-copy { display: grid; gap: 14px; max-width: 640px; }
.eyebrow {
    display: inline-block;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 800;
}
h1 {
    margin: 0 0 18px;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
}
h3 {
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.practice-section {
    background:
        linear-gradient(180deg, rgba(17, 24, 33, 0.02), rgba(185, 146, 82, 0.08)),
        linear-gradient(90deg, transparent 0, transparent calc(100% - 160px), rgba(185, 146, 82, 0.16) calc(100% - 160px), rgba(185, 146, 82, 0.16) 100%);
}
.practice-list { margin-top: 28px; border-top: 1px solid var(--line); }
.practice-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.practice-item:hover {
    transform: translateX(10px);
    border-color: rgba(185, 146, 82, 0.45);
}
.practice-item span {
    color: rgba(111, 83, 39, 0.7);
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 700;
}
.practice-item h3 { font-size: clamp(1.16rem, 1.65vw, 1.54rem); }

.founders-section { background: linear-gradient(180deg, rgba(255, 250, 244, 0.4), rgba(255, 255, 255, 0.82)); }
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
}
.founder {
    display: grid;
    gap: 18px;
    align-content: start;
    justify-items: center;
    padding: 20px;
    border: 1px solid rgba(22, 24, 28, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
}
.founder-image {
    width: min(100%, 220px);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.founder-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
}
.founder-copy {
    max-width: 560px;
    padding: 0;
    width: 100%;
}
.founder-role,
.founder-education { display: block; }
.founder-role {
    margin-bottom: 8px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.66rem;
    font-weight: 800;
    text-align: center;
}
.founder-education {
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}
.founder-copy h3 {
    text-align: center;
}

.references-section {
    background: linear-gradient(180deg, var(--navy), #0d1219);
    color: #f8f0e2;
}
.references-section .eyebrow,
.contact-cta .eyebrow,
.contact-note-dark .eyebrow { color: #d7bb8e; }
.logo-wall {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.logo-cell {
    min-height: 122px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-cell img {
    width: 100%;
    max-width: 150px;
    max-height: 54px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.contact-cta {
    background:
        radial-gradient(circle at right top, rgba(185, 146, 82, 0.2), transparent 22%),
        linear-gradient(180deg, #1a1410, #0d0a08);
    color: #f8f4ee;
}
.contact-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.8fr);
    gap: 26px;
    align-items: start;
}
.contact-cta-copy { display: grid; gap: 14px; }
.contact-cta-copy a:not(.button) {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    box-shadow: 0 18px 34px rgba(111, 83, 39, 0.28);
}
.button-secondary {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-footer {
    background: #0b0f15;
    color: #e8dcc9;
    padding: 28px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-column {
    display: grid;
    align-content: start;
    gap: 4px;
    text-align: left;
}
.footer-brand {
    margin: 0 0 12px;
    font-size: 1.28rem;
    color: #fff;
}
.footer-title {
    margin: 0 0 12px;
    color: #d7bb8e;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.footer-grid p,
.footer-grid a,
.footer-grid span {
    margin: 0 0 10px;
    color: rgba(232, 220, 201, 0.8);
}
.footer-contact {
    gap: 2px;
}
.footer-contact a,
.footer-column span {
    display: block;
}
.footer-bottom {
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(232, 220, 201, 0.62);
}

.contact-hero {
    min-height: 72svh;
    padding: 126px 0 44px;
    background: #131922;
}
.contact-hero-media {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 55%),
        url("assets/images/pxfuel.jpg");
    background-position: center center;
    background-size: cover;
    opacity: 1;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.75) 48%, rgba(10, 14, 20, 0.48) 100%),
        radial-gradient(circle at 82% 24%, rgba(185, 146, 82, 0.22), transparent 22%);
}
.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 26px;
    align-items: end;
    color: #f8f4ee;
}
.contact-highlights {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}
.contact-highlights p {
    margin: 0;
    display: grid;
    gap: 6px;
}
.contact-highlights strong {
    color: #d7bb8e;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
.contact-highlights span,
.contact-highlights a {
    color: rgba(248, 244, 238, 0.82);
    line-height: 1.6;
}
.contact-section { padding-top: 72px; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.contact-form-shell,
.contact-note {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.contact-form-shell { padding: 28px; }
.contact-side { display: grid; gap: 20px; align-content: start; }
.contact-note { padding: 24px; height: 225px; }
.contact-note-dark {
    background: linear-gradient(180deg, var(--navy-soft), #121922);
    color: #f7f2ea;
    border-color: rgba(255, 255, 255, 0.08);
}
.contact-map-frame {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.contact-form > label:nth-child(n+5),
.contact-form .captcha-block,
.contact-form > button {
    grid-column: 1 / -1;
}
.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid rgba(23, 19, 17, 0.14);
    border-radius: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(185, 146, 82, 0.2);
    border-color: var(--brand);
}
.form-status {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    line-height: 1.6;
}
.form-status.success {
    background: rgba(68, 122, 74, 0.12);
    border-color: rgba(68, 122, 74, 0.24);
    color: #2f5d34;
}
.form-status.error {
    background: rgba(154, 44, 44, 0.1);
    border-color: rgba(154, 44, 44, 0.2);
    color: #812929;
}
.form-status.warning {
    background: rgba(175, 123, 40, 0.14);
    border-color: rgba(175, 123, 40, 0.22);
    color: #7d5618;
}

.captcha-block {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding: 16px;
    border: 1px solid rgba(22, 24, 28, 0.08);
    background: rgba(255, 255, 255, 0.68);
}

.captcha-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

.captcha-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
    width: fit-content;
    background: #fff;
    border: 1px dashed rgba(22, 24, 28, 0.22);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text);
}

.captcha-input-wrap {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: rise 0.8s ease forwards;
}
@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1080px) {
    .hero-shell,
    .statement-grid,
    .founders-grid,
    .contact-cta-grid,
    .contact-hero-grid,
    .contact-layout,
    .footer-grid,
    .intro-band-grid { grid-template-columns: 1fr; }
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
    }
    .hero { min-height: auto; padding-bottom: 70px; }
    .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    body.nav-open {
        overflow: hidden;
    }

    .topbar {
        min-height: 72px;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
    }

    .hero-panel {
        padding: 18px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
    }

    .hero-media,
    .contact-hero-media {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(9, 14, 19, 0.88) 0%, rgba(9, 14, 19, 0.72) 100%),
            radial-gradient(circle at 72% 18%, rgba(185, 146, 82, 0.12), transparent 22%);
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
        position: relative;
        z-index: 210;
    }

    .site-nav {
        position: fixed;
        top: 88px;
        left: 16px;
        right: 16px;
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 10px;
        background: rgba(12, 17, 24, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(8, 13, 19, 0.28);
        backdrop-filter: blur(16px);
        z-index: 205;
        max-height: calc(100svh - 112px);
        overflow-y: auto;
    }

    .site-nav a {
        display: block;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        border-radius: 14px;
    }
}
@media (max-width: 720px) {
    .site-header {
        background: rgba(10, 14, 20, 0.9);
    }
    .topbar {
        min-height: auto;
        padding: 14px 0;
    }
    .brand {
        padding: 0;
    }
    .brand-lockup {
        gap: 5px;
    }
    .brand-top {
        gap: 6px;
    }
    .brand-mark {
        font-size: 1.14rem;
        letter-spacing: 0.18em;
        padding-left: calc(0.1em + 10px);
    }
    .brand-divider {
        font-size: 0.92rem;
    }
    .brand-name-stack span {
        font-size: 0.46rem;
        letter-spacing: 0.16em;
    }
    .brand-bottom {
        padding-left: 5px;
        font-size: 0.46rem;
        letter-spacing: 0.3em;
    }
    .hero,
    .contact-hero { padding-top: 52px; }
    .hero-media,
    .contact-hero-media {
        background-position: 64% center;
    }
    .hero-facts {
        gap: 10px;
    }
    .hero-panel-copy p {
        font-size: 0.9rem;
        line-height: 1.66;
    }
    .section { padding: 64px 0; }
    .contact-form-shell,
    .contact-note,
    .contact-highlights { padding: 24px; }
    .hero-facts,
    .logo-wall { grid-template-columns: 1fr; }
    .logo-cell { min-height: 132px; }
    .practice-item { grid-template-columns: 1fr; gap: 8px; }
    .footer-bottom { flex-direction: column; }
}

.empty-state { text-align: center; padding: 48px 20px; }

/* Yazılarımız - liste sayfası */
.articles-page-header { padding: 148px 0 6px; }
.articles-section { padding: 22px 0 92px; }
.articles-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 38px;
    align-items: start;
    margin-top: 6px;
}

.articles-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
    padding: 28px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 12px 34px rgba(16, 22, 29, 0.05);
}
.articles-sidebar-title {
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.category-list { display: grid; gap: 4px; }
.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.97rem;
    line-height: 1.3;
    color: var(--text);
    transition: background 0.2s ease, color 0.2s ease;
}
.category-list a span {
    flex: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    background: rgba(22, 24, 28, 0.06);
    padding: 3px 10px;
    border-radius: 999px;
}
.category-list a:hover { background: rgba(185, 146, 82, 0.12); }
.category-list a.active { background: var(--navy); color: #fbf7f1; }
.category-list a.active span { background: rgba(255, 255, 255, 0.16); color: #fbf7f1; }

.articles-list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.articles-list-head h2 {
    margin: 0;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
.articles-list-head span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-list { display: grid; border-top: 1px solid var(--line); }
.article-row {
    display: grid;
    gap: 8px;
    padding: 26px 4px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease;
}
.article-row:hover { background: rgba(185, 146, 82, 0.05); }
.article-row-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}
.article-row-meta .category-tag {
    color: var(--brand-deep);
    background: rgba(181, 138, 79, 0.12);
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.article-row h3 { margin: 0; font-size: clamp(1.12rem, 1.7vw, 1.42rem); line-height: 1.25; }
.article-row h3 a:hover { color: var(--brand-deep); }
.article-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--brand-deep);
}
.article-read-more svg { transition: transform 0.2s ease; }
.article-row:hover .article-read-more { color: var(--navy); }
.article-row:hover .article-read-more svg { transform: translateX(4px); }

/* Ana sayfa - Son Yazılar */
.home-articles { background: linear-gradient(180deg, rgba(255, 250, 244, 0.5), rgba(255, 255, 255, 0.8)); }
.home-articles-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}
.home-article {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-article:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.home-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}
.home-article h3 { margin: 0; font-size: 1.12rem; line-height: 1.35; }
.home-article h3 a:hover { color: var(--brand-deep); }
.home-article p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-articles-action { margin-top: 26px; }

@media (max-width: 900px) {
    .home-articles-list { grid-template-columns: 1fr; }
}

/* Makale detay sayfası */
.article-detail-section { padding: 148px 0 92px; }
.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 26px;
}
.article-breadcrumb a { color: var(--muted); font-weight: 600; }
.article-breadcrumb a:hover { color: var(--brand-deep); }
.article-breadcrumb span[aria-current] { color: var(--text); font-weight: 700; }

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 48px;
    align-items: start;
}
.article-detail-main { max-width: 720px; min-width: 0; }
.article-detail-head { display: grid; gap: 12px; }
.category-tag-link {
    justify-self: start;
    color: var(--brand-deep);
    background: rgba(181, 138, 79, 0.12);
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.category-tag-link:hover { background: rgba(181, 138, 79, 0.22); }
.article-detail-head h1 { margin: 0; }
.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}
.article-detail-meta .article-author { color: var(--brand-deep); font-weight: 700; }
.article-detail-cover {
    margin: 26px 0 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.article-detail-cover img { width: 100%; max-height: 340px; object-fit: cover; display: block; }
.article-detail-lead {
    font-size: 1.14rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.6;
    padding-left: 16px;
    border-left: 3px solid var(--brand);
    margin: 28px 0;
}
.article-detail-body { display: grid; gap: 18px; font-size: 1.04rem; line-height: 1.8; color: var(--text); }
.article-detail-body p { margin: 0; }
.article-detail-body h2 {
    margin: 16px 0 0;
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
    line-height: 1.3;
}
.article-detail-body h3 {
    margin: 10px 0 0;
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.35;
}
.article-detail-body ul,
.article-detail-body ol {
    margin: 0;
    padding-left: 24px;
    display: grid;
    gap: 8px;
}
.article-detail-body li { line-height: 1.7; }
.article-detail-body li::marker { color: var(--brand); font-weight: 700; }
.article-detail-body strong { font-weight: 700; }
.article-detail-body a {
    color: var(--brand-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-detail-body a:hover { color: var(--navy); }
.article-detail-body blockquote {
    margin: 0;
    padding: 6px 0 6px 20px;
    border-left: 3px solid var(--brand);
    color: var(--muted);
    font-style: italic;
}
.article-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.article-detail-footer p { margin: 0; font-weight: 700; color: var(--text); }

.article-detail-aside { display: grid; gap: 22px; position: sticky; top: 96px; }
.related-articles ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.related-articles li a { display: grid; gap: 4px; }
.related-articles li a span { font-size: 0.76rem; color: var(--muted); font-weight: 600; }
.related-articles li a strong { font-size: 0.92rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.related-articles li a:hover strong { color: var(--brand-deep); }

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-deep);
    font-weight: 700;
    margin-bottom: 18px;
}

@media (max-width: 980px) {
    .articles-shell,
    .article-detail-layout { grid-template-columns: 1fr; }
    .articles-sidebar,
    .article-detail-aside { position: static; }
    .article-detail-aside { order: 2; }
}
