:root {
  --bg: #f7f1e8;
  --bg-soft: #efe4d6;
  --surface: #fbf8f4;
  --text: #2f2721;
  --text-soft: #6b5b4d;
  --accent: #a67c52;
  --accent-dark: #8a6340;
  --line: #dbc8b1;
  --shadow: 0 12px 36px rgba(66, 46, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--bg-soft);
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 232, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 199;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 6px;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.subtitle {
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
}

.lead {
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.profile-card {
  position: relative;
  background: linear-gradient(145deg, #efe4d6 0%, #e4d0b8 100%);
  border: 2px solid var(--line);
  border-radius: 32px;
  padding: 28px 28px 20px;
  box-shadow: 0 20px 60px rgba(100, 70, 40, 0.14), 0 4px 12px rgba(100, 70, 40, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 27px;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(80, 50, 20, 0.18);
}

.photo-fallback {
  display: none;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(160deg, #dfc8ad, #bea382);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  place-items: center;
  box-shadow: 0 8px 24px rgba(80, 50, 20, 0.18);
}

.profile-card-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
  text-align: center;
}

.profile-card-title {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: -10px;
}

.about-section {
  background: linear-gradient(160deg, #f7f1e8 0%, #efe4d6 100%);
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-photo-col {
  position: relative;
}

.about-photo-frame {
  position: relative;
  background: linear-gradient(145deg, #e8d9c4, #d4b896);
  border-radius: 32px;
  padding: 18px 18px 64px;
  box-shadow: 0 24px 64px rgba(80, 50, 20, 0.18), 0 4px 16px rgba(80, 50, 20, 0.1);
}

.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 1;
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(60, 35, 10, 0.2);
  display: block;
}

.about-photo-frame .photo-fallback {
  display: none;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(160deg, #dfc8ad, #bea382);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5rem);
  place-items: center;
  box-shadow: 0 8px 28px rgba(60, 35, 10, 0.2);
}

.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.55rem 1.2rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(80, 50, 20, 0.12);
}

.about-photo-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-photo-badge strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.about-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-content-col h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
  color: var(--text);
}

.about-bio p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(80, 50, 20, 0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.stat-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  transition: opacity 0.2s;
}

.stat-toggle:hover {
  opacity: 0.75;
}

.stat-toggle .stat-label {
  color: var(--accent);
}

.stat-link {
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.stat-link:hover {
  opacity: 0.75;
}

.stat-link .stat-label {
  color: var(--accent);
}

.stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
}

.about-cta {
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.cert-section {
  margin-top: 2.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease;
}

.cert-section.open {
  max-height: 1400px;
  opacity: 1;
}

.cert-section-header {
  padding: 2.5rem 0 2rem;
  position: relative;
}

.cert-section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.cert-section-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

.cert-section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.cert-card {
  padding: 2.4rem 2rem;
  position: relative;
  cursor: default;
  overflow: hidden;
  border: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 1px 0 0 0 var(--line), 0 1px 0 0 var(--line), 1px 1px 0 0 var(--line);
}

.cert-card:hover {
  background: var(--bg-soft);
  z-index: 2;
  box-shadow: 0 0 0 1px var(--line), 0 20px 50px rgba(92,68,51,0.12);
  border-color: var(--line);
  border-radius: 6px;
}

.cert-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}

.cert-card:hover::after {
  transform: scaleX(1);
}

.cert-check {
  width: 48px;
  height: 48px;
  margin-bottom: 1.6rem;
}

.check-svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.check-circle-outer {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
  transition: stroke 0.4s ease;
}
.cert-card:hover .check-circle-outer { stroke: var(--accent); }

.check-circle-inner {
  fill: var(--line);
  transition: fill 0.4s ease;
}
.cert-card:hover .check-circle-inner { fill: var(--accent); }

.check-ring {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.2;
  stroke-dasharray: 4 6;
  transition: stroke 0.4s ease;
  transform-origin: center;
  transform-box: fill-box;
  animation: certSpinRing 14s linear infinite;
}
.cert-card:hover .check-ring {
  stroke: var(--accent);
  animation-duration: 4s;
}

@keyframes certSpinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.check-mark {
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}
.cert-card:hover .check-mark { stroke: white; }

.cert-name {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.cert-card:hover .cert-name { color: var(--accent-dark); }

.cert-rule {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.cert-rule-line {
  height: 1px;
  width: 18px;
  background: var(--line);
  transition: width 0.4s ease, background 0.4s ease;
}
.cert-card:hover .cert-rule-line { width: 32px; background: var(--accent); }

.cert-rule-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
}
.cert-card:hover .cert-rule-dot { background: var(--accent); transform: scale(1.5); }

.cert-org {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.3s ease;
}
.cert-card:hover .cert-org { color: var(--accent); }

@media (max-width: 860px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .cert-grid { grid-template-columns: 1fr; }
}

.about-text {
  max-width: 88ch;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.6;
}

.chip-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.chip-grid span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  color: var(--text-soft);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  min-height: 92px;
  display: grid;
  align-items: center;
  color: var(--text);
  font-weight: 500;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-desc {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.alan-section {
  position: relative;
  overflow: hidden;
}

.alan-section::before {
  content: 'ALANLAR';
  position: absolute;
  top: 40px;
  right: -30px;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(70px, 11vw, 140px);
  font-weight: 600;
  color: var(--line);
  opacity: 0.5;
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.alan-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.alan-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alan-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.alan-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.alan-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
}

/* ── Kategori Grid ── */
.alan-kategori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
  margin-bottom: 3px;
}

.alan-kategori {
  position: relative;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
}

.alan-kategori::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

.alan-kategori:hover::before,
.alan-kategori.active::before {
  transform: scaleX(1);
}

.alan-kategori:hover,
.alan-kategori.active {
  background: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(166,124,82,0.12);
  z-index: 2;
}

.alan-kat-inner {
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.alan-kat-num {
  font-family: "Cormorant Garamond","Playfair Display",Georgia,serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--line);
  transition: color 0.4s ease;
  letter-spacing: -0.03em;
}
.alan-kategori:hover .alan-kat-num,
.alan-kategori.active .alan-kat-num { color: var(--accent); }

.alan-kat-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.alan-kategori:hover .alan-kat-icon-wrap,
.alan-kategori.active .alan-kat-icon-wrap {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(166,124,82,0.1);
}

/* Kalp animasyonu */
.heart-svg { width: 36px; height: 36px; overflow: visible; }
.heart-path {
  fill: var(--accent, #a67c52); stroke: none;
  transform-origin: 50% 60%;
  animation: heartbeat 2.4s ease-in-out infinite;
}
.heart-ring {
  fill: none; stroke: var(--accent, #a67c52); stroke-width: 1.5;
  opacity: 0.35; transform-origin: 50% 60%;
  animation: heartring 2.4s ease-in-out infinite;
}
.alan-kategori:hover .heart-path,
.alan-kategori.active .heart-path {
  fill: #fff;
  animation: heartbeat-fast 0.65s ease-in-out infinite;
}
.alan-kategori:hover .heart-ring,
.alan-kategori.active .heart-ring {
  stroke: rgba(255,255,255,0.5);
  animation: heartring-fast 0.65s ease-in-out infinite;
}
@keyframes heartbeat {
  0%,100%{ transform: scale(1); }
  14%    { transform: scale(1.2); }
  28%    { transform: scale(1); }
  42%    { transform: scale(1.13); }
  56%    { transform: scale(1); }
}
@keyframes heartbeat-fast {
  0%,100%{ transform: scale(1); }
  50%    { transform: scale(1.25); }
}
@keyframes heartring {
  0%,100%{ opacity: 0.35; transform: scale(1); }
  14%   { opacity: 0.6; transform: scale(1.3); }
  28%   { opacity: 0.1; transform: scale(1.1); }
  42%   { opacity: 0.5; transform: scale(1.22); }
  56%   { opacity: 0.05; transform: scale(1.05); }
}
@keyframes heartring-fast {
  0%,100%{ opacity: 0.4; transform: scale(1); }
  50%   { opacity: 0; transform: scale(1.6); }
}

.alan-kat-title {
  font-family: "Cormorant Garamond","Playfair Display",Georgia,serif;
  font-size: 1.45rem; font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.alan-kategori:hover .alan-kat-title,
.alan-kategori.active .alan-kat-title { color: var(--accent-dark); }

.alan-kat-chips {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 6px;
  margin-top: 0.5rem;
}
.alan-kat-chip {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text-soft);
  background: var(--bg);
  transition: all 0.25s;
}
.alan-kategori:hover .alan-kat-chip,
.alan-kategori.active .alan-kat-chip {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(166,124,82,0.07);
}

.alan-kat-arrow {
  margin-top: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.5;
  transition: all 0.35s;
  font-family: 'Jost', Inter, sans-serif;
}
.alan-kategori:hover .alan-kat-arrow,
.alan-kategori.active .alan-kat-arrow {
  opacity: 1; color: var(--accent); gap: 10px;
}
.alan-kat-arrow svg { transition: transform 0.35s; }
.alan-kategori:hover .alan-kat-arrow svg,
.alan-kategori.active .alan-kat-arrow svg { transform: translateX(4px); }

/* ── Detay Paneli ── */
.alan-detail-wrap {
  position: relative; z-index: 1;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.alan-detail-wrap.open { max-height: 1000px; }

.alan-detail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.alan-detail-wrap.open .alan-detail-panel {
  opacity: 1; transform: translateY(0);
}

.alan-detail-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 420px;
}

.alan-detail-left {
  background: linear-gradient(160deg, var(--accent-dark) 0%, #5c3d22 100%);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.alan-detail-left::before {
  content: attr(data-num);
  position: absolute; bottom: -20px; right: -10px;
  font-family: "Cormorant Garamond",Georgia,serif;
  font-size: 9rem; font-weight: 600;
  color: rgba(255,255,255,0.07);
  line-height: 1; pointer-events: none;
}
.alan-detail-cat-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 0.75rem;
}
.alan-detail-cat-title {
  font-family: "Cormorant Garamond",Georgia,serif;
  font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 400;
  color: #fff; line-height: 1.2; margin-bottom: 1.5rem;
}
.alan-detail-icon-left {
  width: 48px; height: 48px; margin-top: auto;
  overflow: visible;
}
.alan-detail-icon-left .heart-path { fill: rgba(255,255,255,0.6); }
.alan-detail-icon-left .heart-ring { stroke: rgba(255,255,255,0.3); }

.alan-detail-right {
  padding: 3rem;
  display: flex; flex-direction: column; gap: 0;
}
.alan-detail-intro {
  font-size: 0.9rem; color: var(--text-soft);
  line-height: 1.7; margin-bottom: 2rem;
  font-weight: 400; max-width: 60ch;
}

.alan-konu-list {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); flex: 1;
}
.alan-konu-item {
  background: var(--surface);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: flex-start; gap: 0.85rem;
  cursor: pointer;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.alan-konu-item::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent);
  transform: scaleY(0); transition: transform 0.25s;
}
.alan-konu-item:hover { background: rgba(166,124,82,0.06); }
.alan-konu-item:hover::after { transform: scaleY(1); }

.alan-konu-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  margin-top: 7px; opacity: 0.5;
  transition: opacity 0.25s, transform 0.25s;
}
.alan-konu-item:hover .alan-konu-dot { opacity: 1; transform: scale(1.4); }

.alan-konu-text { display: flex; flex-direction: column; gap: 2px; }
.alan-konu-name {
  font-size: 0.88rem; font-weight: 600;
  color: var(--text); line-height: 1.3; transition: color 0.25s;
}
.alan-konu-item:hover .alan-konu-name { color: var(--accent-dark); }
.alan-konu-desc { font-size: 0.77rem; color: var(--text-soft); line-height: 1.5; }

/* ── Alan Modal ── */
.alan-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.alan-modal.open { opacity: 1; pointer-events: all; }
.alan-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(47,39,33,0.65);
  backdrop-filter: blur(6px);
}
.alan-modal-box {
  position: relative; z-index: 1;
  background: var(--surface);
  width: min(700px, calc(100vw - 2rem));
  max-height: 85vh; overflow-y: auto;
  border: 1px solid var(--line);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 40px 100px rgba(47,39,33,0.25);
}
.alan-modal.open .alan-modal-box { transform: translateY(0) scale(1); }

.alan-modal-header {
  background: linear-gradient(160deg, var(--accent-dark) 0%, #5c3d22 100%);
  padding: 2.5rem 3rem 2rem;
  position: relative; overflow: hidden;
}
.alan-modal-header::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.alan-modal-cat {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 0.6rem;
}
.alan-modal-title {
  font-family: "Cormorant Garamond",Georgia,serif;
  font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 400;
  color: #fff; line-height: 1.2; margin: 0;
}
.alan-modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%; background: none;
  color: rgba(255,255,255,0.7); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s;
}
.alan-modal-close:hover {
  background: rgba(255,255,255,0.15); color: #fff; transform: rotate(90deg);
}
.alan-modal-body { padding: 2.5rem 3rem; }
.alan-modal-desc {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-soft); margin-bottom: 2rem;
}
.alan-modal-section-title {
  font-family: "Cormorant Garamond",Georgia,serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--text); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--line);
}
.alan-modal-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem;
}
.alan-modal-bullets li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: var(--text-soft); line-height: 1.6;
}
.alan-modal-bullets li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 8px;
}
.alan-modal-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem;
  background: var(--accent); color: #fff;
  text-decoration: none; border: none;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; font-family: Inter, sans-serif;
  transition: background 0.2s;
}
.alan-modal-cta:hover { background: var(--accent-dark); }

@media (max-width: 900px) {
  .alan-kategori-grid { grid-template-columns: 1fr; }
  .alan-detail-inner { grid-template-columns: 1fr; }
  .alan-detail-left { padding: 2rem; }
  .alan-konu-list { grid-template-columns: 1fr; }
  .alan-section::before { display: none; }
  .alan-kat-icon-wrap {
    width: 60px; height: 60px;
  }
  .heart-svg { width: 28px; height: 28px; }
  .alan-kat-inner { padding: 2rem 1.5rem; gap: 0.9rem; }
  .alan-kat-num { font-size: 3rem; }
  .alan-kat-title { font-size: 1.2rem; }
}
@media (max-width: 600px) {
  .alan-kat-inner { padding: 1.5rem 1.2rem; gap: 0.8rem; }
  .alan-kat-icon-wrap { width: 52px; height: 52px; }
  .heart-svg { width: 24px; height: 24px; }
  .alan-kat-num { font-size: 2.5rem; }
  
  .alan-modal-body { padding: 1.5rem; }
  .alan-modal-header { padding: 2rem 1.5rem 1.5rem; }
  .alan-modal-box {
    width: 100vw;
    max-height: 90vh;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    border-radius: 16px 16px 0 0;
  }
  .alan-modal {
    align-items: flex-end;
  }
}

.card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.card-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.section-intro {
  margin-bottom: 20px;
}

.appointment-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.66rem 0.72rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.15);
}

.consent {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-soft);
}

.consent input {
  width: auto;
}

.feedback {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 500;
}

/* ── Kitaplar ── */
.kitaplar-section {
  position: relative;
  overflow: hidden;
}

.kitaplar-section::before {
  content: 'KİTAP';
  position: absolute;
  top: 50px; right: -10px;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(80px, 13vw, 170px);
  font-weight: 600;
  color: var(--line);
  opacity: 0.45;
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.kitap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

.kitap-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  animation: fadeUp 0.55s ease both;
}

.kitap-card:nth-child(1) { animation-delay: 0.05s; }
.kitap-card:nth-child(2) { animation-delay: 0.12s; }
.kitap-card:nth-child(3) { animation-delay: 0.19s; }
.kitap-card:nth-child(4) { animation-delay: 0.26s; }
.kitap-card:nth-child(5) { animation-delay: 0.33s; }

.kitap-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px 14px 14px 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1);
  box-shadow: -4px 0 0 0 var(--line), -6px 4px 12px rgba(92,68,51,0.1);
}

.kitap-card:hover .kitap-cover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: -4px 0 0 0 var(--accent), -8px 12px 32px rgba(92,68,51,0.2), 0 20px 40px rgba(92,68,51,0.1);
}

.kitap-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 28px,
    rgba(139,111,78,0.05) 28px, rgba(139,111,78,0.05) 29px
  );
  z-index: 0;
}

.kitap-cover-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  z-index: 1;
}

.kitap-cover-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  opacity: 0.22;
  transition: opacity 0.35s ease;
}
.kitap-card:hover .kitap-cover-icon { opacity: 0.4; }

.kitap-cover-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  opacity: 0.18;
  transition: opacity 0.35s ease;
}
.kitap-card:hover .kitap-cover-lines { opacity: 0.35; }

.kitap-cover-lines span {
  display: block;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
}
.kitap-cover-lines span:nth-child(1) { width: 100%; }
.kitap-cover-lines span:nth-child(2) { width: 70%; }
.kitap-cover-lines span:nth-child(3) { width: 85%; }

.kitap-meta {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 14px 14px;
  border-left: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-left-color 0.35s ease, background 0.35s ease;
  margin-top: -6px;
}

.kitap-card:hover .kitap-meta {
  border-left-color: var(--accent-dark);
  background: var(--bg-soft);
}

.kitap-num {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
}

.kitap-ad {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.kitap-card:hover .kitap-ad {
  color: var(--accent-dark);
}

.kitap-yazar-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.kitap-yazar-line {
  width: 14px;
  height: 1px;
  flex-shrink: 0;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 1px;
  transition: width 0.35s ease, opacity 0.35s ease;
}

.kitap-card:hover .kitap-yazar-line {
  width: 22px;
  opacity: 0.9;
}

.kitap-yazar {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0;
  transition: color 0.3s ease;
}

.kitap-card:hover .kitap-yazar {
  color: var(--accent);
}

.kitap-placeholder-line {
  background: var(--line);
  border-radius: 4px;
  opacity: 0.45;
}

.kitap-num-ph   { height: 8px;  width: 30%; margin-bottom: 2px; }
.kitap-ad-ph    { height: 18px; width: 90%; }
.kitap-ad-ph-2  { height: 18px; width: 55%; opacity: 0.3; }
.kitap-yazar-ph { height: 9px;  width: 60%; }

/* ── Blog ── */
.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: 'BLOG';
  position: absolute;
  top: 50px; right: -10px;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(80px, 13vw, 170px);
  font-weight: 600;
  color: var(--line);
  opacity: 0.35;
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.blog-featured {
  grid-row: span 2;
  background: var(--surface);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: default;
  min-height: 460px;
  transition: background 0.4s ease;
}

.blog-featured::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 36px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 160px;
  line-height: 1;
  color: var(--line);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.4s ease, color 0.4s ease;
}
.blog-featured:hover::before { opacity: 1; color: var(--bg-soft); }

.blog-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}
.blog-featured:hover::after { transform: scaleX(1); }
.blog-featured:hover { background: var(--bg); }

.blog-featured-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.blog-ph-line { background: var(--line); border-radius: 5px; }
.blog-ph-lg  { height: 26px; width: 85%; opacity: 0.55; }
.blog-ph-md  { height: 26px; width: 62%; opacity: 0.38; }
.blog-ph-sm  { height: 12px; opacity: 0.28; }

.blog-excerpt-lines { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }

.blog-cta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.blog-cta-bar {
  height: 1px; width: 28px;
  background: var(--line);
  border-radius: 1px;
  transition: width 0.35s ease, background 0.35s ease;
}
.blog-featured:hover .blog-cta-bar { width: 44px; background: var(--accent); }

.blog-small {
  background: var(--surface);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
  min-height: 210px;
}

.blog-small::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.25,.8,.25,1);
}
.blog-small:hover::after { transform: scaleX(1); }
.blog-small:hover { background: var(--bg); }

.blog-small-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.blog-small-lines { display: flex; flex-direction: column; gap: 7px; }
.blog-small-line-title { height: 17px; width: 80%; opacity: 0.52; }
.blog-small-line-sub   { height: 17px; width: 55%; opacity: 0.33; }
.blog-small-line-text  { height: 10px; opacity: 0.22; }
.blog-small-line-text:last-child { width: 70%; }

.blog-small-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.blog-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-small:hover .blog-arrow {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.blog-featured { animation: fadeUp 0.6s ease 0.05s both; }
.blog-small { animation: fadeUp 0.6s ease 0.15s both; }

@media (max-width: 768px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-row: span 1; min-height: 320px; }
}

.recommendations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

ul {
  margin: 0;
  padding-left: 1rem;
}

li {
  margin-bottom: 0.85rem;
  color: var(--text);
}

li span {
  display: block;
  color: var(--text-soft);
  margin-top: 3px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
}

cite {
  margin-top: 0.7rem;
  display: block;
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2eadf;
  padding: 52px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.footer-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(80, 50, 20, 0.07);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-contact-item a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

.footer-social-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  box-shadow: 0 4px 16px rgba(80, 50, 20, 0.07);
}

.social-row {
  display: flex;
  gap: 0.6rem;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: grid;
  place-items: center;
  background: transparent;
  padding: 0;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.icon-btn img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.icon-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.review-form-wrap {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.review-form-wrap h3 {
  margin-bottom: 1rem;
}

.review-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.no-review-msg {
  grid-column: 1 / -1;
  color: var(--text-soft);
  font-style: italic;
}


.empty-blog-msg {
  color: var(--text-soft);
  font-style: italic;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-layout,
  .recommendations,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 0.8rem;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    z-index: 200;
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-overlay.open {
    display: block;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .section-desc {
    max-width: 100%;
  }
}

/* ── Blog Gerçek İçerik ───────────────────────── */
.blog-real-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0.6rem 0 0.8rem;
}
.blog-real-excerpt {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 1.2rem;
}
.blog-real-small-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0.4rem 0 0.5rem;
}
.blog-real-small-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
.section-empty {
  color: var(--text-soft);
  font-style: italic;
  text-align: center;
  padding: 2rem 0;
  width: 100%;
}

/* ── Kitap Renk Değişkeni ─────────────────────── */
.kitap-cover {
  --kitap-renk: #8B7355;
}

/* ── Blog Modal ───────────────────────────────── */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.blog-modal.open {
  opacity: 1;
  pointer-events: all;
}
.blog-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}
.blog-modal-box {
  position: relative;
  background: var(--bg);
  border-radius: 18px;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.blog-modal.open .blog-modal-box {
  transform: translateY(0);
}
.blog-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-soft);
  transition: background 0.2s;
}
.blog-modal-close:hover { background: var(--line); }
.blog-modal-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}
.blog-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.blog-modal-body p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0 0 1rem;
}

/* ── Blog Modal Görsel ────────────────────────────── */
.blog-modal-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* ── Kitap Kapak Gerçek Fotoğraf ─────────────────── */
.kitap-cover.has-img {
  background: #f0e8dc;
}
.kitap-cover.has-img::before { display: none; }
.kitap-cover-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 14px 14px 6px;
  z-index: 1;
}

/* ── Blog Öne Çıkan Görsel ───────────────────────── */
.blog-featured-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transition: opacity 0.4s ease;
}
.blog-featured.has-img:hover .blog-featured-img { opacity: 0.38; }
.blog-featured.has-img .blog-featured-content { z-index: 1; }

/* ── Blog Küçük Kart Görsel ──────────────────────── */
.blog-small-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.blog-small:hover .blog-small-img { opacity: 1; }

/* ══════════════════════════════════════════════════
   CAROUSEL
══════════════════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.carousel-viewport .kitap-grid,
.carousel-viewport .blog-layout {
  display: flex !important;
  grid-template-columns: unset !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.carousel-viewport .kitap-card {
  flex: 0 0 200px;
  min-width: 0;
}

.carousel-btn {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(100,70,40,0.08);
  z-index: 2;
}
.carousel-btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}
.cdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.cdot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── Blog Kartı (Carousel) ───────────────────────── */
.blog-card {
  flex: 0 0 320px;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(100,70,40,0.14);
}
.blog-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #e8d9c4 0%, #d4b896 100%);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ede0ce 0%, #d9c0a3 50%, #c9a882 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-placeholder::after {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  color: rgba(139,111,78,0.25);
  line-height: 1;
}
.blog-card-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}
.blog-card-body {
  padding: 1.3rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin: 0.3rem 0 0.5rem;
}
.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
}
.blog-card-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 0.7rem;
  transition: letter-spacing 0.25s;
}
.blog-card:hover .blog-card-cta { letter-spacing: 0.08em; }

/* ══════════════════════════════════════════════════
   ANİMASYONLU AYRAÇ (Kitaplar ↔ Blog)
══════════════════════════════════════════════════ */
.section-divider-anim {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 clamp(1.2rem, 5vw, calc((100% - 1200px) / 2 + 2rem));
  margin: 0;
  overflow: hidden;
}

.sda-line {
  flex: 1;
  height: 1px;
  position: relative;
  overflow: hidden;
  background: var(--line);
}
.sda-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: sda-shimmer 2.8s ease-in-out infinite;
}
.sda-line-right::after {
  animation-direction: reverse;
  animation-delay: 1.4s;
}
@keyframes sda-shimmer {
  0%   { left: -70%; }
  100% { left: 130%; }
}

.sda-ornament {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.sda-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
}
.sda-diamond {
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
  opacity: 0.8;
  animation: sda-pulse 2.2s ease-in-out infinite;
}
@keyframes sda-pulse {
  0%, 100% { opacity: 0.8; transform: rotate(45deg) scale(1); }
  50%       { opacity: 1;   transform: rotate(45deg) scale(1.35); }
}

/* ══════════════════════════════════════════════════
   KİTAP 3D CAROUSEL
══════════════════════════════════════════════════ */
.carousel-viewport .kitap-grid {
  display: flex !important;
  grid-template-columns: unset !important;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  padding: 24px 0 16px;
  align-items: flex-end;
}

.kc {
  flex: 0 0 160px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), opacity 0.4s ease;
  transform-origin: bottom center;
  opacity: 0.45;
}
.kc-active { transform: scale(1.12) translateY(-10px); opacity: 1; z-index: 3; }
.kc-next   { transform: scale(0.9) translateX(-10px) rotate(2deg); opacity: 0.55; z-index: 2; }
.kc-prev   { transform: scale(0.9) translateX(10px)  rotate(-2deg); opacity: 0.55; z-index: 2; }
.kc-far    { transform: scale(0.75) translateX(-20px) rotate(5deg); opacity: 0.3; z-index: 1; }
.kc-far-left { transform: scale(0.75) translateX(20px) rotate(-5deg); opacity: 0.3; z-index: 1; }

.kc-cover {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 3px 10px 10px 3px;
  overflow: hidden;
  position: relative;
  box-shadow: -3px 0 0 0 rgba(100,70,40,0.18), -5px 4px 18px rgba(60,40,20,0.18);
  transition: box-shadow 0.4s ease;
}
.kc-active .kc-cover {
  box-shadow: -4px 0 0 0 rgba(100,70,40,0.28), -8px 12px 36px rgba(60,40,20,0.28);
}
.kc-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  filter: brightness(0.82);
  z-index: 1;
}
.kc-bg {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.kc-lines {
  display: flex; flex-direction: column; gap: 5px; width: 44px; opacity: 0.22;
}
.kc-lines span { display: block; height: 1px; background: #8B7355; border-radius: 1px; }
.kc-lines span:nth-child(1) { width: 100%; }
.kc-lines span:nth-child(2) { width: 68%; }
.kc-lines span:nth-child(3) { width: 84%; }

.kc-meta {
  margin-top: 10px;
  padding: 0 2px;
}
.kc-ad {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 3px;
}
.kc-yazar {
  font-size: 0.68rem;
  color: var(--text-soft);
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   BLOG KART CAROUSEL
══════════════════════════════════════════════════ */
.carousel-viewport .blog-layout {
  display: flex !important;
  grid-template-columns: unset !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  align-items: stretch;
}

.bc {
  flex: 0 0 calc(50% - 10px);
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.8rem 1.4rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.bc:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(100,70,40,0.12);
  border-color: var(--accent);
}
.bc-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 20px;
}
.bc-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.bc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.38;
  margin: 0 0 8px;
}
.bc-excerpt {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.bc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.bc-date {
  font-size: 0.75rem;
  color: var(--text-soft);
  opacity: 0.7;
}
.bc-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.bc-arrow svg { width: 13px; height: 13px; }
.bc:hover .bc-arrow { background: var(--accent); border-color: var(--accent); color: #fff; }

.bc-empty {
  padding: 3rem 1rem;
  font-style: italic;
  color: var(--text-soft);
  opacity: 0.5;
  text-align: center;
  width: 100%;
}
