/* ==========================================================================
   Gökşan Konut İnşaat A.Ş.
   Tasarım yönü: "Ölçülü Güven" — yapı mühendisliğinin çizim dili.
   Beton grileri + grafit mürekkep + işaretleme kırmızısı.
   İmza öğesi: içeriği ölçen teknik ölçü çizgileri (.dim)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Beton yüzeyler (soğuk gri — sıcak krem değil) */
  --c-00: #F1F2EF;
  --c-05: #E7E8E4;
  --c-10: #DBDDD7;
  --c-30: #B9BCB5;
  --c-50: #8A8D86;
  --c-70: #5C6058;

  /* Mürekkep */
  --ink: #22262B;
  --ink-900: #14171A;
  --ink-700: #383D43;

  /* İşaretleme kırmızısı (marka) */
  --red: #EE0D08;
  --red-700: #C10A06;
  --red-tint: rgba(238, 13, 8, .08);

  /* Teknik anotasyon mavisi */
  --blue: #1E5F7A;
  --blue-tint: rgba(30, 95, 122, .1);

  --paper: #FFFFFF;

  /* Tipografi */
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Ölçüler */
  --wrap: 1240px;
  --gut: 24px;
  --r: 2px;          /* neredeyse köşesiz — dökme beton kenarı */
  --hair: 1px solid var(--c-10);
  --hair-ink: 1px solid rgba(34, 38, 43, .14);
  --t: .28s cubic-bezier(.4, 0, .2, 1);

  /* Geriye dönük takma adlar — üretilmiş HTML'deki inline stiller için */
  --red-dark: var(--red-700);
  --muted: var(--c-70);
  --shadow: 0 14px 34px rgba(34, 38, 43, .12);
  --shadow-sm: 0 2px 10px rgba(34, 38, 43, .07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink-700);
  background: var(--c-00);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
p { margin: 0 0 1.05rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.04;
  letter-spacing: -.022em;
  font-weight: 800;
  font-stretch: 112%;
}

/* ---------- Erişilebilirlik ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .04em;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Yerleşim ---------- */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: 104px 0; position: relative; }
.section--soft { background: var(--c-05); }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }
@media (max-width: 900px) { .section { padding: 66px 0; } }

/* ==========================================================================
   İMZA: ölçü çizgisi (teknik çizim anotasyonu)
   ========================================================================== */
.dim {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .06em;
  color: var(--c-70); text-transform: none;
}
.dim::before, .dim::after {
  content: ""; height: 1px; background: currentColor; flex: 1; opacity: .45;
}
.dim--left::before { display: none; }
.dim--left::after { flex: 1; }

/* uçlarda çentik */
.dim-rule {
  position: relative; height: 1px; background: var(--c-30); margin: 0;
}
.dim-rule::before, .dim-rule::after {
  content: ""; position: absolute; top: -4px; width: 1px; height: 9px; background: var(--c-50);
}
.dim-rule::before { left: 0; }
.dim-rule::after { right: 0; }

/* Etiket: mono, çentikli — eyebrow yerine geçer */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .13em; color: var(--red); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 7px;
  border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-2px);
}

.section-title { font-size: clamp(1.85rem, 3.6vw, 3rem); margin-bottom: 18px; }
.section-lead { color: var(--c-70); font-size: 1.04rem; max-width: 620px; }
.center .section-lead { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r);
  font-family: var(--mono); font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  border: 1px solid transparent; white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-700); transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: var(--c-00); }
.btn--dark:hover { background: var(--ink-900); transform: translateY(-1px); }
.btn--ghost { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--lg { padding: 17px 32px; font-size: .86rem; }

.link-more {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .78rem; font-weight: 500; letter-spacing: .05em;
  color: var(--red);
}
.link-more svg { width: 15px; height: 15px; transition: transform var(--t); }
.link-more:hover svg { transform: translateX(4px); }

/* ==========================================================================
   TOPBAR — çizim paftası künyesi gibi
   ========================================================================== */
.topbar {
  background: var(--ink-900); color: var(--c-30);
  font-family: var(--mono); font-size: .73rem; letter-spacing: .03em;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.topbar__info { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.topbar__info a, .topbar__info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__info a:hover { color: #fff; }
.topbar__info svg { width: 13px; height: 13px; color: var(--red); flex: none; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { color: var(--c-50); }
.topbar__social a:hover { color: #fff; }
.topbar__social svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .topbar { display: none; } }

/* ==========================================================================
   HEADER — koyu grafit bant (logo beyaz olduğu için)
   ========================================================================== */
.header {
  background: var(--ink); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.header.is-stuck { box-shadow: 0 10px 30px rgba(20, 23, 26, .28); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.nav__logo img { height: 42px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 15px; color: #E9EAE6; font-size: .93rem; font-weight: 500;
  position: relative;
}
.nav__menu > li > a:hover { color: #fff; }
.nav__menu > li > a .caret { width: 9px; height: 9px; opacity: .6; transition: transform var(--t); }
.nav__menu > li:hover > a .caret { transform: rotate(180deg); }
.nav__menu a.is-active { color: #fff; }
.nav__menu a.is-active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; background: var(--red);
}

.has-sub .submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 236px;
  background: var(--paper); border: var(--hair-ink); padding: 6px;
  box-shadow: 0 18px 40px rgba(34, 38, 43, .13);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all var(--t); z-index: 20;
}
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu li a {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px;
  color: var(--ink-700); font-size: .9rem; font-weight: 500;
}
.submenu li a:hover { background: var(--c-05); color: var(--red); }
.submenu li a svg { width: 13px; height: 13px; color: var(--red); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__search {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .22); color: #fff; border-radius: var(--r);
}
.nav__search:hover { background: var(--red); border-color: var(--red); }
.nav__search svg { width: 17px; height: 17px; }

.nav__burger { display: none; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--r); }
.nav__burger span { display: block; width: 18px; height: 1.5px; background: #fff; margin: 4px auto; transition: var(--t); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__burger { display: block; }
  .nav { position: relative; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: calc(var(--gut) * -1); right: calc(var(--gut) * -1);
    background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 10px var(--gut) 20px; box-shadow: 0 18px 40px rgba(20, 23, 26, .4);
  }
  .nav__menu.is-open > li > a {
    padding: 14px 2px; font-size: 1rem; width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .has-sub .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: 4px 0 8px 14px; display: none;
  }
  .has-sub.is-expanded .submenu { display: block; }
  .submenu li a { color: var(--c-30); }
  .submenu li a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
}
@media (max-width: 520px) {
  .nav { min-height: 64px; gap: 8px; }
  .nav__logo img { height: 34px; }
  .nav__actions .btn--primary { padding: 11px 16px; font-size: .76rem; }
  .nav__search { width: 34px; height: 34px; }
  .nav__burger { width: 38px; height: 38px; }
}

/* ==========================================================================
   HERO — teknik cephe görünüşü (ana sayfa)
   ========================================================================== */
.hero {
  position: relative; background: var(--ink); color: var(--c-05);
  border-bottom: 3px solid var(--red);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr .82fr; align-items: stretch;
  min-height: 78vh;
}

/* sol: metin bloğu — container kenarına hizalanır, sağdaki görsel taşar */
.hero__col {
  padding: 76px 54px 30px max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut)));
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero__col::after {   /* aks çizgisi */
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 1px;
  background: rgba(255, 255, 255, .14);
}
.hero__inner { max-width: 620px; width: 100%; }

/* sağ: görsel paneli — teknik cephe görünüşü gibi anotasyonlu */
.hero__media { position: relative; overflow: hidden; background: var(--ink-900); }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease;
  background-size: cover; background-position: center;
}
.hero__slide.is-active { opacity: 1; }

/* İMZA: görseli ölçen düşey ölçü çizgisi (çentikli uçlar) */
.hero__dim {
  position: absolute; left: 26px; top: 34px; bottom: 34px; width: 1px;
  background: rgba(255, 255, 255, .55); z-index: 3; pointer-events: none;
}
.hero__dim::before, .hero__dim::after {
  content: ""; position: absolute; left: -6px; width: 13px; height: 1px;
  background: rgba(255, 255, 255, .8);
}
.hero__dim::before { top: 0; }
.hero__dim::after { bottom: 0; }
.hero__dim span {
  position: absolute; top: 50%; left: 12px; transform-origin: left center;
  transform: rotate(-90deg) translateX(-50%);
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  color: rgba(255, 255, 255, .85); white-space: nowrap;
  background: rgba(20, 23, 26, .55); padding: 3px 8px; backdrop-filter: blur(2px);
}
/* Görsel künyesi — hangi sahayı gördüğünüz */
.hero__note {
  position: absolute; right: 0; bottom: 0; z-index: 3;
  background: rgba(20, 23, 26, .82); backdrop-filter: blur(3px);
  padding: 12px 18px; border-left: 2px solid var(--red);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em;
  color: rgba(255, 255, 255, .9); max-width: 78%;
}
.hero__note b { color: #fff; font-weight: 600; }

.hero__eyebrow { color: var(--red); }
.hero__eyebrow::before { border-color: currentColor; }

.hero h1, .hero .hero__h {
  font-family: var(--display); color: #fff; margin: 0 0 20px;
  font-size: clamp(2.3rem, 4.6vw, 4rem); font-weight: 800; font-stretch: 118%;
  line-height: .98; letter-spacing: -.03em;
}
.hero p { color: rgba(255, 255, 255, .74); font-size: 1.03rem; max-width: 520px; }
.hero__rule { display: none; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.hero__text { display: none; }
.hero__text.is-active { display: block; animation: heroIn .7s cubic-bezier(.2,.7,.3,1) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* slayt numaraları — gerçek sıra bilgisi taşır */
.hero__dots { display: flex; gap: 20px; margin-top: 40px; }
.hero__dots button {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .08em;
  color: rgba(255, 255, 255, .38); padding: 4px 0; position: relative;
}
.hero__dots button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; opacity: .5;
}
.hero__dots button.is-active { color: var(--red); }

/* hero alt künye şeridi */
.hero__specs {
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero__spec { padding: 20px 22px; border-right: 1px solid rgba(255, 255, 255, .14); }
.hero__spec:last-child { border-right: 0; }
.hero__spec b {
  display: block; font-family: var(--display); font-size: 1.55rem; font-weight: 800;
  font-stretch: 118%; color: #fff; line-height: 1;
}
.hero__spec span {
  display: block; margin-top: 7px; font-family: var(--mono);
  font-size: .68rem; letter-spacing: .09em; color: rgba(255, 255, 255, .5);
}

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__col { padding: 48px var(--gut) 44px; order: 2; }
  .hero__col::after { display: none; }
  .hero__media { order: 1; min-height: 46vw; max-height: 380px; }
  .hero__dots { margin-top: 30px; }
  .hero h1, .hero .hero__h { font-size: clamp(2rem, 7.4vw, 2.9rem); }
  .hero h1 br, .hero .hero__h br { display: none; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero__dim { display: none; }
  .hero__note { max-width: 100%; font-size: .66rem; padding: 9px 14px; line-height: 1.5; }
  .hero__specs { grid-template-columns: repeat(2, 1fr); }
  .hero__spec:nth-child(2) { border-right: 0; }
  .hero__spec:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .14); }
}

/* ==========================================================================
   İÇ SAYFA BAŞLIĞI — pafta antedi
   ========================================================================== */
.page-hero {
  position: relative; background: var(--ink); color: #fff;
  padding: 76px 0 68px; border-bottom: 3px solid var(--red);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img, url(/assets/img/2.jpg));
  background-size: cover; background-position: center; opacity: .2;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-stretch: 116%;
  max-width: 900px; margin-bottom: 16px;
}
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .05em;
  color: rgba(255, 255, 255, .55);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--red); }
.breadcrumb svg { width: 11px; height: 11px; opacity: .6; }

/* ==========================================================================
   KARTLAR — beton bloklar, köşesiz, hairline kenar
   ========================================================================== */
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-news { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--paper); border: var(--hair); border-radius: var(--r);
  overflow: hidden; transition: border-color var(--t), transform var(--t);
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.service-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__icon {
  position: absolute; left: 0; bottom: 0; width: 46px; height: 46px;
  background: var(--red); color: #fff; display: grid; place-items: center;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__body { padding: 26px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card__body p { color: var(--c-70); font-size: .95rem; margin-bottom: 18px; }
.service-card__body .link-more { margin-top: auto; }

/* ---------- Split (hakkımızda vb.) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; }
.split__media > img { border-radius: var(--r); }
.split__media .img-2 {
  position: absolute; right: -14px; bottom: -26px; width: 44%;
  border: 6px solid var(--c-00); border-radius: var(--r);
}
.stat-badge {
  position: absolute; left: 0; top: 0; background: var(--red); color: #fff;
  padding: 16px 20px; z-index: 2;
}
.stat-badge b { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 800; font-stretch: 115%; line-height: 1; }
.stat-badge span { font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; opacity: .92; }

.feature-list { display: grid; gap: 13px; margin: 24px 0 28px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-700); }
.feature-list svg { width: 19px; height: 19px; color: var(--red); flex: none; margin-top: 3px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 52px; }
  .split__media .img-2 { position: static; width: 100%; margin-top: 14px; border: 0; }
}

/* ---------- Sayaç şeridi — ölçü çizgili ---------- */
.stats { grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 4px 26px; border-left: var(--hair-ink); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b {
  display: block; font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800; font-stretch: 118%; color: var(--ink); line-height: 1;
}
.stat span {
  display: block; margin-top: 10px; font-family: var(--mono);
  font-size: .72rem; letter-spacing: .08em; color: var(--c-70);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
}

/* ---------- Süreç adımları — aks baloncuklu (gerçek sıra) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step {
  position: relative; padding: 34px 26px 30px; border-left: var(--hair-ink);
  background: transparent; transition: background var(--t);
}
.step:first-child { border-left: 0; }
.step:hover { background: var(--paper); }
/* sıra göstergesi — süreç gerçekten sıralı olduğu için numaralandırma bilgi taşır */
.step__num { counter-increment: step; margin-bottom: 16px; }
.step__num::before {
  content: "0" counter(step) " / 04";
  font-family: var(--mono); font-size: .7rem; letter-spacing: .09em; color: var(--red);
}
.step__icon {
  width: 40px; height: 40px; border: 1px solid var(--c-30); border-radius: 50%;
  display: grid; place-items: center; color: var(--ink); margin-bottom: 18px;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.step:hover .step__icon { border-color: var(--red); background: var(--red); color: #fff; }
.step__icon svg { width: 18px; height: 18px; }
.step h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step p { color: var(--c-70); font-size: .91rem; margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(odd) { border-left: 0; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { border-left: 0; border-top: var(--hair-ink); } .step:first-child { border-top: 0; } }

/* ---------- Kampanya bandı ---------- */
.campaign {
  background: var(--ink); color: #fff; border-radius: var(--r); overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  border-left: 3px solid var(--red);
}
.campaign__body { padding: 52px 46px; align-self: center; }
.campaign__body h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.campaign__body p { color: rgba(255, 255, 255, .72); }
.campaign__body .eyebrow { color: var(--c-30); }
.campaign__media { position: relative; min-height: 280px; }
.campaign__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .campaign { grid-template-columns: 1fr; } .campaign__media { order: -1; min-height: 220px; } .campaign__body { padding: 34px 26px; } }

/* ---------- Haber kartları ---------- */
.news-card {
  background: var(--paper); border: var(--hair); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.news-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__tag {
  position: absolute; left: 0; top: 0; background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .07em; padding: 6px 11px;
}
.news-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 12px; }
.news-card__cat { font-family: var(--mono); font-size: .68rem; letter-spacing: .09em; color: var(--red); }
.news-card__date { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: .7rem; color: var(--c-50); margin: 0; }
.news-card__date svg { width: 12px; height: 12px; color: var(--c-50); flex: none; }
.news-card__body h3 { font-size: 1.16rem; line-height: 1.2; margin-bottom: 10px; }
.news-card__body h3 a:hover { color: var(--red); }
.news-card__body p {
  color: var(--c-70); font-size: .93rem; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card__body .link-more { margin-top: auto; }

/* ---------- Proje kartları ---------- */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; margin-bottom: 44px; border: var(--hair-ink); width: fit-content; margin-inline: auto; }
.filter-bar button {
  padding: 11px 24px; font-family: var(--mono); font-size: .78rem; letter-spacing: .05em;
  color: var(--ink-700); border-right: var(--hair-ink); transition: var(--t);
}
.filter-bar button:last-child { border-right: 0; }
.filter-bar button.is-active, .filter-bar button:hover { background: var(--ink); color: #fff; }

.projects { grid-template-columns: repeat(3, 1fr); }
.pcard {
  background: var(--paper); border: var(--hair); border-radius: var(--r);
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.pcard:hover { border-color: var(--ink); transform: translateY(-3px); }
.pcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__badge {
  position: absolute; left: 0; top: 0; display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .06em; padding: 7px 12px;
}
.pcard__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.8s infinite; }
.pcard__badge.done { background: var(--ink); }
.pcard__badge.done::before { animation: none; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.pcard__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__loc { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: .69rem; letter-spacing: .07em; color: var(--red); margin-bottom: 9px; }
.pcard__loc svg { width: 12px; height: 12px; flex: none; }
.pcard__body h3 { font-size: 1.14rem; line-height: 1.2; margin-bottom: 12px; }
.pcard__body h3 a:hover { color: var(--red); }
.pcard__foot { margin-top: auto; padding-top: 14px; border-top: var(--hair); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pcard__stage { font-family: var(--mono); font-size: .72rem; color: var(--c-70); }

@media (max-width: 940px) { .cards-3, .cards-news, .projects { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards-3, .cards-news, .projects { grid-template-columns: 1fr; } }

/* ---------- Kategori kartları ---------- */
.cat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cat-card {
  position: relative; overflow: hidden; min-height: 330px; display: flex; align-items: flex-end;
  border-radius: var(--r); background: var(--ink);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .52; transition: transform .8s, opacity var(--t); }
.cat-card:hover img { transform: scale(1.05); opacity: .42; }
.cat-card__body { position: relative; z-index: 2; padding: 32px; color: #fff; width: 100%; }
.cat-card__count { display: inline-block; font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; color: var(--red); margin-bottom: 12px; }
.cat-card__body h3 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cat-card__body p { color: rgba(255, 255, 255, .74); font-size: .95rem; margin: 0 0 16px; }
.cat-card__link { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .78rem; letter-spacing: .05em; color: #fff; }
.cat-card__link svg { width: 15px; height: 15px; transition: transform var(--t); }
.cat-card:hover .cat-card__link svg { transform: translateX(5px); }
@media (max-width: 760px) { .cat-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   PROJE DETAY — künye paftası
   ========================================================================== */
.proj-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 48px; align-items: start; }
.gallery-main { overflow: hidden; border: var(--hair); border-radius: var(--r); margin-bottom: 12px; cursor: pointer; }
.gallery-main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-thumbs img { aspect-ratio: 4/3; object-fit: cover; cursor: pointer; border: var(--hair); border-radius: var(--r); transition: border-color var(--t); }
.gallery-thumbs img:hover { border-color: var(--red); }

.spec-sheet {
  background: var(--paper); border: var(--hair-ink); border-radius: var(--r);
  padding: 0 24px 20px; position: sticky; top: 96px;
}
.spec-sheet__title {
  font-family: var(--mono); font-size: .76rem; font-weight: 600; letter-spacing: .1em;
  color: var(--ink); padding: 20px 0 14px; margin: 0 -24px 6px; padding-inline: 24px;
  border-bottom: var(--hair-ink); text-transform: none;
}
.spec-sheet dl { margin: 0; }
.spec-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: var(--hair); }
.spec-row:last-of-type { border-bottom: 0; }
.spec-row dt { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .74rem; letter-spacing: .03em; color: var(--c-70); margin: 0; }
.spec-row dt svg { width: 14px; height: 14px; color: var(--c-50); flex: none; }
.spec-row dd { margin: 0; font-family: var(--mono); font-size: .78rem; font-weight: 600; color: var(--ink); text-align: right; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: .72rem; font-weight: 600; }
.status-pill.on { color: var(--red); }
.status-pill.done { color: var(--blue); }

.progress { padding: 18px 0 16px; border-bottom: var(--hair-ink); }
.progress__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.progress__head span { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--c-70); }
.progress__head b { font-family: var(--mono); font-size: .92rem; color: var(--red); }
.progress__track { height: 4px; background: var(--c-10); overflow: hidden; }
.progress__fill { height: 100%; background: var(--red); width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }

@media (max-width: 950px) { .proj-layout { grid-template-columns: 1fr; } .spec-sheet { position: static; } }

/* ==========================================================================
   METİN BLOKLARI
   ========================================================================== */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.55rem; margin-top: 1.7em; }
.prose h3 { font-size: 1.18rem; margin-top: 1.5em; color: var(--ink); }
.prose h3::before {
  content: ""; display: block; width: 26px; height: 2px; background: var(--red); margin-bottom: 12px;
}
.prose p { color: var(--ink-700); }
.prose ul { display: grid; gap: 11px; margin: 1.2em 0 1.5em; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink-700); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 1px; background: var(--red);
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--red); border-bottom: 1px solid rgba(238, 13, 8, .32); }
.prose a:hover { border-bottom-color: var(--red); }

.value-card {
  background: var(--paper); border: var(--hair); border-radius: var(--r);
  padding: 30px 26px; height: 100%; transition: border-color var(--t), transform var(--t);
  border-top: 2px solid var(--ink);
}
.value-card:hover { border-color: var(--c-30); border-top-color: var(--red); transform: translateY(-3px); }
.value-card__icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--red); margin-bottom: 16px; border: 1px solid var(--c-10); }
.value-card__icon svg { width: 20px; height: 20px; }
.value-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.value-card p { color: var(--c-70); font-size: .93rem; margin: 0; }

/* ---------- Hizmet kapsamı ---------- */
.scope { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: var(--hair-ink); }
.scope li {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px 22px 0;
  border-bottom: var(--hair-ink); transition: background var(--t);
}
.scope li:nth-child(odd) { padding-right: 34px; border-right: var(--hair-ink); }
.scope li:nth-child(even) { padding-left: 28px; }
.scope li:hover { background: var(--paper); }
.scope__num { flex: none; font-family: var(--mono); font-size: .76rem; font-weight: 600; color: var(--red); padding-top: 2px; }
.scope b { display: block; font-family: var(--display); font-size: 1.02rem; font-weight: 700; font-stretch: 110%; color: var(--ink); margin-bottom: 4px; }
.scope span { color: var(--c-70); font-size: .92rem; }
@media (max-width: 760px) {
  .scope { grid-template-columns: 1fr; }
  .scope li, .scope li:nth-child(odd), .scope li:nth-child(even) { padding: 20px 0; border-right: 0; }
}

/* ---------- SSS ---------- */
.faq { display: grid; gap: 0; max-width: 880px; margin-inline: auto; border-top: var(--hair-ink); }
.faq details { border-bottom: var(--hair-ink); background: transparent; transition: background var(--t); }
.faq details[open] { background: var(--paper); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 52px 22px 0;
  font-family: var(--display); font-weight: 700; font-stretch: 110%; font-size: 1.06rem;
  color: var(--ink); position: relative;
}
.faq details[open] summary { padding-inline: 24px; padding-right: 52px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.2rem; color: var(--red); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--red); }
.faq__body { padding: 0 24px 24px; color: var(--c-70); font-size: .96rem; }
.faq__body p { margin: 0; }

/* ---------- Grup / ortaklar ---------- */
.holding {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center;
  background: var(--ink); color: #fff; padding: 48px 44px; border-left: 3px solid var(--red);
  border-radius: var(--r);
}
.holding__logo { text-align: center; }
.holding__logo img { height: 120px; width: auto; margin-inline: auto; }
.holding__logo span { display: block; margin-top: 16px; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; color: rgba(255, 255, 255, .5); }
.holding h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.holding p { color: rgba(255, 255, 255, .74); }
.holding .eyebrow { color: var(--c-30); }
@media (max-width: 860px) { .holding { grid-template-columns: 1fr; gap: 28px; padding: 34px 26px; text-align: center; } .holding .eyebrow { justify-content: center; } }

.partner-card {
  background: var(--paper); border: var(--hair); border-top: 2px solid var(--red);
  padding: 30px 26px; height: 100%; display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.partner-card:hover { transform: translateY(-3px); border-color: var(--c-30); border-top-color: var(--red); }
.partner-card__mark {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 18px;
  border: 1px solid var(--ink); font-family: var(--mono); font-size: .9rem; font-weight: 600; color: var(--ink);
}
.partner-card h3 { font-size: 1.16rem; margin-bottom: 4px; }
.partner-card__role { display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--red); margin-bottom: 12px; }
.partner-card p { color: var(--c-70); font-size: .93rem; margin: 0; }

/* ---------- Logo şeridi ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 52px; }
.partners img { height: 66px; width: auto; filter: grayscale(1); opacity: .5; transition: var(--t); }
.partners img:hover { filter: none; opacity: 1; }

/* ---------- Kariyer ---------- */
.jobs { display: grid; gap: 0; border-top: var(--hair-ink); }
.job {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 24px 0; border-bottom: var(--hair-ink); transition: background var(--t);
}
.job:hover { background: var(--paper); }
.job h3 { font-size: 1.1rem; margin-bottom: 8px; }
.job__tags { display: flex; flex-wrap: wrap; gap: 7px 18px; }
.job__tags span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: .74rem; color: var(--c-70); }
.job__tags svg { width: 13px; height: 13px; color: var(--red); flex: none; }
@media (max-width: 640px) { .job { grid-template-columns: 1fr; } .job .btn { width: 100%; justify-content: center; } }

/* ---------- Çalışma saatleri ---------- */
.hours { display: grid; }
.hours li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: var(--hair); font-family: var(--mono); font-size: .8rem; }
.hours li:last-child { border-bottom: 0; }
.hours li span { color: var(--c-70); }
.hours li b { color: var(--ink); font-weight: 600; }
.hours li.closed b { color: var(--red); }

/* ---------- Formlar ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; color: var(--c-70); }
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: .96rem; padding: 13px 14px;
  border: var(--hair-ink); border-radius: var(--r); background: var(--paper); color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint); }
.field textarea { resize: vertical; min-height: 128px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--paper); border: var(--hair); border-radius: var(--r);
}
.info-card__icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); color: #fff; flex: none; }
.info-card__icon svg { width: 19px; height: 19px; }
.info-card h3 { margin: 0 0 5px; font-size: 1rem; }
.info-card p, .info-card a { margin: 0; color: var(--c-70); font-size: .92rem; }
.info-card a:hover { color: var(--red); }

/* ---------- Kategori barı ---------- */
.cat-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-bottom: 46px; border: var(--hair-ink); width: fit-content; margin-inline: auto; }
.cat-bar a {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .04em;
  color: var(--ink-700); border-right: var(--hair-ink); transition: var(--t);
}
.cat-bar a:last-child { border-right: 0; }
.cat-bar a b { font-size: .68rem; opacity: .6; font-weight: 500; }
.cat-bar a:hover, .cat-bar a.is-active { background: var(--ink); color: #fff; }

/* ---------- Arama ---------- */
.search-box {
  display: flex; align-items: center; gap: 12px; max-width: 660px; margin-inline: auto;
  background: var(--paper); border: var(--hair-ink); border-radius: var(--r); padding: 4px 6px 4px 18px;
  transition: border-color var(--t), box-shadow var(--t);
}
.search-box:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint); }
.search-box svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.search-box input { flex: 1; border: 0; outline: none; font-family: var(--body); font-size: 1rem; padding: 14px 8px 14px 0; background: transparent; color: var(--ink); }
.search-results { display: grid; gap: 0; max-width: 840px; margin: 30px auto 0; border-top: var(--hair-ink); }
.sresult { padding: 20px 0; border-bottom: var(--hair-ink); transition: background var(--t); }
.sresult:hover { background: var(--paper); }
.sresult h3 { font-size: 1.06rem; margin-bottom: 5px; }
.sresult h3 a:hover { color: var(--red); }
.sresult p { color: var(--c-70); font-size: .92rem; margin: 0 0 6px; }
.sresult span { font-family: var(--mono); font-size: .7rem; color: var(--red); letter-spacing: .04em; }
.sresult mark { background: var(--red-tint); color: inherit; padding: 0 2px; }

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

/* ==========================================================================
   FOOTER — pafta antedi
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255, 255, 255, .66); padding-top: 72px; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 44px; padding-bottom: 52px; }
.footer__logo img { height: 46px; margin-bottom: 20px; }
.footer__about p { font-size: .92rem; }
.footer h3 {
  color: #fff; font-family: var(--mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .11em; margin-bottom: 22px; padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.footer__links li { margin-bottom: 11px; }
.footer__links a { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; }
.footer__links a svg { width: 11px; height: 11px; color: var(--red); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: .92rem; }
.footer__contact svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 4px; }
.footer__social { display: flex; gap: 16px; margin-top: 18px; }
.footer__social a { color: var(--c-50); }
.footer__social a:hover { color: #fff; }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .13); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .02em;
}
.footer__legal { display: flex; gap: 20px; }
@media (max-width: 920px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ---------- Sabit butonlar ---------- */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.floaters a { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; border-radius: var(--r); transition: transform var(--t); }
.floaters a:hover { transform: translateY(-2px); }
.floaters .wa { background: #1f9d55; }
.floaters .call { background: var(--red); }
.floaters svg { width: 22px; height: 22px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20, 23, 26, .94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border: 1px solid rgba(255, 255, 255, .16); }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255, 255, 255, .28); }
.lightbox__close:hover { background: var(--red); border-color: var(--red); }
.lightbox__close svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__text.is-active { opacity: 1; transform: none; animation: none; transition: none; }
  .pcard__badge::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   CTA BANDI — düz kırmızı blok (gradient yok)
   ========================================================================== */
.cta-band { background: var(--red); color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.3vw, 2.5rem); max-width: 780px; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, .86); max-width: 600px; margin: 0 auto 28px; }
.cta-band .btn { background: #fff; color: var(--red); }
.cta-band .btn:hover { background: var(--ink); color: #fff; }

/* Footer'daki holding logosu — dikey oranlı (124x175), oranı korunmalı */
.footer__raiz { height: 62px; width: auto; margin-top: 14px; opacity: .85; }
.footer__raiz:hover { opacity: 1; }

/* ==========================================================================
   SATIŞTAKİ PROJE — rozet, daire tipleri
   ========================================================================== */
.pcard__badge.sale { background: var(--blue); }
.pcard__badge.sale::before { animation: blink 1.8s infinite; }
.status-pill.sale { color: var(--blue); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--hair-ink); margin: 1.2em 0 1.6em; }
.plan { padding: 22px 20px; border-right: var(--hair-ink); transition: background var(--t); }
.plan:last-child { border-right: 0; }
.plan:hover { background: var(--paper); }
.plan b { display: block; font-family: var(--display); font-size: 1.08rem; font-weight: 700; font-stretch: 110%; color: var(--ink); }
.plan__area { display: block; font-family: var(--mono); font-size: 1.35rem; color: var(--red); margin: 8px 0 6px; }
.plan__tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--c-50); }
@media (max-width: 640px) { .plans { grid-template-columns: 1fr; } .plan { border-right: 0; border-bottom: var(--hair-ink); } .plan:last-child { border-bottom: 0; } }

/* prose içindeki kapsam listesi madde işaretlerini devre dışı bırak */
.prose ul.scope--in-prose { display: grid; gap: 0; }
.prose ul.scope--in-prose li { padding-left: 0; }
.prose ul.scope--in-prose li::before { display: none; }

/* ==========================================================================
   SEM PARK EVLERİ — ana sayfa duyuru bloğu
   ========================================================================== */
.sempark { padding-top: 92px; padding-bottom: 92px; }
.sempark__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  border: var(--hair-ink); background: var(--paper);
}
.sempark__media { position: relative; overflow: hidden; min-height: 380px; }
.sempark__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.sempark__grid:hover .sempark__media img { transform: scale(1.04); }
.sempark__flag {
  position: absolute; left: 0; top: 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; font-family: var(--mono);
  font-size: .72rem; letter-spacing: .08em; padding: 9px 15px;
}
.sempark__flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.8s infinite; }
.sempark__body { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.sempark__body h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.sempark__body > p { color: var(--c-70); max-width: 520px; }
.sempark__specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: var(--hair-ink); border-bottom: var(--hair-ink); margin: 26px 0 28px;
}
.sempark__specs > div { padding: 18px 14px 18px 0; border-right: var(--hair-ink); }
.sempark__specs > div:last-child { border-right: 0; }
.sempark__specs b {
  display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  font-stretch: 116%; color: var(--ink); line-height: 1;
}
.sempark__specs span { display: block; margin-top: 6px; font-family: var(--mono); font-size: .66rem; letter-spacing: .07em; color: var(--c-50); }
.sempark__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 940px) {
  .sempark__grid { grid-template-columns: 1fr; }
  .sempark__media { min-height: 260px; }
  .sempark__body { padding: 32px 24px; }
  .sempark__specs { grid-template-columns: repeat(2, 1fr); }
  .sempark__specs > div:nth-child(2) { border-right: 0; }
  .sempark__cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* ==========================================================================
   YAPIMCI İMZASI
   ========================================================================== */
.footer__sign {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 16px 0 22px; text-align: center;
}
.footer__sign a {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .05em;
  color: rgba(255, 255, 255, .45); transition: color var(--t);
}
.footer__sign a:hover { color: #fff; }
.footer__sign b { font-weight: 600; color: rgba(255, 255, 255, .72); transition: color var(--t); }
.footer__sign a:hover b { color: #fff; }
.footer__heart { color: var(--red); font-size: .9rem; display: inline-block; animation: beat 2.4s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.22); } 24% { transform: scale(1); } 36% { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) { .footer__heart { animation: none; } }

/* ==========================================================================
   PROJE DETAY — gövde (galeri/künye altında, tam genişlik)
   ========================================================================== */
.proj-body { padding-top: 8px; }
.proj-body__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 22px; }
/* Ölçü grid sütunundan gelir; prose kendi max-width'ini dayatmasın */
.proj-body__prose { max-width: none; }
.proj-body__h {
  font-size: 1.3rem; margin: 2em 0 1em; color: var(--ink);
}
.proj-body__h::before {
  content: ""; display: block; width: 26px; height: 2px; background: var(--red); margin-bottom: 12px;
}
/* Geniş bloklar tam genişliği kullanır */
.proj-body .plans, .proj-body .scope { max-width: none; }

/* Giriş: açıklama + özellik paneli — sağdaki boşluğu içerikle doldurur */
.proj-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 46px; align-items: start; }
.highlight { border-top: 2px solid var(--red); background: var(--paper); border: var(--hair-ink); border-top: 2px solid var(--red); padding: 26px 26px 28px; }
.highlight h3 { font-family: var(--mono); font-size: .76rem; font-weight: 600; letter-spacing: .1em; color: var(--ink); margin-bottom: 18px; }
.highlight ul { display: grid; gap: 13px; }
.highlight li { position: relative; padding-left: 24px; color: var(--ink-700); font-size: .94rem; }
.highlight li::before { content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 1px; background: var(--red); }

/* Kapanış: özet + iletişim kartı */
.proj-outro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 46px; align-items: start; margin-top: 8px; }
.ask { background: var(--ink); color: #fff; padding: 28px 26px; display: grid; gap: 12px; align-content: start; }
.ask__lead { font-family: var(--display); font-weight: 700; font-stretch: 110%; font-size: 1.12rem; color: #fff; margin: 0 0 6px; line-height: 1.25; }
.ask .btn { justify-content: center; }
.ask .btn--dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.ask .btn--dark:hover { background: #fff; color: var(--ink); }

@media (max-width: 900px) {
  .proj-intro, .proj-outro { grid-template-columns: 1fr; gap: 30px; }
}
