:root {
  color-scheme: dark;
  --bg: #171b1a;
  --ink: #ebe9df;
  --muted: #b1b6ae;
  --accent: #c3d5a6;
  --line: #3b423b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
input,
select,
textarea {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
}
option {
  background: var(--bg);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
.wrap {
  width: min(1120px, calc(100% - 96px));
  margin-inline: auto;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -4px;
  line-height: 1;
}
.brand span,
.accent {
  color: var(--accent);
}
.header-note,
.eyebrow,
.small-label,
.ordinal {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 400;
}
.header-note {
  color: var(--muted);
  font-size: 9px;
  max-width: 125px;
  line-height: 1.7;
}
.site-header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.site-header nav [aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 8px;
}
.language {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 70px;
  padding: 100px 0 96px;
}
.eyebrow {
  color: var(--accent);
  margin: 0 0 26px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(68px, 8vw, 112px);
  letter-spacing: -5px;
  line-height: 1.05;
  margin: 0 0 30px;
}
.hero-summary {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.4;
  margin: 0;
}
.hero-summary em {
  font-weight: 400;
  color: var(--muted);
}
.hero-aside {
  align-self: end;
  padding-left: 30px;
  border-left: 1px solid var(--line);
  padding-bottom: 4px;
}
.hero-aside p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  margin: 16px 0 30px;
}
.small-label {
  color: var(--accent);
}
.text-link {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
  font-size: 14px;
}
.text-link span {
  color: var(--accent);
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 70px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
h2,
h3 {
  font-weight: 400;
}
h2 {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.3;
  margin: 0 0 24px;
}
h3 {
  font-size: 21px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.section-grid .eyebrow {
  margin-bottom: 16px;
}
.practice {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 24px;
  margin-bottom: 28px;
}
.ordinal {
  color: var(--muted);
  padding-top: 4px;
}
.practice p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.85;
}
.muted {
  color: var(--muted);
}
.closing {
  padding: 65px 0 85px;
  border-top: 1px solid var(--line);
}
.closing h2 {
  font-size: 46px;
}
.closing p:not(.eyebrow) {
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 30px 0 40px;
  font-size: 13px;
}
.site-footer div {
  display: flex;
  gap: 24px;
}
.site-footer span {
  color: var(--muted);
}
.document {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 0 100px;
  min-height: 65vh;
}
.document h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
  margin: 0 0 38px;
  letter-spacing: -1px;
}
.document section {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 30px;
}
.document p {
  color: var(--muted);
}
.document a:not(.text-link) {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.document .lead {
  font-size: 23px;
}
.skills-list {
  padding-left: 22px;
  color: var(--muted);
}
.skills-list li {
  padding: 5px 0;
}
.cv-heading {
  margin-bottom: 32px;
}
.print-action {
  margin-top: 25px;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.post-row {
  display: grid;
  grid-template-columns: 100px 1fr 20px;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.post-row time {
  font-size: 12px;
  color: var(--muted);
}
.post-row span {
  font-size: 20px;
}
.blog-search {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  padding: 25px 0;
}
.blog-search label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.pagination .current {
  color: var(--accent);
}
.article-body {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.article-body h2,
.article-body h3 {
  font-family: var(--sans);
  margin-top: 2em;
}
.article-body p {
  color: var(--ink);
}
.article-body pre {
  font-size: 14px;
  line-height: 1.7;
  background: #101311;
  padding: 24px;
  overflow: auto;
  white-space: pre;
}
.article-body pre code {
  font-family: Consolas, monospace;
}
.article-body code {
  font-size: 0.85em;
}
.article-body img {
  max-width: 100%;
  height: auto;
}
.article-body figure {
  margin: 30px 0;
}
.article-body figcaption {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.article-body blockquote {
  border-left: 2px solid var(--accent);
  margin: 32px 0;
  padding: 0 25px;
  font-style: italic;
}
.wp-block-table {
  overflow: auto;
}
.article-body table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}
.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 12px;
}
.article-meta,
.share,
.toc {
  font-size: 14px;
  color: var(--muted);
  margin: 25px 0;
}
.share {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.toc {
  border-block: 1px solid var(--line);
  padding: 20px 0;
}
.copy-code {
  font-size: 12px;
}
.tag-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .header-note {
    display: none;
  }
  .hero {
    gap: 35px;
    padding: 75px 0;
  }
  .hero h1 {
    font-size: 80px;
  }
  .section-grid {
    gap: 35px;
    grid-template-columns: 1fr 1.5fr;
  }
  .site-header nav {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 85px;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }
  .brand {
    font-size: 38px;
  }
  .menu-toggle {
    display: block;
    font-size: 13px;
    border: 0;
  }
  .site-header nav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .language {
    padding-left: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 55px 0;
    gap: 40px;
  }
  .hero h1 {
    font-size: 76px;
    margin-bottom: 24px;
  }
  .hero-summary {
    font-size: 28px;
  }
  .hero-aside {
    padding-left: 20px;
  }
  .hero-aside p {
    font-size: 16px;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .eyebrow {
    font-size: 10px;
  }
  .practice {
    gap: 18px;
  }
  .practice h3 {
    font-size: 19px;
  }
  .closing {
    padding: 40px 0 55px;
  }
  .closing h2 {
    font-size: 36px;
  }
  .site-footer,
  .site-footer div {
    flex-wrap: wrap;
    gap: 16px;
  }
  .document {
    padding: 45px 0 65px;
  }
  .post-row {
    grid-template-columns: 1fr 20px;
    gap: 5px;
  }
  .post-row time {
    grid-column: 1/-1;
  }
  .article-body {
    font-size: 19px;
  }
  .blog-search label,
  .blog-search input {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  :root {
    color-scheme: light;
    --bg: #fff;
    --ink: #111;
    --muted: #333;
    --line: #bbb;
    --accent: #222;
  }
  body {
    font-size: 11pt;
  }
  .site-header,
  .site-footer,
  .print-action,
  .skip-link {
    display: none;
  }
  .wrap {
    width: 100%;
    max-width: none;
  }
  .document {
    padding: 0;
    max-width: none;
  }
  .document h1 {
    font-size: 28pt;
    margin-bottom: 20px;
  }
  .document section {
    margin-top: 20px;
    padding-top: 15px;
  }
  h2,
  h3 {
    break-after: avoid;
  }
  li {
    break-inside: avoid;
  }
  a {
    color: #111;
  }
  .document p {
    orphans: 3;
    widows: 3;
  }
  @page {
    margin: 18mm;
  }
}
.document > figure {
  margin: 30px 0;
}
.document > figure img {
  max-width: 100%;
  height: auto;
}
.article-body pre:focus-visible,
.wp-block-table:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
/* Warm editorial direction; shared by the static site and WordPress. */
:root { --bg:#121817; --ink:#eee7db; --accent:#dac5a7; --line:#343c37; }
.brand { display:flex; align-items:center; gap:13px; letter-spacing:0; flex-shrink:0; }
.brand img { display:block; }
.brand .brand-name { color:var(--ink); font:11px var(--sans); letter-spacing:2.8px; white-space:nowrap; }
.header-note { display:none; }
.site-header { min-height:90px; }
.hero-editorial { position:relative; isolation:isolate; display:block; padding:66px 0 42px; min-height:650px; }
.hero-photo { position:absolute; z-index:-2; top:0; right:calc((min(1120px, 100vw - 96px) - 100vw) / 2); width:100vw; height:100%; object-fit:cover; object-position:center 56%; }
.hero-editorial::before { content:""; position:absolute; z-index:-1; inset:0 calc((min(1120px, 100vw - 96px) - 100vw) / 2); background:linear-gradient(90deg,#121817 1%,rgba(18,24,23,.94) 25%,rgba(18,24,23,.65) 47%,rgba(18,24,23,.08) 75%),linear-gradient(0deg,#121817,transparent 18%); }
.hero-copy { max-width:520px; }
.hero-editorial h1 { font-size:clamp(58px,6.7vw,88px); letter-spacing:-3px; margin-bottom:24px; }
.hero-editorial .hero-summary { font-size:clamp(26px,3vw,36px); }
.hero-summary em { color:#e0d5c3; }
.hero-intro { max-width:450px; color:#c5c7be; font-size:16px; line-height:1.8; margin:22px 0; }
.hero-actions { display:flex; align-items:center; flex-wrap:wrap; gap:12px; margin-top:28px; }
.hero-button { display:inline-flex; justify-content:space-between; align-items:center; gap:24px; min-height:52px; padding:0 22px; border:1px solid transparent; border-radius:8px; font-size:14px; font-weight:500; line-height:1.3; text-decoration:none; transition:background-color .18s ease,border-color .18s ease,box-shadow .18s ease; }
.hero-button svg { flex-shrink:0; transition:transform .18s ease; }
.hero-button-primary { background:#e5d7c3; color:#19201c; border-color:#e5d7c3; box-shadow:0 1px 2px #0003,inset 0 1px 0 #fff5; }
.hero-button-primary:hover { background:#f0e4d2; color:#19201c; border-color:#f0e4d2; box-shadow:0 4px 14px #0003; }
.hero-button-secondary { background:#18201bb3; color:#eee7db; border-color:#7b81766b; }
.hero-button-secondary:hover { background:#2b342a; color:#fff5e6; border-color:#9eaa94; }
.hero-button:hover svg { transform:translateX(3px); }
.hero-button:active { box-shadow:inset 0 2px 4px #0003; }
.hero-button:focus-visible { outline:2px solid #f5e4c8; outline-offset:4px; }
@media(max-width:420px) { .hero-actions { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(0,1fr); gap:10px; } .hero-button { padding:0 14px; gap:10px; font-size:13px; min-height:52px; } }
@media(max-width:350px) { .hero-actions { grid-template-columns:1fr; } }
@media(prefers-reduced-motion:reduce) { .hero-button:hover svg { transform:none; } }
.hero-signature { display:flex; align-items:center; gap:15px; margin-top:18px; color:#ded2c0; }
.hero-signature span { font:italic 25px var(--serif); letter-spacing:1px; }
.practice-section { display:block; padding:48px 0; }
.practice-section>div:first-child { display:flex; align-items:baseline; justify-content:space-between; gap:24px; }
.practice-section>div:first-child h2 { font-size:26px; }
.practice-section>div:last-child { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.practice-section .practice { display:block; border:0; margin:0; padding:0 24px 0 0; border-right:1px solid var(--line); }
.practice-section .practice:nth-child(3) { border-right:0; padding-right:0; }
.practice-icon { color:var(--accent); margin:10px 0 16px; }
.practice-section h3 { font-size:18px; }
.practice-section .practice p { font-size:14px; }
.practice-section .text-link { grid-column:1/-1; justify-self:start; }
.closing-editorial { position:relative; overflow:hidden; padding:48px; margin:16px 0 50px; border:1px solid var(--line); background:radial-gradient(ellipse at 90% 30%,#3b4031,transparent 66%),#1b2420; }
.closing-editorial::after { content:""; position:absolute; right:30px; top:15px; width:260px; height:240px; opacity:.09; background:url('/brand/akif-sen-monogram.svg') center/contain no-repeat; pointer-events:none; }
.closing-editorial p,.closing-editorial h2,.closing-editorial a { position:relative; z-index:1; }
@media(max-width:800px) {
  .hero-editorial { min-height:660px; }
  .hero-photo { right:-48px; object-position:65% center; }
  .hero-editorial::before { inset:0 -48px; background:linear-gradient(90deg,rgba(18,24,23,.97),rgba(18,24,23,.78) 55%,rgba(18,24,23,.28)),linear-gradient(0deg,#121817,transparent 25%); }
  .practice-section>div:last-child { gap:20px; }
}
@media(max-width:600px) {
  .site-header { min-height:80px; }
  .brand .brand-name { font-size:10px; letter-spacing:2px; }
  .brand img { width:43px; height:40px; }
  .hero-editorial { padding:42px 0 230px; min-height:0; }
  .hero-editorial h1 { font-size:60px; }
  .hero-photo { right:-24px; top:auto; bottom:0; height:340px; object-position:75% 65%; }
  .hero-editorial::before { inset:0 -24px; background:linear-gradient(180deg,#121817 0%,#121817 53%,rgba(18,24,23,.85) 66%,transparent 83%,#121817 100%); }
  .hero-intro { font-size:15px; }
  .hero-signature { margin-top:16px; }
  .hero-signature img { width:74px; height:68px; }
  .practice-section>div:first-child { display:block; }
  .practice-section>div:last-child { grid-template-columns:1fr; }
  .practice-section .practice { display:flex; gap:20px; border-right:0; border-bottom:1px solid var(--line); padding:0 0 22px; }
  .practice-icon { flex-shrink:0; margin-top:3px; }
  .closing-editorial { padding:30px 24px; }
  .closing-editorial h2 { font-size:34px; }
}
@media print { .hero-photo,.hero-signature { display:none; } }
body { overflow-x: clip; }
/* Responsive navigation and content: one disclosure pattern on every page. */
.mobile-home { display:none; }
.menu-cross { display:none; }
.menu-toggle[aria-expanded="true"] .menu-lines { display:none; }
.menu-toggle[aria-expanded="true"] .menu-cross { display:block; }
.document,.section-grid>div,.practice>div,.post-row>* { min-width:0; }
.document,.post-row,.closing { overflow-wrap:anywhere; }
@media(max-width:800px) {
  .site-header { min-height:88px; padding-block:16px; display:flex; flex-wrap:wrap; justify-content:space-between; gap:0; }
  .site-header .brand { gap:12px; min-height:48px; }
  .site-header .brand-name { font-size:12px; letter-spacing:2px; }
  .menu-toggle { display:inline-flex; align-items:center; justify-content:center; gap:12px; min-height:48px; padding:0 14px; border:1px solid #697468; border-radius:8px; font-size:14px; line-height:1; color:var(--ink); background:#1c251f; }
  .menu-toggle:hover,.menu-toggle[aria-expanded="true"] { background:#2c372b; border-color:var(--accent); }
  .site-header nav { display:none; flex:none; width:100%; margin:16px 0 0; padding:8px; border:1px solid #465044; border-radius:12px; background:#1b241e; gap:4px; }
  .site-header nav.is-open { display:flex; flex-direction:column; align-items:stretch; }
  .site-header nav a { display:flex; align-items:center; justify-content:space-between; min-height:48px; padding:12px 16px; font-size:16px; line-height:1.4; border-radius:6px; }
  .site-header nav a::after { content:'→'; color:var(--accent); }
  .site-header nav a:hover { background:#2a3529; }
  .site-header nav [aria-current="page"] { background:#303b2d; color:#f0e4d2; text-decoration:none; box-shadow:inset 3px 0 0 var(--accent); }
  .site-header nav .language { margin-top:4px; border-left:0; border-top:1px solid #465044; border-radius:0; font-size:14px; }
  .site-header nav .language::after { content:'English'; }
  html[lang="en"] .site-header nav .language::after { content:'Türkçe'; }
  .site-footer { flex-direction:column; gap:8px; }
  .site-footer div { flex-wrap:wrap; align-items:center; gap:8px 20px; }
  .site-footer a,.text-link,.share a,.tag-list a,.pagination a,.pagination span { display:inline-flex; align-items:center; min-height:44px; }
  .blog-search input,.blog-search select,.blog-search button,.print-action button { min-height:48px; font-size:16px; max-width:100%; }
  .blog-search label { min-width:0; }
  .practice-section>div:last-child { grid-template-columns:1fr; gap:24px; }
  .practice-section .practice { display:flex; gap:20px; border-right:0; border-bottom:1px solid var(--line); padding:0 0 24px; }
  .practice-section .practice:nth-child(3) { padding-bottom:24px; }
  .practice-icon { flex-shrink:0; margin-top:4px; }
  .practice-section .practice p,.hero-intro { font-size:16px; line-height:1.75; }
  .section-grid:not(.practice-section) { grid-template-columns:1fr; gap:20px; }
}
@media(max-width:600px) {
  .site-header .brand img { width:48px; height:44px; }
  .site-header .brand-name { font-size:11px; }
  .document { padding:36px 0 56px; }
  .document h1 { font-size:clamp(34px,9vw,48px); }
  .document h2 { font-size:27px; }
  .hero-editorial h1 { font-size:clamp(48px,15vw,60px); }
  .hero-editorial .hero-summary { font-size:clamp(24px,6.8vw,28px); }
  .hero-actions { display:grid; grid-template-columns:minmax(0,1.3fr) minmax(0,1fr); }
  .hero-button { font-size:14px; padding:12px 14px; gap:8px; }
  .closing-editorial { padding:28px 24px; }
  .closing-editorial h2 { font-size:32px; }
  .blog-search label,.blog-search button { width:100%; }
  .article-body pre { padding:16px; }
}
@media(max-width:359px) {
  .hero-actions { grid-template-columns:1fr; }
  .site-header .brand { gap:8px; }
  .menu-toggle { gap:8px; padding-inline:12px; }
  .practice-section>div:first-child h2 { font-size:25px; }
}
/* Match full-bleed imagery to the actual tablet/phone gutters. */
@media (max-width:900px) {
  .hero-photo { right:-28px; width:calc(100% + 56px); }
  .hero-editorial::before { left:-28px; right:-28px; }
}
@media (max-width:600px) {
  .hero-photo { right:-20px; width:calc(100% + 40px); }
  .hero-editorial::before { left:-20px; right:-20px; }
}
.ui-icon { display:inline-block; width:18px; height:18px; flex-shrink:0; vertical-align:-3px; }
.text-link .ui-icon,.contact-link .ui-icon,.post-row .ui-icon { color:var(--accent); }
.site-footer a .ui-icon,.document a>.ui-icon { margin-left:6px; }
.nav-icon { display:none; }
@media(max-width:800px) {
  .site-header { display:grid; grid-template-columns:minmax(0,1fr) auto; grid-template-rows:48px; grid-auto-rows:auto; align-content:start; align-items:center; padding-block:20px; min-height:0; }
  .site-header .brand { grid-column:1; grid-row:1; justify-self:start; }
  .site-header .menu-toggle { grid-column:2; grid-row:1; min-width:100px; }
  .site-header nav { grid-column:1/-1; grid-row:2; }
  .site-header nav a::after { content:none; }
  .site-header nav .nav-icon { display:block; color:var(--accent); }
}
