/* =========================================================
   MARENTA — Mobilya & İç Mimari
   Palet A: Modern & Ferah (sıcak beyaz + mat pirinç + ceviz)
   ========================================================= */

:root {
  /* Renkler */
  --bg:        #FAF8F5;  /* sıcak beyaz */
  --bg-alt:    #F1ECE4;  /* greige */
  --surface:   #FFFFFF;
  --ink:       #1C1B19;  /* yumuşak siyah */
  --muted:     #6E665C;  /* ikincil metin */
  --brass:     #9A7B4F;  /* mat pirinç / altın */
  --brass-dk:  #836743;
  --walnut:    #6B4F3A;  /* ceviz ahşap */
  --line:      #E5DDD1;  /* ince çizgi */
  --line-soft: #EFE9E0;

  /* Tipografi */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Ölçü */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px rgba(28, 27, 25, 0.08);
  --shadow-sm: 0 4px 18px rgba(28, 27, 25, 0.06);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Yardımcılar ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 60ch; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--brass); color: #fff; }
.btn-primary:hover { background: var(--brass-dk); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(154,123,79,.32); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(250, 248, 245, .88);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; letter-spacing: .02em; display: inline-flex; align-items: center; }
.brand img { height: 54px; width: auto; display: block; transition: height .35s var(--ease); }
.header.scrolled .brand img { height: 42px; }
.brand small {
  display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--ink); margin: 0 auto; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 96px; position: relative; }

/* Full-width görsel hero (header) */
.hero--image { padding: 0; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,21,17,.82) 0%, rgba(24,21,17,.55) 42%, rgba(24,21,17,.12) 70%, rgba(24,21,17,0) 100%);
}
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 660px; padding-top: 120px; padding-bottom: 64px; }
.hero-content .eyebrow { color: #E7C99B; }
.hero-content h1 { color: #fff; margin-bottom: 24px; }
.hero-content .lead { color: rgba(255,255,255,.86); margin-bottom: 36px; }
.hero-content .hero-stats .stat strong { color: #fff; }
.hero-content .hero-stats .stat span { color: rgba(255,255,255,.7); }
/* Görsel hero üzerinde şeffaf nav: yazılar açık renk */
.header--over:not(.scrolled) .brand,
.header--over:not(.scrolled) .nav-links a { color: #fff; }
.header--over:not(.scrolled) .brand small { color: rgba(255,255,255,.72); }
.header--over:not(.scrolled) .nav-toggle span { background: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; }
.hero-stats .stat strong { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--walnut); display: block; }
.hero-stats .stat span { font-size: 13px; color: var(--muted); }
.hero-visual { position: relative; }
.hero-visual .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.hero-visual .ph.floating {
  position: absolute; bottom: -28px; left: -28px; width: 46%; aspect-ratio: 1/1;
  box-shadow: var(--shadow); border: 6px solid var(--bg);
}

/* ---------- Placeholder görsel kutusu ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(154,123,79,.05) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--bg-alt), #E7DFD3);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass); border: 1px solid var(--line);
}
.ph::after {
  content: attr(data-label);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; opacity: .7;
}
.ph svg { position: absolute; width: 34px; height: 34px; opacity: .22; top: 50%; left: 50%; transform: translate(-50%, -150%); }
/* Gerçek görsel: dosya eklenince placeholder'ı kaplar; dosya yoksa JS img'i kaldırır, placeholder görünür */
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* ---------- Kategori kartları ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.cat-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card .ph { aspect-ratio: 4/3; border: none; border-radius: 0; }
.cat-card .body { padding: 28px; }
.cat-card h3 { margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.cat-card .link { color: var(--brass); font-weight: 600; font-size: 15px; display: inline-flex; gap: 8px; align-items: center; }

/* ---------- Değer önerileri ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value .num { font-family: var(--serif); font-size: 1.6rem; color: var(--brass); margin-bottom: 14px; }
.value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 15px; }

/* ---------- Hakkında şerit ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-grid .ph { aspect-ratio: 5/4; }
.about-grid p { color: var(--muted); margin-bottom: 18px; }

/* ---------- Hakkımızda galerisi (Ofis / Atölye sekmeli kaydırma) ---------- */
.about-gallery { display: flex; flex-direction: column; gap: 14px; }
.gallery-tabs { display: inline-flex; gap: 6px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 5px; align-self: flex-start; }
.g-tab {
  border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 600; letter-spacing: .02em;
  color: var(--muted); padding: 9px 22px; border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.g-tab:hover { color: var(--ink); }
.g-tab.active { color: #fff; background: var(--brass); box-shadow: 0 4px 14px rgba(154,123,79,.28); }

.gallery-stage {
  position: relative; aspect-ratio: 5/4; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-alt);
}
.g-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; visibility: hidden; transition: opacity .55s var(--ease);
}
.g-slide.active { opacity: 1; visibility: visible; }

.g-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; color: var(--ink); cursor: pointer;
  background: rgba(255,255,255,.82); border: 1px solid var(--line);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s var(--ease), background .3s var(--ease);
}
.gallery-stage:hover .g-nav { opacity: 1; }
.g-nav:hover { background: #fff; }
.g-prev { left: 14px; } .g-next { right: 14px; }

.g-dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2; display: flex; gap: 8px; justify-content: center; }
.g-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.55); box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  transition: width .3s var(--ease), background .3s var(--ease);
}
.g-dots button.active { width: 22px; border-radius: 999px; background: #fff; }

@media (hover: none) { .gallery-stage .g-nav { opacity: 1; } }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 64px; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 50ch; margin: 0 auto 32px; }

/* ---------- Harita embed ---------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--bg-alt); }
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.25) contrast(1.02); }
.map-embed--wide iframe { height: 380px; }
@media (max-width: 720px) { .map-embed iframe, .map-embed--wide iframe { height: 320px; } }

/* ---------- Page hero (iç sayfalar) ---------- */
.page-hero { padding: 160px 0 64px; background: var(--bg-alt); }
.page-hero .lead { margin-top: 14px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brass); }

/* ---------- Filtre ---------- */
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--muted); transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Ürün grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product .ph { aspect-ratio: 4/3; border: none; border-radius: 0; }
.product[data-cat="kapi"] .ph { aspect-ratio: 3/4; } /* kapılar dikey görünür */
.product .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product .tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.product h3 { font-size: 1.15rem; margin: 6px 0 8px; }
.product p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.product .product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.product .btn { padding: 10px 18px; font-size: 13px; flex: none; }

/* ---------- Banyo fiyat etiketi (tıklayınca ölçü fiyatları) ---------- */
.price-start, .price-toggle {
  display: flex; flex-direction: column; line-height: 1.25; text-align: left;
}
.price-toggle { background: none; border: 0; padding: 0; margin: 0; font: inherit; cursor: pointer; }
.price-start .amount, .price-toggle .amount { color: var(--brass); font-weight: 700; font-size: 1.02rem; }
.price-start small, .price-toggle small { color: var(--muted); font-weight: 500; font-size: 11.5px; letter-spacing: .01em; }
.price-toggle .arr { display: inline-block; transition: transform .25s var(--ease); font-size: 11px; font-style: normal; color: var(--brass); vertical-align: middle; margin-left: 2px; }
.price-toggle:hover small { color: var(--ink); }
.product.price-open .price-toggle .arr { transform: rotate(180deg); }
.price-list { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.price-list[hidden] { display: none; }
.price-list div { display: flex; align-items: baseline; justify-content: space-between; font-size: 14px; }
.price-list span { color: var(--muted); }
.price-list b { color: var(--ink); font-weight: 600; }

/* ---------- Proje galeri ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.gallery .proj {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
}
.gallery .proj .ph { border-radius: 0; border: none; height: 100%; }
.gallery .proj .cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 24px 22px;
  background: linear-gradient(to top, rgba(28,27,25,.78), transparent);
  color: #fff; transform: translateY(8px); opacity: 0; transition: all .35s var(--ease);
}
.gallery .proj:hover .cap { transform: translateY(0); opacity: 1; }
.gallery .proj .cap h3 { color: #fff; font-size: 1.15rem; }
.gallery .proj .cap span { font-size: 13px; color: rgba(255,255,255,.75); }
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; } .col-12 { grid-column: span 12; }
.row-tall .ph { aspect-ratio: 3/4; } .row-wide .ph { aspect-ratio: 16/9; } .row-sq .ph { aspect-ratio: 4/3; }

/* ---------- İletişim / Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-block { margin-bottom: 30px; }
.info-block .label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: 6px; }
.info-block p, .info-block a { color: var(--ink); font-size: 1.05rem; }
.info-block a:hover { color: var(--brass); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease);
}
.socials a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.socials svg { width: 18px; height: 18px; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(154,123,79,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.form-actions .btn { flex: 1; justify-content: center; min-width: 180px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer .brand img { height: 66px; }
.footer .brand small { color: rgba(255,255,255,.5); }
.footer p { font-size: 15px; max-width: 38ch; margin-top: 16px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--sans); font-weight: 600; }
.footer-col a { display: block; font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--brass); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Yüzen WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.4); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobil menü paneli ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 100px 24px 40px; transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual .ph.floating { display: none; }
  .cards-3, .values, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery .col-4, .gallery .col-6, .gallery .col-8 { grid-column: span 6; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .brand img, .header.scrolled .brand img { height: 44px; }
  .hero { padding: 130px 0 64px; }
  .hero--image.hero { padding: 0; min-height: 80vh; }
  .hero-content { padding-top: 112px; padding-bottom: 48px; max-width: 100%; }
  .hero-bg::after { background: linear-gradient(175deg, rgba(24,21,17,.5) 0%, rgba(24,21,17,.7) 60%, rgba(24,21,17,.82) 100%); }
  .hero-stats { gap: 26px; }
  .cards-3, .values, .product-grid { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; max-width: 440px; }
  .cta-band { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 26px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .col-4, .gallery .col-6, .gallery .col-8, .gallery .col-12 { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .ph { aspect-ratio: 16/10; border: none; border-radius: 0; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.blog-card h2, .blog-card h3 { font-size: 1.18rem; margin: 8px 0 10px; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.blog-card .link { margin-top: auto; color: var(--brass); font-weight: 600; font-size: 14px; display: inline-flex; gap: 6px; }

/* Makale sayfası */
.article { max-width: 760px; margin: 0 auto; }
.article .article-meta { color: var(--muted); font-size: 14px; margin-bottom: 22px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article .lead { font-size: 1.15rem; color: var(--ink); margin-bottom: 28px; }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 34px; border: 1px solid var(--line); }
.article h2 { font-size: 1.55rem; margin: 38px 0 14px; }
.article h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.article p { color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.article ul, .article ol { margin: 0 0 18px 22px; color: var(--text); }
.article li { margin-bottom: 8px; line-height: 1.7; }
.article strong { color: var(--ink); }
.article a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }
.article blockquote {
  border-left: 3px solid var(--brass); padding: 6px 0 6px 20px; margin: 24px 0;
  color: var(--muted); font-style: italic;
}
.article .info-box {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; margin: 26px 0;
}
.article .info-box p:last-child { margin-bottom: 0; }

/* SSS / FAQ */
.faq { max-width: 760px; margin: 40px auto 0; }
.faq h2 { font-size: 1.55rem; margin-bottom: 18px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font: inherit;
  padding: 18px 36px 18px 0; position: relative; color: var(--ink); font-weight: 600; font-size: 1.02rem;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--brass); font-weight: 400; transition: transform .25s var(--ease);
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { color: var(--muted); line-height: 1.75; padding: 0 0 18px; }
.faq-a[hidden] { display: none; }

/* Makale alt CTA + ilgili yazılar */
.article-cta {
  margin: 44px auto 0; max-width: 760px; background: var(--ink); color: #fff;
  border-radius: var(--radius-lg); padding: 34px; text-align: center;
}
.article-cta h2 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article h2 { font-size: 1.35rem; }
  .article-cta { padding: 28px 22px; }
}
