:root {
  --ink: #15130f;
  --cream: #f4efe6;
  --paper: #f6f2ea;
  --stone: #eae3d3;
  --line: #d8d2c3;
  --line-dark: #3a362e;
  --muted: #78735f;
  --accent: #b04a2e;
  --accent-dark: #d9714c;
  --max: 1440px;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}
.topbar {
  background: var(--ink);
  color: var(--cream);
}
.topbar-in {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.nav a {
  color: #b9b2a0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a:hover {
  color: var(--cream);
}
.topbar .cta {
  border: 1px solid var(--cream);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
}
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0 100px;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
h1 {
  font-size: 80px;
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 32px;
  max-width: 820px;
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: end;
}
.dek {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.42;
  color: #d8d1bf;
  margin: 0 0 34px;
}
.hero-cta {
  display: flex;
  gap: 12px;
}
.btn {
  border: 1px solid var(--cream);
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
}
.btn-fill {
  background: var(--cream);
  color: var(--ink);
}
.btn-outline {
  background: 0 0;
  color: var(--cream);
}
.section {
  padding: 88px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 44px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.eyebrow-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.seri-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.section h2 {
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  max-width: 640px;
}
.section-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: #55503f;
  margin-top: 14px;
  max-width: 520px;
}
.on-paper {
  background: var(--paper);
}
.on-stone {
  background: var(--stone);
}
.on-ink {
  background: var(--ink);
  color: var(--cream);
}
.on-ink .eyebrow {
  color: var(--accent-dark);
}
.hero + .section,
.section + .section {
  border-top: 1px solid var(--line);
}
.on-ink + .section,
.section + .on-ink {
  border-top: 1px solid var(--line-dark);
}
.note .spacer {
  flex: 1;
}
.note-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.note {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.note-dark {
  background: #2b2822;
  color: var(--cream);
  border-color: rgba(244, 239, 230, 0.07);
}
.note-dark .n-tag {
  color: var(--accent-dark);
}
.note-sage {
  background: #c6d3ae;
  color: #313b26;
}
.note-sage .n-tag {
  color: #4f6330;
}
.note-warm {
  background: #e9ce8c;
  color: #42361d;
}
.note-warm .n-tag {
  color: #8a5520;
}
.note-sky {
  background: #bfd3da;
  color: #243740;
}
.note-sky .n-tag {
  color: #356470;
}
.n-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
  opacity: 0.85;
}
.note h3 {
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: -0.005em;
  font-weight: 600;
  margin: 14px 0 0;
}
.note .n-arrow {
  margin-top: 16px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.6;
}
.note .n-arrow:hover {
  opacity: 1;
}
.yazi-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.yl-img {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd7ca;
}
.yl-img-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yl-text .cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
}
.yl-text h3 {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
}
.yazi-lead:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.yl-text p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: #55503f;
  margin: 16px 0 0;
}
.yl-text .meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.yazi-list {
  border-top: 0;
}
.yazi {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 110px;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.y-thumb {
  width: 96px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd7ca;
}
.y-thumb-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yazi .cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.yazi .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.22;
}
.yazi:hover .title {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.yazi .meta {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
.yazi-all {
  display: inline-block;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.ajanik-strip {
  margin-top: 56px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 10px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.as-tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 12px;
}
.ajanik-strip p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: #b9b2a0;
  margin: 0;
  max-width: 760px;
}
.ajanik-strip strong {
  color: #d8d1bf;
  font-weight: 600;
}
.as-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  background: 0 0;
  border: 1px solid rgba(244, 239, 230, 0.35);
  border-radius: 6px;
  padding: 13px 22px;
}
.as-link:hover {
  border-color: var(--cream);
}
.iletisim-section {
  position: relative;
  overflow: hidden;
}
.iletisim-bg {
  position: absolute;
  right: -40px;
  top: 20px;
  transform: none;
  width: 300px;
  height: 300px;
  opacity: 0.08;
  pointer-events: none;
}
.dot-wave {
  position: absolute;
  left: calc((100% - min(100% - 80px, 1440px)) / 2);
  width: calc(min(100% - 80px, 1440px) - 380px);
  top: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 98%);
  mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 98%);
}
.iletisim {
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.iletisim h2 {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  max-width: 520px;
}
.il-mail {
  margin-top: 28px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.il-mail a {
  border-bottom: 1px solid var(--line);
}
.il-mail a:hover {
  border-color: var(--ink);
}
.il-social {
  margin-top: 16px;
  display: flex;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.il-social a:hover {
  color: var(--ink);
}
.il-right-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.il-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--ink);
}
.il-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.il-item span {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.45;
  color: #55503f;
}
.il-btn {
  margin-top: 24px;
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  width: max-content;
}
.footer {
  padding: 28px 0;
  font-size: 12px;
  color: #a39b87;
}
.agent-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  flex-wrap: wrap;
}
.agent-sig-spacer {
  flex: 1;
}
.agent-sig-ajanik {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}
.agent-sig-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-dark);
  border: 1px solid rgba(217, 113, 76, 0.4);
  border-radius: 4px;
  padding: 4px 8px;
}
.agent-sig-text {
  color: #8c8574;
}
.agent-sig a {
  color: #b9b2a0;
  font-family: monospace;
  font-size: 11px;
  border-bottom: 1px solid #3a362e;
}
.agent-sig a:hover {
  color: var(--cream);
  border-color: var(--cream);
}
@media (max-width: 1024px) {
  .wrap {
    width: calc(100% - 56px);
  }
  h1 {
    font-size: 56px;
  }
  .hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .hero {
    padding: 64px 0 72px;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section h2 {
    font-size: 30px;
    max-width: 100%;
  }
  .note-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yazi-lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .yl-text h3 {
    font-size: 26px;
  }
  .yazi {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
  }
  .y-thumb {
    width: 80px;
    height: 50px;
  }
  .yazi .meta {
    display: none;
  }
  .iletisim {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .iletisim h2 {
    font-size: 30px;
  }
  .nav {
    gap: 18px;
  }
  .nav a {
    font-size: 10px;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .topbar-in {
    height: auto;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0;
  }
  .nav-group {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
  }
  .nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
  .topbar .cta {
    order: 4;
  }
  h1 {
    font-size: 38px;
    line-height: 1.05;
  }
  .kicker {
    margin-bottom: 14px;
  }
  .hero {
    padding: 48px 0 56px;
  }
  .dek {
    font-size: 18px;
  }
  .hero-cta {
    flex-wrap: wrap;
  }
  .btn {
    width: max-content;
  }
  .section {
    padding: 44px 0;
  }
  .section h2 {
    font-size: 24px;
  }
  .eyebrow-label {
    font-size: 16px;
  }
  .note-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .note {
    min-height: 0;
  }
  .yazi {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }
  .y-thumb {
    width: 72px;
    height: 45px;
  }
  .yazi .title {
    font-size: 17px;
  }
  .yl-text h3 {
    font-size: 22px;
  }
  .yazi-lead {
    padding-bottom: 28px;
  }
  .iletisim h2 {
    font-size: 26px;
  }
  .iletisim {
    padding: 56px 0;
  }
  .agent-sig {
    gap: 10px;
  }
  .agent-sig-spacer {
    display: none;
  }
  .ajanik-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
  }
  .hero-stars,
  .iletisim-bg,
  .ne-rings,
  .ne-stars,
  .notlar-bg {
    display: none;
  }
}
.pr-links {
  display: flex;
  gap: 26px;
  margin: 16px 0 0;
}
.pr-links a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
}
.pr-links a:hover {
  color: var(--cream);
  border-color: var(--cream);
}
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pr {
  border-top: 2px solid var(--accent-dark);
  padding-top: 24px;
}
.pr-no {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.pr h3 {
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0;
  color: var(--cream);
}
.pr p {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.58;
  color: #b9b2a0;
  margin: 14px 0 0;
}
@media (max-width: 1024px) {
  .pr-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.why {
  background: var(--stone);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.why .why-title {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 26px 0 0;
}
.why .why-title em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-top: 4px;
}
.why-body {
  padding-top: 38px;
}
.why-body p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
  color: #3a362d;
  margin: 0;
}
.why-body blockquote {
  margin: 28px 0;
  padding: 2px 0 2px 24px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.46;
  color: var(--ink);
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .why .why-title {
    font-size: 32px;
  }
  .why-body {
    padding-top: 20px;
  }
}
.why-body .why-note {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #d3c9b4;
}
.why-body .wn-label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.why-body .why-note p {
  font-size: 15px;
  line-height: 1.55;
  color: #5e584a;
}\n\n/* WordPress FSE integration reset — original Claude layout stays authoritative. */
body.home .wp-site-blocks { padding: 0 !important; }
body.home .wp-site-blocks > * { margin-block-start: 0 !important; }
body.home header.site-header,
body.home footer.site-footer,
body.home main.wp-block-group { margin: 0 !important; padding: 0 !important; }
body.home .wp-block-template-part { margin-block-start: 0 !important; }
body.home .suha-dynamic-section { margin: 0; }


/* Selected-post rows: uniquely scoped to avoid collisions with legacy/theme classes. */
#yazilar .sk-home-post-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 110px;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
#yazilar .sk-home-post-thumb {
  grid-column: 1;
  grid-row: 1;
  width: 96px;
  height: 60px;
  min-width: 96px;
  overflow: hidden;
  border-radius: 6px;
  margin: 0;
  padding: 0;
  background: #ddd7ca;
}
#yazilar .sk-home-post-thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
#yazilar .sk-home-post-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
#yazilar .sk-home-post-cat {
  margin: 0 0 6px;
  padding: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#yazilar .sk-home-post-title {
  margin: 0;
  padding: 0;
  min-width: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  overflow-wrap: normal;
  word-break: normal;
}
#yazilar .sk-home-post-row:hover .sk-home-post-title {
  text-decoration: underline;
  text-underline-offset: 4px;
}
#yazilar .sk-home-post-date {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  width: 110px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  #yazilar .sk-home-post-row {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
  }
  #yazilar .sk-home-post-thumb {
    width: 80px;
    height: 50px;
    min-width: 80px;
  }
  #yazilar .sk-home-post-date {
    display: none;
  }
}
@media (max-width: 720px) {
  #yazilar .sk-home-post-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }
  #yazilar .sk-home-post-thumb {
    width: 72px;
    height: 45px;
    min-width: 72px;
  }
  #yazilar .sk-home-post-title {
    font-size: 17px;
  }
}


/* v4 fidelity fixes: exact desktop rhythm for Selected Yazılar + static arrow fallback. */
#yazilar .sk-home-post-row {
  height: 96px;
  max-height: 96px;
  overflow: hidden;
}
#yazilar .sk-home-post-copy {
  align-self: center;
}
#yazilar .sk-home-post-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.dot-wave-fallback {
  position: absolute;
  left: calc((100% - min(100% - 80px, 1440px)) / 2);
  width: calc(min(100% - 80px, 1440px) - 380px);
  top: 0;
  height: 100%;
  pointer-events: none;
  opacity: .9;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg,#000 0%,#000 74%,transparent 98%);
  mask-image: linear-gradient(90deg,#000 0%,#000 74%,transparent 98%);
}
@media (max-width:1024px){
  #yazilar .sk-home-post-row { height:86px; max-height:86px; }
  .dot-wave-fallback {
    left: 28px;
    width: calc(100% - 28px - 380px);
  }
}
@media (max-width:720px){
  #yazilar .sk-home-post-row { height:77px; max-height:77px; }
  .dot-wave-fallback { display:none; }
}
