/* Aykut Erkek Kuaförü — Blog CSS */
:root {
  --bg: #f5efe0;
  --bg-2: #ebe3d0;
  --ink: #1c1916;
  --ink-2: #3a342c;
  --green: #0a5c36;
  --green-deep: #064a2a;
  --green-soft: #d8e6dc;
  --red: #c8102e;
  --red-deep: #a50d24;
  --rule: #d6cab0;
  --max: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Karla', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--green); color: var(--bg); }
a { color: var(--green-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }

.skip {
  position: absolute; left: -9999px;
}
.skip:focus { left: 8px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 12px; z-index: 999; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.wrap-wide { max-width: 1100px; margin: 0 auto; padding: 0 22px; }

/* Top bar */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
  font-size: 14px; color: var(--ink-2);
  padding: 10px 0;
}
.topbar .wrap-wide { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--ink-2); text-decoration: none; }
.topbar a:hover { color: var(--ink); }
.brand-link {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-2);
  margin: 30px 0 12px;
  letter-spacing: .02em;
}
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

/* Article */
article {
  padding: 0 0 80px;
}

.article-meta {
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-deep);
  margin-bottom: 12px;
}

article h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
article h1 em { font-style: italic; color: var(--red); }

.article-lede {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 18px 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.byline {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 30px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-2); }

article h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin: 44px 0 14px;
  color: var(--ink);
}
article h2 em { font-style: italic; color: var(--red); }

article h3 {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--ink);
}

article p { margin-bottom: 18px; color: var(--ink-2); }
article p strong { color: var(--ink); }

article ul, article ol {
  margin: 0 0 22px 22px;
  color: var(--ink-2);
}
article li { margin-bottom: 6px; }

article blockquote {
  border-left: 3px solid var(--green);
  background: rgba(10, 92, 54, 0.05);
  margin: 24px 0;
  padding: 18px 22px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

article hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 36px 0;
}

/* Inline CTA box */
.cta-box {
  background: var(--green-soft);
  border: 1px solid var(--green);
  padding: 24px;
  margin: 36px 0;
  text-align: center;
}
.cta-box h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--ink);
}
.cta-box p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.cta-box .btn-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 4px;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--bg); }
.btn-primary:hover { background: var(--green-deep); color: var(--bg); }
.btn-secondary { background: transparent; color: var(--green-deep); border: 1px solid var(--green-deep); }
.btn-secondary:hover { background: var(--green-deep); color: var(--bg); }

/* Related */
.related {
  background: var(--bg-2);
  padding: 40px 0;
  border-top: 1px solid var(--rule);
}
.related h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 22px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
}
.related-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s ease;
}
.related-card:hover { border-color: var(--green); color: var(--ink); }
.related-card .tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--green-deep); margin-bottom: 8px;
}
.related-card h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
}

/* Footer */
footer.site {
  background: var(--ink);
  color: #c8baa1;
  padding: 50px 0 28px;
  font-size: 14px;
}
footer.site h4 {
  color: var(--bg);
  font-family: 'Karla', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 12px;
}
footer.site .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  footer.site .grid { grid-template-columns: 1fr; }
}
footer.site a { color: #c8baa1; text-decoration: none; }
footer.site a:hover { color: var(--bg); }
footer.site .copyright {
  border-top: 1px solid #2e2924;
  padding-top: 20px;
  font-size: 12px;
  color: #8a7f6a;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}

/* KSK badge in footer */
.ksk-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 12px 6px 6px; border-radius: 99px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px; font-weight: 600; color: #1c1916;
  margin-top: 12px;
}
.ksk-badge img { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; }

/* Blog index */
.blog-index {
  padding: 30px 0 60px;
}
.blog-index .hero-section {
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.blog-index h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.blog-index h1 em { font-style: italic; color: var(--red); }
.blog-index .lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 620px;
}
.posts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
@media (max-width: 700px) {
  .posts-grid { grid-template-columns: 1fr; }
}
.post-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  color: var(--ink);
}
.post-card .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--green-deep);
  margin-bottom: 14px;
}
.post-card h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.post-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 14px;
}
.post-card .read-more {
  font-size: 13px; font-weight: 700;
  color: var(--green-deep);
}
.post-card:hover .read-more { color: var(--red); }
