/* ==========================================================================
   Gülcan Mutaf — tema stilleri
   Renk, ölçü ve konum değerleri özgün Elementor çıktısından birebir alınmıştır.
   Referans görünüm genişliği: 1265px (kapsayıcı 1138px = %90).
   ========================================================================== */

:root {
    /* Marka renkleri */
    --primary:   #FAD725;   /* sarı */
    --secondary: #FFC042;   /* turuncu */
    --accent:    #3F9287;   /* teal */
    --headline:  #222222;
    --body:      #94959B;
    --dark:      #263959;   /* koyu bölüm zemini */
    --light:     #FDF0D4;
    --white:     #FFFFFF;
    --purple:    #7B61FF;   /* dekoratif daire */
    --grey-blob: #F6F6F6;   /* dekoratif daire */
    --meta:      #6E7A84;

    --border:    #ebebeb;
    --divider:   #00000017;
    --radius:    12px;
    --radius-sm: 6px;
    --container: 1216px;

    --font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --h1: 72px;
    --h2: 40px;
    --h2-lh: 48px;
    --h3: 26px;
    --h4: 20px;
    --text: 18px;
    --text-lh: 27px;
    --ls-tight: -.027em;

    --logo-h: 200px;
    --logo-pad: 20px;

    /* Giriş bölümü sahne ölçüleri */
    --stage-h: 580px;
    --disc-w: 556px;
    --portrait-w: 400px;

    --ease: cubic-bezier(.22, .61, .36, 1);
    --shadow-sm: 0 2px 10px rgba(34, 34, 34, .06);
    --shadow:    0 18px 50px rgba(34, 34, 34, .10);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, .04), 0 48px 60px rgba(17, 12, 46, .08);
}

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

/* Dekoratif daireler kasıtlı olarak kapsayıcının dışına taşar; belge
   düzeyinde yatay kaydırma çubuğu oluşmaması için burada da kısılır. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--text);
    font-weight: 400;
    line-height: var(--text-lh);
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em;
    color: var(--headline);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: var(--ls-tight);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); line-height: var(--h2-lh); letter-spacing: -1.08px; }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--headline); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
blockquote { margin: 0; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

::selection { background: var(--primary); color: var(--headline); }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: var(--radius-sm); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--primary); color: var(--headline);
    padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.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;
}

/* --- Yerleşim ------------------------------------------------------------ */

.container { width: min(90%, var(--container)); margin-inline: auto; }

.section { padding: 90px 0; position: relative; }
.section--tight { padding: 85px 0 90px; }

/* --- Dekoratif daireler --------------------------------------------------
   Özgün tasarımda arka planda yüzen renkli disklerdir.
   ------------------------------------------------------------------------ */

.shape { position: absolute; border-radius: 500px; pointer-events: none; }

/* --- Konfeti katmanı -----------------------------------------------------
   Kaydırma sırasında savrulan küçük renkli pullar. Süzülme animasyonu
   `translate` özelliğini, kaydırma efekti ise `transform` özelliğini kullanır;
   ikisi ayrı özellik olduğu için birbirini ezmeden birleşir.
   ------------------------------------------------------------------------ */

.confetti {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.confetti__dot {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    animation: confetti-float 14s ease-in-out infinite;
}
.confetti__dot--sq { border-radius: 2px; }

@keyframes confetti-float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -7px; }
}

/* İçerik konfetinin üstünde kalsın */
.hero > .container,
.bio > .container,
.quote-sec > .container,
.events-sec > .container { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
    .confetti__dot { animation: none; }
}

/* --- Butonlar ------------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 25px;
    border: 0;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--headline);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--secondary); color: var(--headline); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--outline { background: transparent; border: 2px solid var(--headline); padding: 18px 23px; }
.btn--outline:hover { background: var(--headline); color: var(--white); }

.btn--dark  { background: var(--headline); color: var(--white); }
.btn--dark:hover { background: var(--dark); color: var(--white); }

.btn--light { background: var(--white); color: var(--headline); }
.btn--light:hover { background: var(--primary); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 14px 22px; font-size: 15px; }

/* --- Başlık / gezinme ---------------------------------------------------- */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: var(--logo-pad) 0;
    background: transparent;
    transition: background .4s ease, box-shadow .4s ease, padding .4s ease, transform .4s ease;
}
.site-header.is-stuck {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: block; flex: 0 0 auto; }
.brand img { height: var(--logo-h); width: auto; transition: height .3s var(--ease); }
.site-header.is-stuck .brand img { height: 92px; }

.nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }

.nav__list { display: flex; align-items: center; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav__list a { font-size: 16px; font-weight: 600; color: var(--headline); position: relative; }
.nav__list a::after {
    content: "";
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2px; background: var(--primary);
    transition: width .3s var(--ease);
}
.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after { width: 100%; }

.nav__cta .btn { padding: 14px 28px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 0; background: transparent;
    cursor: pointer; padding: 10px;
    border-radius: var(--radius-sm);
}
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--headline); border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.only-mobile { display: none; }

/* ==========================================================================
   ANASAYFA — Giriş
   ========================================================================== */

.hero {
    position: relative;
    padding: 200px 0 100px;
    background-image: url("../img/hero-bg.webp");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 65% auto;
}

.hero__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }

.hero__heading { font-size: 24px; line-height: 36px; font-weight: 400; color: var(--dark); margin: 0; }

.hero__divider { border: 0; border-top: 1px solid var(--divider); margin: 15px 0; }

.hero__quote, .hero__source { width: 87.245%; color: var(--body); margin: 0; }
.hero__source { text-align: right; font-weight: 700; }

/* Sağ sütun — dekoratif kompozisyon */
.hero__stage { position: relative; width: 100%; height: var(--stage-h); }

.hero__disc {
    position: absolute; left: 0; top: 0;
    width: var(--disc-w); height: var(--stage-h);
    background: var(--accent);
    border-radius: 500px;
}

/* Portre, özgün siteyle aynı kurgu: dış kutu sağdan 37px, iç kap 30px sola
   taşar, görsel bu kabın içinde ORTALANIR. */
.hero__portrait-box { position: absolute; bottom: 0; right: 37px; width: 100%; z-index: 1; }
.hero__portrait-inner { margin-left: -30px; }
.hero__portrait {
    width: var(--portrait-w);
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0 0 300px 525px;
}

.hero__book {
    position: absolute; width: 170px; z-index: 3;
    filter: drop-shadow(0 18px 34px rgba(34, 34, 34, .22));
}
.hero__book--1 { top: 0; left: 0; }
.hero__book--2 { bottom: -50px; right: 50px; }

.hero__dots { position: absolute; width: 170px; top: -40px; right: -50px; z-index: 0; }

.hero .shape--s1 { width: 110px; height: 110px; bottom: 0;     left: 50px;  background: var(--purple);    z-index: 2; }
.hero .shape--s2 { width: 30px;  height: 30px;  bottom: 250px; left: -14px; background: var(--secondary); z-index: 2; }
.hero .shape--s3 { width: 45px;  height: 45px;  top: 70px;     right: 61px; background: var(--secondary); z-index: 2; }
.hero .shape--s4 { width: 45px;  height: 45px;  bottom: 0;     right: 0;    background: var(--accent);    z-index: 2; }

/* ==========================================================================
   ANASAYFA — Biyografi (koyu bölüm)
   ========================================================================== */

.bio { background: var(--dark); position: relative; overflow: hidden; }

.bio__grid { display: grid; grid-template-columns: 51.891% 48.109%; align-items: stretch; }

.bio__media { position: relative; }

.bio__disc {
    position: absolute; left: 0; bottom: 0;
    width: 580px; height: 580px;
    background: var(--accent);
    border-radius: 500px;
}

.bio__photo {
    position: absolute; bottom: 0; left: 6px;
    width: 500px; max-width: none;
    padding-left: 50px;
    z-index: 1;
}

.bio .shape--s1 { width: 110px; height: 110px; top: 229px;    right: 35px; background: var(--purple);    z-index: 2; }
.bio .shape--s2 { width: 45px;  height: 45px;  bottom: 136px; right: 32px; background: var(--secondary); z-index: 2; }
.bio .shape--s3 { width: 45px;  height: 45px;  top: 250px;    left: 10px;  background: var(--accent);    z-index: 2; }

/* Üstte ve altta 10px'lik boşluklar özgün Elementor ara vericilerinden gelir. */
.bio__body { margin: 120px 0 150px 100px; width: 473px; max-width: 100%; padding: 10px 0; }

.bio__title {
    color: var(--white);
    font-size: var(--h2);
    line-height: var(--h2-lh);
    font-weight: 600;
    letter-spacing: -1.08px;
    text-align: center;
    transform: translateY(33px);
    margin: 0 0 43px;
}

.bio__text { width: 453px; max-width: 100%; text-align: left; color: var(--body); padding-bottom: 50px; }

/* ==========================================================================
   ANASAYFA — Alıntı
   ========================================================================== */

.quote-sec { padding: 120px 0; position: relative; }

.quote-sec__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }

.quote-sec__text { width: 473px; max-width: 100%; text-align: left; color: var(--body); padding-bottom: 50px; }

.quote-sec__stage { position: relative; width: 100%; height: 580px; }

.quote-sec__disc {
    position: absolute; inset: 0;
    background: var(--accent);
    border-radius: 500px;
    z-index: 2;
}

.quote-sec__book {
    position: absolute; bottom: 0; left: 0;
    width: calc(100% - 50px);
    margin-left: 50px;
    border-radius: 0 0 450px 300px;
    z-index: 2;
}

.quote-sec__dots { position: absolute; width: 170px; bottom: -50px; left: 0; z-index: 3; }

.quote-sec .shape--blob { width: 320px; height: 320px; top: -100px;  right: -120px; background: var(--grey-blob); z-index: 0; }
.quote-sec .shape--s1   { width: 110px; height: 110px; bottom: 0;    right: 0;      background: var(--purple);    z-index: 2; }
.quote-sec .shape--s2   { width: 30px;  height: 30px;  bottom: 125px; left: -3px;   background: var(--secondary); z-index: 2; }
.quote-sec .shape--s3   { width: 24px;  height: 24px;  top: -50px;   right: 200px;  background: var(--accent);    z-index: 2; }

/* ==========================================================================
   ANASAYFA — Eserlerim
   ========================================================================== */

.works { padding: 70px 0 120px; position: relative; }

.works__head { text-align: center; }
.works__head h2 { width: 349px; max-width: 100%; margin: 0 auto; color: var(--headline); }

.books { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 50px 10px 0; }

/* Blog / kategori listelerinde özgün site 3 sütun ve yatay görsel kullanır. */
.books--list { grid-template-columns: repeat(3, 1fr); padding: 0; }
.books--list .book-card__media { aspect-ratio: 351 / 200; }
.books--list .book-card__info { padding: 24px 28px; text-align: left; }
.books--list .book-card__title { margin: 0; }
.books--list .book-card__meta { justify-content: flex-start; margin-top: 8px; }

/* Kitap kartı — özgün .uicore-post karşılığı */
.book-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.book-card:hover { transform: translateY(-6px); }

.book-card__media { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--light); }
.book-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.book-card:hover .book-card__media img { transform: scale(1.06); }

.book-card__info { padding: 36px 40px; text-align: center; }

.book-card__title {
    font-size: var(--h4);
    line-height: 1.3;
    font-weight: 600;
    color: var(--headline);
    margin: 0 0 10px;
    letter-spacing: var(--ls-tight);
}
.book-card__title a { color: var(--headline); }
.book-card__title a:hover { color: var(--primary); }

.book-card__meta {
    font-size: 11px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--meta);
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin: 0;
}
.book-card__meta span + span::before { content: "·"; margin-right: 8px; }

.book-card__excerpt { font-size: 16px; line-height: 25px; margin: 12px 0 0; }

/* ==========================================================================
   ANASAYFA — Satın alma şeridi
   ========================================================================== */

/* Eserlerim bölümünün içindeki satır — ayrı bir bölüm değildir. */
.buy { padding: 20px 0 0; position: relative; }

.buy__grid { display: grid; grid-template-columns: 33% 44% 22.664%; align-items: center; min-height: 76px; }

.buy__wave-col { position: relative; height: 100%; }
.buy__wave { position: absolute; width: 175px; bottom: -30px; left: -76px; max-width: none; }

.buy__cta { display: flex; justify-content: flex-end; position: relative; z-index: 2; }

/* ==========================================================================
   ANASAYFA — Etkinlikler
   ========================================================================== */

.events-sec { padding: 10px 0 80px; position: relative; }

.events-sec__head { margin-bottom: 20px; }
.events-sec__head h2 { color: var(--headline); margin: 0; }

/* Etkinlik kartı — özgün wp-event-manager kartı */
.event-widgets { display: flex; flex-wrap: wrap; gap: 30px; }

.event-widget {
    width: 250px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(34, 34, 34, .10);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    color: #111;
    display: block;
}
.event-widget:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: #111; }

.event-widget__banner { aspect-ratio: 248 / 310; overflow: hidden; background: var(--light); }
.event-widget__banner img { width: 100%; height: 100%; object-fit: cover; }

.event-widget__info { padding: 15px; }

.event-widget__title {
    font-size: var(--h4); font-weight: 500; line-height: 22px;
    color: #111; margin: 0 0 10px; letter-spacing: 0;
}

.event-widget__row {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; line-height: 20px; color: #111; margin: 0 0 4px;
}
.event-widget__row svg { flex: 0 0 15px; opacity: .65; }

/* ==========================================================================
   İç sayfalar
   ========================================================================== */

/* Özgün siteyle aynı: düz krem zemin, 230px üst boşluk, ortalanmış içerik */
.page-head {
    padding: 230px 0 0;
    background: var(--light);
    text-align: center;
}
.page-head .container { padding: 20px 10px; }
.page-head h1 {
    font-size: var(--h2);
    line-height: var(--h2-lh);
    font-weight: 600;
    letter-spacing: -1.08px;
    color: var(--headline);
    max-width: 75%;
    margin: 16px auto;
}
.page-head p { max-width: 60ch; margin: 0 auto; font-size: 16px; }

.breadcrumbs {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; list-style: none; margin: 0; padding: 0;
    font-size: var(--text); line-height: var(--text-lh); color: var(--headline);
}
.breadcrumbs li + li::before { content: "›"; margin-right: 8px; color: var(--headline); }
.breadcrumbs a { color: var(--headline); }
.breadcrumbs a:hover { color: var(--primary); }

.section-head { margin-bottom: 50px; }
.section-head--center { text-align: center; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { max-width: 62ch; }
.section-head--center p { margin-inline: auto; }

.eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}

/* --- Etkinlik listesi (iç sayfa) ----------------------------------------- */

.event-list { display: grid; gap: 22px; }

.event-card {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

.event-card__date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    aspect-ratio: 1 / 1;
    background: var(--primary);
    border-radius: var(--radius-sm);
    color: var(--headline);
    line-height: 1.1;
}
.event-card__day   { font-size: 34px; font-weight: 700; letter-spacing: -.03em; }
.event-card__month { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.event-card__year  { font-size: 12px; font-weight: 500; opacity: .7; }

.event-card__title { font-size: 22px; margin-bottom: 8px; }
.event-card__title a { color: var(--headline); }
.event-card__title a:hover { color: var(--primary); }

.event-card__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; color: var(--body); margin: 0; }
.event-card__meta span { display: inline-flex; align-items: center; gap: 7px; }

.event-card__cta { white-space: nowrap; }

.badge {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: .04em;
    background: var(--light); color: var(--headline);
}
.badge--past   { background: #f2f2f4; color: var(--body); }
.badge--soon   { background: var(--primary); color: var(--headline); }
.badge--online { background: var(--accent); color: var(--white); }

/* --- Tekil içerik -------------------------------------------------------- */

.single { padding: 100px 0 90px; }

/* Özgün yazı sayfasında içerik iki eşit sütundur (483 + 483, 20px aralık). */
.single__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    max-width: 986px;
    margin-inline: auto;
}

.single__cover { background: transparent; }
.single__cover img { width: 100%; }

.prose { font-size: var(--text); line-height: 30px; color: #4a4b52; }
.prose h2 { font-size: 30px; margin-top: 1.6em; line-height: 1.25; }
.prose h3 { font-size: 23px; margin-top: 1.5em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--headline); }
.prose img { border-radius: var(--radius); margin: 1.6em 0; }
.prose blockquote {
    margin: 1.8em 0; padding: 22px 28px;
    border-left: 4px solid var(--primary);
    background: var(--light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--headline);
}

.entry-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; color: var(--body); margin-bottom: 26px; }
.entry-meta span { display: inline-flex; align-items: center; gap: 7px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 30px 0 0; padding: 0; }
.tag-list a {
    display: inline-block; padding: 6px 16px;
    border: 1px solid var(--border); border-radius: 100px;
    font-size: 14px; color: var(--body);
}
.tag-list a:hover { border-color: var(--primary); background: var(--primary); color: var(--headline); }

/* --- Formlar ------------------------------------------------------------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field > label { font-size: 14px; font-weight: 600; color: var(--headline); }
.field .req { color: #d93025; }

.input, .textarea, .select {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font);
    font-size: 16px;
    color: var(--headline);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(250, 215, 37, .25);
}
.textarea { min-height: 150px; resize: vertical; line-height: 1.7; }

.select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23222' d='M7 9 0 2l1.4-1.4L7 6.2 12.6.6 14 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
    display: inline-block; padding: 13px 22px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 15px; font-weight: 600; color: var(--body);
    cursor: pointer; transition: all .22s var(--ease);
}
.radio-pill input:checked + span { background: var(--primary); border-color: var(--primary); color: var(--headline); }
.radio-pill input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

.field-error { font-size: 13px; color: #d93025; font-weight: 500; }
.input.has-error, .textarea.has-error { border-color: #d93025; }
.form-note { font-size: 13px; color: var(--body); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.alert { padding: 16px 22px; border-radius: var(--radius); font-size: 15px; margin-bottom: 24px; border: 1px solid transparent; }
.alert--success { background: #eaf7ef; border-color: #bfe5cd; color: #1c6b3a; }
.alert--error   { background: #fdeceb; border-color: #f5c6c3; color: #a12119; }
.alert--info    { background: var(--light); border-color: #f0deb4; color: #6b5518; }

/* --- İletişim ------------------------------------------------------------ */

.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: start; }

.contact__stage { position: relative; }
.contact__stage > img { border-radius: var(--radius); position: relative; z-index: 1; }
/* Özgün sayfadaki nokta deseni */
.contact__dots {
    position: absolute;
    width: 175px; max-width: none;
    bottom: -30px; left: -60px;
    z-index: 0;
}

.contact__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.contact__list .ico {
    flex: 0 0 40px; height: 40px;
    display: grid; place-items: center;
    background: var(--light); border-radius: 50%;
    color: var(--headline);
}
.contact__list strong { display: block; color: var(--headline); font-size: 14px; }

.contact__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

/* --- Yorumlar ------------------------------------------------------------ */

.comments { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--border); }
.comment-list { list-style: none; margin: 0 0 45px; padding: 0; display: grid; gap: 22px; }
.comment { padding: 24px 26px; background: #fbfbfc; border: 1px solid var(--border); border-radius: var(--radius); }
.comment__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary); color: var(--headline);
    display: grid; place-items: center; font-weight: 700; font-size: 16px;
}
.comment__name { font-weight: 600; color: var(--headline); }
.comment__date { font-size: 13px; color: var(--body); }
.comment__body { font-size: 15px; margin: 0; }

/* --- Sayfalama ----------------------------------------------------------- */

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 50px; }
.pg {
    min-width: 48px; height: 48px;
    display: grid; place-items: center;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-weight: 600; font-size: 15px; color: var(--body);
}
.pg:hover { border-color: var(--primary); color: var(--headline); }
.pg.is-current { background: var(--primary); border-color: var(--primary); color: var(--headline); }

/* --- Boş durum ----------------------------------------------------------- */

.empty { text-align: center; padding: 70px 30px; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--body); }
.empty h3 { margin-bottom: 8px; }

/* ==========================================================================
   Alt bilgi — koyu lacivert
   ========================================================================== */

.site-footer { background: var(--dark); color: var(--body); padding: 90px 0 0; }

.footer__grid { display: grid; grid-template-columns: 31% 23% 23% 23%; gap: 0; }

.footer__logo { height: 58px; width: auto; margin-bottom: 20px; }
.footer__note { color: var(--body); margin-bottom: 22px; }

.footer h3 { font-size: 24px; font-weight: 600; color: var(--body); margin: 0 0 20px; letter-spacing: var(--ls-tight); }

.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__links a { font-size: var(--text); color: var(--white); }
.footer__links a:hover { color: var(--primary); }

.socials { display: flex; gap: 18px; }
.socials a { color: var(--white); display: grid; place-items: center; transition: color .25s var(--ease), transform .25s var(--ease); }
.socials a:hover { color: var(--primary); transform: translateY(-3px); }
.socials svg { width: 26px; height: 26px; }

.newsletter { display: flex; gap: 10px; margin-top: 18px; }
.newsletter .input {
    flex: 1; padding: 13px 16px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    color: var(--white);
}
.newsletter .input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter .input:focus { background: rgba(255, 255, 255, .12); border-color: var(--primary); }
.newsletter .btn { padding: 13px 20px; }

.footer__bottom {
    margin-top: 60px;
    padding: 26px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex; flex-wrap: wrap; gap: 14px;
    align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--body);
}
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--white); font-weight: 600; }
.footer__bottom a:hover { color: var(--primary); }

/* --- Yukarı çık ---------------------------------------------------------- */

.to-top {
    position: fixed; right: 26px; bottom: 26px; z-index: 90;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: var(--primary); color: var(--headline);
    border: 0; border-radius: var(--radius);
    cursor: pointer; opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-sm);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--secondary); }

/* --- Belirme animasyonu (yalnızca JS varken) ----------------------------- */

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    [data-parallax] { transform: none !important; }
}

/* ==========================================================================
   Duyarlı düzen — kırılma noktaları özgün siteyle aynı (1024 / 767)
   ========================================================================== */

@media (max-width: 1280px) {
    :root { --logo-h: 150px; }
}

@media (max-width: 1199px) {
    :root { --h1: 60px; }
    .single__grid { max-width: 100%; }
    .bio__body { margin: 100px 0 120px 60px; }
    .book-card__info { padding: 28px 24px; }
}

@media (max-width: 1024px) {
    :root {
        --h1: 48px; --h2: 34px; --h2-lh: 1.2; --h3: 24px;
        --logo-h: 110px; --stage-h: 500px; --disc-w: 500px;
    }

    .nav__list {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 84vw);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        padding: 100px 32px 40px;
        background: var(--white);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .12);
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        overflow-y: auto;
        z-index: 5;
    }
    .nav__list.is-open { transform: translateX(0); }
    .nav__list li { width: 100%; }
    .nav__list a { display: block; padding: 12px 0; font-size: 19px; border-bottom: 1px solid var(--border); }
    .nav__list a::after { display: none; }

    .nav-toggle { display: block; order: 3; }
    .nav__cta { order: 2; }
    .only-mobile { display: block; }
    .site-header.is-stuck .brand img { height: 72px; }

    /* Giriş */
    .hero { padding: 150px 0 50px; background-position: bottom right; background-size: 100% auto; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__text { text-align: center; }
    .hero__quote, .hero__source { width: 100%; }
    .hero__source { text-align: center; }
    .hero__stage { margin: 100px 100px 0; width: auto; }
    .hero__disc { left: 50%; transform: translateX(-50%); }
    .hero__portrait-box { right: 0; }
    .hero__portrait-inner { margin: 0 -30px; }
    .hero__portrait { width: 570px; max-width: 100%; border-radius: 0 0 300px 500px; }
    .hero__book { width: 150px; }
    .hero__book--1 { top: -57px; left: 11px; }
    .hero__dots { width: 150px; }
    .hero .shape--s1 { width: 90px; height: 90px; }
    .hero .shape--s2, .hero .shape--s3, .hero .shape--s4 { width: 35px; height: 35px; }

    /* Biyografi */
    .bio__grid { grid-template-columns: 1fr; }
    .bio__media { margin: 150px 100px 0; height: 500px; }
    .bio__disc { width: 500px; height: 500px; left: 50%; transform: translateX(-50%); }
    .bio__photo { width: 400px; left: 50%; margin-left: -200px; padding-left: 0; }
    .bio__body { margin: 90px 0 60px; width: 100%; text-align: center; }
    .bio__title { transform: none; margin-bottom: 20px; }
    .bio__text { text-align: center; margin-inline: auto; }
    .bio .shape--s1 { width: 90px; height: 90px; top: 30px; right: 20px; }
    .bio .shape--s2 { width: 35px; height: 35px; bottom: 100px; right: 30px; }
    .bio .shape--s3 { width: 35px; height: 35px; top: 50px; left: 0; }

    /* Alıntı */
    .quote-sec { padding: 60px 0 0; }
    .quote-sec__grid { grid-template-columns: 1fr; }
    .quote-sec__text { text-align: center; margin-inline: auto; padding-bottom: 40px; }
    .quote-sec__stage { margin: 50px 100px 0; width: auto; height: 500px; }
    .quote-sec__book { width: 450px; left: 50%; margin-left: -225px; border-radius: 0 0 250px 180px; }
    .quote-sec__dots { width: 150px; }
    .quote-sec .shape--blob { width: 250px; height: 250px; top: -50px; right: -80px; }
    .quote-sec .shape--s1 { width: 90px; height: 90px; }
    .quote-sec .shape--s2 { width: 25px; height: 25px; bottom: 100px; left: -10px; }
    .quote-sec .shape--s3 { width: 25px; height: 25px; top: -20px; right: 100px; }

    /* Eserler */
    .works { padding: 90px 0; }
    .books { padding: 30px 10px 20px; gap: 24px; }

    /* Satın alma */
    .buy__grid { grid-template-columns: 1fr; gap: 30px; justify-items: center; }
    .buy__wave-col { height: auto; }
    .buy__wave { position: static; width: 140px; margin: 0 auto; }
    .buy__cta { justify-content: center; }

    .events-sec { padding: 40px 0 70px; }
    .events-sec__head { text-align: center; }
    .event-widgets { justify-content: center; }

    .contact__grid { grid-template-columns: 1fr; gap: 44px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .page-head { padding: 220px 0 50px; }
}

@media (max-width: 767px) {
    :root {
        --h1: 34px; --h2: 26px; --h3: 21px; --h4: 18px;
        --text: 16px; --text-lh: 26px;
        --logo-h: 32px; --stage-h: 320px; --disc-w: 320px;
    }

    .section { padding: 60px 0; }
    .site-header.is-stuck .brand img { height: 30px; }

    /* Dar ekranda başlık taşmasın: İletişim bağlantısı zaten açılır menüde var. */
    .nav__cta { display: none; }

    .hero { padding: 125px 0 50px; }
    .hero__heading { font-size: 20px; line-height: 30px; }
    .hero__stage { margin: 50px 10px 0; }
    .hero__portrait-inner { margin: 0 50px 0 0; }
    .hero__portrait { width: auto; max-width: 100%; border-radius: 0 0 200px 300px; }
    .hero__book { width: 125px; }
    .hero__book--1 { top: -31px; left: 6px; }
    .hero__book--2 { bottom: -50px; right: 50px; }
    .hero__dots { width: 100px; top: -30px; right: 0; }
    .hero .shape--s1 { width: 60px; height: 60px; bottom: 30px; left: 11px; }
    .hero .shape--s2, .hero .shape--s3, .hero .shape--s4 { width: 25px; height: 25px; }
    .hero .shape--s3 { top: 32px; right: 42px; }
    .hero .shape--s4 { bottom: 0; right: 21px; }

    .bio__media { margin: 70px 10px 0; height: 320px; }
    .bio__disc { width: 320px; height: 320px; }
    .bio__photo { width: 250px; margin-left: -125px; }
    .bio__body { margin: 60px 0 40px; }
    .bio__text { text-align: left; }
    .bio .shape--s1 { width: 60px; height: 60px; top: 0; right: 20px; }
    .bio .shape--s2 { width: 25px; height: 25px; bottom: 50px; right: 20px; }
    .bio .shape--s3 { width: 25px; height: 25px; top: 0; left: 0; }

    .quote-sec__stage { margin: 60px 10px 0; height: 320px; }
    .quote-sec__book { width: 280px; margin-left: -140px; border-radius: 0 0 150px 100px; }
    .quote-sec__dots { width: 100px; bottom: -10px; }
    .quote-sec .shape--blob { width: 125px; height: 125px; top: 30px; right: 0; }
    .quote-sec .shape--s1 { width: 60px; height: 60px; bottom: 10px; right: 10px; }
    .quote-sec .shape--s2 { width: 15px; height: 15px; bottom: 50px; left: 10px; }
    .quote-sec .shape--s3 { width: 15px; height: 15px; top: 0; right: 50px; }

    .works { padding: 75px 0 60px; }
    .books { grid-template-columns: 1fr; padding: 0 10px; }
    .book-card__info { padding: 26px 24px; }

    .page-head { padding: 150px 0 40px; }

    .single { padding: 40px 0 60px; }
    .single__grid { grid-template-columns: 1fr; gap: 32px; }
    .single__cover { max-width: 380px; margin-inline: auto; }

    .form-grid { grid-template-columns: 1fr; }
    .contact__card { padding: 26px 22px; }

    .event-card { grid-template-columns: 88px 1fr; gap: 18px; }
    .event-card__cta { grid-column: 1 / -1; }
    .event-card__cta .btn { width: 100%; }
    .event-card__day { font-size: 26px; }

    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { justify-content: center; text-align: center; }
    .to-top { right: 16px; bottom: 16px; }
}

@media print {
    .site-header, .site-footer, .to-top, .comments, .nav-toggle, .shape { display: none !important; }
    body { color: #000; font-size: 12pt; }
    a { text-decoration: underline; }
}
