/* Proje Pusulası — sade, sıcak, güven veren tasarım sistemi */
:root {
  --bg: #F8F5EE;
  --bg-2: #EEE9DD;
  --fg: #100D08;
  --fg-soft: #4A4137;
  --fg-muted: #857A6B;
  --line: #E2DAC7;
  --line-2: #EBE4D3;
  --card: #FFFFFF;
  --accent: #5C3A22;
  --accent-deep: color-mix(in oklab, var(--accent), black 30%);
  --accent-soft: color-mix(in oklab, var(--accent), var(--bg) 78%);
  --good: #4F7A3F;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-1: 0 1px 0 rgba(26,23,20,0.04), 0 1px 2px rgba(26,23,20,0.04);
  --shadow-2: 0 2px 6px rgba(26,23,20,0.05), 0 8px 28px rgba(26,23,20,0.07);
}

[data-theme="dark"] {
  --bg: #100D08;
  --bg-2: #1B1714;
  --fg: #F2EBDE;
  --fg-soft: #B8AC9B;
  --fg-muted: #847868;
  --line: #2A241D;
  --line-2: #1F1B16;
  --card: #18140F;
  --accent: #D9A084;
  --accent-deep: color-mix(in oklab, var(--accent), black 25%);
  --accent-soft: color-mix(in oklab, var(--accent), var(--bg) 82%);
}

[data-fontset="modern"] {
  --serif: "Bricolage Grotesque", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
}
[data-fontset="editorial"] {
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Skip-to-content (klavye kullanıcılar için) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Focus visible — klavye fokusunda görünür çerçeve */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.chip:focus-visible,
.topbar-cta:focus-visible {
  outline-offset: 3px;
}
[id="main"]:focus { outline: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(48px, 6.5vw, 92px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; }
p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* --- Top bar --- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg), transparent 12%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--accent), var(--accent-deep));
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--bg);
}
.topnav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--fg-soft);
}
.topnav a {
  white-space: nowrap;
}
.topnav a:hover { color: var(--fg); }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.topbar-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.topbar-burger {
  display: none;
  appearance: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.topbar-burger:hover { background: var(--bg-2); border-color: var(--fg-soft); }
@media (max-width: 820px) {
  .topbar-burger { display: inline-flex; }
  .topnav {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px color-mix(in oklab, var(--fg), transparent 92%);
    animation: navIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .topbar.nav-open .topnav { display: flex; }
  .topnav a {
    padding: 14px 32px;
    border-top: 1px solid var(--line-2);
    font-size: 15px;
    color: var(--fg);
  }
  .topnav a:first-child { border-top: none; }
  .topnav a:hover { background: var(--bg-2); }
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 1024px) and (min-width: 821px) {
  .topnav { gap: 16px; font-size: 13px; }
  .topbar-cta { font-size: 13px; padding: 8px 14px; }
}
@media (max-width: 480px) {
  /* Çok dar ekranlarda da telefon pill'i kalsın — FloatingCTA kaldırıldı,
     bu mobile'ın tek hızlı erişim noktası. Marka kuralı gereği telefon
     birincil CTA. */
  .topbar-cta {
    padding: 7px 12px;
    font-size: 12.5px;
  }
  .topbar-cta svg { width: 14px; height: 14px; }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 120px 0 130px;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--good), transparent 80%);
}
.hero h1 { margin: 28px 0 32px; max-width: 14ch; }
.hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-feature-settings: "ss01" on;
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--fg-soft);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.15s, background 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 2px 8px color-mix(in oklab, var(--fg), transparent 75%);
}
.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  box-shadow: 0 4px 14px color-mix(in oklab, var(--fg), transparent 65%);
}
.btn-secondary {
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--fg); }
.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { transform: translateY(-1px); background: #1ebd58; }
.btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: white;
}
.btn-ig:hover { transform: translateY(-1px); opacity: 0.92; }

.hero-trust {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line-2);
  max-width: 780px;
}
.hero-trust-item .n {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-trust-item .n em {
  font-style: italic;
  color: var(--accent-deep);
}
.hero-trust-item .l {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero { padding: 56px 0 70px; }
}

.hero-aside {
  position: absolute;
  right: -40px;
  top: 80px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  opacity: 0.55;
}
.hero-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  filter: blur(20px);
}
@media (max-width: 1024px) { .hero-aside { display: none; } }

/* --- Section base --- */
.section {
  padding: 90px 0;
  border-top: 1px solid var(--line-2);
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.section-title {
  max-width: 22ch;
  margin-bottom: 18px;
}
.section-lede {
  max-width: 60ch;
  font-size: 17px;
  color: var(--fg-soft);
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
}

/* --- Why --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-card {
  padding: 36px 32px 32px;
  background: var(--card);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.why-card .ix {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
}
.why-card p { color: var(--fg-soft); font-size: 15.5px; }
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* --- Projects --- */
.proj-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.proj-toolbar-sticky {
  position: sticky;
  top: 68px;
  z-index: 20;
  background: color-mix(in oklab, var(--bg), transparent 8%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
@media (max-width: 820px) {
  .proj-toolbar-sticky { top: 60px; }
}

.proj-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 360px;
}
.proj-search-icon {
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
}
.proj-search-input {
  appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  flex: 1;
  font: inherit;
  font-size: 14px;
  padding: 10px 8px 10px 10px;
  color: var(--fg);
}
.proj-search-input::placeholder { color: var(--fg-muted); }
.proj-search-clear {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--fg-muted);
  padding: 4px;
  border-radius: 50%;
  display: inline-flex;
}
.proj-search-clear:hover { color: var(--fg); background: var(--bg-2); }

.proj-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0 4px;
}
.proj-tags-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-right: 6px;
}
.proj-tag-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--fg-soft);
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}
.proj-tag-chip:hover { border-color: var(--fg-soft); color: var(--fg); }
.proj-tag-chip[data-active="true"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.proj-empty {
  grid-column: 1 / -1;
  padding: 40px 30px;
  text-align: center;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
}
.proj-empty h3 {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.proj-empty p {
  color: var(--fg-soft);
  font-size: 15px;
  max-width: 44ch;
  margin: 0 auto 18px;
}
.proj-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  transition: all 0.15s;
}
.chip:hover { color: var(--fg); border-color: var(--fg-soft); }
.chip[data-active="true"] {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.proj-count {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-muted);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .proj-grid { grid-template-columns: 1fr; } }

.proj-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.proj-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.proj-img {
  height: 220px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.proj-img-stripes {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--accent), transparent 88%) 0px,
      color-mix(in oklab, var(--accent), transparent 88%) 12px,
      transparent 12px,
      transparent 24px);
}
.proj-img-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proj-img-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--fg);
}
.proj-img-progress {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: color-mix(in oklab, var(--bg), transparent 20%);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.proj-img-progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.5s ease;
}

.proj-body { padding: 24px 24px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.proj-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.proj-meta .sep { opacity: 0.4; }
.proj-name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.proj-tag {
  font-size: 12px;
  color: var(--fg-soft);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.proj-window {
  margin-top: 4px;
  padding: 14px 16px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.proj-window-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--good), transparent 84%);
  flex-shrink: 0;
}
.proj-window-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.proj-window-value {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--fg);
  margin-top: 2px;
}
.proj-window-value em {
  font-style: italic;
  color: var(--accent-deep);
}

.proj-note {
  font-size: 14.5px;
  font-style: italic;
  color: var(--fg-soft);
  background: color-mix(in oklab, var(--accent-soft), transparent 60%);
  border-left: 2px solid var(--accent);
  padding: 12px 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  line-height: 1.5;
}
.proj-note::before {
  content: "Yusuf'tan not — ";
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 4px;
}

.proj-actions {
  display: flex;
  gap: 8px;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.proj-actions .btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: 14px; }

/* --- Process --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  padding: 32px 26px 30px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}
.process-card .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}
.process-card h3 { font-size: 22px; }
.process-card p { color: var(--fg-soft); font-size: 15px; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    color-mix(in oklab, var(--accent), transparent 90%) 0px,
    color-mix(in oklab, var(--accent), transparent 90%) 10px,
    transparent 10px,
    transparent 20px);
}
.about-portrait[data-has-image="1"]::before { display: none; }
.about-portrait[data-has-image="1"] { background-color: transparent; }
.proj-img[data-has-image="1"] .proj-img-label,
.proj-img[data-has-image="1"] .proj-img-stripes { display: none; }
.about-portrait-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-text h2 { margin-bottom: 26px; max-width: 16ch; }
.about-text p { color: var(--fg-soft); font-size: 17px; line-height: 1.65; }
.about-text p + p { margin-top: 18px; }
.about-quote {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 2px solid var(--accent);
  background: var(--card);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--fg);
}
.about-sign {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-sign .name { font-family: var(--serif); font-size: 22px; }
.about-sign .role { font-size: 13px; color: var(--fg-muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.faq-toggle {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--fg-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[data-open="true"] .faq-toggle { transform: rotate(45deg); color: var(--accent-deep); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.2s, opacity 0.25s;
  color: var(--fg-soft);
  font-size: 16.5px;
  line-height: 1.65;
  opacity: 0;
}
.faq-item[data-open="true"] .faq-a {
  max-height: 400px;
  margin-top: 14px;
  opacity: 1;
  padding-right: 60px;
}

/* --- Contact band --- */
.contact-band {
  margin: 60px 0 0;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-band h2 { font-size: clamp(34px, 4vw, 50px); max-width: 18ch; }
.contact-band p { color: color-mix(in oklab, var(--bg), transparent 30%); font-size: 17px; margin-top: 18px; max-width: 44ch; }
.contact-band .ways { display: flex; flex-direction: column; gap: 10px; }
.contact-way {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: color-mix(in oklab, var(--bg), transparent 92%);
  border: 1px solid color-mix(in oklab, var(--bg), transparent 85%);
  border-radius: var(--r);
  transition: all 0.15s;
}
.contact-way:hover {
  background: color-mix(in oklab, var(--bg), transparent 86%);
  transform: translateX(-3px);
}
.contact-way-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-way-icon.tel { background: var(--fg); color: var(--bg); }
.contact-way-icon.wa { background: #25D366; color: white; }
.contact-way-icon.ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: white; }
.contact-way-text .label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.contact-way-text .value { font-family: var(--serif); font-size: 22px; line-height: 1.15; margin-top: 2px; }
@media (max-width: 860px) {
  .contact-band { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
}

/* --- Footer --- */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-2);
  color: var(--fg-soft);
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover { color: var(--fg); }
.footer-tag { color: var(--fg-soft); max-width: 38ch; line-height: 1.55; margin-top: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-2);
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--fg-muted);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* --- Floating contact (mobile sticky) --- */
.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  gap: 8px;
  z-index: 30;
}
.floating-cta .fbtn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.15s;
}
.floating-cta .fbtn:hover { transform: translateY(-3px); }
.floating-cta .fbtn.tel {
  background: var(--fg);
  width: 64px; height: 64px;
}
.floating-cta .fbtn.wa { background: #25D366; }
@media (max-width: 720px) {
  .floating-cta {
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: 16px;
  }
  .floating-cta .fbtn { width: 52px; height: 52px; }
}

/* Reveal animation — premium feel, soft cubic-bezier */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entry — page-load fade up, staggered */
.hero h1, .hero .hero-eyebrow, .hero-lede, .hero-cta-row, .hero-trust, .hero-voice {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.12s; }
.hero-lede { animation-delay: 0.22s; }
.hero-cta-row { animation-delay: 0.32s; }
.hero-trust { animation-delay: 0.42s; }
.hero-voice { animation-delay: 0.20s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Eyebrow — drawn line replaces the em-dash */
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  transform: scaleX(0.4);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 0.5s ease 0.15s;
}
.reveal.in .section-eyebrow::before,
section:not(.reveal) .section-eyebrow::before {
  transform: scaleX(1);
  opacity: 1;
}

/* Button press feedback */
.btn { transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; }
.btn:active { transform: translateY(0) scale(0.97); }

/* Subtle card hover lift */
.story-card, .why-card, .process-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}
.story-card:hover, .why-card:hover, .process-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

/* District pill — soft transition */
.dl-district-pill { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

/* Project image — micro parallax on the diagonal stripes */
.proj-card .proj-img-stripes {
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.proj-card:hover .proj-img-stripes { transform: scale(1.06); }

/* TopBar shadow on scroll */
.topbar { transition: box-shadow 0.3s ease; }
.topbar.scrolled {
  box-shadow: 0 1px 0 var(--line-2), 0 6px 24px color-mix(in oklab, var(--fg), transparent 92%);
}

/* Filter chip easing */
.chip { transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); }

/* FAQ open — tighter easing */
.faq-a {
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              margin-top 0.3s ease,
              opacity 0.35s ease;
}

/* Hero trust hover polish (counter handled in JS) */
.hero-trust-item { transition: transform 0.3s ease; }
.hero-trust-item:hover { transform: translateY(-2px); }

/* Responsive polish */
@media (max-width: 720px) {
  .hero-trust { grid-template-columns: 1fr; gap: 18px; padding-top: 28px; }
  .hero-trust-item .n { font-size: 38px; }
  .section-head { gap: 14px; }
  .why-card, .process-card, .story-card { padding: 26px 22px; min-height: 0; }
  .compare-row > div { padding: 18px 20px; font-size: 17px; }
  .contact-band { padding: 32px 24px; }
  .contact-way { padding: 14px 16px; }
  .contact-way-text .value { font-size: 18px; }
  .pd-hero { padding: 36px 0 30px; }
  .pd-body { padding: 40px 0; }
  .dl-hero { padding: 56px 0 30px; }
  .dl-yusuf { padding: 28px 22px; }
  .subscribe-band { margin-top: 56px; }
  .footer-top { gap: 28px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .hero-cta-row {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .proj-actions {
    flex-direction: column;
    gap: 8px;
  }
  .proj-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .topbar-inner { gap: 12px; }
  .topbar-cta { padding: 8px 12px; font-size: 13px; }
  .topbar-cta span,
  .topbar-cta { font-size: 13px; }
  .pd-side .btn { width: 100%; }
  h1, .pd-title, .dl-title { font-size: clamp(36px, 10vw, 52px) !important; }
  .hero-trust-item .n { font-size: 34px; }
  .compare-head > div { padding: 18px 20px; font-size: 11px; }
  .faq-q { font-size: 18px; gap: 14px; }
  .faq-item[data-open="true"] .faq-a { padding-right: 0; }
  .footer-top { grid-template-columns: 1fr; }
}

/* --- Hero voice card (Yusuf'tan 30 saniye) --- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
}
.hero > .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero > .container { grid-template-columns: 1fr; gap: 56px; }
}

.hero-voice {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-2);
  max-width: 420px;
  margin-left: auto;
}
.hero-voice-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-voice-portrait {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), color-mix(in oklab, var(--accent), white 50%));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent-deep);
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.hero-voice-head .who {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-voice-head .who small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 400;
}
.hero-voice-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.hero-voice-player {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px 14px 14px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.hero-voice-play {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.hero-voice-play:hover { transform: scale(1.06); }
.hero-voice-play svg { width: 14px; height: 14px; }
.hero-voice-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  overflow: hidden;
}
.hero-voice-wave i {
  flex: 1;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.45;
  height: 30%;
  transition: height 0.2s, opacity 0.2s;
}
.hero-voice[data-playing="true"] .hero-voice-wave i {
  animation: wave 1.1s ease-in-out infinite;
  opacity: 0.9;
}
.hero-voice-wave i:nth-child(1) { animation-delay: 0.0s; }
.hero-voice-wave i:nth-child(2) { animation-delay: 0.08s; }
.hero-voice-wave i:nth-child(3) { animation-delay: 0.16s; }
.hero-voice-wave i:nth-child(4) { animation-delay: 0.24s; }
.hero-voice-wave i:nth-child(5) { animation-delay: 0.32s; }
.hero-voice-wave i:nth-child(6) { animation-delay: 0.40s; }
.hero-voice-wave i:nth-child(7) { animation-delay: 0.48s; }
.hero-voice-wave i:nth-child(8) { animation-delay: 0.56s; }
.hero-voice-wave i:nth-child(9) { animation-delay: 0.16s; }
.hero-voice-wave i:nth-child(10) { animation-delay: 0.24s; }
.hero-voice-wave i:nth-child(11) { animation-delay: 0.32s; }
.hero-voice-wave i:nth-child(12) { animation-delay: 0.10s; }
.hero-voice-wave i:nth-child(13) { animation-delay: 0.50s; }
.hero-voice-wave i:nth-child(14) { animation-delay: 0.20s; }
.hero-voice-wave i:nth-child(15) { animation-delay: 0.40s; }
.hero-voice-wave i:nth-child(16) { animation-delay: 0.30s; }
.hero-voice-wave i:nth-child(17) { animation-delay: 0.10s; }
.hero-voice-wave i:nth-child(18) { animation-delay: 0.45s; }
.hero-voice-wave i:nth-child(19) { animation-delay: 0.05s; }
.hero-voice-wave i:nth-child(20) { animation-delay: 0.35s; }
@keyframes wave {
  0%, 100% { height: 20%; }
  50% { height: 95%; }
}
.hero-voice-time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.hero-voice-hint {
  font-size: 12.5px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-voice-hint .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Stories --- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .stories-grid { grid-template-columns: 1fr; } }

.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.story-card::before {
  content: "❝";
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent-soft);
  pointer-events: none;
}
.story-who {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.story-want {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-style: italic;
}
.story-body {
  color: var(--fg-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* --- Compare (niye danışman) --- */
.compare {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 8px 0;
  overflow: hidden;
}
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-head > div {
  padding: 22px 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-head > div + div {
  border-left: 1px solid var(--line);
  color: var(--accent-deep);
}
.compare-head > div .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
}
.compare-head > div + div .num { color: var(--accent-deep); }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-2);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 20px 28px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.compare-row > div + div {
  border-left: 1px solid var(--line-2);
  color: var(--accent-deep);
}
.compare-row > div:first-child {
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-color: color-mix(in oklab, var(--fg-muted), transparent 60%);
  text-decoration-thickness: 1px;
}
@media (max-width: 720px) {
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-head > div + div,
  .compare-row > div + div {
    border-left: none;
    border-top: 1px solid var(--line-2);
  }
}

/* --- Subscribe (WhatsApp listesi) --- */
.subscribe-band {
  margin-top: 80px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
}
.subscribe-band h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.subscribe-band p {
  margin-top: 10px;
  color: var(--fg-soft);
  font-size: 15.5px;
  max-width: 56ch;
}
@media (max-width: 720px) {
  .subscribe-band {
    grid-template-columns: 1fr;
    padding: 32px 26px;
    gap: 20px;
  }
}

/* --- Districts grid (homepage) --- */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .districts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .districts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .districts-grid { grid-template-columns: 1fr; } }

.district-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.district-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.district-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in oklab, var(--accent), transparent 50%);
}
.district-card:hover::before { opacity: 0.55; }
.district-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.district-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.district-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.district-card:hover .district-card-arrow {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  transform: translate(2px, -2px);
}
.district-card-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.35;
  color: var(--fg-soft);
  position: relative;
  min-height: 46px;
}
.district-card-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
.district-card-meta .sep { opacity: 0.4; }
.pd-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line-2);
}
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-soft);
  margin-bottom: 28px;
}
.pd-back:hover { color: var(--fg); }
.pd-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.pd-eyebrow .sep { opacity: 0.4; }
.pd-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.pd-gallery {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pd-gallery > div {
  background: var(--bg-2);
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r);
}
.pd-gallery > div::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    color-mix(in oklab, var(--accent), transparent 90%) 0,
    color-mix(in oklab, var(--accent), transparent 90%) 12px,
    transparent 12px,
    transparent 24px);
  border-radius: var(--r);
}
.pd-gallery > div[data-has-image="1"]::before { display: none; }
.pd-gallery > div[data-has-image="1"] { background-color: transparent; color: transparent; background-size: cover; }
.pd-gallery .g-hero {
  grid-row: 1 / span 2;
}
@media (max-width: 720px) {
  .pd-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px;
  }
  .pd-gallery .g-hero { grid-row: 1; grid-column: 1 / span 2; }
}

.pd-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .pd-body { grid-template-columns: 1fr; gap: 56px; padding: 60px 0; }
}

.pd-long {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--fg);
  padding: 28px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--accent);
  position: relative;
}
.pd-long::before {
  content: "Yusuf'tan kişisel not";
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-style: normal;
}

.pd-section { margin-top: 48px; }
.pd-section h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.pd-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.pd-info-grid > div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
}
.pd-info-grid > div:last-child,
.pd-info-grid > div:nth-last-child(2) { border-bottom: none; }
.pd-info-grid .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.pd-info-grid .val {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .pd-info-grid { grid-template-columns: 1fr; }
}

.pd-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pd-room {
  padding: 18px 22px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  min-width: 96px;
  text-align: center;
}
.pd-room small {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-top: 6px;
  font-weight: 400;
}

.pd-progress {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pd-progress-num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--accent-deep);
}
.pd-progress-bar {
  height: 8px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
}
.pd-progress-bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.pd-side {
  position: sticky;
  top: 90px;
  align-self: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-side h4 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.pd-side p {
  color: var(--fg-soft);
  font-size: 14.5px;
}
.pd-side .btn { justify-content: center; }

.pd-share {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.pd-share-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.pd-share-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.pd-share-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--fg);
  font: inherit;
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.pd-share-btn:hover {
  background: var(--bg-2);
  border-color: var(--fg-soft);
}
.pd-share-btn svg { width: 14px; height: 14px; }

/* --- District (ilçe) landing page --- */
.dl-hero {
  padding: 90px 0 60px;
}
.dl-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.dl-eyebrow a { color: var(--fg-soft); }
.dl-eyebrow a:hover { color: var(--fg); text-decoration: underline; }
.dl-eyebrow .sep { opacity: 0.4; padding: 0 6px; }
.dl-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 26px;
}
.dl-title em {
  font-style: italic;
  color: var(--accent-deep);
}
.dl-lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 62ch;
}
.dl-meta {
  margin-top: 36px;
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.dl-meta-item .n {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--accent-deep);
}
.dl-meta-item .l {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.dl-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
}
.dl-fact {
  padding: 30px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.dl-fact .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.dl-fact h3 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.dl-fact p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-soft);
}
@media (max-width: 1024px) {
  .dl-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dl-facts { grid-template-columns: 1fr; }
}

.dl-yusuf {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.dl-yusuf-portrait {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), color-mix(in oklab, var(--accent), white 50%));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--accent-deep);
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.dl-yusuf-content .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.dl-yusuf-content p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--fg);
}
@media (max-width: 720px) {
  .dl-yusuf { grid-template-columns: 1fr; padding: 32px 26px; gap: 18px; }
  .dl-yusuf-portrait { width: 72px; height: 72px; font-size: 28px; }
}

.dl-districts-band {
  margin-top: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dl-districts-band-title {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 22px;
}
.dl-districts-band-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dl-district-pill {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--fg);
  background: var(--card);
  transition: all 0.15s;
}
.dl-district-pill:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.dl-district-pill[data-current="true"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* --- Rehber sayfası --- */
.rh-hero {
  padding: 80px 0 30px;
}
.rh-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  max-width: 24ch;
}
.rh-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.rh-meta {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}
.rh-meta .sep { opacity: 0.4; }

.rh-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
}
@media (max-width: 1024px) {
  .rh-body { grid-template-columns: 1fr; gap: 48px; }
}

.rh-section { margin-bottom: 32px; }
.rh-section h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--fg);
}
.rh-section p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-soft);
}

.rh-cta {
  margin-top: 48px;
  padding: 30px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-lg);
}
.rh-cta h3 {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.rh-cta p { color: var(--fg-soft); font-size: 15.5px; margin-bottom: 18px; }

.rh-side {
  position: sticky;
  top: 90px;
  align-self: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rh-side h4 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.rh-side p {
  color: var(--fg-soft);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.rh-side .btn { justify-content: center; }

.rh-others {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .rh-others { grid-template-columns: 1fr; } }

.rh-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.rh-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in oklab, var(--accent), transparent 60%);
}
.rh-card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.rh-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--fg);
}
.rh-card p {
  color: var(--fg-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

/* --- Müteahhit ağı sayfası --- */
.dev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .dev-grid { grid-template-columns: 1fr; } }

.dev-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.dev-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in oklab, var(--accent), transparent 60%);
}
.dev-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.dev-card-head h3 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.dev-years {
  text-align: right;
  flex-shrink: 0;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.dev-years .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--accent-deep);
  display: block;
}
.dev-years .l {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-top: 4px;
  display: block;
}
.dev-projects {
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.dev-projects .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.dev-projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dev-projects-list a,
.dev-projects-list span {
  font-size: 13.5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  transition: background 0.15s, border-color 0.15s;
}
.dev-projects-list a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.dev-note {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
}

.dev-cta {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: center;
}
.dev-cta h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (max-width: 860px) {
  .dev-cta { grid-template-columns: 1fr; padding: 28px 26px; }
}

/* --- Karşılaştırma tablosu --- */
.cmp-grid {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 860px) {
  .cmp-grid { grid-template-columns: 130px repeat(3, 1fr); font-size: 13px; }
}
.cmp-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-2);
}
.cmp-col:last-child { border-right: none; }
.cmp-col-labels { background: var(--bg); }
.cmp-cell {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--fg-soft);
  min-height: 56px;
  display: flex;
  align-items: center;
}
.cmp-cell-head {
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 12px;
  padding: 14px 12px;
  min-height: 64px;
}
.cmp-col-labels .cmp-cell-head { background: var(--bg-2); }
.cmp-cell-lbl {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.cmp-empty {
  color: var(--fg-muted);
  opacity: 0.4;
}
.cmp-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Print stylesheet ─────────────────────────────────────────────────
   Yusuf veya müşteri proje sayfasını basabilsin diye sade siyah-beyaz
   görünüm. Tüm interaktif elemanlar (TopBar, FloatingCTA, admin overlay,
   cookie banner, launcher, sticky kart) gizlenir. Link URL'leri yan yazıyla
   görünür. */
@media print {
  /* Kromatik temizlik */
  html, body { background: white !important; color: black !important; }
  body { font-size: 11pt; line-height: 1.5; }

  /* Yüzen / sabit / nav elemanları */
  .topbar, .topbar-cta, .topbar-burger,
  .floating-cta,
  .adm-overlay, .adm-launcher,
  .twk-panel,
  #__cookie_banner, .cb-wrap,
  .pd-side,
  .subscribe-band,
  .contact-band,
  .footer,
  .skip-link,
  .pd-share { display: none !important; }

  /* Animasyon ve geçişler — yazdırırken bekletme */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }

  /* Renkler — accent korunsun ama daha solgun */
  :root {
    --bg: white;
    --fg: #111;
    --fg-soft: #333;
    --fg-muted: #555;
    --accent: #5C3A22;
    --line: #ccc;
    --line-2: #ddd;
    --card: white;
  }

  /* Sayfa kırılımı */
  h1, h2, h3 { page-break-after: avoid; break-after: avoid; }
  .proj-card, .why-card, .process-card, .story-card, .dev-card, .rh-card {
    page-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none !important;
  }

  /* Link URL'leri yanına yazılsın */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
    word-break: break-all;
  }
  /* Çok uzun olanları ve menü içi #anchor'ları yazma */
  a[href^="#"]::after,
  a[href^="javascript:"]::after,
  .pd-eyebrow a[href]::after,
  .dl-eyebrow a[href]::after { content: ""; }

  /* Proje detay yazdırma düzeni */
  .pd-body {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .pd-gallery { display: none; }
  .pd-info-grid { grid-template-columns: 1fr 1fr !important; }
  .pd-rooms { gap: 6px; }
  .pd-room { padding: 8px 12px; font-size: 14pt; min-width: auto; }

  /* Container'lar geniş kalsın */
  .container { max-width: none; padding: 0 24pt; }

  /* Hero metrikleri compact */
  .hero-trust, .dl-meta { grid-template-columns: 1fr 1fr 1fr !important; gap: 12pt !important; }
  .hero-trust-item .n, .dl-meta-item .n { font-size: 24pt !important; }
}

