/* ==========================================================================
   Oğuzhan — v6 (MyDiary / Salt in our Hair esintili tasarım dili)
   Palet: White-0 #FFFFFF · weak-50 #f7f7f7 · soft-200 #ebebeb
          sub-300 #d1d1d1 · surface-800 #262626 · strong-950 #171717
          Brand #335CFF
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --weak: #f7f7f7;
  --soft: #ebebeb;
  --sub: #d1d1d1;
  --ink: #171717;
  --ink-2: #262626;
  --brand: #335CFF;
  --text-2: #6E6E6E;
  --watermark: #EFEFEF;
  --grid-line: rgba(23, 23, 23, .055);
  --shadow-card: 0 16px 40px -16px rgba(23, 23, 23, .16);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --header-h: 76px;
}

[data-theme="dark"] {
  --bg: #0E0E0F;
  --weak: #1A1A1C;
  --soft: #262628;
  --sub: #3A3A3E;
  --ink: #F5F5F4;
  --ink-2: #E7E7E5;
  --brand: #6B8AFF;
  --text-2: #9C9C97;
  --watermark: #1A1A1C;
  --grid-line: rgba(245, 245, 244, .06);
  --shadow-card: 0 16px 40px -16px rgba(0, 0, 0, .55);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--brand); color: #FFFFFF; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--sub);
  text-decoration-thickness: 1px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
a:hover { text-decoration-color: var(--brand); }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Mikro etiket ---------- */
.micro-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Scroll progress ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: transparent;
  z-index: 150;
  pointer-events: none;
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  justify-self: start;
}
.logo .dot { color: var(--brand); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: var(--weak);
  border-radius: 999px;
}
.main-nav a {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--bg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--ink-2);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}
.icon-btn:hover { color: var(--ink); background: var(--weak); }
.icon-btn svg { width: 18px; height: 18px; }

.theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-sun { display: block; }
[data-theme="dark"] .theme-icon-moon { display: none; }

.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-ink:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }

.menu-toggle { display: none; }

/* ---------- Mobil menü ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--soft);
}
.mobile-menu a[aria-current="page"] { color: var(--brand); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-2);
}
body.menu-open { overflow: hidden; }

/* ---------- Arama overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: min(640px, calc(100% - 48px)); }
.search-box label { display: block; margin-bottom: 16px; }
.search-box input {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--soft);
  outline: none;
  border-radius: 0;
}
.search-box input::placeholder { color: var(--text-2); opacity: .6; }
.search-box input:focus-visible { outline: none; border-bottom-color: var(--brand); }
.search-hint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-2);
}
.search-hint kbd {
  padding: 2px 8px;
  border: 1px solid var(--sub);
  border-radius: 6px;
  font-family: inherit;
  font-size: 11px;
}
.search-results { margin-top: 32px; }
.search-results a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.search-results a span:last-child {
  padding: 4px 12px;
  background: var(--weak);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
}
.search-results a:hover span:first-child { color: var(--brand); }

/* ---------- Haplar (pills) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--weak);
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.pill svg { width: 13px; height: 13px; }

.card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.card-date svg { width: 14px; height: 14px; }

/* ---------- Yazı kartı (ortak bileşen) ---------- */
.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease;
}
.post-card:hover { transform: translateY(-5px); }
.post-card-media {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--weak);
  transition: box-shadow .3s ease;
}
.post-card:hover .post-card-media { box-shadow: var(--shadow-card); }
.post-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.post-card-title {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.28;
}
.post-card-title a { text-decoration: none; }
.post-card-title a:hover { color: var(--brand); }
.read-more {
  align-self: flex-start;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--ink);
  transition: color .2s ease, text-decoration-color .2s ease;
}
.read-more:hover { color: var(--brand); text-decoration-color: var(--brand); }

/* ---------- Hero (Salt in our Hair tarzı) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(760px, calc(100svh - var(--header-h)));
}
.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 0 45% 55% 0 / 0 50% 50% 0;
  min-height: 420px;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px clamp(28px, 6vw, 96px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--weak);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--brand); }
.hero-hello {
  margin-top: 28px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-2);
}
.hero h1 {
  margin-top: 12px;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 20ch;
}
.hero-sub {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}
.hero-links { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 28px; }

.text-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--ink);
}
.text-link:hover { color: var(--brand); text-decoration-color: var(--brand); }

/* ---------- Genel bölüm ---------- */
.section { padding: 96px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
}
.section-head .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--sub);
  white-space: nowrap;
}
.section-head .more:hover { color: var(--brand); text-decoration-color: var(--brand); }

.center-title {
  text-align: center;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

/* ---------- Marquee (akan şerit) ---------- */
.marquee-section { padding: 96px 0; overflow: hidden; }
.marquee {
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 52s linear infinite;
  padding: 12px 0 24px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-card {
  width: 340px;
  flex: none;
  margin-right: 28px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: nowrap; }
  .marquee { overflow-x: auto; }
}

/* ---------- Trend bölümü ---------- */
.trend-section { padding: 96px 0; }
.trend-feature {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.trend-media {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  transition: box-shadow .3s ease;
}
.trend-media:hover { box-shadow: var(--shadow-card); }
.trend-media img { width: 100%; height: 100%; object-fit: cover; }
.trend-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
}
.trend-info h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.trend-info h3 a { text-decoration: none; }
.trend-info h3 a:hover { color: var(--brand); }
.trend-info p { color: var(--text-2); font-size: 15px; line-height: 1.7; }
.card-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* ---------- Hizmet hapları ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--weak);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.svc-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-2);
}
.svc-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
.svc-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ---------- Sayfa başlığı (grid çizgili) ---------- */
.page-head {
  padding: 104px 0 72px;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 128px 128px;
  background-position: center top;
}
.page-head h1 {
  font-size: clamp(48px, 8.5vw, 104px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.page-head .lede {
  margin-top: 24px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
}
.page-head .count-note {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.filter-pills {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pills a {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--weak);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.filter-pills a:hover { background: var(--soft); color: var(--ink); }
.filter-pills a.active { background: var(--ink); color: var(--bg); }

/* ---------- Blog kart grid'i ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  padding: 80px 0 96px;
}

/* ---------- Yazı detayı ---------- */
.post-head {
  padding: 96px 0 48px;
  text-align: center;
}
.post-head h1 {
  margin: 0 auto;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 20ch;
}
.post-head .post-card-meta {
  justify-content: center;
  margin-top: 28px;
}
.post-head .card-date { margin-left: 0; }

.post-cover { padding-bottom: 80px; }
.post-cover img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.post-cover figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 56px;
  padding-bottom: 80px;
}
.post-layout > * { min-width: 0; }
.post-aside h4 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.post-aside .mini-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  transition: transform .3s ease;
}
.post-aside .mini-card:hover { transform: translateY(-4px); }
.mini-card .post-card-media { border-radius: var(--radius-sm); }
.mini-card .post-card-title { font-size: 16px; line-height: 1.3; }
.mini-card .post-card-meta .card-date { font-size: 12px; }
.mini-card .pill { padding: 6px 12px; font-size: 12px; }
.mini-card .read-more { font-size: 14px; }
.post-aside-sticky { position: sticky; top: calc(var(--header-h) + 24px); }

.post-rail { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.rail-block { padding: 20px 0; border-bottom: 1px solid var(--soft); }
.rail-block:first-child { padding-top: 0; }
.rail-block:last-child { border-bottom: none; }
.rail-label { font-size: 14px; color: var(--text-2); margin-bottom: 6px; }
.rail-value { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.share-icons { display: flex; gap: 10px; margin-top: 10px; }
.share-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--sub);
  border-radius: 50%;
  color: var(--ink-2);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.share-icons a:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.share-icons svg { width: 16px; height: 16px; }
.copy-link-btn {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--sub);
}
.copy-link-btn:hover { color: var(--brand); text-decoration-color: var(--brand); }

/* ---------- Prose (yazı gövdesi) ---------- */
.prose { font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.prose p + p { margin-top: 20px; }
.prose h2 {
  margin: 52px 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.prose blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--brand);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}
.prose pre {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--weak);
  border: 1px solid var(--soft);
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}
.prose code { font-family: var(--font-mono); font-size: .9em; }
.prose p code, .prose li code {
  padding: 2px 7px;
  background: var(--weak);
  border: 1px solid var(--soft);
  border-radius: 6px;
  font-size: 14px;
}
.prose ol { margin: 24px 0; list-style: none; counter-reset: item; }
.prose ol li {
  counter-increment: item;
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
}
.prose ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0; top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}
.prose strong { color: var(--ink); }

.author-row {
  margin-top: 8px;
  padding: 28px;
  background: var(--weak);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
}
.author-row .portrait { width: 52px; height: 52px; }
.author-row .author-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.author-row .author-bio { font-size: 14px; color: var(--text-2); margin-top: 2px; }
.author-row .text-link { margin-left: auto; white-space: nowrap; font-size: 14px; }

.portrait {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: var(--radius-md);
  border: 1px solid var(--soft);
  overflow: hidden;
}
.portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .4s ease;
}
.portrait:hover img { filter: grayscale(0); }
.portrait-lg { width: 200px; height: 200px; border-radius: var(--radius-lg); }

.prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 96px;
}
.prev-next a {
  display: block;
  padding: 28px;
  background: var(--weak);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.prev-next a:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.prev-next a span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.prev-next a.next { text-align: right; }
.prev-next .pn-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }

/* ---------- Hakkımda blokları ---------- */
.split-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
.split-block .col-main p { color: var(--ink-2); font-size: 17px; line-height: 1.75; }
.split-block .col-main p + p { margin-top: 16px; }
.split-block .col-main .text-link { margin-top: 24px; display: inline-block; }

.section + .section { border-top: 1px solid var(--soft); }
.section-sm { padding: 64px 0; }
.section-sm + .section-sm { border-top: 1px solid var(--soft); }

.now-list li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--soft);
  font-size: 15px;
  color: var(--ink-2);
}
.now-list li:last-child { border-bottom: 1px solid var(--soft); }
.now-list .mono {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  min-width: 96px;
  padding-top: 4px;
}

.timeline li {
  display: flex;
  gap: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--soft);
  font-size: 15px;
  color: var(--ink-2);
}
.timeline li:last-child { border-bottom: 1px solid var(--soft); }
.timeline .year { font-size: 13px; font-weight: 700; color: var(--brand); min-width: 56px; padding-top: 2px; }
.timeline .event { flex: 1; }

.tools-inline { display: flex; flex-wrap: wrap; gap: 8px; }
.tools-inline .pill { font-size: 13px; }

.about-head { display: flex; align-items: center; gap: 48px; margin-top: 40px; }
.about-head .lede { margin-top: 16px; }

/* ---------- Hizmetler ---------- */
.service-block {
  padding: 56px 0;
  border-top: 1px solid var(--soft);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
}
.service-block:last-of-type { border-bottom: 1px solid var(--soft); }
.service-block .num { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--brand); padding-top: 4px; }
.service-block h2 { font-size: 30px; letter-spacing: -0.03em; }
.service-block .desc { margin-top: 16px; max-width: 600px; color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.service-block .includes { margin-top: 28px; }
.service-block .includes .micro-label { display: block; margin-bottom: 16px; }
.service-block .includes li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.service-block .includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.service-block .text-link { margin-top: 28px; display: inline-block; }

.process-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.process-row .step {
  padding: 10px 20px;
  background: var(--weak);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.process-row .arr { color: var(--brand); font-weight: 600; }

.cta-block { padding: 104px 0; }
.cta-block h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  letter-spacing: -0.035em;
  max-width: 22ch;
  line-height: 1.12;
}
.cta-block .text-link { margin-top: 32px; display: inline-block; font-size: 17px; }

/* ---------- Projeler ---------- */
.project-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.project-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--weak);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.project-row:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.project-main { flex: 1; min-width: 0; }
.project-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.project-desc { margin-top: 6px; font-size: 14px; color: var(--text-2); line-height: 1.6; }
.project-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.project-side .tags { color: var(--brand); }

/* ---------- Konuşmalar ---------- */
.talk-list { display: flex; flex-direction: column; gap: 16px; }
.talk-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  background: var(--weak);
  border-radius: var(--radius-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.talk-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.talk-year { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--brand); min-width: 48px; }
.talk-main { flex: 1; min-width: 0; }
.talk-event { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.talk-topic { margin-top: 4px; font-size: 14px; color: var(--text-2); }
.talk-type {
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-2);
  white-space: nowrap;
}
.talk-rec { font-size: 14px; font-weight: 600; white-space: nowrap; color: var(--brand); text-decoration: none; }
.talk-rec:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- İletişim ---------- */
.big-mail {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-size: 0% 3px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .35s ease;
}
.big-mail:hover { background-size: 100% 3px; }

.contact-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-meta .pill { font-size: 13px; }
.contact-meta .pill b { font-weight: 700; margin-right: 2px; }
.contact-meta a { color: var(--brand); text-decoration: none; }
.contact-meta a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.contact-form .field { margin-bottom: 28px; }
.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--weak);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--brand);
  background: var(--bg);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.form-status {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  display: none;
}
.form-status.show { display: block; }

.faq details { border-top: 1px solid var(--soft); }
.faq details:last-child { border-bottom: 1px solid var(--soft); }
.faq summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--text-2);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---------- 404 ---------- */
.not-found { padding: 120px 0 140px; }
.not-found .big {
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 260px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--watermark);
}
.not-found p { margin-top: 24px; font-size: 18px; color: var(--text-2); }
.not-found .hero-links { margin-top: 32px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  border-top: 1px solid var(--soft);
  overflow: hidden;
}
.footer-name {
  position: absolute;
  bottom: -0.22em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10vw;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--watermark);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.footer-inner { position: relative; padding: 80px 0 128px; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--text-2); max-width: 280px; line-height: 1.7; }
.footer-col .micro-label { display: block; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--soft);
  font-size: 13px;
  color: var(--text-2);
}

/* ---------- Animasyon sistemi (MyDiary / GSAP) ---------- */
/* FOUC gizleme: yalnızca animations.js 'js-anim' eklediyse (GSAP yüklü + hareket açık) */
html.js-anim [text-split] { opacity: 0; }
html.js-anim .hero-badge,
html.js-anim .hero-links a,
html.js-anim .hero-media img { opacity: 0; }

/* SplitText sarmalayıcıları */
.word, .char { display: inline-block; }

/* ---------- Ok swap (MyDiary primary-btn, birebir çapraz geçiş) ---------- */
.arrow-swap {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: .95em;
  height: .95em;
  margin-left: 3px;
  overflow: hidden;
  vertical-align: -.1em;
}
.arrow-swap svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .38s cubic-bezier(.22, .61, .36, 1);
}
.arrow-swap .a-1 { transform: translate3d(-15px, 10px, 0); }  /* gizli: sol-alt */
.arrow-swap .a-2 { transform: translate3d(0, 0, 0); }         /* görünür */
a:hover .arrow-swap .a-1,
button:hover .arrow-swap .a-1 { transform: translate3d(0, 0, 0); }
a:hover .arrow-swap .a-2,
button:hover .arrow-swap .a-2 { transform: translate3d(15px, -10px, 0); } /* sağ-üst */

/* Alt çizgi barı: hover'da brand rengine + kalınlaşma */
.read-more:hover,
.text-link:hover,
.section-head .more:hover,
.talk-rec:hover {
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
}

/* ---------- Flair butonu (MyDiary createButton) ---------- */
.btn-ink, .form-submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.button-flair {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: scale(0);
  transform-origin: 0 0;
}
.button-flair::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .post-layout { grid-template-columns: 1fr; gap: 56px; }
  .post-body { order: -1; }
  .post-rail, .post-aside-sticky { position: static; }
  .trend-feature { grid-template-columns: 1fr; }
  .trend-media { min-height: 0; aspect-ratio: 16 / 9; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media {
    min-height: 340px;
    max-height: 420px;
    border-radius: 0 0 48% 52% / 0 0 10% 10%;
  }
  .hero-media img { position: absolute; }
  .hero-content { padding: 56px 24px 72px; align-items: center; text-align: center; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-links { justify-content: center; }
}

@media (max-width: 940px) {
  .main-nav { display: none; }
  .btn-contact { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .marquee-section, .trend-section { padding: 64px 0; }
  .marquee-card { width: 280px; margin-right: 20px; }
  .card-grid, .posts-grid { grid-template-columns: 1fr; }
  .page-head { padding: 72px 0 56px; }
  .post-head { padding: 64px 0 32px; }
  .post-cover img { aspect-ratio: 3 / 2; }
  .split-block { grid-template-columns: 1fr; gap: 20px; }
  .service-block { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-list { grid-template-columns: 1fr; }
  .talk-row { flex-wrap: wrap; gap: 8px 20px; }
  .about-head { flex-direction: column; align-items: flex-start; gap: 28px; }
  .author-row { flex-wrap: wrap; }
  .author-row .text-link { margin-left: 0; }
  .prev-next { grid-template-columns: 1fr; }
  .prev-next a.next { text-align: left; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-links { flex-direction: column; gap: 16px; align-items: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .post-card-meta .card-date { margin-left: 0; width: 100%; }
}

/* ==========================================================================
   WordPress eklemeleri (statik tasarımda olmayan küçük parçalar)
   ========================================================================== */

/* Sayfalama */
.pagination,
.navigation.pagination {
  margin: 48px 0 72px;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  background: var(--weak);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.pagination .page-numbers:hover { background: var(--soft); }
.pagination .page-numbers.current {
  background: var(--ink);
  color: var(--bg);
}
.pagination .page-numbers.dots { background: transparent; }

/* Yorumlar */
.comments-area { padding: 0 0 72px; max-width: 800px; }
.comments-title { font-size: 24px; letter-spacing: -0.02em; }
.comment-list { list-style: none; margin: 24px 0; padding: 0; }
.comment-list .comment-body {
  padding: 20px 0;
  border-bottom: 1px solid var(--soft);
}
.comment-list .comment-author { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.comment-list .comment-author img { border-radius: 50%; }
.comment-list .comment-metadata { font-size: 13px; color: var(--text-2); margin: 4px 0 8px; }
.comment-list .reply a {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.comment-form { display: grid; gap: 16px; margin-top: 24px; }
.comment-form label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 6px; }
.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--soft);
  border-radius: var(--radius-sm);
  background: var(--weak);
  color: var(--ink);
  font: inherit;
}
.comment-form .submit {
  justify-self: start;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* Özel logo boyutu */
.logo .custom-logo-link img,
.logo img.custom-logo { max-height: 32px; width: auto; display: block; }
.footer-brand .logo img.custom-logo { max-height: 40px; }

/* wpautop boşluk dengesi */
.prose > *:first-child { margin-top: 0; }
.page-links { margin-top: 24px; font-weight: 600; }

/* CF7 formu tema alanlarına uyar */
.contact-form-cf7 .wpcf7-form-control-wrap { display: block; }
.contact-form-cf7 input:not([type="submit"]),
.contact-form-cf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--soft);
  border-radius: var(--radius-sm);
  background: var(--weak);
  color: var(--ink);
  font: inherit;
}
.contact-form-cf7 .wpcf7-submit {
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  cursor: pointer;
}
