/* =====================================================================
   Kemo Kit — Ana Sayfa Stili
   Palet (Peixôu marka renkleri): mavi + turuncu + sarı + krem
   Ton: sıcak, zarif, medikal olmayan, wellness estetiği
   ===================================================================== */

:root {
    /* Renkler — Peixôu paleti */
    --cream:        #FFF2D2;   /* zemin  (255 242 210) */
    --cream-2:      #FBEAC0;   /* ikincil zemin (daha derin krem) */
    --sand:         #F6DEA0;   /* ikon çipi / sıcak ton */
    --ink:          #26333F;   /* ana metin (koyu mavi-antrasit) */
    --ink-soft:     #5E6E7A;   /* ikincil metin */

    --blue:         #5A84A3;   /* birincil (90 132 163) */
    --blue-deep:    #456A87;
    --blue-soft:    #E4ECF2;   /* açık mavi zemin */

    --orange:        #FB7302;  /* aksan (251 115 2) */
    --orange-deep:   #E05F00;
    --orange-soft:   #FDE7CC;  /* açık şeftali zemin */

    --yellow:         #FFBC00; /* vurgu (255 188 0) */
    --yellow-soft:    #FFE49B;

    --white:        #FFFFFF;

    /* Şekil & gölge */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-pill: 999px;
    --shadow-sm: 0 6px 18px rgba(38, 51, 63, .07);
    --shadow-md: 0 16px 40px rgba(38, 51, 63, .12);
    --shadow-lg: 0 30px 70px rgba(38, 51, 63, .16);

    --maxw: 1320px;
    --gutter: clamp(20px, 5vw, 48px);

    --font-head: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset / temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.12; color: var(--ink); margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* HugeIcons — inline SVG temel hizalama */
.icon { display: inline-block; vertical-align: middle; flex: none; }

.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: -999px; top: 0; z-index: 100;
    background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Başlık grupları ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head--left { text-align: left; margin-inline: 0; }
.section-sub { color: var(--ink-soft); margin-top: 12px; font-size: 1.06rem; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body); font-weight: 700; font-size: .98rem;
    padding: 12px 22px; border-radius: var(--r-pill);
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: var(--shadow-md); }

.btn-soft { background: var(--orange-soft); color: var(--orange-deep); }
.btn-soft:hover { background: #FBD9B8; }

.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: #fff; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(38, 51, 63,.22); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

/* =====================================================================
   TOPBAR (duyuru çubuğu — header üstünde, sayfayla birlikte kayar)
   ===================================================================== */
.topbar { background: var(--blue-deep); color: #fff; }
.topbar-inner {
    display: flex; align-items: center; justify-content: center;
    min-height: 40px; padding: 7px 0; text-align: center;
}
.topbar p { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; }
.topbar .icon { color: var(--yellow); flex: none; }
.topbar a {
    display: inline-flex; align-items: center; gap: 4px; font-weight: 800; color: #fff;
    text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px;
}
.topbar a:hover { color: var(--yellow); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: #fff;
    border-bottom: 1px solid rgba(38, 51, 63,.09);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 92px; }

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 72px; width: auto; display: block; }
.brand-logo--footer { height: 96px; }

.main-nav { margin-left: auto; }
.nav-panel { display: contents; }               /* masaüstü: sarmalayıcı düzeni etkilemez */
.nav-panel-head, .nav-panel-cta { display: none; } /* sadece mobil off-canvas'ta görünür */
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list a {
    display: inline-block; padding: 9px 11px; border-radius: var(--r-pill);
    font-weight: 700; font-size: .92rem; color: var(--ink-soft);
    white-space: nowrap;
    transition: color .15s, background .15s;
}
.nav-list a:hover { color: var(--blue-deep); background: var(--blue-soft); }

/* Off-canvas arka karartma (mobilde JS ile açılır).
   z-index header'ın (50) ALTINDA olmalı ki panel — header stacking context'i
   içinde olduğundan — karartmanın üstünde parlak kalsın; sayfa içeriği kararsın. */
.nav-backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(38, 51, 63, .45); }
body.nav-open { overflow: hidden; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: var(--r-pill);
    color: var(--ink); background: var(--blue-soft);
    transition: background .15s, color .15s;
}
.cart-btn:hover { background: var(--blue); color: #fff; }
.cart-count {
    position: absolute; top: -3px; right: -3px; min-width: 19px; height: 19px;
    padding: 0 5px; border-radius: var(--r-pill);
    background: var(--orange); color: #fff;
    font-size: .68rem; font-weight: 800; line-height: 19px; text-align: center;
    border: 2px solid #fff;
}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
    border: none; background: transparent; cursor: pointer; padding: 10px;
}
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative; overflow: hidden;
    min-height: clamp(520px, 80vh, 760px);
    display: flex; align-items: center;
    padding: clamp(60px, 9vw, 120px) 0;
}
/* Tam ekran video arka plan */
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
}
/* Metin okunurluğu için karartma katmanı (soldan sağa) */
.hero-scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(90deg, rgba(38,51,63,.86) 0%, rgba(38,51,63,.62) 42%, rgba(38,51,63,.22) 72%, rgba(38,51,63,.15) 100%),
        linear-gradient(0deg, rgba(38,51,63,.35) 0%, transparent 45%);
}
.hero-inner { display: block; }

.hero-copy { max-width: 40rem; }
.hero-copy h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    letter-spacing: -.015em; margin-bottom: 22px; color: #fff;
}
.hero-copy h1 em { font-style: normal; color: var(--yellow); }
.hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.9); max-width: 34em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 18px 22px; margin-top: 32px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.92); }
.hero-badges span .icon { color: var(--yellow); }

/* Foto yer tutucular (görsel gelene kadar sıcak degrade) */
.photo-ph { background: linear-gradient(135deg, var(--blue-soft), var(--sand)); }
.photo-ph--soft { background: linear-gradient(140deg, var(--blue-soft), var(--orange-soft)); }
.photo-ph--box  { width: 100%; height: 100%; background: linear-gradient(150deg, var(--orange-soft), var(--blue-soft) 80%); }

/* Foto yer tutucular (görsel gelene kadar sıcak degrade) */
.photo-ph { background: linear-gradient(135deg, var(--blue-soft), var(--sand)); }
.photo-ph--warm { width: 100%; height: 100%; background: linear-gradient(150deg, #FFD9A6 0%, #DCE7EF 55%, #FFF2D2 100%); }
.photo-ph--soft { background: linear-gradient(140deg, var(--blue-soft), var(--orange-soft)); }
.photo-ph--box  { width: 100%; height: 100%; background: linear-gradient(150deg, var(--orange-soft), var(--blue-soft) 80%); }

/* =====================================================================
   MANİFESTO şeridi
   ===================================================================== */
.manifesto { background: var(--blue-soft); padding: clamp(44px, 6vw, 80px) 0; }
.manifesto-inner {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.manifesto-text {
    font-family: var(--font-head); font-size: clamp(1.3rem, 2.3vw, 1.95rem);
    line-height: 1.42; color: var(--ink); max-width: 22em;
}
.manifesto-text strong { color: var(--blue-deep); font-weight: 600; }
.manifesto-art img { width: 100%; height: auto; display: block; }

/* =====================================================================
   ANA BÖLÜMLER (kartlar)
   ===================================================================== */
.sections { padding: clamp(60px, 8vw, 100px) 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.s-card {
    display: flex; flex-direction: column; gap: 10px;
    background: #fff; border: 1px solid rgba(38, 51, 63,.06);
    border-radius: var(--r-lg); padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.s-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(78,124,111,.3); }
.s-card-icon {
    width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem; background: var(--cream-2); border-radius: var(--r-md); margin-bottom: 6px;
}
.s-card h3 { font-size: 1.28rem; }
.s-card p { color: var(--ink-soft); font-size: .98rem; }
.s-card-icon .icon { color: var(--blue-deep); }
.s-card-link { margin-top: auto; padding-top: 8px; font-weight: 700; color: var(--blue); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.s-card:hover .s-card-link .icon { transform: translateX(3px); }
.s-card-link .icon { transition: transform .18s ease; }

/* =====================================================================
   KENDİNE İYİ BAK (daily)
   ===================================================================== */
.daily { background: var(--blue-deep); color: #fff; padding: clamp(56px, 7vw, 90px) 0; }
/* Masaüstünde 2x2: 2 kart üstte, 2 kart altta */
.daily-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: stretch; }
.daily-copy { grid-column: 1 / -1; max-width: 620px; margin-bottom: 12px; }
.daily-copy h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.daily-copy p { color: rgba(255,255,255,.82); margin-top: 10px; }

/* Yatay kart: görsel solda (beyaz kutu içinde, şeffaf), yazı sağda */
.tip-card {
    position: relative; background: #fff; border-radius: var(--r-lg);
    overflow: hidden; display: flex; flex-direction: row; align-items: center;
    box-shadow: var(--shadow-sm);
}
.tip-card--today { outline: 3px solid var(--yellow); outline-offset: -3px; }
.tip-thumb { position: relative; flex: none; width: 42%; max-width: 200px; aspect-ratio: 1 / 1; }
.tip-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 14px; display: block; }
.tip-body { padding: 22px 26px 22px 6px; }
.tip-card h3 { font-size: 1.2rem; color: var(--blue-deep); margin-bottom: 6px; }
.tip-card p { font-size: .95rem; color: var(--ink-soft); }
.tip-flag {
    position: absolute; top: 12px; left: 12px; z-index: 1; background: var(--orange); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    padding: 5px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}

/* =====================================================================
   BENİM HİKAYEM (stories)
   ===================================================================== */
.stories {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--cream-2) url('../img/stories-bg.webp') center / cover no-repeat;
}
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card {
    position: relative; background: #fff; border-radius: var(--r-lg);
    padding: 40px 30px 30px; box-shadow: var(--shadow-sm); margin: 0;
    border: 1px solid rgba(38, 51, 63,.05);
}
.quote-mark {
    position: absolute; top: 6px; left: 24px; font-family: var(--font-head);
    font-size: 4.5rem; line-height: 1; color: var(--orange); opacity: .35;
}
.story-card blockquote {
    margin: 0; font-family: var(--font-head); font-style: normal;
    font-size: 1.2rem; line-height: 1.45; color: var(--ink);
}
.story-card figcaption { margin-top: 18px; font-weight: 700; color: var(--blue); font-size: .92rem; }

.center-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* =====================================================================
   EN ÇOK OKUNANLAR + HABER
   ===================================================================== */
.reads { padding: clamp(60px, 8vw, 100px) 0; background: #fff; }
.reads-inner { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }

.popular {
    background: var(--orange-soft); border-radius: var(--r-lg); padding: 30px 28px;
    position: sticky; top: 96px;
}
.popular h2 { font-size: 1.5rem; margin-bottom: 18px; color: var(--orange-deep); }
.popular-list { counter-reset: pop; display: flex; flex-direction: column; gap: 14px; }
.popular-list li { counter-increment: pop; display: flex; gap: 12px; align-items: baseline; }
.popular-list li::before {
    content: counter(pop); font-family: var(--font-head); font-weight: 600;
    color: var(--orange); font-size: 1.15rem; min-width: 20px;
}
.popular-list a { font-weight: 600; font-size: .98rem; transition: color .15s; }
.popular-list a:hover { color: var(--orange-deep); }
.popular-more { display: inline-block; margin-top: 22px; font-weight: 700; color: var(--orange-deep); font-size: .9rem; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
.news-card {
    background: #fff; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--shadow-md); border: 1px solid rgba(38, 51, 63,.09);
    transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-thumb { height: 150px; background: var(--blue-soft); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-body { padding: 18px 20px 22px; }
.news-tag {
    display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; color: var(--blue); background: var(--blue-soft);
    padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 10px;
}
.news-body h3 { font-size: 1.12rem; line-height: 1.25; }
.news-body h3 a:hover { color: var(--blue-deep); }
.news-meta { display: block; margin-top: 10px; font-size: .82rem; color: var(--ink-soft); }

/* =====================================================================
   MAĞAZA
   ===================================================================== */
.shop { padding: clamp(60px, 8vw, 100px) 0; background: var(--cream-2); }
.shop-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.shop-visual { position: relative; aspect-ratio: 4/3.4; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.shop-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.shop-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.shop-copy > p { color: var(--ink-soft); font-size: 1.08rem; }
.shop-list { margin: 22px 0 4px; display: flex; flex-direction: column; gap: 12px; }
.shop-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; }
.shop-list li .icon {
    flex: none; padding: 4px; width: 28px; height: 28px;
    background: var(--blue-soft); color: var(--blue-deep); border-radius: 50%;
}

/* =====================================================================
   KUTU İSTE — fotoğraf üzeri renk katmanlı CTA bandı
   ===================================================================== */
.request { padding: clamp(30px, 5vw, 60px) 0; }
.request-banner {
    position: relative; overflow: hidden; isolation: isolate;
    border-radius: var(--r-lg);
    padding: clamp(52px, 8vw, 96px) clamp(24px, 5vw, 60px);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
/* Arka plan görseli (şimdilik sıcak degrade yer tutucu) + renk tonu katmanı */
.request-media {
    position: absolute; inset: 0; z-index: -2;
    background:
        linear-gradient(150deg, #FFD9A6 0%, #DCE7EF 55%, #FFF2D2 100%);
    background-size: cover; background-position: center;
}
.request-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(69, 106, 135, .88) 0%, rgba(90, 132, 163, .70) 45%, rgba(251, 115, 2, .74) 100%);
}
.request-content { position: relative; z-index: 1; color: #fff; }
.request-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.request-sub {
    color: rgba(255, 255, 255, .9); max-width: 44em; margin: 16px auto 0;
    font-size: 1.08rem;
}
.request-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px;
}
.req-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 700; font-size: 1.05rem;
    padding: 16px 32px; border-radius: var(--r-pill);
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.req-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.req-btn--light { background: #fff; color: var(--orange-deep); box-shadow: var(--shadow-sm); }
.req-btn--light .icon { color: var(--orange); }
.req-btn--light:hover { background: #FFF9EC; }
.req-btn--dark { background: var(--blue-deep); color: #fff; }
.req-btn--dark:hover { background: #35516A; }

/* =====================================================================
   UZMANA SOR
   ===================================================================== */
.ask { padding: clamp(60px, 8vw, 100px) 0; background: var(--blue-deep); color: #fff; }
.ask-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.ask-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.ask-copy p { color: rgba(255,255,255,.82); }

.ask-form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); }
.ask-form input, .ask-form textarea, .join-form input {
    font-family: var(--font-body); font-size: 1rem; color: var(--ink);
    padding: 12px 15px; border: 1.5px solid var(--sand); border-radius: var(--r-sm);
    background: var(--cream); transition: border-color .15s, box-shadow .15s; width: 100%;
}
.ask-form input:focus, .ask-form textarea:focus, .join-form input:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft);
}
.ask-form textarea { resize: vertical; }
.ask-form .btn { grid-column: 1 / -1; }
.form-hint { grid-column: 1 / -1; font-size: .82rem; color: var(--ink-soft); margin-top: -4px; }

/* =====================================================================
   ÜYE OL / BÜLTEN
   ===================================================================== */
.join { padding: clamp(56px, 7vw, 90px) 0; }
.join-inner {
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
    background: linear-gradient(135deg, var(--orange-soft), var(--blue-soft));
    border-radius: var(--r-lg); padding: clamp(32px, 5vw, 56px);
}
.join-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 10px; }
.join-copy p { color: var(--ink-soft); max-width: 40em; }
.join-form { display: flex; gap: 10px; }
.join-form input { min-width: 240px; background: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding-top: clamp(50px, 6vw, 76px); }
.footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
    padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-promise { font-family: var(--font-head); font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.footer-note { font-size: .94rem; max-width: 34em; }
.footer-col h3 { color: #fff; font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .94rem; transition: color .15s; }
.footer-col a:hover { color: var(--yellow); }
.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list .icon { color: var(--yellow); flex: none; }
.social { display: flex; gap: 18px; margin-top: 18px; }
.social a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .88rem; color: var(--yellow); }

.footer-bottom {
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    padding: 24px 0 40px; font-size: .82rem;
}
.footer-disclaimer { max-width: 46em; opacity: .7; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
    /* Hamburger header içinde kalır; menü yandan off-canvas açılır */
    .nav-toggle { display: flex; order: 3; margin-left: 4px; }
    .main-nav { margin-left: 0; order: 3; }
    .header-actions { margin-left: auto; order: 2; }

    .nav-panel {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: 0; z-index: 70;
        height: 100dvh; width: min(330px, 84vw);
        padding: 16px 18px 28px;
        background: var(--cream);
        box-shadow: -24px 0 70px rgba(38, 51, 63, .28);
        transform: translateX(100%); visibility: hidden;
        transition: transform .3s ease, visibility 0s linear .3s;
        overflow-y: auto;
    }
    .nav-panel.is-open { transform: translateX(0); visibility: visible; transition: transform .3s ease; }
    .nav-panel-head {
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(38, 51, 63, .1);
    }
    .nav-panel-title { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink); }
    .nav-close {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border: none; background: transparent;
        color: var(--ink); cursor: pointer; border-radius: var(--r-pill); margin-right: -6px;
    }
    .nav-close:hover { background: var(--blue-soft); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-list a { padding: 13px 14px; font-size: 1.05rem; border-radius: 12px; }
    .nav-panel-cta { display: inline-flex; margin-top: 18px; }

    .manifesto-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .manifesto-text { max-width: 30em; margin: 0 auto; }
    .manifesto-art { max-width: 460px; margin: 0 auto; }
    .card-grid, .story-grid { grid-template-columns: repeat(2, 1fr); }
    .daily-inner { grid-template-columns: repeat(2, 1fr); }
    .reads-inner { grid-template-columns: 1fr; }
    .popular { position: static; }
    .shop-inner, .ask-inner, .join-inner { grid-template-columns: 1fr; }
    .ask-form { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .header-actions { margin-left: auto; }
    .header-inner { gap: 10px; }
    .header-actions .btn-primary { display: none; } /* dar ekranda sepet + hamburger yeter */
    .brand-logo { height: 60px; }
    .hero-scrim { background: linear-gradient(180deg, rgba(38,51,63,.5) 0%, rgba(38,51,63,.72) 100%); }
    .card-grid, .story-grid, .news-grid, .daily-inner { grid-template-columns: 1fr; }
    .join-form { flex-direction: column; }
    .join-form input { min-width: 0; width: 100%; }
    .request-actions { flex-direction: column; }
    .req-btn { width: 100%; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

/* Erişilebilirlik: hareketi azalt */
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
