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

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --sage: #7a9e7e;
  --sage-light: #a8c5ab;
  --sage-dark: #4d7a52;
  --earth: #b5956a;
  --earth-light: #d4b896;
  --charcoal: #2c2c2c;
  --mid: #6b6b6b;
  --soft: #9e9e9e;
  --border: rgba(122, 158, 126, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 5vw;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo span {
  color: var(--sage-dark);
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(16px);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  padding-top: 70px;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--sage-dark);
}

/* ─── HERO ─── */
.hero {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 70px 0 0;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw 3vw 6vw 5vw;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sage);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--earth);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--sage-dark);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage-dark) 100%);
  border-radius: 55% 55% 0 0 / 45% 45% 0 0;
  opacity: 0.18;
}

.hero-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}

.hero-illustration svg {
  width: 72%;
  max-width: 400px;
  filter: drop-shadow(0 20px 60px rgba(77, 122, 82, 0.18));
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
}

.badge-text span {
  font-size: 0.72rem;
  color: var(--soft);
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 7rem 8vw;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--sage);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

/* ─── HAKKINDA ─── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
}

.about-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--sage-light);
  position: absolute;
  top: -2.5rem;
  left: 2rem;
  line-height: 1;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.stat {
  background: var(--warm-white);
  padding: 1.4rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.stat span {
  font-size: 0.75rem;
  color: var(--soft);
  letter-spacing: 0.08em;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 1.2rem;
}

.about-certs {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cert-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  color: var(--mid);
}

/* ─── HİZMETLER ─── */
.services {
  background: var(--warm-white);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem;
  background: var(--warm-white);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
  border-color: var(--sage-light);
}

.service-card:hover::after {
  transform: scaleX(1);
}

a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card--featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(168, 197, 171, 0.15) 100%);
  border-color: var(--sage-light);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0 1.8rem;
}

.service-card--featured .service-icon {
  background: var(--sage-dark);
  color: #fff;
  font-size: 1.4rem;
  width: 56px;
  height: 56px;
  margin-top: 0.2rem;
}

.service-card--featured .service-title {
  font-size: 1.35rem;
}

.service-card--featured .service-desc {
  grid-column: 2;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.service-desc {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--mid);
}

/* ─── SÜREÇ ─── */
.process {
  background: var(--charcoal);
  color: var(--cream);
}

.process .section-title {
  color: var(--cream);
}

.process .section-title em {
  color: var(--sage-light);
}

.process .section-tag {
  color: var(--sage-light);
}

.process .section-tag::before {
  background: var(--sage-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(168, 197, 171, 0.25);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(168, 197, 171, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-light);
  margin: 0 auto 1.5rem;
  background: var(--charcoal);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #fff;
}

.step-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.55);
}

/* ─── RANDEVU ─── */
.appointment {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.appt-info p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--mid);
}

.contact-list li:first-child {
  border-top: 1px solid var(--border);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.appt-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.appt-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  background: var(--sage-dark);
  color: #fff;
  border: none;
  padding: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  margin-top: 0.5rem;
  transition: background 0.25s;
}

.btn-submit:hover {
  background: var(--sage);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.55);
  padding: 3rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .foot-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.06em;
}

footer p {
  font-size: 0.78rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 55vw;
    min-height: 280px;
  }

  .hero-left {
    padding: 5rem 6vw 3rem;
  }

  .about,
  .appointment {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--featured {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 4.5rem 6vw;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card--featured .service-desc {
    grid-column: 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── PAGE TRANSITIONS ─── */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pageOut {
  to { opacity: 0; transform: translateY(-8px); }
}
body { animation: pageIn 0.45s ease both; }
body.page-exit { animation: pageOut 0.28s ease forwards; pointer-events: none; }

/* ══════════════════════════════════════════════════════════
   BLOG & MAKALE STİLLERİ
   ══════════════════════════════════════════════════════════ */

/* Aktif nav linki (blog sayfalarında "Blog" menü öğesi) */
.nav-active { color: var(--sage-dark) !important; }

/* ─── BREADCRUMB ─── */
.breadcrumb-wrap {
  padding: 5.5rem 8vw 0;
  background: var(--warm-white);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.74rem;
  color: var(--soft);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--soft); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sage-dark); }
.breadcrumb .sep { opacity: 0.35; margin: 0 0.1rem; }

/* ─── MAKALE HERO ─── */
.article-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 58vh;
  background: var(--cream);
  overflow: hidden;
  padding: 70px 0 0;
}
.article-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3vw 4.5rem 8vw;
}
.article-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.3rem;
}
.article-hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--sage);
}
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.article-title em { font-style: italic; color: var(--sage-dark); }
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--soft);
}
.article-meta .dot { opacity: 0.4; }
.article-hero-img {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.article-hero-img .hero-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage-dark) 100%);
  border-radius: 55% 55% 0 0 / 45% 45% 0 0;
  opacity: 0.14;
  pointer-events: none;
}

/* ─── MAKALE LAYOUT ─── */
.article-layout {
  background: var(--warm-white);
  padding: 4.5rem 8vw 6rem;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
}

/* ─── MAKALE TİPOGRAFİ ─── */
.article-body p {
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 1.4rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 2rem 0 0.7rem;
  letter-spacing: 0.02em;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--mid);
}
.article-body li {
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 0.45rem;
}
.article-body strong { color: var(--charcoal); font-weight: 500; }
.article-body a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--sage); }

/* ─── CALLOUT KUTU ─── */
.callout {
  background: rgba(122, 158, 126, 0.09);
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
  padding: 1.3rem 1.6rem;
  margin: 2.2rem 0;
}
.callout p { margin-bottom: 0; color: var(--charcoal); line-height: 1.8; }
.callout-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* ─── MAKALEİÇİ GÖRSEL ─── */
.article-img {
  margin: 2.5rem 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.article-img figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--soft);
  background: var(--cream);
  font-style: italic;
}

/* ─── SSS (FAQ) ─── */
.faq-list { margin-top: 0.5rem; }
.faq-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.7rem;
  line-height: 1.35;
}
.faq-q::before { content: 'S·'; color: var(--sage-dark); flex-shrink: 0; }
.faq-a {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--mid);
  padding-left: 1.7rem;
}

/* ─── MAKALE ALT CTA ─── */
.article-cta {
  background: var(--charcoal);
  padding: 5rem 8vw;
  text-align: center;
}
.article-cta .section-tag { color: var(--sage-light); justify-content: center; }
.article-cta .section-tag::before { background: var(--sage-light); }
.article-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin: 0.8rem 0 1.4rem;
  line-height: 1.15;
}
.article-cta h2 em { color: var(--sage-light); font-style: italic; }
.article-cta p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* ─── İLGİLİ MAKALELER ─── */
.related-articles {
  background: var(--cream);
  padding: 5rem 8vw 6rem;
}
.related-head { margin-bottom: 2.5rem; }
.related-head .section-tag { margin-bottom: 0.8rem; }
.related-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}
.related-head h2 em { font-style: italic; color: var(--sage-dark); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── BLOG KARTI ─── */
.blog-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: 0 12px 50px rgba(0,0,0,0.07); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: var(--cream);
}
.blog-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
  margin-bottom: 1.2rem;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-top: auto;
}
.blog-card-meta { font-size: 0.72rem; color: var(--soft); }
.read-more {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}
.blog-card:hover .read-more { color: var(--sage); gap: 0.7rem; }

/* ─── BLOG LİSTESİ HERO ─── */
.blog-listing-hero {
  background: var(--cream);
  padding: 10rem 8vw 5rem;
  border-bottom: 1px solid var(--border);
 
}
.blog-listing-hero .section-tag { margin-bottom: 1rem; }
.blog-listing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.blog-listing-hero h1 em { font-style: italic; color: var(--sage-dark); }
.blog-listing-hero p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 520px;
}
.blog-listing {
  background: var(--warm-white);
  padding: 5rem 8vw 7rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ─── BLOG RESPONSIVE ─── */
@media (max-width: 1000px) {
  .blog-grid,
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .article-hero { grid-template-columns: 1fr; min-height: auto; }
  .article-hero-img { height: 52vw; min-height: 220px; }
  .article-hero-inner { padding: 2rem 6vw 2.5rem; }
  .article-layout { padding: 3rem 6vw 4rem; }
  .article-cta,
  .related-articles,
  .blog-listing { padding-left: 6vw; padding-right: 6vw; }
  .blog-listing-hero { padding: 8rem 6vw 4rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .breadcrumb-wrap { padding-left: 6vw; padding-right: 6vw; }
  .blog-grid,
  .related-grid { grid-template-columns: 1fr; }
}
