/**
 * Dayanışma Derneği - STK Frontend
 * Fraunces (display serif) + DM Sans (UI)
 * Kırmızı #BE0002 + Lacivert #03296B + Krem
 */

:root {
    --red: #BE0002;
    --red-dark: #8E0001;
    --red-soft: rgba(190, 0, 2, 0.08);
    --navy: #03296B;
    --navy-dark: #021A47;
    --navy-soft: rgba(3, 41, 107, 0.08);

    --bg: #F8F4ED;
    --paper: #FFFFFF;
    --ink: #0E1424;
    --ink-soft: #3D4659;
    --ink-muted: #707A8E;
    --line: #E2DCD0;
    --line-strong: #C9C0AE;
    --gold: #C9A24A;

    --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
    --sans: 'DM Sans', -apple-system, system-ui, sans-serif;

    --container: 1320px;
    --container-tight: 1100px;
    --header-h: 92px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: var(--bg) !important;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 2rem; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 3.8vw, 3.125rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--red);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    width: 2.25rem;
    height: 2px;
    background: var(--red);
}
.eyebrow-light { color: #E8C77C; }
.eyebrow-light::before { background: #E8C77C; }
.eyebrow-navy { color: var(--navy); }
.eyebrow-navy::before { background: var(--navy); }

/* ============================================
   ANNOUNCEMENT BAR (top of page)
   ============================================ */
.announce {
    background: var(--navy-dark) !important;
    color: rgba(255,255,255,0.85);
    padding: 0.55rem 0 !important;
    margin: 0 !important;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    position: relative;
    display: block;
}
.announce-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.announce-left { display: flex; gap: 1.5rem; align-items: center; }
.announce-left a { color: inherit; opacity: 0.85; transition: opacity .2s; }
.announce-left a:hover { opacity: 1; color: #E8C77C; }
.announce-right { display: flex; gap: 0.75rem; align-items: center; }
.announce-right a {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: color .2s;
}
.announce-right a:hover { color: #E8C77C; }
@media (max-width: 768px) { .announce { display: none; } }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(248, 244, 237, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem;
}
.header-logo { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.site-logo { display: block; height: 80px; width: auto; max-width: 360px; }
.site-logo--white { height: 130px; max-width: 520px; filter: brightness(0) invert(1); }
.logo-mark {
    width: 46px; height: 46px;
    background: var(--red);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-weight: 700; font-size: 1.25rem;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255,255,255,0.45);
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}
.logo-text {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1;
}
.logo-text small {
    display: block;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-muted);
    margin-top: 4px;
}
.header-nav { display: flex; gap: 0.15rem; align-items: center; }
.nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.81rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    transition: color .2s;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: -2px;
    height: 2px;
    background: var(--red);
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.85rem;
    background: var(--red);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all .25s;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.header-cta:hover { background: var(--navy); transform: translateY(-1px); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-toggle span { width: 26px; height: 2px; background: var(--ink); }
.mobile-menu { display: none; flex-direction: column; background: var(--paper); padding: 1rem 2rem; border-bottom: 1px solid var(--line); }
.mobile-menu.active { display: flex; }
.mobile-link { padding: 1rem 0; font-size: 0.92rem; font-weight: 600; border-bottom: 1px solid var(--line); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 1100px) { .nav-link { padding: 0.6rem 0.7rem; font-size: 0.75rem; } }
@media (max-width: 968px) {
    .header-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .header-inner { padding: 0 1.25rem; gap: 1rem; }
    .logo-text small { display: none; }
    :root { --header-h: 72px; }
}

/* ============================================
   HERO SLIDER (70vh, 3 slides, sol siyahlık)
   ============================================ */
.hero {
    position: relative;
    height: 70vh;
    min-height: 540px;
    max-height: 760px;
    overflow: hidden;
    background: var(--navy-dark);
}
.hero-slides { position: absolute; inset: 0; }
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.slide-bg {
    position: absolute; inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
    transition: transform 7s ease;
}
.slide.is-active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 35%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.15) 100%),
        linear-gradient(180deg, rgba(3,26,71,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

/* Sol progress bar (yukarıdan aşağı dolar) */
.hero-progress {
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 4;
    overflow: hidden;
}
.hero-progress-fill {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: var(--red);
    box-shadow: 0 0 14px rgba(190,0,2,0.6);
}
.slide-content {
    position: absolute;
    inset: 0;
    display: flex; align-items: center;
    z-index: 3;
}
.slide-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.slide-inner-text {
    max-width: 640px;
    color: #fff;
}
.slide-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.slide h1 {
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.slide h1 em {
    font-style: italic;
    font-weight: 500;
    color: #E8C77C;
}
.slide-lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    max-width: 540px;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* slider controls */
.slider-controls {
    position: absolute;
    bottom: 2.25rem;
    left: 0; right: 0;
    z-index: 5;
    display: flex; justify-content: space-between; align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    pointer-events: none;
}
.slider-dots { display: flex; gap: 0.6rem; pointer-events: auto; }
.slider-dot {
    width: 28px; height: 2px;
    background: rgba(255,255,255,0.28);
    border: none;
    cursor: pointer;
    transition: all .35s;
    padding: 0;
    position: relative;
}
.slider-dot.is-active { background: var(--red); width: 56px; }
.slider-arrows { display: flex; gap: 0.75rem; pointer-events: auto; }
.slider-arrow {
    width: 56px; height: 56px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.slider-arrow svg { width: 18px; height: 18px; transition: transform .3s ease; position: relative; z-index: 2; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.slider-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: scale(0);
    transition: transform .35s ease;
    border-radius: 50%;
    z-index: 1;
}
.slider-arrow:hover { border-color: var(--red); }
.slider-arrow:hover::before { transform: scale(1); }
.slider-arrow#sliderPrev:hover svg { transform: translateX(-3px); }
.slider-arrow#sliderNext:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
    .hero { height: 75vh; min-height: 480px; }
    .slide-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%); }
    .hero-progress { width: 4px; }
    .slider-arrow { width: 46px; height: 46px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
}
.btn-red {
    background: var(--red);
    color: #fff;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    padding: 1rem 2.5rem;
}
.btn-red:hover { background: var(--red-dark); }
.btn-navy {
    background: var(--navy);
    color: #fff;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    padding: 1rem 2.5rem;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.95rem 1.75rem;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-strong);
    padding: 0.95rem 1.75rem;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6.5rem 0; }
.section-tight { padding: 4.5rem 0; }
.section-paper { background: var(--paper); }
.section-bg { background: var(--bg); }
.section-navy { background: var(--navy-dark); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.78); }

.section-head { max-width: 740px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.65; }
.section-navy .section-head p { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) { .section { padding: 4rem 0; } }

/* ============================================
   BIZ KIMIZ
   ============================================ */
.about-section {
    position: relative;
    padding: clamp(6.5rem, 10vw, 9rem) 0 clamp(4.5rem, 8vw, 7.5rem);
    background:
        linear-gradient(90deg, rgba(3,26,71,0.055) 1px, transparent 1px),
        linear-gradient(180deg, #fff 0%, #fff 68%, var(--bg) 68%, var(--bg) 100%);
    background-size: 96px 100%, auto;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 42vw;
    height: 7px;
    background: var(--red);
}
.about-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
    min-height: 650px;
    align-items: center;
    gap: 0;
}
.about-grid::before {
    content: 'vicdan hareketi';
    position: absolute;
    top: clamp(-7.5rem, -8vw, -5.5rem);
    left: clamp(0rem, 8vw, 6rem);
    right: auto;
    color: rgba(3,26,71,0.07);
    font-family: var(--serif);
    font-size: clamp(3.5rem, 7.4vw, 6.4rem);
    font-weight: 800;
    line-height: 0.9;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}
.about-visual-wrap {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    aspect-ratio: 0.82;
    margin-left: clamp(0rem, 3vw, 3rem);
    isolation: isolate;
}
.about-visual-wrap::before,
.about-visual-wrap::after {
    content: '';
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.about-visual-wrap::before {
    inset: 2rem -2rem -2rem 2rem;
    border: 1px solid rgba(3,26,71,0.22);
}
.about-visual-wrap::after {
    width: 45%;
    height: 54%;
    right: -2.6rem;
    bottom: -2.6rem;
    background: var(--red);
    mix-blend-mode: multiply;
}
.about-visual {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-position: 50% 45%;
    background-size: cover;
    background-color: var(--navy-dark);
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
    box-shadow: 0 34px 80px -45px rgba(3,26,71,0.65);
    filter: saturate(0.86) contrast(1.05);
}
.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(3,26,71,0.38) 100%),
        linear-gradient(90deg, rgba(190,0,2,0.2), transparent 38%);
}
.about-stat-overlay { display: none; }
.about-grid > div:last-child {
    position: relative;
    z-index: 3;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: clamp(-5rem, -5vw, -2rem);
    padding: clamp(2.25rem, 5vw, 4.5rem);
    background: rgba(255,255,255,0.92);
    border-left: 7px solid var(--navy);
    box-shadow: 0 36px 100px -70px rgba(3,26,71,0.55);
}
.about-grid > div:last-child::before {
    content: '';
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 5.4rem;
    height: 5.4rem;
    border-top: 1px solid rgba(190,0,2,0.55);
    border-right: 1px solid rgba(190,0,2,0.55);
}
.about-grid > div:last-child::after {
    content: '14 ülke / saha raporları';
    position: absolute;
    right: -2.9rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    color: rgba(3,26,71,0.58);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}
.about-section .eyebrow {
    margin-bottom: 1.35rem;
}
.about-section h2 {
    max-width: 760px;
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 5vw, 4.85rem);
    line-height: 0.98;
}
.about-section h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--red);
}
.about-section p {
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 1rem;
}
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 720px;
    margin: 2.2rem 0 2rem;
    border-top: 1px solid rgba(3,26,71,0.18);
    border-bottom: 1px solid rgba(3,26,71,0.18);
}
.about-pillar {
    position: relative;
    padding: 1.45rem 1.5rem 1.5rem 0;
    background: transparent;
}
.about-pillar + .about-pillar {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(3,26,71,0.18);
}
.about-pillar::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--navy);
    margin-bottom: 1rem;
}
.about-pillar:nth-child(2)::before { background: var(--red); }
.about-pillar h4 {
    font-family: var(--serif);
    font-size: 1.12rem;
    margin-bottom: 0.35rem;
}
.about-pillar p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--ink-muted);
    line-height: 1.6;
}
.about-section .btn-navy {
    align-self: flex-start;
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(3,26,71,0.3);
    clip-path: none;
    padding: 0.95rem 1.35rem;
}
.about-section .btn-navy::after {
    content: '→';
    margin-left: 0.75rem;
    color: var(--red);
    transition: transform .25s ease;
}
.about-section .btn-navy:hover {
    color: var(--red);
    border-color: var(--red);
    background: transparent;
}
.about-section .btn-navy:hover::after { transform: translateX(4px); }
@media (max-width: 980px) {
    .about-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 0;
    }
    .about-visual-wrap {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
        aspect-ratio: 1.05;
    }
    .about-grid > div:last-child {
        margin: -2rem 1rem 0;
        padding: 2rem;
    }
    .about-grid > div:last-child::after { display: none; }
    .about-grid::before {
        top: -4.8rem;
        left: 0;
        font-size: clamp(3rem, 10vw, 5.4rem);
    }
}
@media (max-width: 640px) {
    .about-section { padding: 3.5rem 0; }
    .about-grid::before { display: none; }
    .about-visual-wrap::before,
    .about-visual-wrap::after { display: none; }
    .about-visual { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .about-grid > div:last-child {
        margin: 0;
        padding: 1.65rem 1.25rem;
        border-left-width: 4px;
    }
    .about-pillars { grid-template-columns: 1fr; }
    .about-pillar + .about-pillar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(3,26,71,0.18);
    }
}

/* ============================================
   EVENTS / ETKİNLİKLER
   ============================================ */
.events-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.events-head h2 { max-width: 560px; }
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.event-card {
    background: var(--paper);
    position: relative;
    transition: transform .35s, box-shadow .35s;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    display: block;
    text-decoration: none;
    color: inherit;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(3,26,71,0.35); }
.event-img {
    aspect-ratio: 16/10;
    background-position: center;
    background-size: cover;
    position: relative;
}
.event-date {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--paper);
    padding: 0.6rem 1rem;
    border-left: 3px solid var(--red);
    text-align: center;
    line-height: 1;
}
.event-date .d {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}
.event-date .m {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    margin-top: 3px;
    font-weight: 600;
}
.event-loc {
    position: absolute;
    bottom: 1rem; right: 1rem;
    background: rgba(3,26,71,0.92);
    color: #fff;
    padding: 0.45rem 0.85rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.event-body { padding: 1.5rem 1.75rem 1.85rem; }
.event-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: block;
}
.event-body h3 { font-size: 1.2rem; margin-bottom: 0.65rem; line-height: 1.3; }
.event-body p { color: var(--ink-muted); font-size: 0.9rem; line-height: 1.55; }
.event-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1rem;
    color: var(--navy);
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
}
.event-link::after { content: '→'; transition: transform .25s; }
.event-card:hover .event-link::after { transform: translateX(4px); }
@media (max-width: 968px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 568px) { .events-grid { grid-template-columns: 1fr; } }

/* ============================================
   NEWS / HABERLER
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}
.news-feature {
    background: var(--paper);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.news-feature .img {
    aspect-ratio: 4/3;
    background-position: center;
    background-size: cover;
    position: relative;
}
.news-feature .img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
}
.news-feature .body {
    padding: 2rem 2rem 2.25rem;
    flex: 1;
}
.news-feature .meta {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.news-feature h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}
.news-feature p { color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.6; }
.news-side { display: flex; flex-direction: column; gap: 1rem; }
.news-mini {
    background: var(--paper);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .25s;
    text-decoration: none;
    color: inherit;
}
.news-mini:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.news-mini .mini-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: center/cover no-repeat var(--ink-lighter, #e2e8f0);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.news-mini .mini-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
}
.news-mini .mini-body {
    padding: 1rem 1.25rem 1.25rem;
    border-left: 3px solid var(--navy);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: border-color .25s;
}
.news-mini:hover .mini-body { border-left-color: var(--red); }
.news-mini:last-child .mini-body { border-left-color: var(--red); }
.news-mini:last-child:hover .mini-body { border-left-color: var(--navy); }
.news-mini .meta { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-muted); font-weight: 600; margin-bottom: 0.5rem; }
.news-mini h3 { font-size: 1rem; line-height: 1.35; margin-bottom: auto; }
.news-mini .read {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.news-mini .read::after { content: '→'; }
@media (max-width: 968px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-side { flex-direction: column; }
}

/* ============================================
   YONETIM KURULU
   ============================================ */
.board-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--bg) 0%, #fff 52%, var(--bg) 52%, var(--bg) 100%);
}
.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1120px, calc(100% - 4rem));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,26,71,0.22), transparent);
    transform: translateX(-50%);
}
.board-section .section-head {
    position: relative;
    max-width: 860px;
    margin-bottom: 4.25rem;
}
.board-section .section-head::after {
    content: 'kurul';
    position: absolute;
    left: 50%;
    top: -3.8rem;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: clamp(4rem, 12vw, 8.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(3,26,71,0.045);
    z-index: 0;
    pointer-events: none;
}
.board-section .section-head > * {
    position: relative;
    z-index: 1;
}
.board-head { text-align: center; margin-bottom: 3.5rem; }
.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.board-card {
    position: relative;
    padding: 0.9rem;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(3,26,71,0.12);
    box-shadow: 0 24px 70px -55px rgba(3,26,71,0.72);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    overflow: hidden;
}
.board-card::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    height: 5px;
    background: linear-gradient(90deg, var(--navy) 0 52%, var(--red) 52% 100%);
    transform: scaleX(0.28);
    transform-origin: left;
    transition: transform .35s ease;
}
.board-card:hover {
    transform: translateY(-8px);
    border-color: rgba(3,26,71,0.28);
    box-shadow: 0 38px 90px -58px rgba(3,26,71,0.9);
}
.board-card:hover::after { transform: scaleX(1); }
.board-photo {
    height: 390px;
    background-position: center;
    background-size: cover;
    background-color: var(--navy-dark);
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    transition: transform .45s ease, filter .45s ease;
    filter: saturate(0.88) contrast(1.02);
}
.board-card:hover .board-photo {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.04);
}
.board-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(3,26,71,0.08) 56%, rgba(3,26,71,0.82) 100%),
        linear-gradient(90deg, rgba(190,0,2,0.16), transparent 42%);
}
.board-card .board-photo + .board-name {
    margin-top: -6.15rem;
}
.board-name {
    position: relative;
    z-index: 3;
    font-family: var(--serif);
    font-size: 1.34rem;
    font-weight: 700;
    color: #fff;
    margin: 0 1.05rem 0.2rem;
    line-height: 1.12;
    text-shadow: 0 2px 18px rgba(3,26,71,0.45);
}
.board-role {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    margin: 0 1.05rem 2.15rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.78);
    font-weight: 700;
    line-height: 1.35;
}
@media (max-width: 1100px) {
    .board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .board-section .section-head { margin-bottom: 2.5rem; }
    .board-grid { grid-template-columns: 1fr; }
    .board-photo { height: auto; aspect-ratio: 4/5; }
}

/* ============================================
   PRESS / BASIN
   ============================================ */
.press-list {
    max-width: var(--container-tight);
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}
.press-item {
    background: var(--paper);
    padding: 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1.75rem;
    align-items: center;
    border-left: 4px solid var(--red);
    transition: all .25s;
}
.press-item:hover { transform: translateX(4px); border-left-color: var(--navy); }
.press-date {
    font-family: var(--serif);
    color: var(--navy);
}
.press-date .d {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
}
.press-date .m {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-top: 4px;
    font-weight: 600;
}
.press-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.press-body .tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--red);
    font-weight: 700;
}
.press-action {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--line);
    padding: 0.7rem 1.1rem;
    transition: all .25s;
}
.press-action::after { content: '↓'; }
.press-item:hover .press-action { background: var(--navy); color: #fff; border-color: var(--navy); }
@media (max-width: 768px) {
    .press-item { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.25rem 1.5rem; }
    .press-action { justify-self: start; }
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: var(--paper);
    overflow: hidden;
    transition: all .35s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(3,26,71,0.3); }
.blog-card .img {
    aspect-ratio: 16/10;
    background-position: center;
    background-size: cover;
    position: relative;
}
.blog-card .img::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60%; height: 4px;
    background: var(--red);
}
.blog-card .body { padding: 1.75rem 1.85rem 2rem; }
.blog-card .meta {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 0.85rem;
    display: flex; gap: 0.75rem; align-items: center;
}
.blog-card .meta .cat { color: var(--red); }
.blog-card h3 { font-size: 1.225rem; line-height: 1.3; margin-bottom: 0.85rem; }
.blog-card .excerpt { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.blog-card .read {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.blog-card .read::after { content: '→'; transition: transform .25s; }
.blog-card:hover .read::after { transform: translateX(4px); }
@media (max-width: 968px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA BANDS
   ============================================ */
.cta-band {
    position: relative;
    padding: 4.5rem 0;
    color: #fff;
    overflow: hidden;
}
.cta-band-red { background: var(--red); }
.cta-band-navy { background: var(--navy-dark); }
.cta-band-split {
    background: linear-gradient(90deg, var(--navy-dark) 50%, var(--red) 50%);
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 8px;
    background: rgba(255,255,255,0.15);
}
.cta-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2.5rem; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-text .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.cta-text .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-band h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0;
    max-width: 700px;
}
.cta-band h2 em { font-style: italic; color: #E8C77C; font-weight: 500; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); }
.cta-band .btn-light {
    background: #fff;
    color: var(--navy);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    padding: 1rem 2.5rem;
}
.cta-band .btn-light:hover { background: #E8C77C; }

/* ============================================
   NEWSLETTER — dramatik, full-bleed
   ============================================ */
.newsletter {
    position: relative;
    padding: 6rem 0;
    background: var(--navy-dark);
    color: #fff;
    overflow: hidden;
}
.newsletter-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?w=1920&q=80');
    background-position: center;
    background-size: cover;
    opacity: 0.18;
    filter: grayscale(60%) contrast(1.1);
    z-index: 0;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--navy-dark) 0%, rgba(3,26,71,0.85) 60%, rgba(3,26,71,0.5) 100%),
        radial-gradient(ellipse at 100% 50%, rgba(190,0,2,0.3), transparent 60%);
    z-index: 1;
}
.newsletter::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 6px;
    background: var(--red);
    z-index: 3;
}
.newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem; align-items: center;
}
.newsletter .eyebrow { color: #E8C77C; }
.newsletter .eyebrow::before { background: #E8C77C; }
.newsletter h2 {
    color: #fff;
    font-size: clamp(1.875rem, 3.4vw, 2.85rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.newsletter h2 em { font-style: italic; color: var(--red); font-weight: 500; }
.newsletter h2 em.gold { color: #E8C77C; }
.newsletter-lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 480px;
    line-height: 1.55;
}
.newsletter-form-wrap { position: relative; }
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
}
.newsletter-form input {
    flex: 1;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: #fff;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
    padding: 1.35rem 2.5rem;
    background: var(--red);
    color: #fff;
    border: none;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition: background .25s;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.newsletter-form button:hover { background: var(--red-dark); }
.newsletter-foot {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 1.25rem;
    flex-wrap: wrap;
}
.newsletter-foot strong { color: #E8C77C; font-weight: 700; }
.newsletter-foot .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 50%; }
@media (max-width: 868px) {
    .newsletter { padding: 4rem 0; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   MEMBERSHIPS / ÜYE OLDUĞUMUZ KURULUŞLAR
   ============================================ */
.memberships {
    background: var(--paper);
    padding: 5rem 0 5.5rem;
    border-top: 1px solid var(--line);
    position: relative;
}
.memberships::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 220px; height: 4px;
    background: var(--red);
}
.memberships-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--line);
}
.memberships-head h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    line-height: 1.15;
    margin: 0;
}
.memberships-head h2 em { font-style: italic; color: var(--red); }
.memberships-head .meta { color: var(--ink-muted); font-size: 0.92rem; line-height: 1.6; }
.memberships-head .eyebrow { margin-bottom: 0.85rem; }
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
}
.member-card {
    display: flex; align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.25rem;
    background: var(--paper);
    transition: all .3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.member-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .3s ease;
}
.member-card:hover { background: var(--bg); }
.member-card:hover::after { width: 100%; }
.member-logo {
    width: 44px; height: 44px;
    background: var(--navy-dark);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    transition: all .3s;
}
.member-card:nth-child(3n+2) .member-logo { background: var(--red); }
.member-card:nth-child(5n+3) .member-logo { background: var(--gold); color: var(--navy-dark); }
.member-card:hover .member-logo { transform: scale(1.06); }
.member-info { flex: 1; min-width: 0; }
.member-name {
    font-family: var(--serif);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}
.member-sub {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    font-weight: 600;
}
@media (max-width: 1100px) { .memberships-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .memberships-head { grid-template-columns: 1fr; gap: 1.25rem; }
    .memberships-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SUBPAGES
   ============================================ */
.subpage {
    background: var(--paper);
}
.inner-hero {
    position: relative;
    padding: clamp(5rem, 9vw, 8rem) 0;
    color: #fff;
    background: var(--navy-dark);
    overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,26,71,0.96) 0%, rgba(3,26,71,0.86) 44%, rgba(3,26,71,0.58) 100%),
        var(--inner-hero-image, none);
    background-size: cover;
    background-position: center;
}
.inner-hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 7px;
    background: var(--red);
}
.inner-hero > .container {
    position: relative;
    z-index: 2;
}
.inner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}
.inner-hero h1 {
    color: #fff;
    max-width: 920px;
    font-size: clamp(2.6rem, 6vw, 5.3rem);
    line-height: 0.98;
}
.inner-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
}
.inner-hero-corporate { --inner-hero-image: url('https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?w=1800&q=80'); }
.inner-hero-events { --inner-hero-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=1800&q=80'); }
.inner-hero-bulletin { --inner-hero-image: url('https://images.unsplash.com/photo-1495020689067-958852a7765e?w=1800&q=80'); }

.corp-manifest {
    padding: 6rem 0;
    background: #fff;
}
.corp-manifest-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: stretch;
}
.corp-manifest aside {
    border-left: 5px solid var(--red);
    background: var(--bg);
    padding: 2rem;
}
.corp-manifest aside span {
    display: block;
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.corp-manifest aside strong {
    display: block;
    margin: 0.5rem 0 1rem;
    color: var(--red);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.corp-manifest-copy h2 {
    max-width: 760px;
    margin-bottom: 1.35rem;
    font-size: clamp(2rem, 4vw, 3.8rem);
}
.corp-manifest-copy p {
    max-width: 780px;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.mission-ledger {
    padding: 5rem 0;
    background: var(--bg);
}
.ledger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}
.ledger-item {
    padding: 2rem 2rem 2.4rem;
    border-right: 1px solid var(--line);
}
.ledger-item:last-child { border-right: none; }
.ledger-item span {
    color: var(--red);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    font-weight: 800;
}
.ledger-item h3 {
    margin: 1.2rem 0 0.75rem;
    color: var(--navy);
}
.ledger-item p {
    color: var(--ink-soft);
    line-height: 1.7;
}
.board-directory {
    padding: 6rem 0;
    background: #fff;
}
.directory-head {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3rem;
}
.directory-head h2 {
    max-width: 720px;
}
.directory-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
}
.directory-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    align-items: center;
}
.directory-photo {
    aspect-ratio: 1;
    background-position: center;
    background-size: cover;
    filter: grayscale(18%) contrast(1.05);
}
.directory-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.directory-card span {
    color: var(--red);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    text-transform: uppercase;
}
.directory-card p {
    margin-top: 0.75rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.impact-strip {
    background: var(--red);
    color: #fff;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.impact-grid div {
    padding: 1.8rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.22);
}
.impact-grid div:last-child { border-right: none; }
.impact-grid span {
    display: block;
    font-family: var(--serif);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}
.impact-grid p {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.event-archive {
    padding: 6rem 0;
    background: #fff;
}
.archive-head {
    max-width: 760px;
    margin-bottom: 3rem;
}
.event-river {
    display: grid;
    gap: 1px;
    background: var(--line);
}
.river-item {
    display: grid;
    grid-template-columns: 220px 300px 1fr;
    min-height: 220px;
    background: #fff;
}
.river-date {
    padding: 1.8rem;
    border-left: 5px solid var(--navy);
}
.river-date span {
    display: block;
    color: var(--red);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    text-transform: uppercase;
}
.river-date strong {
    display: block;
    margin-top: 0.8rem;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.5rem;
}
.river-image {
    background-position: center;
    background-size: cover;
}
.river-copy {
    padding: 1.8rem 2rem;
    align-self: center;
}
.river-copy span {
    color: var(--red);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}
.river-copy h3 {
    margin: 0.6rem 0 0.7rem;
    color: var(--navy);
}
.river-copy p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.newsroom-hero {
    padding: 6rem 0 4rem;
    background: var(--bg);
}
.newsroom-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 3rem;
    align-items: stretch;
}
.newsroom-title {
    padding: 3rem 0;
}
.newsroom-title h1 {
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    max-width: 640px;
}
.lead-news {
    display: grid;
    grid-template-rows: 360px auto;
    background: #fff;
    box-shadow: 0 28px 80px -62px rgba(3,26,71,0.8);
}
.lead-news-image {
    background-position: center;
    background-size: cover;
}
.lead-news-copy {
    padding: 2rem;
}
.lead-news-copy span,
.news-index-copy span,
.essay-card-copy span {
    color: var(--red);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}
.lead-news-copy h2 {
    margin: 0.7rem 0;
    color: var(--navy);
}
.lead-news-copy p,
.news-index-copy p,
.essay-card-copy p {
    color: var(--ink-soft);
    line-height: 1.68;
}
.news-index {
    padding: 4rem 0 6rem;
    background: #fff;
}
.news-index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}
.news-index-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: var(--bg);
}
.news-index-image {
    background-position: center;
    background-size: cover;
    min-height: 220px;
}
.news-index-copy {
    padding: 1.6rem;
}
.news-index-copy h3 {
    margin: 0.65rem 0;
    color: var(--navy);
}

.bulletin-archive {
    padding: 6rem 0;
    background: #fff;
}
.bulletin-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}
.bulletin-aside {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    padding: 2rem;
    background: var(--bg);
    border-left: 5px solid var(--red);
}
.bulletin-aside span {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.bulletin-aside h2 {
    margin-top: 1rem;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
}
.bulletin-list {
    display: grid;
    gap: 0.8rem;
}
.bulletin-card {
    display: grid;
    grid-template-columns: 150px 1fr 72px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid var(--line);
}
.bulletin-date {
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 700;
}
.bulletin-card span {
    color: var(--red);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}
.bulletin-card h3 {
    margin: 0.35rem 0;
    color: var(--navy);
}
.bulletin-card p {
    color: var(--ink-soft);
    line-height: 1.6;
}
.bulletin-card a,
.bulletin-card .bulletin-pdf-na {
    display: grid;
    place-items: center;
    height: 52px;
    border: 1px solid rgba(3,26,71,0.22);
    color: var(--red);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}
.bulletin-card .bulletin-pdf-na {
    color: var(--ink-muted);
    border-color: var(--line);
    cursor: default;
    opacity: 0.5;
}

.essay-feature {
    padding: 6rem 0;
    background:
        linear-gradient(90deg, rgba(3,26,71,0.055) 1px, transparent 1px),
        var(--bg);
    background-size: 110px 100%;
}
.essay-feature-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 3rem;
    align-items: center;
}
.essay-feature-image {
    min-height: 560px;
    background-position: center;
    background-size: cover;
    clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 8% 100%, 0 92%);
}
.essay-feature-copy {
    background: rgba(255,255,255,0.92);
    padding: clamp(2rem, 5vw, 4rem);
    margin-left: 0;
    border-left: 6px solid var(--navy);
}
.essay-feature-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    margin-bottom: 1.2rem;
}
.essay-feature-copy p {
    color: var(--ink-soft);
    line-height: 1.78;
    font-size: 1.05rem;
}
.essay-meta {
    margin-top: 1.5rem;
    color: var(--red);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}
.essay-grid-section {
    padding: 5rem 0 6rem;
    background: #fff;
}
.essay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.essay-card {
    border: 1px solid var(--line);
    background: #fff;
}
.essay-card-image {
    aspect-ratio: 16/10;
    background-position: center;
    background-size: cover;
}
.essay-card-copy {
    padding: 1.55rem;
}
.essay-card-copy h3 {
    margin: 0.65rem 0;
    color: var(--navy);
}
.essay-card-copy strong {
    display: block;
    margin-top: 1.2rem;
    color: var(--ink);
    font-size: 0.86rem;
}

.contact-hero {
    padding: 6rem 0;
    background: var(--navy-dark);
    color: #fff;
}
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: end;
}
.contact-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
}
.contact-routes {
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,0.15);
}
.contact-routes div {
    padding: 1.35rem;
    background: rgba(255,255,255,0.06);
}
.contact-routes span {
    display: block;
    color: #E8C77C;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.contact-routes a,
.contact-routes p {
    color: rgba(255,255,255,0.86);
    line-height: 1.55;
}
.contact-workspace {
    padding: 6rem 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
}
.contact-grid aside {
    background: #fff;
    padding: 2rem;
    border-top: 5px solid var(--red);
    align-self: start;
}
.contact-grid aside span {
    color: var(--red);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}
.contact-grid aside h2 {
    margin: 1rem 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.contact-grid aside p {
    color: var(--ink-soft);
    line-height: 1.7;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--line);
}
.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.contact-form .full,
.contact-form .form-alert {
    grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--bg);
    padding: 1rem;
    font: inherit;
    color: var(--ink);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    background: #fff;
}
.contact-form button {
    justify-self: start;
}
.hp-field {
    display: none !important;
}
.form-alert {
    padding: 1rem 1.15rem;
    font-weight: 700;
}
.form-alert-success { background: rgba(22, 163, 74, 0.1); color: #166534; }
.form-alert-danger { background: rgba(190, 0, 2, 0.1); color: var(--red); }

.river-item,
.lead-news,
.news-index-card,
.essay-card,
.directory-card {
    color: inherit;
    text-decoration: none;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.river-item:hover,
.news-index-card:hover,
.essay-card:hover,
.directory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px -64px rgba(3,26,71,0.85);
    z-index: 2;
}
.lead-news:hover {
    transform: translateY(-4px);
}
.essay-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.7rem;
    padding: 1rem 1.45rem;
    border: 1px solid rgba(3,26,71,0.2);
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}
.essay-feature-link::after {
    content: '→';
    color: var(--red);
}
.essay-feature-link:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

/* Detail pages */
.detail-page {
    background: #fff;
}
.detail-missing {
    padding: 8rem 0;
    background: var(--bg);
}
.detail-missing h1 {
    max-width: 780px;
    margin: 1rem 0;
    font-size: 3.6rem;
}
.detail-missing p {
    max-width: 560px;
    margin-bottom: 2rem;
    color: var(--ink-soft);
    line-height: 1.7;
}
.detail-kicker {
    display: inline-flex;
    margin-bottom: 1.15rem;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.detail-author {
    display: inline-grid;
    gap: 0.25rem;
    margin-top: 1.8rem;
    padding: 1rem 1.35rem;
    border-left: 4px solid var(--red);
    background: #fff;
}
.detail-author span {
    color: var(--ink-muted);
    font-size: 0.78rem;
}
.detail-author strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.18rem;
}
.blog-detail-hero {
    padding: 6rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(3,26,71,0.055) 1px, transparent 1px),
        var(--bg);
    background-size: 108px 100%;
}
.blog-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 0;
    align-items: center;
}
.blog-detail-title {
    position: relative;
    z-index: 2;
    padding: 4rem;
    background: rgba(255,255,255,0.94);
    border-left: 6px solid var(--navy);
    box-shadow: 0 34px 90px -72px rgba(3,26,71,0.9);
}
.blog-detail-title h1 {
    font-size: 4.5rem;
    line-height: 0.98;
    margin-bottom: 1.25rem;
}
.blog-detail-title p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}
.blog-detail-image {
    min-height: 620px;
    margin-left: -3rem;
    background-position: center;
    background-size: cover;
    clip-path: polygon(7% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 9%);
}
.detail-body {
    padding: 5.5rem 0;
    background: #fff;
}
.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 760px);
    gap: 4rem;
    justify-content: center;
    align-items: start;
}
.detail-aside {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
    display: grid;
    gap: 1rem;
}
.detail-aside span,
.event-detail-sidebar span,
.news-brief span,
.profile-signal span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.detail-aside p,
.event-detail-sidebar p,
.profile-signal p {
    color: var(--ink-soft);
    line-height: 1.7;
}
.detail-aside a {
    display: inline-flex;
    margin-top: 1.2rem;
    color: var(--navy);
    font-weight: 800;
}
.sidebar-author-card {
    display: grid !important;
    gap: 0.65rem;
    margin-top: 0 !important;
    padding: 1.5rem;
    border-top: 5px solid var(--red);
    background: var(--bg);
}
.sidebar-author-photo {
    width: 86px;
    height: 86px;
    margin-bottom: 0.3rem;
    background-position: center;
    background-size: cover;
    filter: grayscale(12%) contrast(1.04);
}
.sidebar-author-card span,
.detail-toc span {
    margin-bottom: 0;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.sidebar-author-card strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.1;
}
.sidebar-author-card p {
    margin: 0;
    color: var(--ink-muted);
    line-height: 1.55;
}
.detail-toc {
    display: grid;
    gap: 0.35rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
}
.detail-toc a {
    display: flex;
    margin-top: 0;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-weight: 700;
}
.detail-toc a:last-child {
    border-bottom: none;
}
.detail-toc a:hover {
    color: var(--red);
}
.side-summary-card {
    padding: 1.5rem;
    background: var(--bg);
    border-top: 5px solid var(--navy);
}
.side-summary-card span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.side-summary-card h2 {
    margin-bottom: 0.8rem;
    color: var(--navy);
    font-size: 1.85rem;
}
.side-summary-card p {
    color: var(--ink-soft);
    line-height: 1.65;
}
.detail-article {
    color: var(--ink);
}
.detail-article h2 {
    scroll-margin-top: calc(var(--header-h) + 1.5rem);
    margin: 2.2rem 0 0.9rem;
    color: var(--navy);
    font-size: 2.2rem;
}
.detail-article p {
    margin-bottom: 1.35rem;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.86;
}
.detail-article .detail-lede {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.5;
}
.detail-article blockquote {
    margin: 2.4rem 0;
    padding: 2rem 2.3rem;
    border-left: 5px solid var(--red);
    background: var(--bg);
}
.detail-article blockquote p {
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.28;
}
.detail-related {
    padding: 4.8rem 0 6rem;
    background: var(--bg);
}
.detail-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}
.detail-related-head h2 {
    font-size: 2.6rem;
}
.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}
.detail-related-card {
    min-height: 210px;
    padding: 1.8rem;
    background: #fff;
}
.detail-related-card span {
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}
.detail-related-card h3 {
    margin: 1rem 0 1.2rem;
    color: var(--navy);
    font-size: 1.45rem;
}
.detail-related-card p {
    color: var(--ink-muted);
}
.detail-related-card:hover {
    background: var(--navy);
}
.detail-related-card:hover h3,
.detail-related-card:hover p {
    color: #fff;
}

.event-detail-hero {
    position: relative;
    min-height: 680px;
    padding: 7rem 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(3,26,71,0.94) 0%, rgba(3,26,71,0.78) 42%, rgba(3,26,71,0.2) 100%),
        var(--event-detail-image);
    background-position: center;
    background-size: cover;
}
.event-detail-panel {
    max-width: 760px;
    padding: 3rem;
    background: rgba(3,26,71,0.74);
    border-left: 6px solid var(--red);
    backdrop-filter: blur(6px);
}
.event-detail-panel h1 {
    color: #fff;
    font-size: 4.4rem;
    line-height: 0.98;
}
.event-detail-panel p {
    max-width: 620px;
    margin-top: 1.2rem;
    color: rgba(255,255,255,0.78);
    font-size: 1.06rem;
    line-height: 1.75;
}
.event-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: 1px solid rgba(255,255,255,0.2);
}
.event-detail-facts div {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.event-detail-facts span {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 0.76rem;
}
.event-detail-facts strong {
    display: block;
    margin-top: 0.3rem;
    color: #fff;
}
.event-detail-body {
    padding: 6rem 0;
    background: #fff;
}
.event-detail-grid,
.news-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap: 4rem;
    justify-content: center;
    align-items: start;
}
.profile-story-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 760px);
    gap: 4rem;
    justify-content: center;
    align-items: start;
}
.event-detail-sidebar,
.profile-signal {
    padding: 2rem;
    background: var(--bg);
    border-top: 5px solid var(--navy);
}
.event-detail-sidebar h2,
.profile-signal h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}
.event-detail-sidebar .btn {
    margin-top: 1.5rem;
}
.process-timeline,
.profile-responsibilities {
    display: grid;
    gap: 1px;
    margin: 2.3rem 0;
    background: var(--line);
}
.process-timeline div,
.profile-responsibilities div {
    display: grid;
    grid-template-columns: 60px 160px 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.25rem;
    background: #fff;
}
.process-timeline span,
.profile-responsibilities span {
    color: var(--red);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 800;
}
.process-timeline strong,
.profile-responsibilities strong {
    color: var(--navy);
}
.process-timeline p,
.profile-responsibilities p {
    margin: 0;
}

.news-detail-hero {
    padding: 5.5rem 0 0;
    background: #fff;
}
.news-detail-mast {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 4rem;
    align-items: end;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
}
.news-detail-mast h1 {
    max-width: 960px;
    font-size: 4.35rem;
    line-height: 1;
}
.news-detail-mast p {
    color: var(--ink-soft);
    line-height: 1.75;
}
.news-detail-image {
    height: 540px;
    margin-top: 2.5rem;
    background-position: center;
    background-size: cover;
}
.news-detail-body {
    padding: 5.5rem 0;
    background: var(--bg);
}
.news-brief {
    padding: 2rem;
    background: #fff;
    border-left: 5px solid var(--red);
}
.news-brief ul {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}
.news-brief li {
    color: var(--ink-soft);
    line-height: 1.6;
}
.side-summary-card.news-brief {
    border-top-color: var(--red);
    border-left: none;
}
.news-pullout {
    margin: 2.3rem 0;
    padding: 2rem;
    background: var(--navy);
    color: #fff;
}
.news-pullout strong {
    color: #E8C77C;
    font-family: var(--serif);
    font-size: 1.4rem;
}
.news-pullout p {
    margin: 0.8rem 0 0;
    color: rgba(255,255,255,0.8);
}

.profile-detail-hero {
    padding: 6rem 0;
    background:
        linear-gradient(90deg, rgba(3,26,71,0.055) 1px, transparent 1px),
        var(--bg);
    background-size: 108px 100%;
}
.profile-detail-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 5rem;
    align-items: center;
}
.profile-portrait-wrap {
    position: relative;
}
.profile-portrait {
    height: 560px;
    background-position: center;
    background-size: cover;
    filter: grayscale(12%) contrast(1.05);
    clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 9% 100%, 0 91%);
}
.profile-copy {
    max-width: 760px;
}
.profile-copy h1 {
    font-size: 5rem;
    line-height: 0.96;
}
.profile-copy > strong {
    display: block;
    margin-top: 1rem;
    color: var(--red);
    font-size: 0.9rem;
    text-transform: uppercase;
}
.profile-copy p {
    margin-top: 1.4rem;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
}
.profile-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}
.profile-focus span {
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(3,26,71,0.16);
    background: #fff;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}
.profile-author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.4rem;
    padding: 0.95rem 1.25rem;
    background: var(--navy);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}
.profile-author-link::after {
    content: '→';
    color: #E8C77C;
}
.profile-detail-body {
    padding: 5.5rem 0;
    background: #fff;
}
.profile-responsibilities div {
    grid-template-columns: 160px 1fr;
}
.profile-writings-inline {
    margin-top: 2.6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.profile-writings-inline h2 {
    margin-top: 0;
}
.profile-writings-inline a {
    display: grid;
    gap: 0.4rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
}
.profile-writings-inline a span {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.profile-writings-inline a strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.35rem;
}
.profile-writings-inline a:hover strong {
    color: var(--red);
}
.profile-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}
.profile-mini-card {
    padding: 1.1rem;
    background: #fff;
}
.profile-mini-photo {
    aspect-ratio: 4/3;
    margin-bottom: 1rem;
    background-position: center;
    background-size: cover;
    filter: grayscale(16%);
}
.profile-mini-card span {
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}
.profile-mini-card h3 {
    margin-top: 0.4rem;
    color: var(--navy);
    font-size: 1.22rem;
}
.profile-mini-card:hover {
    background: var(--navy);
}
.profile-mini-card:hover h3,
.profile-mini-card:hover span {
    color: #fff;
}

.author-page {
    background: #fff;
}
.author-hero {
    padding: 6rem 0;
    background:
        linear-gradient(90deg, rgba(3,26,71,0.055) 1px, transparent 1px),
        var(--bg);
    background-size: 108px 100%;
}
.author-hero-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 4.5rem;
    align-items: center;
}
.author-photo {
    height: 460px;
    background-position: center;
    background-size: cover;
    filter: grayscale(14%) contrast(1.05);
    clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 8% 100%, 0 91%);
}
.author-copy h1 {
    max-width: 760px;
    font-size: 4.8rem;
    line-height: 0.96;
}
.author-copy > strong {
    display: block;
    margin-top: 1rem;
    color: var(--red);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}
.author-copy p {
    max-width: 700px;
    margin-top: 1.35rem;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.75;
}
.author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}
.author-bio {
    padding: 5rem 0;
    background: #fff;
}
.author-bio-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 760px);
    gap: 4rem;
    justify-content: center;
    align-items: start;
}
.author-bio aside {
    padding: 1.8rem;
    background: var(--bg);
    border-top: 5px solid var(--red);
}
.author-bio aside span {
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}
.author-bio aside p {
    margin-top: 0.8rem;
    color: var(--ink-soft);
    line-height: 1.65;
}
.author-writings {
    padding: 5rem 0 6rem;
    background: var(--bg);
}
.author-writing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
}
.author-writing-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 240px;
    background: #fff;
}
.author-writing-image {
    background-position: center;
    background-size: cover;
}
.author-writing-card div:last-child {
    padding: 1.6rem;
}
.author-writing-card span {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.author-writing-card h3 {
    margin: 0.75rem 0;
    color: var(--navy);
    font-size: 1.55rem;
}
.author-writing-card p {
    color: var(--ink-soft);
    line-height: 1.65;
}
.author-writing-card:hover {
    background: var(--navy);
}
.author-writing-card:hover h3,
.author-writing-card:hover p {
    color: #fff;
}

.content-cta {
    padding: 0 0 5rem;
    background: var(--bg);
}
.content-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem);
    background:
        linear-gradient(110deg, rgba(3,26,71,0.96) 0%, rgba(3,26,71,0.9) 62%, rgba(190,0,2,0.86) 100%),
        url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?w=1400&q=80');
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}
.content-cta h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
}
.content-cta p {
    max-width: 680px;
    margin-top: 0.9rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}
.content-cta .btn {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .inner-hero-grid,
    .corp-manifest-grid,
    .directory-head,
    .newsroom-grid,
    .bulletin-layout,
    .essay-feature-grid,
    .contact-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .ledger-grid,
    .impact-grid,
    .essay-grid {
        grid-template-columns: 1fr 1fr;
    }
    .directory-list,
    .news-index-grid {
        grid-template-columns: 1fr;
    }
    .river-item {
        grid-template-columns: 170px 220px 1fr;
    }
    .essay-feature-copy {
        margin-left: 0;
    }
    .blog-detail-hero-grid,
    .event-detail-grid,
    .news-detail-mast,
    .news-detail-grid,
    .profile-detail-grid,
    .profile-story-grid,
    .detail-layout,
    .author-hero-grid,
    .author-bio-grid {
        grid-template-columns: 1fr;
    }
    .blog-detail-image {
        margin-left: 0;
        min-height: 420px;
    }
    .detail-aside {
        position: static;
    }
    .profile-mini-grid,
    .detail-related-grid,
    .author-writing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .content-cta-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 680px) {
    .inner-hero { padding: 4rem 0; }
    .ledger-grid,
    .impact-grid,
    .essay-grid {
        grid-template-columns: 1fr;
    }
    .ledger-item,
    .impact-grid div {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .directory-card,
    .river-item,
    .news-index-card,
    .bulletin-card,
    .contact-form {
        grid-template-columns: 1fr;
    }
    .river-image,
    .news-index-image {
        min-height: 240px;
    }
    .bulletin-aside {
        position: static;
    }
    .essay-feature-image {
        min-height: 360px;
    }
    .detail-missing h1,
    .blog-detail-title h1,
    .event-detail-panel h1,
    .news-detail-mast h1,
    .profile-copy h1,
    .author-copy h1 {
        font-size: 2.7rem;
    }
    .blog-detail-title,
    .event-detail-panel {
        padding: 1.6rem;
    }
    .event-detail-facts,
    .process-timeline div,
    .profile-responsibilities div,
    .detail-related-grid,
    .profile-mini-grid,
    .author-writing-grid,
    .author-writing-card {
        grid-template-columns: 1fr;
    }
    .event-detail-hero {
        min-height: auto;
        padding: 4rem 0;
    }
    .news-detail-image,
    .profile-portrait,
    .author-photo {
        height: 360px;
    }
    .content-cta {
        padding-bottom: 3rem;
    }
    .content-cta .btn {
        justify-self: start;
        white-space: normal;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #07121F;
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 50%, var(--navy) 50%, var(--navy) 100%);
    z-index: 5;
}
/* Dramatic world map background — düz harita, equirectangular */
.footer-decor {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500' fill='%23ffffff'><g><circle cx='150' cy='100' r='1.6'/><circle cx='160' cy='105' r='1.6'/><circle cx='170' cy='110' r='1.6'/><circle cx='180' cy='115' r='1.6'/><circle cx='190' cy='120' r='1.6'/><circle cx='155' cy='115' r='1.6'/><circle cx='165' cy='120' r='1.6'/><circle cx='175' cy='125' r='1.6'/><circle cx='145' cy='130' r='1.6'/><circle cx='155' cy='135' r='1.6'/><circle cx='165' cy='140' r='1.6'/><circle cx='175' cy='145' r='1.6'/><circle cx='185' cy='140' r='1.6'/><circle cx='140' cy='150' r='1.6'/><circle cx='150' cy='155' r='1.6'/><circle cx='160' cy='160' r='1.6'/><circle cx='170' cy='165' r='1.6'/><circle cx='180' cy='160' r='1.6'/><circle cx='135' cy='170' r='1.6'/><circle cx='145' cy='175' r='1.6'/><circle cx='155' cy='180' r='1.6'/><circle cx='165' cy='180' r='1.6'/><circle cx='150' cy='195' r='1.6'/><circle cx='160' cy='200' r='1.6'/><circle cx='170' cy='205' r='1.6'/><circle cx='180' cy='210' r='1.6'/><circle cx='155' cy='220' r='1.6'/><circle cx='165' cy='225' r='1.6'/><circle cx='175' cy='230' r='1.6'/><circle cx='185' cy='235' r='1.6'/><circle cx='160' cy='245' r='1.6'/><circle cx='170' cy='250' r='1.6'/><circle cx='180' cy='255' r='1.6'/><circle cx='175' cy='270' r='1.6'/><circle cx='185' cy='275' r='1.6'/><circle cx='195' cy='270' r='1.6'/><circle cx='200' cy='285' r='1.6'/><circle cx='210' cy='290' r='1.6'/><circle cx='205' cy='305' r='1.6'/><circle cx='215' cy='310' r='1.6'/><circle cx='225' cy='320' r='1.6'/><circle cx='235' cy='335' r='1.6'/><circle cx='240' cy='350' r='1.6'/><circle cx='250' cy='365' r='1.6'/><circle cx='260' cy='380' r='1.6'/><circle cx='270' cy='395' r='1.6'/><circle cx='280' cy='400' r='1.6'/><circle cx='290' cy='405' r='1.6'/><circle cx='300' cy='410' r='1.6'/><circle cx='305' cy='420' r='1.6'/><circle cx='480' cy='90' r='1.6'/><circle cx='490' cy='95' r='1.6'/><circle cx='500' cy='100' r='1.6'/><circle cx='510' cy='105' r='1.6'/><circle cx='520' cy='110' r='1.6'/><circle cx='530' cy='115' r='1.6'/><circle cx='540' cy='120' r='1.6'/><circle cx='495' cy='110' r='1.6'/><circle cx='505' cy='115' r='1.6'/><circle cx='515' cy='120' r='1.6'/><circle cx='525' cy='125' r='1.6'/><circle cx='535' cy='130' r='1.6'/><circle cx='485' cy='125' r='1.6'/><circle cx='495' cy='130' r='1.6'/><circle cx='505' cy='135' r='1.6'/><circle cx='515' cy='140' r='1.6'/><circle cx='525' cy='145' r='1.6'/><circle cx='535' cy='150' r='1.6'/><circle cx='480' cy='140' r='1.6'/><circle cx='490' cy='145' r='1.6'/><circle cx='500' cy='150' r='1.6'/><circle cx='510' cy='155' r='1.6'/><circle cx='520' cy='160' r='1.6'/><circle cx='530' cy='160' r='1.6'/><circle cx='540' cy='165' r='1.6'/><circle cx='540' cy='180' r='1.6'/><circle cx='550' cy='185' r='1.6'/><circle cx='560' cy='190' r='1.6'/><circle cx='570' cy='195' r='1.6'/><circle cx='565' cy='205' r='1.6'/><circle cx='575' cy='210' r='1.6'/><circle cx='585' cy='215' r='1.6'/><circle cx='580' cy='225' r='1.6'/><circle cx='590' cy='230' r='1.6'/><circle cx='600' cy='235' r='1.6'/><circle cx='610' cy='240' r='1.6'/><circle cx='585' cy='245' r='1.6'/><circle cx='595' cy='250' r='1.6'/><circle cx='605' cy='255' r='1.6'/><circle cx='615' cy='260' r='1.6'/><circle cx='590' cy='270' r='1.6'/><circle cx='600' cy='275' r='1.6'/><circle cx='610' cy='280' r='1.6'/><circle cx='620' cy='285' r='1.6'/><circle cx='580' cy='285' r='1.6'/><circle cx='590' cy='290' r='1.6'/><circle cx='600' cy='295' r='1.6'/><circle cx='585' cy='305' r='1.6'/><circle cx='595' cy='310' r='1.6'/><circle cx='575' cy='320' r='1.6'/><circle cx='585' cy='325' r='1.6'/><circle cx='580' cy='340' r='1.6'/><circle cx='590' cy='345' r='1.6'/><circle cx='585' cy='360' r='1.6'/><circle cx='595' cy='370' r='1.6'/><circle cx='590' cy='380' r='1.6'/><circle cx='580' cy='390' r='1.6'/><circle cx='560' cy='180' r='1.6'/><circle cx='580' cy='185' r='1.6'/><circle cx='600' cy='180' r='1.6'/><circle cx='620' cy='175' r='1.6'/><circle cx='640' cy='180' r='1.6'/><circle cx='660' cy='185' r='1.6'/><circle cx='680' cy='190' r='1.6'/><circle cx='700' cy='195' r='1.6'/><circle cx='720' cy='200' r='1.6'/><circle cx='730' cy='185' r='1.6'/><circle cx='750' cy='180' r='1.6'/><circle cx='770' cy='190' r='1.6'/><circle cx='790' cy='200' r='1.6'/><circle cx='810' cy='210' r='1.6'/><circle cx='830' cy='220' r='1.6'/><circle cx='730' cy='205' r='1.6'/><circle cx='745' cy='215' r='1.6'/><circle cx='760' cy='225' r='1.6'/><circle cx='780' cy='235' r='1.6'/><circle cx='800' cy='245' r='1.6'/><circle cx='820' cy='250' r='1.6'/><circle cx='840' cy='260' r='1.6'/><circle cx='860' cy='270' r='1.6'/><circle cx='880' cy='275' r='1.6'/><circle cx='830' cy='280' r='1.6'/><circle cx='850' cy='290' r='1.6'/><circle cx='870' cy='300' r='1.6'/><circle cx='890' cy='305' r='1.6'/><circle cx='900' cy='320' r='1.6'/><circle cx='850' cy='100' r='1.6'/><circle cx='870' cy='105' r='1.6'/><circle cx='890' cy='110' r='1.6'/><circle cx='910' cy='115' r='1.6'/><circle cx='930' cy='120' r='1.6'/><circle cx='950' cy='125' r='1.6'/><circle cx='870' cy='120' r='1.6'/><circle cx='890' cy='125' r='1.6'/><circle cx='910' cy='130' r='1.6'/><circle cx='930' cy='140' r='1.6'/><circle cx='950' cy='150' r='1.6'/><circle cx='970' cy='160' r='1.6'/><circle cx='890' cy='145' r='1.6'/><circle cx='910' cy='155' r='1.6'/><circle cx='930' cy='165' r='1.6'/><circle cx='950' cy='175' r='1.6'/><circle cx='970' cy='185' r='1.6'/><circle cx='800' cy='400' r='1.6'/><circle cx='820' cy='410' r='1.6'/><circle cx='840' cy='420' r='1.6'/><circle cx='860' cy='430' r='1.6'/><circle cx='880' cy='440' r='1.6'/><circle cx='820' cy='430' r='1.6'/><circle cx='840' cy='440' r='1.6'/><circle cx='860' cy='450' r='1.6'/><circle cx='840' cy='455' r='1.6'/><circle cx='855' cy='460' r='1.6'/><circle cx='200' cy='400' r='1.6'/><circle cx='220' cy='405' r='1.6'/><circle cx='240' cy='415' r='1.6'/><circle cx='260' cy='420' r='1.6'/><circle cx='280' cy='430' r='1.6'/><circle cx='220' cy='420' r='1.6'/><circle cx='240' cy='430' r='1.6'/><circle cx='260' cy='440' r='1.6'/><circle cx='240' cy='450' r='1.6'/><circle cx='260' cy='460' r='1.6'/></g></svg>");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(3,41,107,0.45), transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(7,18,31,0.4) 70%, #07121F 100%);
    pointer-events: none;
    z-index: 1;
}
.footer-inner { position: relative; z-index: 2; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.footer-brand .logo-mark { width: 44px; height: 44px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.5); }
.footer-brand .site-logo { height: 130px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 380px; margin-bottom: 1.5rem; color: rgba(255,255,255,0.65); }
.footer-title {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 700;
    color: #E8C77C;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.85rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--red);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: #E8C77C; padding-left: 0.4rem; }
.footer-contact { list-style: none; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
}
.footer-contact li .material-icons-outlined { color: var(--red); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    transition: all .25s;
}
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-bottom {
    padding: 1.75rem 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.45); justify-self: start; }
.footer-credits { justify-self: center; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.footer-credits #fcreds { display: inline-block; }
.footer-credits #fcreds a { color: #E8C77C !important; font-weight: 600; }
.footer-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    display: flex; gap: 1.5rem;
    justify-self: end;
}
.footer-meta a { transition: color .2s; }
.footer-meta a:hover { color: #E8C77C; }
@media (max-width: 968px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-bottom { grid-template-columns: 1fr; text-align: center; } .footer-copyright, .footer-credits, .footer-meta { justify-self: center; } }
@media (max-width: 568px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   VOLUNTEER INFO LIST
   ============================================ */
.volunteer-info-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.volunteer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.volunteer-info-list li::before {
    content: '→';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
}

/* ============================================
   LEGAL PAGES (Gizlilik, KVKK, Şartlar)
   ============================================ */
.legal-page .legal-hero {
    background: var(--navy);
    padding: 4rem 0 3rem;
    color: #fff;
}
.legal-page .legal-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}
.legal-page .legal-hero .legal-meta {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}
.legal-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 0 6rem;
}
.legal-body h2 {
    font-size: 1.25rem;
    margin: 2.5rem 0 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    color: var(--navy);
}
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body p { margin-bottom: 0.9rem; color: var(--ink-soft); line-height: 1.8; }
.legal-body ul {
    margin: 0.5rem 0 1rem;
    padding: 0;
    list-style: none;
}
.legal-body ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--ink-soft);
    line-height: 1.7;
}
.legal-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.65em;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
}
.legal-body strong { color: var(--ink); }
.legal-box {
    background: var(--bg);
    border-left: 4px solid var(--navy);
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
    border-radius: 0 4px 4px 0;
}
.legal-box p { margin: 0; }
.legal-toc {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
}
.legal-toc h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.legal-toc ol {
    margin: 0; padding-left: 1.25rem;
    display: flex; flex-direction: column; gap: 0.4rem;
}
.legal-toc ol li { font-size: 0.9rem; }
.legal-toc ol li a { color: var(--navy); text-decoration: none; }
.legal-toc ol li a:hover { color: var(--red); }

/* ============================================
   UTIL
   ============================================ */
::selection { background: var(--red); color: #fff; }
