/* =========================================================
   SMMM Özgül Ünsal — kurumsal site stilleri
   Palet: gece mavisi (ink) · fildişi (paper) · pirinç (brass)
   ========================================================= */

:root {
  --ink: #0d1726;
  --ink-2: #13223a;
  --ink-3: #1c2f4d;
  --brass: #b48a45;
  --brass-2: #d9b776;
  --brass-soft: rgba(180, 138, 69, .14);

  --bg: #f7f3eb;
  --bg-2: #efe9dd;
  --surface: #fffdf8;
  --text: #16202e;
  --muted: #5b6474;
  --line: rgba(22, 32, 46, .12);
  --accent: #8f6a2c;            /* açık zeminde okunur pirinç */
  --shadow: 0 1px 2px rgba(13, 23, 38, .05), 0 12px 32px -12px rgba(13, 23, 38, .18);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --r: 18px;
  --wrap: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0a121e;
    --bg-2: #0e1827;
    --surface: #111d2f;
    --text: #e9e4da;
    --muted: #9aa3b2;
    --line: rgba(233, 228, 218, .12);
    --accent: #d9b776;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 18px 40px -18px rgba(0, 0, 0, .7);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0a121e;
  --bg-2: #0e1827;
  --surface: #111d2f;
  --text: #e9e4da;
  --muted: #9aa3b2;
  --line: rgba(233, 228, 218, .12);
  --accent: #d9b776;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 18px 40px -18px rgba(0, 0, 0, .7);
  color-scheme: dark;
}

/* ---------- temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 17px/1.7 var(--sans); font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: var(--brass); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .5em; font-optical-sizing: auto; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brass); color: #fff; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--brass); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { top: 12px; }
.ic { width: 20px; height: 20px; flex: none; }
.muted { color: var(--muted); }
.todo {
  display: inline-block; padding: 0 .5em; border-radius: 6px; font-size: .85em;
  background: repeating-linear-gradient(135deg, rgba(220, 80, 60, .14) 0 6px, rgba(220, 80, 60, .06) 6px 12px);
  color: #c2412d; border: 1px dashed rgba(194, 65, 45, .5); font-weight: 600;
}

/* ---------- butonlar ---------- */
.btn {
  --b: var(--brass);
  display: inline-flex; align-items: center; gap: .6em; padding: .95em 1.5em;
  border-radius: 999px; font: 600 .95rem/1 var(--sans); letter-spacing: .01em; text-decoration: none;
  background: linear-gradient(135deg, var(--brass-2), var(--brass)); color: #1a1206;
  box-shadow: 0 10px 24px -10px rgba(180, 138, 69, .7), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { color: #1a1206; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(180, 138, 69, .8), inset 0 1px 0 rgba(255, 255, 255, .35); }
.btn .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn-ghost { background: transparent; color: #f3ecdf; box-shadow: inset 0 0 0 1px rgba(243, 236, 223, .3); }
.btn-ghost:hover { color: #fff; box-shadow: inset 0 0 0 1px var(--brass-2); }

/* ---------- üst menü ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; color: #f3ecdf;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(13, 23, 38, .82); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(217, 183, 118, .18); padding: 6px 0;
}
.nav-row { display: flex; align-items: center; gap: 24px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand:hover { color: inherit; }
.brand .mono { width: 44px; height: 44px; color: var(--brass-2); transition: transform .6s var(--ease); }
.brand:hover .mono { transform: rotate(-12deg); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font: 500 1.2rem/1.1 var(--serif); letter-spacing: .01em; }
.brand small { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  position: relative; display: block; padding: 10px 14px; font-size: .92rem; font-weight: 500; text-decoration: none; color: inherit; opacity: .85;
  transition: opacity .2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px; background: var(--brass-2);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current] { opacity: 1; color: inherit; }
.main-nav a:hover::after, .main-nav a[aria-current]::after { transform: scaleX(1); }
.nav-tools { display: flex; gap: 6px; }
.icon-btn {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(243, 236, 223, .18);
  background: transparent; color: inherit; cursor: pointer; transition: border-color .2s, background .2s;
}
.icon-btn:hover { border-color: var(--brass-2); background: rgba(217, 183, 118, .08); }
.icon-btn .ic { width: 18px; height: 18px; }
.i-moon { display: none; }
:root[data-theme="dark"] .i-sun { display: none; }
:root[data-theme="dark"] .i-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .i-sun { display: none; }
  :root:not([data-theme="light"]) .i-moon { display: block; }
}
.menu-btn { display: none; flex-direction: column; gap: 6px; }
.menu-btn span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-btn { display: flex; }
  .main-nav {
    position: fixed; inset: 0; z-index: -1; background: rgba(10, 18, 30, .97); backdrop-filter: blur(16px);
    display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 6px; }
  .main-nav a { font: 400 1.9rem/1.2 var(--serif); padding: 10px 18px; transform: translateY(12px); opacity: 0; transition: transform .5s var(--ease), opacity .5s; }
  .main-nav.open a { transform: none; opacity: .9; }
  .main-nav.open li:nth-child(2) a { transition-delay: .04s; } .main-nav.open li:nth-child(3) a { transition-delay: .08s; }
  .main-nav.open li:nth-child(4) a { transition-delay: .12s; } .main-nav.open li:nth-child(5) a { transition-delay: .16s; }
  .main-nav.open li:nth-child(6) a { transition-delay: .2s; }
  .brand small { display: none; }
}

/* ---------- koyu zeminli alanlar (hero) ---------- */
.hero, .page-hero {
  position: relative; isolation: isolate; overflow: hidden; color: #f3ecdf;
  background: radial-gradient(120% 90% at 85% 0%, #1d3354 0%, var(--ink) 55%, #070d17 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.grid-lines {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(217, 183, 118, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 183, 118, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 70% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 70% at 70% 30%, #000 20%, transparent 75%);
  animation: drift 40s linear infinite;
}
@keyframes drift { to { background-position: 64px 64px, 64px 64px; } }
.glow {
  position: absolute; width: 60vmax; height: 60vmax; right: -20vmax; top: -30vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 183, 118, .22), transparent 60%); filter: blur(20px);
  animation: breathe 12s ease-in-out infinite alternate;
}
@keyframes breathe { from { transform: scale(1); opacity: .8; } to { transform: scale(1.12) translate(-4%, 6%); opacity: 1; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-size: .75rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass-2); margin-bottom: 1.4em;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }

/* ---------- ana sayfa hero ---------- */
.hero { min-height: min(100svh, 980px); display: flex; align-items: center; padding: 140px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(3.2rem, 8.4vw, 7.2rem); font-weight: 300; line-height: .95; letter-spacing: -.035em; margin-bottom: .35em; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--brass-2); display: block; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; animation: rise 1.1s var(--ease) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
@keyframes rise { from { transform: translateY(105%); } }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 34em; color: rgba(243, 236, 223, .78); animation: fade 1s .35s var(--ease) both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2em; animation: fade 1s .5s var(--ease) both; }
@keyframes fade { from { opacity: 0; transform: translateY(14px); } }
.hero-card {
  position: relative; padding: 34px; border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
  border: 1px solid rgba(217, 183, 118, .25); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); animation: fade 1.1s .45s var(--ease) both;
}
.hero-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--a, 0deg), transparent 0 70%, var(--brass-2) 80%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin 8s linear infinite;
}
@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spin { to { --a: 360deg; } }
.hero-card .card-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-card .card-h span { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-2); }
.hero-card .mono { width: 46px; height: 46px; color: var(--brass-2); }
.hero-card dl { margin: 0; display: grid; gap: 0; }
.hero-card dl div { display: grid; grid-template-columns: 7.2em 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(243, 236, 223, .1); font-size: .93rem; }
.hero-card dt { color: rgba(243, 236, 223, .55); }
.hero-card dd { margin: 0; }
.hero-card a { color: #f3ecdf; text-decoration: none; }
.hero-card a:hover { color: var(--brass-2); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; width: 22px; height: 36px; border: 1px solid rgba(243, 236, 223, .35); border-radius: 12px;
  transform: translateX(-50%);
}
.scroll-cue::after { content: ""; position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; margin-left: -1px; background: var(--brass-2); border-radius: 2px; animation: cue 2s var(--ease) infinite; }
@keyframes cue { 60% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- kilometre taşları şeridi ---------- */
.milestones { background: var(--ink); color: #f3ecdf; border-top: 1px solid rgba(217, 183, 118, .15); }
.milestones ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.milestones li { padding: 34px 28px; border-left: 1px solid rgba(217, 183, 118, .15); }
.milestones li:first-child { border-left: 0; }
.milestones b { display: block; font: 300 clamp(2.2rem, 4vw, 3.2rem)/1 var(--serif); color: var(--brass-2); margin-bottom: 10px; letter-spacing: -.02em; }
.milestones span { font-size: .9rem; color: rgba(243, 236, 223, .7); }

/* ---------- bölümler ---------- */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section.alt { background: var(--bg-2); }
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.sec-head .eyebrow { color: var(--accent); margin-bottom: 1em; }
.sec-title { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 300; margin: 0; }
.sec-title em { font-style: italic; color: var(--accent); }
.sec-head p { color: var(--muted); margin: 0; max-width: 36em; }

/* hizmet kartları */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; display: flex; flex-direction: column; padding: 34px 30px 28px; border-radius: var(--r); text-decoration: none; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .5s var(--ease);
  background: radial-gradient(120% 80% at 100% 0%, var(--brass-soft), transparent 60%);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(180, 138, 69, .45); color: var(--text); }
.svc-card:hover::before { opacity: 1; }
.svc-num { position: absolute; top: 22px; right: 26px; font: italic 300 2.4rem/1 var(--serif); color: var(--line); transition: color .5s; }
.svc-card:hover .svc-num { color: var(--brass); }
.svc-ic { width: 46px; height: 46px; padding: 11px; border-radius: 14px; background: var(--brass-soft); color: var(--accent); margin-bottom: 26px; }
.svc-card h3 { font-size: 1.45rem; margin-bottom: .45em; }
.svc-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc-card .more { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--accent); letter-spacing: .02em; }
.svc-card .more .ic { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.svc-card:hover .more .ic { transform: translateX(4px); }

/* hakkında vitrin */
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: 28px; overflow: hidden; isolation: isolate;
  background: radial-gradient(100% 80% at 30% 20%, #20385c, var(--ink) 70%); color: var(--brass-2);
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.portrait .mono { width: 58%; height: auto; opacity: .95; }
.portrait::after {
  content: ""; position: absolute; inset: 18px; border: 1px solid rgba(217, 183, 118, .3); border-radius: 18px;
}
.portrait .stamp {
  position: absolute; left: 28px; right: 28px; bottom: 30px; z-index: 1; color: #f3ecdf; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  display: flex; justify-content: space-between; opacity: .75;
}
.lead-quote { font: 300 clamp(1.5rem, 2.6vw, 2.1rem)/1.3 var(--serif); margin-bottom: 1em; }
.lead-quote em { color: var(--accent); }
.principles { list-style: none; padding: 0; margin: 2em 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
.principles li { display: flex; gap: 14px; }
.principles .ic { width: 38px; height: 38px; padding: 9px; border-radius: 12px; background: var(--brass-soft); color: var(--accent); }
.principles strong { display: block; font-weight: 600; margin-bottom: 2px; }
.principles span { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* rehber kartları */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card a {
  display: flex; flex-direction: column; height: 100%; padding: 30px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
  text-decoration: none; color: var(--text); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.post-card a:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(180, 138, 69, .45); color: var(--text); }
.post-cat { align-self: flex-start; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); padding: 5px 10px; border-radius: 999px; background: var(--brass-soft); margin-bottom: 18px; }
.post-card h3 { font-size: 1.4rem; }
.post-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--line); }
.post-meta .ic { width: 15px; height: 15px; }

/* SSS */
.faq { display: grid; gap: 12px; }
.faq-item { border-radius: 14px; background: var(--surface); border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: rgba(180, 138, 69, .45); box-shadow: var(--shadow); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; cursor: pointer; list-style: none; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 14px; height: 14px; flex: none; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 0; top: 6.5px; width: 14px; height: 1.5px; background: var(--accent); transition: transform .35s var(--ease); }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-a { padding: 0 24px 22px; color: var(--muted); }
.faq-a p:last-child { margin: 0; }
.faq-a a { color: var(--accent); }
.faq-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-split .sec-head { display: block; position: sticky; top: 110px; }
.faq-split .sec-head p { margin-top: 1em; }
.faq-group + .faq-group { margin-top: 56px; }
.faq-group h2 { font-size: 1.8rem; margin-bottom: .8em; }

/* iletişim bandı */
.cta-band { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: #f3ecdf; padding: clamp(64px, 9vw, 110px) 0; }
.cta-band .glow { left: -20vmax; right: auto; top: -40vmax; }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
.cta-band h2 em { color: var(--brass-2); }
.cta-band p { color: rgba(243, 236, 223, .72); }
.cta-band .contact-list a, .cta-band .contact-list span { color: #f3ecdf; }
.cta-band .contact-list .ic { color: var(--brass-2); }

/* iletişim listesi */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .ic { margin-top: 3px; color: var(--accent); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--brass-2); }

/* ---------- iç sayfa hero ---------- */
.page-hero { padding: 150px 0 70px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); font-weight: 300; letter-spacing: -.03em; max-width: 18em; animation: fade .9s var(--ease) both; }
.page-hero .lede { font-size: 1.12rem; color: rgba(243, 236, 223, .75); max-width: 42em; margin: 0; animation: fade .9s .1s var(--ease) both; }
.page-hero .lede a { color: var(--brass-2); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 2.2em; padding: 0; font-size: .8rem; color: rgba(243, 236, 223, .55); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--brass-2); }
.post-info { display: flex; align-items: center; gap: 14px; margin-top: 2em; }
.post-info .mono { width: 44px; height: 44px; color: var(--brass-2); }
.post-info span { display: grid; }
.post-info small { color: rgba(243, 236, 223, .6); font-size: .82rem; }
.page-body { padding: clamp(56px, 8vw, 96px) 0; }
.band { padding: clamp(56px, 8vw, 90px) 0 0; margin-top: clamp(56px, 8vw, 90px); border-top: 1px solid var(--line); }
.band .sec-title { font-size: 2rem; margin-bottom: 1.2em; }

/* makale / içerik */
.with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(40px, 6vw, 80px); align-items: start; }
.prose { max-width: 740px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 1.9em 0 .6em; }
.prose h3 { font-size: 1.3rem; margin: 1.6em 0 .5em; }
.prose p, .prose li { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--brass); }
.prose a { color: var(--accent); }
.prose strong { font-weight: 700; }
.prose blockquote { margin: 1.6em 0; padding: 1.2em 1.4em; border-left: 3px solid var(--brass); background: var(--brass-soft); border-radius: 0 12px 12px 0; }
.prose blockquote p:last-child { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.steps { counter-reset: s; list-style: none; padding: 0 !important; }
.steps > li { counter-increment: s; position: relative; padding: 0 0 1.3em 3.6em; margin: 0 !important; }
.steps > li::before {
  content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: -.1em; width: 2.4em; height: 2.4em; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--brass); color: var(--accent); font: italic 400 .95rem/1 var(--serif);
}
.steps > li::after { content: ""; position: absolute; left: 1.2em; top: 2.5em; bottom: .2em; width: 1px; background: var(--line); }
.steps > li:last-child::after { display: none; }
.tldr { padding: 26px 28px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); margin-bottom: 2.4em; position: relative; overflow: hidden; }
.tldr::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(var(--brass-2), var(--brass)); }
.tldr-h { font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: .8em; }
.tldr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tldr li { display: flex; gap: 10px; margin: 0; }
.tldr .ic { width: 18px; height: 18px; margin-top: 4px; color: var(--accent); }
.sources { font-size: .9rem; }
.author-box { display: flex; gap: 18px; margin-top: 3em; padding: 26px; border-radius: var(--r); background: var(--bg-2); border: 1px solid var(--line); }
.author-box .mono { width: 54px; height: 54px; flex: none; color: var(--accent); }
.author-box p { margin: 0 0 .4em; font-size: .95rem; }
.author-box .muted { font-size: .85rem; }

.side { position: sticky; top: 100px; display: grid; gap: 20px; }
.side-card { padding: 26px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.side-h { font: 700 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin: 0 0 1.2em; }
.side-card .side-h:not(:first-child) { margin-top: 2em; }
.side-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.side-list a { display: flex; gap: 10px; padding: 8px 10px; margin: 0 -10px; border-radius: 10px; text-decoration: none; font-size: .93rem; line-height: 1.4; }
.side-list a:hover { background: var(--brass-soft); color: var(--text); }
.side-list .ic { width: 18px; height: 18px; color: var(--accent); margin-top: 1px; }
.side-contact .contact-list { font-size: .92rem; }
.toc ol { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 16px; margin-left: -1px; border-left: 2px solid transparent; font-size: .9rem; color: var(--muted); text-decoration: none; line-height: 1.4; transition: color .2s, border-color .2s; }
.toc a:hover, .toc a.active { color: var(--text); border-left-color: var(--brass); }
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; background: linear-gradient(90deg, var(--brass-2), var(--brass)); transform-origin: left; transform: scaleX(0); }

.note { display: flex; gap: 16px; align-items: flex-start; margin-top: 40px; padding: 24px 26px; border-radius: var(--r); background: var(--brass-soft); border: 1px solid rgba(180, 138, 69, .3); }
.note .ic { width: 26px; height: 26px; color: var(--accent); margin-top: 2px; }
.note p { margin: 0; font-size: .95rem; }

/* künye tablosu */
.kunye { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; font-size: .96rem; }
.kunye th, .kunye td { padding: 15px 22px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.kunye tr:last-child th, .kunye tr:last-child td { border-bottom: 0; }
.kunye th { width: 38%; font-weight: 500; color: var(--muted); }
.kunye a { color: var(--accent); }

/* iletişim sayfası */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { padding: 32px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.contact-card h2 { font-size: 1.6rem; }
.contact-card.dark { background: radial-gradient(120% 100% at 100% 0%, #1d3354, var(--ink) 65%); color: #f3ecdf; border-color: rgba(217, 183, 118, .25); }
.contact-card.dark .contact-list .ic { color: var(--brass-2); }
.contact-card.dark a:hover { color: var(--brass-2); }
.big-phone { display: block; font: 300 clamp(1.8rem, 3.4vw, 2.6rem)/1.15 var(--serif); text-decoration: none; margin: .2em 0; letter-spacing: -.01em; }
.map-card {
  position: relative; display: grid; place-items: center; min-height: 260px; border-radius: var(--r); overflow: hidden; text-decoration: none; color: #f3ecdf;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 183, 118, .25), transparent 40%),
    repeating-linear-gradient(0deg, rgba(217, 183, 118, .08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(217, 183, 118, .08) 0 1px, transparent 1px 38px),
    linear-gradient(160deg, #1a2d4a, var(--ink));
}
.map-card .pin { display: grid; justify-items: center; gap: 12px; text-align: center; }
.map-card .pin .ic { width: 42px; height: 42px; color: var(--brass-2); animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-6px); } }
.map-card:hover { color: #fff; }

/* bağlantılar */
.link-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.link-group { padding: 30px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.link-group h2 { font-size: 1.5rem; }
.link-group ul { list-style: none; margin: 0; padding: 0; }
.link-group li + li { border-top: 1px solid var(--line); }
.link-group a { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 14px 0; text-decoration: none; }
.link-group a span { display: grid; }
.link-group small { color: var(--muted); font-size: .85rem; }
.link-group a .ic { width: 16px; height: 16px; color: var(--accent); opacity: .6; transition: transform .3s var(--ease), opacity .3s; }
.link-group a:hover .ic { transform: translate(2px, -2px); opacity: 1; }

/* ---------- alt bilgi ---------- */
.site-footer { background: #070d17; color: rgba(243, 236, 223, .72); padding: 80px 0 30px; font-size: .92rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--brass-2); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(243, 236, 223, .1); }
.site-footer .brand { color: #f3ecdf; margin-bottom: 20px; }
.foot-kunye { font-size: .85rem; line-height: 1.8; }
.foot-h { font: 700 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--brass-2); margin: 0 0 1.4em; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer .contact-list .ic { color: var(--brass-2); width: 17px; height: 17px; }
.foot-legal { font-size: .78rem; line-height: 1.7; color: rgba(243, 236, 223, .5); max-width: 70em; margin: 30px 0 20px; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .8rem; color: rgba(243, 236, 223, .45); }

/* ---------- belirme animasyonu ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease) var(--d, 0ms), transform .9s var(--ease) var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- duyarlı ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 560px; }
  .svc-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .with-aside { grid-template-columns: 1fr; }
  .side { position: static; }
  .article-layout .side { order: -1; }
  .article-layout .toc { display: none; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .sec-head, .about-split, .faq-split, .cta-grid, .contact-grid, .link-groups { grid-template-columns: 1fr; }
  .sec-head { gap: 16px; margin-bottom: 36px; }
  .faq-split .sec-head { position: static; }
  .milestones ol { grid-template-columns: 1fr 1fr; }
  .milestones li { padding: 26px 20px; }
  .milestones li:nth-child(3) { border-left: 0; }
  .milestones li:nth-child(n+3) { border-top: 1px solid rgba(217, 183, 118, .15); }
  .portrait { max-width: 420px; aspect-ratio: 5 / 4; }
  .principles { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}
@media (max-width: 600px) {
  .svc-grid, .post-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 70px; }
  .hero-card { padding: 24px; }
  .hero-card dl div { grid-template-columns: 1fr; gap: 2px; }
  .page-hero { padding: 120px 0 52px; }
  .kunye th, .kunye td { display: block; width: 100%; padding: 10px 18px; }
  .kunye th { padding-bottom: 0; border-bottom: 0; font-size: .82rem; }
  .contact-card, .link-group { padding: 24px; }
}

/* ---------- baskı ---------- */
@media print {
  .site-header, .site-footer .foot-grid, .side, .progress, .band, .hero-bg { display: none !important; }
  .page-hero, .hero { background: none; color: #000; padding: 20px 0; }
  body { background: #fff; color: #000; }
}
