:root {
    --bg: #faf7f2;
    --surface: #ffffff;
    --ink: #1c1b1a;
    --ink-soft: #55524d;
    --muted: #8a857d;
    --line: #e8e2d8;
    --accent: #1f5f5b;
    --accent-dark: #163f3c;
    --accent-soft: #e4efee;
    --accent-light: #7fb8b2;
    --warm: #c8743d;
    --warm-soft: #f6e3d3;
    --radius: 18px;
    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow: 0 10px 30px rgba(28, 27, 26, .08);
    --shadow-lg: 0 30px 60px -20px rgba(31, 95, 91, .35);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(1120px, 100% - 2rem); margin-inline: auto; position: relative; }
.container.narrow { width: min(760px, 100% - 2rem); }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 600; color: var(--warm); margin-bottom: .9rem; display: flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--warm); border-radius: 2px; }
.article-head .eyebrow, .center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section { padding: 5rem 0; position: relative; }
.section.page { padding-top: 3.5rem; }
.section-title { margin-bottom: .25rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.page-head { max-width: 680px; margin-bottom: 2rem; }

/* ---------- Arka plan: yüzen vektörler + parçacık ağı ---------- */
.bg-shapes { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
#bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.blob { position: absolute; width: 60vmax; opacity: .22; filter: blur(60px); will-change: transform; }
.blob-1 { top: -25vmax; left: -20vmax; animation: drift1 26s ease-in-out infinite alternate; }
.blob-2 { bottom: -30vmax; right: -22vmax; width: 55vmax; animation: drift2 32s ease-in-out infinite alternate; }
.blob-3 { top: 35vh; left: 45vw; width: 40vmax; opacity: .16; animation: drift3 38s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0, 0) rotate(0deg) scale(1); } to { transform: translate(8vw, 10vh) rotate(25deg) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0, 0) rotate(0deg); } to { transform: translate(-10vw, -8vh) rotate(-30deg) scale(1.08); } }
@keyframes drift3 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-12vw, 12vh) scale(.85) rotate(40deg); } }
.ring { position: absolute; color: var(--accent); opacity: .18; }
.ring-1 { width: 260px; top: 12vh; right: 8vw; animation: spin 60s linear infinite; }
.ring-2 { width: 180px; bottom: 14vh; left: 6vw; animation: spin 80s linear infinite reverse; }
.grid-dots { position: absolute; width: 220px; height: 220px; left: 4vw; top: 50vh; color: var(--warm); opacity: .22; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Özel imleç ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; opacity: 0; transform: translate(-50%, -50%); }
.cursor { width: 38px; height: 38px; border: 1.5px solid var(--accent); transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s, opacity .3s; }
.cursor-dot { width: 6px; height: 6px; background: var(--warm); transition: opacity .3s, transform .15s; }
html.has-cursor .cursor, html.has-cursor .cursor-dot { opacity: 1; }
html.has-cursor .cursor.hover { width: 64px; height: 64px; background: rgba(31, 95, 91, .12); border-color: transparent; }
html.has-cursor .cursor.text { width: 4px; height: 36px; border-radius: 2px; background: var(--accent); border-color: transparent; }
html.has-cursor .cursor.down { transform: translate(-50%, -50%) scale(.8); }
html.has-cursor a, html.has-cursor button, html.has-cursor .card { cursor: none; }
html.has-cursor body { cursor: none; }

/* ---------- Belirme animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .w > span { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .9s var(--ease), opacity .6s; }
.split.in .w > span { transform: none; opacity: 1; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 247, 242, .72); backdrop-filter: blur(14px) saturate(1.4); border-bottom: 1px solid rgba(232, 226, 216, .7); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 8px 30px -12px rgba(28, 27, 26, .15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: flex; flex-direction: column; color: var(--ink); position: relative; padding-left: 1.1rem; }
.brand::before { content: ''; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--warm)); box-shadow: 0 0 0 4px rgba(31, 95, 91, .12); animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(31, 95, 91, .12); } 50% { box-shadow: 0 0 0 9px rgba(31, 95, 91, .04); } }
.brand-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; line-height: 1.1; }
.brand-tagline { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.site-nav { display: flex; gap: .25rem; }
.site-nav a { padding: .5rem .95rem; border-radius: 999px; color: var(--ink-soft); font-weight: 500; font-size: .95rem; position: relative; transition: color .25s, background .25s; }
.site-nav a::after { content: ''; position: absolute; left: .95rem; right: .95rem; bottom: .3rem; height: 2px; background: var(--warm); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.active { background: var(--ink); color: #fff; }
.site-nav a.active::after { display: none; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Butonlar ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .8rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer; font-family: inherit; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s, border-color .3s; will-change: transform; }
.btn > span { position: relative; z-index: 1; display: inline-block; transition: transform .4s var(--ease); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 25px -10px rgba(31, 95, 91, .6); }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, var(--accent-dark), var(--accent) 50%, var(--accent-light)); background-size: 200% 100%; background-position: 100% 0; transition: background-position .6s var(--ease); }
.btn-primary:hover { color: #fff; box-shadow: 0 18px 35px -12px rgba(31, 95, 91, .7); }
.btn-primary:hover::before { background-position: 0 0; }
.btn-ghost { background: rgba(255, 255, 255, .5); color: var(--ink); border-color: var(--line); backdrop-filter: blur(6px); }
.btn-ghost::before { content: ''; position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.btn-ghost:hover { color: #fff; border-color: var(--ink); }
.btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-danger { background: #b23b3b; color: #fff; }
.btn-danger:hover { background: #8f2d2d; color: #fff; }
.btn-sm { padding: .4rem .85rem; font-size: .85rem; }
.text-link { font-weight: 600; }
.arrow-link span { display: inline-block; transition: transform .35s var(--ease); }
.arrow-link:hover span { transform: translateX(6px); }

/* ---------- Hero ---------- */
.hero { padding: 5rem 0 6rem; position: relative; overflow: hidden; min-height: calc(100vh - 76px); display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px circle at var(--sx, 70%) var(--sy, 40%), rgba(31, 95, 91, .14), transparent 60%); pointer-events: none; transition: background .2s; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; width: min(1120px, 100% - 2rem); margin-inline: auto; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .w:nth-child(3n) > span { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-deco { position: absolute; inset: 0; pointer-events: none; color: var(--accent); }
.deco { position: absolute; will-change: transform; }
.deco-wave { width: 260px; left: 4%; bottom: 18%; opacity: .5; color: var(--warm); }
.deco-star { width: 34px; left: 48%; top: 14%; color: var(--warm); animation: twinkle 3s ease-in-out infinite; }
.deco-circle { width: 90px; right: 6%; top: 10%; opacity: .5; animation: spin 40s linear infinite; }
.deco-lines { width: 110px; right: 4%; bottom: 14%; opacity: .35; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0); opacity: .9; } 50% { transform: scale(1.35) rotate(25deg); opacity: .5; } }
.draw { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 4s var(--ease) 1s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: 30px; padding: 6px; background: linear-gradient(135deg, var(--accent-light), var(--warm-soft), var(--accent)); box-shadow: var(--shadow-lg); animation: float 7s ease-in-out infinite; }
.hero-frame img { border-radius: 26px; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-placeholder { aspect-ratio: 4 / 5; border-radius: 26px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; display: grid; place-items: center; font-family: var(--font-serif); font-size: 7rem; position: relative; overflow: hidden; }
.hero-placeholder::after { content: ''; position: absolute; inset: -40%; background: conic-gradient(from 0deg, transparent, rgba(255,255,255,.18), transparent 30%); animation: spin 8s linear infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.hero-orbit { position: absolute; inset: -12%; width: 124%; height: 124%; color: var(--warm); opacity: .6; animation: spin 30s linear infinite; pointer-events: none; }
.orbit-dot { filter: drop-shadow(0 0 6px var(--warm)); }
.wave { display: block; width: 100%; height: 70px; position: absolute; left: 0; }
.wave-hero { bottom: -1px; color: var(--surface); }

/* ---------- Tam genişlik afiş ---------- */
.hero-banner { padding: 0 0 5rem; min-height: 0; display: block; }
.hero-banner::before { display: none; }
.banner { position: relative; width: 100%; overflow: hidden; background: var(--ink); max-height: 82vh; }
.banner img { width: 100%; height: auto; max-height: 82vh; object-fit: cover; object-position: left center; display: block; transform: scale(1.03); will-change: transform; animation: banner-in 1.6s var(--ease) both; }
@keyframes banner-in { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.03); } }
.banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 27, 26, .55), transparent 35%); pointer-events: none; }
.banner-actions { position: absolute; left: 50%; bottom: clamp(2rem, 6vw, 4.5rem); transform: translateX(-50%); display: flex; gap: .75rem; flex-wrap: wrap; z-index: 2; width: min(1120px, 100% - 2rem); justify-content: flex-start; }
.banner-ghost { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .5); }
.banner-ghost:hover { color: var(--ink); border-color: #fff; }
.banner-ghost::before { background: #fff; }
.banner-text { display: none; padding-top: 2.5rem; }
.hero-banner .wave-hero { bottom: -1px; }
@media (max-width: 900px) {
    .banner, .banner img { max-height: none; }
    .banner img { aspect-ratio: 3 / 2; object-position: 18% center; }
    .banner-actions { display: none; }
    .banner-text { display: block; }
}
@media (max-width: 640px) {
    .banner img { aspect-ratio: 4 / 3; }
}

/* ---------- Hakkımda şeridi ---------- */
.about-strip { background: var(--surface); padding: 4rem 0; position: relative; }
.about-strip-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: center; max-width: 960px; }
.about-strip-visual { color: var(--accent); max-width: 260px; margin-inline: auto; }
.about-strip-visual svg { width: 100%; }
.pulse { transform-origin: center; animation: pulse-dot 3s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }
.spin-slow { transform-origin: center; animation: spin 24s linear infinite; }

/* ---------- Kartlar ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; perspective: 1200px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; position: relative; transform-style: preserve-3d; transition: box-shadow .5s var(--ease), border-color .3s; }
.card.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease), box-shadow .5s var(--ease); }
.card.reveal.in { transition: opacity .9s var(--ease), transform .15s ease-out, box-shadow .5s var(--ease); }
.card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.card-shine { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .45), transparent 45%); transition: opacity .4s; }
.card:hover .card-shine { opacity: 1; }
.card-media { overflow: hidden; display: block; }
.card-media img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; transition: transform 1s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-placeholder { aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--accent-soft), #f6efe5); display: grid; place-items: center; position: relative; color: var(--accent); overflow: hidden; }
.card-placeholder svg { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 1s var(--ease); }
.card:hover .card-placeholder svg { transform: scale(1.1) translateY(-4px); }
.card-placeholder span { font-family: var(--font-serif); font-size: 3.8rem; color: var(--accent); opacity: .7; position: relative; }
.card-body { padding: 1.35rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-meta { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }
.card-cat { color: var(--warm); font-weight: 600; }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); display: inline-block; }
.card-title { margin: 0; font-size: 1.25rem; }
.card-title a { color: var(--ink); background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0 2px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .5s var(--ease), color .3s; }
.card:hover .card-title a { background-size: 100% 2px; color: var(--accent); }
.card-excerpt { color: var(--ink-soft); font-size: .93rem; margin: 0; flex: 1; }
.card-link { font-weight: 600; font-size: .9rem; margin-top: .5rem; }

/* ---------- Chips & pagination ---------- */
.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.chip { padding: .45rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); font-size: .88rem; font-weight: 500; transition: .3s var(--ease); }
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent-light); }
.chip small { color: var(--muted); margin-left: .25rem; }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.active small { color: rgba(255,255,255,.7); }
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; }
.pagination a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); font-weight: 600; background: var(--surface); transition: .3s var(--ease); }
.pagination a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pagination a.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Yazı ---------- */
.progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; }
.progress-bar span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--accent), var(--warm)); transform: scaleX(0); transform-origin: left; }
.article-head { text-align: center; margin-bottom: 2rem; }
.article-head .card-meta { justify-content: center; margin-bottom: 1rem; }
.article-cover { margin: 0 0 2.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.prose { font-size: 1.1rem; line-height: 1.85; color: var(--ink); }
.prose p { margin-bottom: 1.3em; }
.prose > p:first-of-type::first-letter { font-family: var(--font-serif); font-size: 3.6em; float: left; line-height: .8; margin: .08em .12em 0 0; color: var(--accent); font-weight: 600; }
.prose h2, .prose h3 { margin-top: 2em; }
.prose img { border-radius: 12px; margin: 1.5em auto; box-shadow: var(--shadow); }
.prose blockquote { margin: 1.8em 0; padding: 1em 1.5em; border-left: 3px solid var(--warm); background: var(--surface); border-radius: 0 12px 12px 0; color: var(--ink-soft); font-style: italic; font-family: var(--font-serif); font-size: 1.15em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.article-foot { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.author { display: flex; align-items: center; gap: .9rem; }
.author img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--surface); box-shadow: var(--shadow); }
.author strong { display: block; }
.author span { color: var(--muted); font-size: .9rem; }
.related { margin-top: 4rem; }

/* ---------- Hakkımda sayfası ---------- */
.about-page { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: start; }
.about-photo { position: sticky; top: 100px; }
.about-photo .hero-frame { animation: none; }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-list { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1.5rem; margin-top: 2rem; }
.contact-list dt { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; padding-top: .2rem; }
.contact-list dd { margin: 0; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; box-shadow: var(--shadow); }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-weight: 500; font-size: .9rem; }
.contact-form input, .contact-form textarea { font: inherit; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); transition: border-color .3s, box-shadow .3s, transform .3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); transform: translateY(-1px); }
.req { color: var(--warm); }
.hp { position: absolute; left: -9999px; }

/* ---------- Flash ---------- */
.flash { padding: .9rem 1.2rem; border-radius: 12px; margin-top: 1rem; font-weight: 500; animation: slide-in .6s var(--ease); }
@keyframes slide-in { from { opacity: 0; transform: translateY(-10px); } }
.flash-success { background: #e4f3e8; color: #1f5a30; }
.flash-error { background: #fbe7e7; color: #8f2d2d; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); padding: 3rem 0 2.5rem; margin-top: 4rem; position: relative; }
.wave-footer { top: -69px; color: var(--surface); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }
.footer-title, .footer-copy { color: var(--muted); font-size: .88rem; }
.socials { display: flex; gap: .5rem; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--ink-soft); transition: .35s var(--ease); }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-4px) rotate(-8deg); box-shadow: var(--shadow); }

/* ---------- Duyarlılık ---------- */
@media (max-width: 900px) {
    .hero-inner, .about-page, .contact, .about-strip-inner { grid-template-columns: 1fr; }
    .hero { min-height: 0; padding: 3.5rem 0 5rem; }
    .hero-media { order: -1; max-width: 240px; }
    .hero-orbit { inset: -14%; width: 128%; height: 128%; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .about-photo { position: static; max-width: 320px; }
    .about-strip-visual { max-width: 180px; }
    .deco-wave, .deco-lines { display: none; }
}
@media (max-width: 640px) {
    .grid { grid-template-columns: 1fr; }
    .nav-toggle { display: flex; }
    .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; padding: .75rem; }
    .site-nav.open { display: flex; animation: slide-in .4s var(--ease); }
    .site-nav a { border-radius: 12px; padding: .8rem 1rem; }
    .site-nav a::after { display: none; }
    .section { padding: 3rem 0; }
    .hero { padding: 2.5rem 0 4rem; }
    .hero-media { max-width: 190px; }
    .hero-frame { animation: none; }
    .hero-frame img, .hero-placeholder { aspect-ratio: 1; border-radius: 50%; font-size: 4rem; }
    .hero-frame { border-radius: 50%; }
    .contact-form { padding: 1.4rem; }
    .blob { filter: blur(40px); }
    .ring, .grid-dots { display: none; }
}
@media (hover: none), (pointer: coarse) {
    .cursor, .cursor-dot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal, .split .w > span { opacity: 1; transform: none; }
    #bg-canvas, .cursor, .cursor-dot { display: none; }
}
