/* =====================================================================
   Yağız Efe'ye Umut Ol — Tasarım Sistemi
   Tema: gün doğumu / umut. Gökyüzü mavisi + sıcak güneş sarısı.
   ===================================================================== */

/* ---------- 1. Değişkenler ------------------------------------------ */
:root {
    /* Gökyüzü — güven, sakinlik */
    --sky-50:  #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-900: #0c4a6e;

    /* Güneş — umut, sıcaklık, harekete geçirme */
    --sun-100: #fef3c7;
    --sun-300: #fcd34d;
    --sun-400: #fbbf24;
    --sun-500: #f59e0b;
    --sun-600: #d97706;

    /* Kalp — bağış eylemi */
    --rose-500: #f43f5e;
    --rose-600: #e11d48;

    /* Nötr */
    --ink:      #0b1b2b;
    --ink-soft: #334155;
    --muted:    #64748b;
    --line:     #e2e8f0;
    --surface:  #ffffff;
    --canvas:   #f7fbff;

    --ok: #059669;

    /* Yumuşak gölgeler */
    --sh-xs: 0 1px 2px rgba(12, 74, 110, .06);
    --sh-sm: 0 2px 8px rgba(12, 74, 110, .06);
    --sh-md: 0 8px 24px rgba(12, 74, 110, .08);
    --sh-lg: 0 18px 48px rgba(12, 74, 110, .10);
    --sh-xl: 0 30px 70px rgba(12, 74, 110, .14);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 999px;

    --wrap: 1180px;
    --gut: clamp(18px, 4vw, 40px);

    --ease: cubic-bezier(.22, 1, .36, 1);

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
            Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- 2. Sıfırlama -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0rem;
    line-height: 1.75;
    color: var(--ink-soft);
    background: var(--canvas);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-700); text-decoration: none; }
a:hover { color: var(--sky-500); }
button { font: inherit; }

h1, h2, h3, h4, h5 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 .6em;
    text-wrap: balance;
}
h1 { font-size: clamp(1.95rem, 1.3rem + 2.5vw, 3.05rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 1.1rem + 2.1vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }

::selection { background: var(--sun-300); color: var(--ink); }

:focus-visible {
    outline: 3px solid var(--sun-500);
    outline-offset: 3px;
    border-radius: 4px;
}

.ico { width: 1.25em; height: 1.25em; flex: none; }

/* Yalnızca ekran okuyucular için */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 12px; top: -100px; z-index: 200;
    background: var(--ink); color: #fff; padding: 12px 20px;
    border-radius: var(--r-sm); transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. Düzen ------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: linear-gradient(180deg, var(--sky-50), #fff); }

.grid { display: grid; gap: clamp(18px, 2.5vw, 30px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.center { text-align: center; }
.lede {
    font-size: clamp(1.05rem, 1rem + .35vw, 1.3rem);
    color: var(--ink-soft);
    line-height: 1.7;
}
.measure { max-width: 68ch; }
.measure-narrow { max-width: 60ch; }
.center .measure, .center .measure-narrow { margin-inline: auto; }

/* Bölüm başlığı */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--sky-600);
    background: var(--sky-100); padding: 7px 16px; border-radius: var(--r-full);
    margin-bottom: 18px;
}
.eyebrow--sun { color: var(--sun-600); background: var(--sun-100); }

.section-head { max-width: 62ch; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }

/* ---------- 4. Düğmeler --------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 800; font-size: .97rem; line-height: 1;
    padding: 16px 30px; border-radius: var(--r-full);
    border: 2px solid transparent; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-donate {
    background: linear-gradient(135deg, var(--sun-500), var(--rose-500));
    color: #fff; box-shadow: 0 10px 26px rgba(244, 63, 94, .30);
}
.btn-donate:hover { color: #fff; box-shadow: 0 16px 38px rgba(244, 63, 94, .40); }

.btn-primary {
    background: linear-gradient(135deg, var(--sky-600), var(--sky-400));
    color: #fff; box-shadow: 0 10px 26px rgba(2, 132, 199, .28);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 38px rgba(2, 132, 199, .38); }

.btn-ghost {
    background: rgba(255, 255, 255, .8);
    color: var(--sky-700); border-color: var(--sky-200);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; border-color: var(--sky-400); color: var(--sky-700); }

.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .3); }
.btn-wa:hover { color: #fff; }

.btn-sm { padding: 11px 20px; font-size: .87rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- 5. Üst çubuk -------------------------------------------- */
.topbar {
    background: linear-gradient(90deg, var(--sky-700), var(--sky-500));
    color: #fff; font-size: .82rem; font-weight: 600;
    padding: 9px 0; text-align: center;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar strong { color: var(--sun-300); }

.header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}
.header.is-stuck { box-shadow: var(--sh-md); }
.header .wrap { display: flex; align-items: center; gap: 20px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
    width: 46px; height: 46px; border-radius: 15px; flex: none;
    background: linear-gradient(140deg, var(--sky-500), var(--sun-400));
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 6px 18px rgba(2, 132, 199, .28);
}
.brand-mark .ico { width: 24px; height: 24px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name b { font-size: 1.08rem; font-weight: 900; color: var(--ink); letter-spacing: -.02em; }
.brand-name span {
    font-size: .68rem; font-weight: 800; letter-spacing: .18em;
    text-transform: uppercase; color: var(--sky-600); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
    padding: 10px 15px; border-radius: var(--r-full);
    font-size: .91rem; font-weight: 700; color: var(--ink-soft);
    transition: background .18s, color .18s;
}
.nav a:hover { background: var(--sky-50); color: var(--sky-700); }
.nav a[aria-current="page"] { background: var(--sky-100); color: var(--sky-700); }

/* Menü öğeleri arttıkça dar masaüstünde taşmasın diye biraz sıkışır */
@media (min-width: 1024px) and (max-width: 1240px) {
    .nav a { padding: 10px 10px; font-size: .86rem; }
}

.nav-toggle {
    display: none; width: 46px; height: 46px; border-radius: 13px;
    border: 1px solid var(--line); background: #fff; color: var(--ink);
    place-items: center; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 19px; height: 2px; background: currentColor;
    border-radius: 2px; position: relative; transition: .25s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
    content: ''; position: absolute; left: 0; width: 19px; height: 2px;
    background: currentColor; border-radius: 2px; transition: .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1023px) {
    .nav-toggle { display: grid; }
    .header .wrap { flex-wrap: wrap; }
    .nav {
        display: none; order: 3; width: 100%;
        flex-direction: column; align-items: stretch;
        gap: 4px; padding: 8px 0 18px;
        border-top: 1px solid var(--line); margin-top: 4px;
    }
    .nav.is-open { display: flex; }
    .nav a { padding: 13px 16px; border-radius: var(--r-sm); }
    .header .btn { display: none; }
    .nav .btn { display: inline-flex; margin-top: 8px; }
}

/* ---------- 6. Kahraman alanı (video) ------------------------------- */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--sky-100) 0%, var(--sky-50) 45%, #fff 100%);
    padding: clamp(40px, 6vw, 76px) 0 clamp(56px, 7vw, 96px);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(60% 50% at 85% 8%, rgba(251, 191, 36, .22), transparent 65%),
        radial-gradient(55% 45% at 8% 22%, rgba(56, 189, 248, .20), transparent 65%);
    pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
    display: grid; gap: clamp(30px, 4vw, 52px);
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1000px) {
    .hero-grid { grid-template-columns: 1.02fr 1fr; }
}

.hero h1 { margin-bottom: .5em; }
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--sky-600), var(--sun-500));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.badge-live {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--sky-200);
    padding: 8px 18px 8px 14px; border-radius: var(--r-full);
    font-size: .8rem; font-weight: 800; color: var(--sky-700);
    box-shadow: var(--sh-sm); margin-bottom: 22px;
}
.dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--rose-500); position: relative;
}
.dot::after {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid var(--rose-500); animation: ping 1.9s infinite;
}
@keyframes ping {
    0%   { transform: scale(.55); opacity: .9; }
    80%, 100% { transform: scale(1.5); opacity: 0; }
}

/* Video çerçevesi */
.video-frame {
    position: relative;
    background: #fff; padding: 10px; border-radius: var(--r-xl);
    box-shadow: var(--sh-xl); border: 1px solid rgba(255, 255, 255, .8);
}
.video-frame::after {
    content: ''; position: absolute; inset: -14px; z-index: -1;
    border-radius: calc(var(--r-xl) + 12px);
    background: linear-gradient(135deg, rgba(56, 189, 248, .28), rgba(251, 191, 36, .28));
    filter: blur(26px);
}
.video-shell {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    background: var(--sky-900); aspect-ratio: 16 / 9;
}
.video-shell > video,
.video-shell > iframe,
.video-shell > img {
    width: 100%; height: 100%; object-fit: cover; border: 0; display: block;
}

/* Dikey (9:16) kahraman videosu.
   Çerçeve sınırlanmazsa 9:16 alan masaüstünde ~1000px yüksekliğe çıkıp
   yanındaki metin sütununu ezer; bu yüzden genişliği sabitlenir.
   object-fit: contain → karenin hiçbir yeri kırpılmaz. */
.video-frame--portrait {
    /* Genişlik iki sınırın küçüğü olur:
       - 440px  → yanındaki metin sütununu ezmeyen üst sınır
       - 88vh'lik yüksekliğe karşılık gelen genişlik → alçak ekranlarda taşmaz
       Böylece uzun ekranlarda büyür, kısa ekranlarda kendini toplar. */
    max-width: min(440px, calc(88vh * 9 / 16));
    margin-inline: auto;
}
.video-shell--portrait { aspect-ratio: 9 / 16; }
.video-shell--portrait > video,
.video-shell--portrait > img { object-fit: contain; }

.video-play {
    position: absolute; inset: 0; display: grid; place-items: center;
    border: 0; cursor: pointer; padding: 0;
    background: linear-gradient(180deg, rgba(12, 74, 110, .12), rgba(12, 74, 110, .55));
    transition: opacity .35s var(--ease);
}
.video-play:hover .play-btn { transform: scale(1.09); }
.video-play.is-hidden { opacity: 0; pointer-events: none; }
.play-btn {
    width: 82px; height: 82px; border-radius: 50%;
    background: rgba(255, 255, 255, .96); color: var(--sky-700);
    display: grid; place-items: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
    transition: transform .3s var(--ease);
}
.play-btn .ico { width: 30px; height: 30px; margin-left: 5px; fill: currentColor; stroke-width: 0; }
.video-caption {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
    padding: 15px 12px 6px; font-size: .87rem; color: var(--muted); font-weight: 600;
}
.video-caption b { color: var(--ink); font-weight: 800; }

/* ---------- 6b. İç sayfa başlığı ------------------------------------ */
.page-head {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--sky-100), var(--sky-50) 60%, var(--canvas));
    padding: clamp(30px, 4vw, 46px) 0 clamp(38px, 5vw, 60px);
    border-bottom: 1px solid var(--line);
}
.page-head::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(50% 60% at 90% 0%, rgba(251, 191, 36, .2), transparent 70%);
}
.page-head .wrap { position: relative; }
.page-head h1 { margin-bottom: .35em; }
.page-head .lede { margin-bottom: 0; }

.crumbs { margin-bottom: 20px; }
.crumbs ol {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: .82rem; font-weight: 700; color: var(--muted);
}
.crumbs a { color: var(--sky-700); }
.crumbs span[aria-hidden] { color: var(--sky-300); margin-left: 8px; }
.crumbs [aria-current] { color: var(--muted); }

/* ---------- 7. İlerleme kartı --------------------------------------- */
.progress-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: clamp(22px, 3vw, 30px);
    box-shadow: var(--sh-md); margin: 26px 0;
}
.progress-top {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.progress-top .label { font-size: .84rem; font-weight: 800; color: var(--muted);
    text-transform: uppercase; letter-spacing: .08em; }
.progress-pct {
    font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); font-weight: 900;
    color: var(--sky-700); line-height: 1; letter-spacing: -.03em;
}
.progress-track {
    height: 16px; border-radius: var(--r-full);
    background: var(--sky-100); overflow: hidden;
}
.progress-fill {
    height: 100%; width: 0; border-radius: var(--r-full);
    background: linear-gradient(90deg, var(--sky-500), var(--sun-400));
    transition: width 1.6s var(--ease);
    position: relative; overflow: hidden;
}
.progress-fill::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    animation: shimmer 2.4s infinite;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.progress-foot {
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    margin-top: 12px; font-size: .85rem; color: var(--muted); font-weight: 600;
}
.progress-foot .goal { color: var(--ink); font-weight: 800; }

/* İstatistik şeridi */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.stat {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 20px 18px; text-align: center; box-shadow: var(--sh-xs);
}
.stat b {
    display: block; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
    font-weight: 900; color: var(--sky-700); letter-spacing: -.02em; line-height: 1.1;
}
.stat span { font-size: .82rem; color: var(--muted); font-weight: 700; }

/* ---------- 8. Kartlar ---------------------------------------------- */
.card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: clamp(24px, 3vw, 32px);
    box-shadow: var(--sh-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--sky-200); }
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--muted); font-size: .95rem; }

.card-icon {
    width: 56px; height: 56px; border-radius: 17px;
    display: grid; place-items: center; margin-bottom: 20px;
    background: var(--sky-100); color: var(--sky-600);
}
.card-icon .ico { width: 26px; height: 26px; }
.card-icon.sun  { background: var(--sun-100); color: var(--sun-600); }
.card-icon.rose { background: #ffe4e6; color: var(--rose-600); }
.card-icon.ok   { background: #d1fae5; color: var(--ok); }

/* Vurgulu blok */
.note {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--sun-100); border: 1px solid var(--sun-300);
    border-radius: var(--r-md); padding: 18px 22px;
    color: #78350f; font-size: .93rem; font-weight: 600;
}
.note .ico { color: var(--sun-600); margin-top: 3px; }
.note p:last-child { margin-bottom: 0; }
.note--sky { background: var(--sky-50); border-color: var(--sky-200); color: var(--sky-900); }
.note--sky .ico { color: var(--sky-600); }

/* ---------- 9. IBAN listesi ----------------------------------------- */
.iban-list { display: grid; gap: 16px; }
.iban-item {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 20px 24px;
    transition: border-color .2s, box-shadow .2s;
}
.iban-item:hover { border-color: var(--sky-300); box-shadow: var(--sh-md); }
.iban-meta { display: flex; align-items: center; gap: 16px; flex: 1 1 250px; }
.iban-badge {
    width: 54px; height: 54px; border-radius: 15px; flex: none;
    background: linear-gradient(140deg, var(--sky-700), var(--sky-500));
    color: #fff; display: grid; place-items: center;
    font-size: 1.35rem; font-weight: 900;
}
.iban-name { font-size: 1rem; font-weight: 800; color: var(--ink); margin: 0; }
.iban-holder { font-size: .85rem; color: var(--muted); margin: 0; }

.iban-copy {
    display: flex; align-items: center; gap: 12px; flex: 1 1 340px;
    background: var(--sky-50); border: 1px dashed var(--sky-300);
    border-radius: var(--r-md); padding: 10px 10px 10px 16px;
}
.iban-code {
    font-family: ui-monospace, 'SFMono-Regular', 'Cascadia Code', Consolas, monospace;
    font-size: clamp(.83rem, .7rem + .45vw, 1rem); font-weight: 700;
    color: var(--ink); letter-spacing: .04em; flex: 1; word-break: break-all;
    background: none; border: 0; padding: 0;
}
.copy-btn {
    border: 0; cursor: pointer; flex: none;
    background: linear-gradient(135deg, var(--sky-600), var(--sky-400)); color: #fff;
    font-weight: 800; font-size: .8rem; padding: 10px 16px;
    border-radius: var(--r-sm); display: inline-flex; align-items: center; gap: 7px;
    transition: filter .2s;
}
.copy-btn:hover { filter: brightness(1.08); }
.copy-btn.is-done { background: var(--ok); }
.copy-btn .ico { width: 15px; height: 15px; }

/* ---------- 10. Galeriler ------------------------------------------- */
.gallery {
    display: grid; gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.gal-item {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--r-md); background: var(--sky-100);
    aspect-ratio: 4 / 3; cursor: zoom-in; border: 0; padding: 0;
    box-shadow: var(--sh-sm);
}
.gal-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--ease);
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 26px 14px 12px; text-align: left;
    color: #fff; font-size: .82rem; font-weight: 700;
    background: linear-gradient(transparent, rgba(11, 27, 43, .82));
    opacity: 0; transform: translateY(8px); transition: .3s var(--ease);
}
.gal-item:hover figcaption, .gal-item:focus-visible figcaption { opacity: 1; transform: none; }

/* ---------- 10a. Basında biz ----------------------------------------- */
.press-grid {
    display: grid; gap: clamp(16px, 2.2vw, 24px);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Kartın tamamı bağlantıdır; görsele tıklamak haberi yeni sekmede açar. */
.press-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--sh-sm); color: inherit;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
                border-color .3s var(--ease);
}
.press-card:hover, .press-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg); border-color: var(--sky-200); color: inherit;
}

.press-shot {
    position: relative; display: block; overflow: hidden;
    aspect-ratio: 16 / 9; background: var(--sky-100);
}
.press-shot img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--ease);
}
.press-card:hover .press-shot img { transform: scale(1.06); }

/* Görsel yüklenmediğinde gösterilen yer tutucu */
.press-ph {
    position: absolute; inset: 0; display: grid;
    place-items: center; align-content: center; gap: 10px;
    background: linear-gradient(140deg, var(--sky-100), var(--sky-50) 55%, var(--sun-100));
    color: var(--sky-700); text-align: center; padding: 16px;
}
.press-ph .ico { width: 30px; height: 30px; opacity: .75; }
.press-ph b {
    font-size: .82rem; font-weight: 800; letter-spacing: .04em;
    text-transform: uppercase; color: var(--sky-600);
}

/* "Haberi aç" rozeti — yeni sekmede açılacağını görünür kılar */
.press-open {
    position: absolute; right: 12px; bottom: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, .96); color: var(--sky-700);
    border-radius: var(--r-full); padding: 6px 13px;
    font-size: .76rem; font-weight: 800; box-shadow: var(--sh-sm);
    opacity: 0; transform: translateY(6px); transition: .28s var(--ease);
}
.press-open .ico { width: 14px; height: 14px; }
.press-card:hover .press-open,
.press-card:focus-visible .press-open { opacity: 1; transform: none; }

.press-body { display: block; padding: 16px 18px 20px; }
.press-meta {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: .74rem; font-weight: 800; letter-spacing: .04em;
    text-transform: uppercase; color: var(--sky-600); margin-bottom: 8px;
}
.press-meta time { color: var(--muted); font-weight: 700; letter-spacing: 0; }
.press-meta time::before { content: '·'; margin-right: 8px; }
.press-title {
    display: block; color: var(--ink); font-weight: 800;
    font-size: 1rem; line-height: 1.35;
}
.press-card:hover .press-title { color: var(--sky-700); }

.press-note {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 30px 0 0; font-size: .84rem; color: var(--muted); font-weight: 600;
    text-align: center;
}
.press-note .ico { color: var(--sky-500); flex: none; }

/* ---------- 10b. Resmi belge şeridi ---------------------------------- */
.section--docs {
    background:
        linear-gradient(180deg, #fff 0%, var(--sky-50) 100%);
    border-block: 1px solid var(--line);
}

.docs-layout {
    display: grid; gap: clamp(26px, 4vw, 48px);
    grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) {
    .docs-layout { grid-template-columns: .92fr 1fr; }
}

.docs-intro h2 { margin-bottom: .45em; }
.docs-intro > p { color: var(--muted); max-width: 46ch; }

/* Belgeden okunan künye bilgileri */
.doc-facts {
    display: grid; gap: 10px; margin: 26px 0 0;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}
.doc-facts > div {
    background: #fff; border: 1px solid var(--sky-200);
    border-radius: var(--r-sm); padding: 12px 14px;
    box-shadow: var(--sh-xs);
}
.doc-facts dt {
    font-size: .72rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; color: var(--sky-600); margin-bottom: 3px;
}
.doc-facts dd {
    margin: 0; font-size: .9rem; font-weight: 800; color: var(--ink); line-height: 1.35;
}
.docs-more { margin: 24px 0 0; }
.docs-more .ico { width: 1em; height: 1em; vertical-align: -.12em; }

/* Belge kartları */
.docs-grid {
    display: grid; gap: clamp(14px, 2vw, 20px);
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

/* .gal-item'in galeri ölçüleri belgeler için geçersiz kılınır */
.doc-card {
    aspect-ratio: auto; overflow: visible; background: transparent;
    box-shadow: none; border-radius: 0;
    display: flex; flex-direction: column; margin: 0;
    cursor: zoom-in;
}

/* Kâğıt görünümlü çerçeve: tarama kalitesi zayıf olduğu için
   belge beyaz bir paspartu içine alınır ve üstten hizalanır —
   böylece antetli başlık (belgenin en okunur, en inandırıcı kısmı) görünür. */
.doc-shot {
    position: relative; display: block; overflow: hidden;
    background: #fff; padding: 8px;
    border: 1px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.doc-card .doc-shot img {
    width: 100%; height: auto; aspect-ratio: 3 / 4;
    object-fit: cover; object-position: top center;
    border-radius: 6px;
    background: var(--sky-100);
    filter: saturate(.7) contrast(1.06) brightness(1.02);
    transition: transform .5s var(--ease);
}
/* Kâğıdın alt kenarı sayfaya yumuşak geçsin */
.doc-shot::after {
    content: ''; position: absolute; left: 8px; right: 8px; bottom: 8px; height: 34%;
    border-radius: 0 0 6px 6px; pointer-events: none;
    background: linear-gradient(transparent, rgba(255, 255, 255, .92));
}

.doc-zoom {
    position: absolute; left: 50%; bottom: 16px; transform: translate(-50%, 6px);
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255, 255, 255, .95); color: var(--sky-700);
    border: 1px solid var(--sky-200); border-radius: var(--r-full);
    padding: 7px 15px; font-size: .78rem; font-weight: 800;
    box-shadow: var(--sh-sm);
    opacity: 0; transition: .3s var(--ease);
}
.doc-zoom .ico { width: 14px; height: 14px; }

.doc-card:hover .doc-shot,
.doc-card:focus-visible .doc-shot { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.doc-card:hover .doc-shot img { transform: scale(1.03); }
.doc-card:hover .doc-zoom,
.doc-card:focus-visible .doc-zoom { opacity: 1; transform: translate(-50%, 0); }

/* Açıklama: galeri örtüsünün aksine her zaman görünür ve kartın altındadır */
.doc-card figcaption {
    position: static; opacity: 1; transform: none;
    background: none; color: inherit; text-align: left;
    padding: 14px 2px 0;
}
.doc-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: #d1fae5; color: #065f46;
    border-radius: var(--r-full); padding: 3px 10px;
    font-size: .7rem; font-weight: 800; letter-spacing: .02em;
    margin-bottom: 8px;
}
.doc-chip .ico { width: 12px; height: 12px; stroke-width: 3; }
.doc-card figcaption b {
    display: block; color: var(--ink); font-size: .95rem;
    font-weight: 800; line-height: 1.3;
}
.doc-desc {
    display: block; margin-top: 5px;
    color: var(--muted); font-size: .82rem; font-weight: 600; line-height: 1.55;
}

.video-grid { display: grid; gap: clamp(18px, 2.5vw, 26px); grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.video-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    overflow: hidden; box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.video-card video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #0b1b2b; }
.video-card .body { padding: 18px 22px 22px; }
.video-card h3 { font-size: 1.05rem; margin-bottom: .3em; }
.video-card p { font-size: .85rem; color: var(--muted); margin: 0; }

/* Boş durum */
.empty {
    border: 2px dashed var(--sky-200); border-radius: var(--r-lg);
    padding: clamp(34px, 5vw, 56px); text-align: center; background: var(--sky-50);
}
.empty .ico { width: 42px; height: 42px; color: var(--sky-400); margin-bottom: 12px; }
.empty p { color: var(--muted); margin-bottom: 0; }
.empty code {
    background: #fff; border: 1px solid var(--sky-200); border-radius: 6px;
    padding: 2px 8px; font-size: .86rem; color: var(--sky-700);
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 200; display: none;
    background: rgba(6, 20, 33, .94); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 24px;
}
.lightbox.is-open { display: flex; animation: fadeIn .25s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: min(1100px, 94vw); max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--sh-xl); }
.lb-cap { color: #e2e8f0; text-align: center; margin-top: 16px; font-size: .9rem; font-weight: 600; }
.lb-btn {
    position: absolute; background: rgba(255, 255, 255, .12); color: #fff;
    border: 0; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center; transition: background .2s;
}
.lb-btn:hover { background: rgba(255, 255, 255, .26); }
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
    .lb-prev { left: 10px; } .lb-next { right: 10px; }
    .lb-btn { width: 44px; height: 44px; }
}

/* ---------- 11. Zaman çizelgesi ------------------------------------- */
.timeline { position: relative; padding-left: 34px; max-width: 780px; }
.timeline::before {
    content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px;
    background: linear-gradient(var(--sky-300), var(--sun-300));
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
    content: ''; position: absolute; left: -34px; top: 6px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; border: 4px solid var(--sky-500);
    box-shadow: 0 0 0 4px var(--sky-50);
}
.tl-item time {
    display: block; font-size: .78rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--sun-600); margin-bottom: 5px;
}
.tl-item h3 { font-size: 1.12rem; margin-bottom: .35em; }
.tl-item p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* ---------- 12. SSS ------------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-md); overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--sky-300); box-shadow: var(--sh-md); }
.faq summary {
    cursor: pointer; list-style: none; padding: 20px 56px 20px 24px;
    font-weight: 800; color: var(--ink); position: relative; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ''; position: absolute; right: 24px; top: 50%;
    width: 10px; height: 10px; margin-top: -7px;
    border-right: 2.5px solid var(--sky-500); border-bottom: 2.5px solid var(--sky-500);
    transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .answer { padding: 0 24px 22px; color: var(--muted); font-size: .95rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- 13. Bağış çağrısı (CTA) --------------------------------- */
.cta {
    position: relative; overflow: hidden; color: #fff;
    background: linear-gradient(135deg, var(--sky-700), var(--sky-500) 55%, var(--sun-500));
    border-radius: var(--r-xl); padding: clamp(38px, 6vw, 68px) clamp(24px, 5vw, 60px);
    text-align: center; box-shadow: var(--sh-lg);
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 20% 110%, rgba(255,255,255,.25), transparent 70%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .92); font-size: 1.06rem; }
.cta .btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.45); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }
.cta .btn-donate { background: #fff; color: var(--rose-600); box-shadow: 0 12px 34px rgba(0,0,0,.22); }
.cta .btn-donate:hover { color: var(--rose-600); }

/* ---------- 14. Alt bilgi ------------------------------------------- */
.footer { background: var(--ink); color: #cbd5e1; padding: clamp(50px, 7vw, 78px) 0 30px; }
.footer h4 {
    color: #fff; font-size: 1rem; margin-bottom: 18px;
    padding-left: 12px; border-left: 3px solid var(--sun-400);
}
.footer a { color: #cbd5e1; }
.footer a:hover { color: var(--sun-300); }
.footer p { font-size: .9rem; line-height: 1.8; color: #94a3b8; }
.footer-grid {
    display: grid; gap: clamp(26px, 4vw, 46px);
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.footer-grid > :first-child { grid-column: span 2; min-width: 0; }
@media (max-width: 700px) { .footer-grid > :first-child { grid-column: span 1; } }
.footer .brand-name b { color: #fff; }
.footer .brand-name span { color: var(--sun-300); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .92rem; }
.socials { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.socials a {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, .09); display: grid; place-items: center;
    transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--sky-600); transform: translateY(-3px); }
.footer-legal {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    font-size: .82rem; color: #94a3b8;
}
.permit-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-full); padding: 8px 16px; font-size: .8rem;
    font-weight: 700; color: #e2e8f0; margin-top: 14px;
}

/* ---------- 15. Yüzen düğmeler -------------------------------------- */
.fab-wa {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    background: #25d366; color: #fff; width: 58px; height: 58px;
    border-radius: 50%; display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .42);
    transition: transform .25s var(--ease);
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa .ico { width: 28px; height: 28px; }

/* Mobil sabit bağış çubuğu */
.donate-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    display: none; gap: 12px; align-items: center;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 26px rgba(12, 74, 110, .1);
}
.donate-bar .txt { flex: 1; min-width: 0; font-size: .78rem; font-weight: 700; color: var(--muted); line-height: 1.35; }
.donate-bar .txt b { display: block; color: var(--ink); font-size: .92rem; }
@media (max-width: 767px) {
    .donate-bar { display: flex; }
    body { padding-bottom: 74px; }
    .fab-wa { bottom: 84px; width: 52px; height: 52px; }
}

/* ---------- 16. Görünürlük animasyonu ------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Bildirim balonu */
.toast {
    position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px);
    background: var(--ink); color: #fff; padding: 14px 24px; border-radius: var(--r-full);
    font-size: .89rem; font-weight: 700; box-shadow: var(--sh-lg);
    display: flex; align-items: center; gap: 10px; z-index: 300;
    opacity: 0; pointer-events: none; transition: .3s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast .ico { color: #4ade80; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- 17. Yazdırma -------------------------------------------- */
@media print {
    .header, .topbar, .footer, .fab-wa, .donate-bar, .video-frame, .cta { display: none !important; }
    body { background: #fff; color: #000; }
    .iban-code { font-size: 12pt; }
}
