/* ============================================================
   Real House Gayrimenkul — Ana CSS  (v-final polish)
   ============================================================ */

:root {
  --black:   #0B0B0C;
  --dark:    #17140F;
  --cream:   #F6F1E7;
  --sand:    #E9E1D2;
  --stone:   #C9BCA8;
  --muted:   #8B7E6E;
  --accent:  #B08050;
  --gold:    #C9A063;
  --gold-2:  #EAD6A8;
  --white:   #FFFFFF;
  --f-sans:  'Manrope', system-ui, -apple-system, sans-serif;
  --f-disp:  'Manrope', system-ui, -apple-system, sans-serif;
  --ease:    .28s cubic-bezier(.4,0,.2,1);
  --ease-2:  .8s cubic-bezier(.16,1,.3,1);
  --nav-h:   68px;
  --pad-x:   clamp(20px, 4vw, 56px);
  --grain:   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; scroll-behavior: smooth; width: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* Yatay taşma garantisi — hiçbir blok seviyesi eleman viewport dışına çıkamaz */
section, div, header, footer, nav, main, article, aside {
  max-width: 100%;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-sans); }
input, select, textarea { font-family: var(--f-sans); }
svg  { display: inline-block; vertical-align: middle; overflow: visible; }

/* ── MOTION / SCROLL REVEAL ───────────────────────────────── */
html.js-reveal .reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity var(--ease-2), transform var(--ease-2);
}
html.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg, .pg-bg, .proj-photo-bg, .about-visual img { transition: none !important; }
}

/* ── BUTONLAR ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  transition: var(--ease), transform var(--ease), box-shadow var(--ease); cursor: pointer; white-space: nowrap;
  font-family: var(--f-sans); border: none; outline: none;
  line-height: 1; transform: translateY(0);
}
.btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .2s; }
.btn:hover svg.arr { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-white       { background: var(--white);   color: var(--black); }
.btn-white:hover { background: var(--cream); box-shadow: 0 14px 28px -12px rgba(0,0,0,.28); }
.btn-outline-w   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-outline-w:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-gold        { background: var(--accent);  color: var(--white); }
.btn-gold:hover  { background: var(--gold); box-shadow: 0 14px 30px -10px rgba(201,160,99,.55); }
.btn-outline-dark{ background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,.16); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark        { background: var(--black);   color: var(--white); }
.btn-dark:hover  { background: #222; box-shadow: 0 14px 28px -12px rgba(0,0,0,.4); }
.btn-sm  { padding: 10px 20px; font-size: 10px; letter-spacing: .13em; }
.btn-lg  { padding: 17px 42px; font-size: 12px; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9990;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: border-color var(--ease);
}
.nav.solid { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(11,11,12,.97);
  opacity: 0; transition: opacity var(--ease);
}
.nav.solid::before {
  opacity: 1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 700; color: var(--white);
  letter-spacing: -.01em; flex-shrink: 0;
}
.nav-logo-sq {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; }
.nav-links a {
  position: relative;
  padding: 6px 13px;
  font-size: 12px; font-weight: 400; letter-spacing: .03em;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.nav-links a:hover, .nav-links a.on { color: var(--white); }
@media(min-width:769px){
  .nav-links a::after {
    content: '';
    position: absolute; left: 13px; right: 13px; bottom: 1px;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
  }
  .nav-links a:hover::after, .nav-links a.on::after { transform: scaleX(1); }
}
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav-tel { font-size: 12px; color: rgba(255,255,255,.55); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 7px; cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--white); transition: all .26s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-close-item { display: none; }
.nav-mob-cta    { display: none; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden; background: var(--dark);
  display: flex; align-items: flex-end;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 4;
  background-image: var(--grain);
  opacity: .045; mix-blend-mode: overlay; pointer-events: none;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s cubic-bezier(.4,0,.2,1); }
.hero-slide.on { opacity: 1; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 9s cubic-bezier(.16,1,.3,1);
  filter: saturate(1.02) contrast(1.02);
}
.hero-slide.on .hero-bg { transform: scale(1); }
/* Masaüstü/mobil görsel ayrımı — varsayılan: masaüstü görünür, mobil gizli */
.hero-bg-mobile { display: none; }
@media(max-width:768px){
  .hero-bg-desktop.has-mobile-variant { display: none; }
  .hero-bg-mobile { display: block; background-position: center 30%; }
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(13,13,13,.92) 0%,
    rgba(13,13,13,.35) 42%,
    rgba(13,13,13,.04) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  width: 100%; padding: 0 var(--pad-x) 72px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: flex-end; gap: 40px;
}
.hero-kicker {
  font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.hero-kicker::before { content:''; width: 20px; height: 1px; background: var(--gold); display: block; flex-shrink: 0; }
.hero-h1 {
  font-family: var(--f-disp);
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -.02em; color: var(--white); margin-bottom: 14px;
}
.hero-h1 em { font-style: normal; font-weight: 300; color: rgba(245,240,232,.75); }
.hero-p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.5); line-height: 1.8;
  max-width: 420px; margin-bottom: 26px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-right { text-align: right; flex-shrink: 0; }
.hero-stat { margin-bottom: 16px; }
.hero-stat-n {
  font-family: var(--f-disp);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 600; color: var(--white);
  display: block; line-height: 1; letter-spacing: -.03em;
}
.hero-stat-l {
  font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-top: 4px; display: block;
}
.hero-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; height: 2px; background: rgba(255,255,255,.07); }
.hero-bar-fill { height: 100%; background: var(--gold); width: 0; transition: width 6s linear; }
.hero-bar-fill.go { width: 100%; }
.hero-dots {
  position: absolute; left: var(--pad-x); bottom: 20px; z-index: 3;
  display: flex; gap: 8px; align-items: center;
}
.hero-dot { width: 16px; height: 1.5px; background: rgba(255,255,255,.18); cursor: pointer; transition: var(--ease); }
.hero-dot.on { background: var(--gold); width: 32px; }
.hero-num {
  position: absolute; right: var(--pad-x); bottom: 72px; z-index: 3;
  font-family: var(--f-disp); font-size: 100px; font-weight: 400;
  color: rgba(255,255,255,.04); line-height: 1; user-select: none; pointer-events: none;
}

/* ── KAYAN ŞERİT (hero/projeler arası ayraç) ────────────────── */
.ticker {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden; white-space: nowrap; position: relative;
  margin: 8px 0;
}
.ticker-track {
  display: inline-flex; align-items: center;
  padding: 15px 0;
  animation: tickerScroll 32s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5); padding: 0 16px;
}
.ticker-sep { color: var(--gold); font-size: 9px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── SPLIT GRID (Neden Biz / Ekip gibi 3'lü ızgaralar) ──────── */
.split-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--sand); }
@media(max-width:820px){ .split-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .split-grid-3 { grid-template-columns: 1fr; } }

/* ── EKİP KARTI ───────────────────────────────────────────── */
.team-card { background: var(--cream); padding: 40px 28px; text-align: center; transition: background .3s ease; }
.team-card:hover { background: #fff; }
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-size: 19px; font-weight: 600; color: rgba(255,255,255,.85);
  margin: 0 auto 18px; letter-spacing: -.02em;
}
.team-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.team-title { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.team-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--black); white-space: nowrap;
  padding: 9px 16px; border: 1px solid var(--sand);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  font-variant-numeric: tabular-nums;
}
.team-phone svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; transition: stroke var(--ease); }
.team-phone:hover { background: var(--black); color: #fff; border-color: var(--black); }
.team-phone:hover svg { stroke: var(--gold); }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ── PROJELER ─────────────────────────────────────────────── */
.projects-list { background: var(--cream); }
.proj-item-full {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; border-bottom: 1px solid var(--sand);
}
.proj-item-full:nth-child(even) .proj-photo  { order: 2; }
.proj-item-full:nth-child(even) .proj-content{ order: 1; }
.proj-photo { position: relative; overflow: hidden; background: var(--dark); min-height: 380px; isolation: isolate; }
.proj-photo-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 1s cubic-bezier(.16,1,.3,1), filter .6s ease;
  filter: saturate(.97) contrast(1.02);
}
.proj-item-full:hover .proj-photo-bg { transform: scale(1.045); filter: saturate(1.08) contrast(1.05); }
.proj-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.14) 50%, transparent 58%);
  transform: translateX(-140%);
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.proj-item-full:hover .proj-photo::before { transform: translateX(140%); }
.proj-photo-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-size: 64px; font-weight: 400; color: rgba(255,255,255,.05);
}
.proj-photo-status {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; color: var(--white);
}
.proj-content {
  background: var(--cream); padding: 52px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.proj-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.proj-eyebrow::before { content:''; width: 18px; height: 1px; background: var(--stone); display: block; flex-shrink: 0; }
.proj-name {
  font-family: var(--f-disp);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 600; color: var(--black);
  letter-spacing: -.02em; line-height: 1.1; margin-bottom: 10px;
}
.proj-desc {
  font-size: 13px; font-weight: 300; color: var(--muted);
  line-height: 1.85; margin-bottom: 20px; max-width: 360px;
}
.proj-nums {
  display: flex; gap: 28px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--sand);
}
.proj-num-n {
  font-family: var(--f-disp); font-size: 28px; font-weight: 400;
  color: var(--black); display: block; line-height: 1; letter-spacing: -.03em;
}
.proj-num-l {
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px; display: block;
}
.proj-price {
  font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 18px;
}
.proj-price strong {
  font-family: var(--f-disp); font-size: 19px; font-weight: 400;
  color: var(--black); margin-left: 5px;
}
.proj-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── STATS ────────────────────────────────────────────────── */
.stats-row {
  background: linear-gradient(180deg, rgba(201,160,99,.09) 0%, rgba(201,160,99,.02) 100%);
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative;
  overflow: hidden;
}
.stats-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-2) 50%, var(--gold) 75%, transparent 100%);
}
.stats-row::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--grain); opacity: .025; mix-blend-mode: overlay; pointer-events: none;
}
.stat-box {
  position: relative; z-index: 1;
  padding: 36px 28px; border-right: 1px solid rgba(255,255,255,.06); text-align: center;
  transition: background .35s ease;
}
.stat-box:hover { background: rgba(255,255,255,.025); }
.stat-box:last-child { border-right: none; }
.stat-n { font-family: var(--f-disp); font-size: clamp(32px, 3.8vw, 50px); font-weight: 600; color: var(--white); line-height: 1; display: block; margin-bottom: 10px; letter-spacing: -.03em; }
.stat-d { width: 16px; height: 1px; background: var(--gold); margin: 0 auto 10px; transition: width .45s cubic-bezier(.16,1,.3,1); }
.stat-box:hover .stat-d { width: 34px; }
.stat-l { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.26); }

/* ── İLAN LİSTE (ana sayfada) ────────────────────────────── */
.listing-row {
  display: grid; grid-template-columns: 280px 1fr 48px;
  border-bottom: 1px solid #eeebe6;
  background: var(--white);
  transition: background var(--ease);
  text-decoration: none; color: inherit;
  align-items: stretch;
}
.listing-row:hover { background: #faf8f5; }
.listing-photo {
  height: 180px; position: relative; overflow: hidden; background: #ede9e2; flex-shrink: 0;
}
.listing-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.listing-row:hover .listing-photo img { transform: scale(1.04); }
.listing-photo-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--f-disp); font-size: 28px; color: #ccc; }
.listing-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; background: var(--black); color: var(--white);
}
.listing-badge.r { background: var(--accent); }
.listing-info { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.listing-price {
  font-family: var(--f-disp);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600; color: var(--black);
  letter-spacing: -.02em; margin-bottom: 3px;
  display: flex; align-items: baseline; gap: 5px;
}
.listing-price small { font-family: var(--f-sans); font-size: 11px; font-weight: 300; color: #aaa; }
.listing-title { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 3px; line-height: 1.35; }
.listing-loc { font-size: 11px; color: #aaa; display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.listing-loc svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.listing-specs { display: flex; gap: 12px; flex-wrap: wrap; }
.lspec { font-size: 11px; color: #aaa; display: flex; align-items: center; gap: 4px; }
.lspec svg { width: 11px; height: 11px; stroke: #ccc; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.listing-cta { display: flex; align-items: center; justify-content: center; padding: 0 12px; border-left: 1px solid #eeebe6; }
.listing-arr { width: 32px; height: 32px; border: 1px solid #e2ddd6; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.listing-row:hover .listing-arr { background: var(--black); border-color: var(--black); }
.listing-arr svg { width: 13px; height: 13px; stroke: #ccc; fill: none; stroke-width: 1.8; transition: stroke var(--ease); }
.listing-row:hover .listing-arr svg { stroke: var(--white); }

/* Sayfalama */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 40px 0; }
.plink {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; border: 1px solid #e2ddd6; color: #aaa; background: var(--white);
  transition: var(--ease);
}
.plink:hover { border-color: var(--black); color: var(--black); }
.plink.on { background: var(--black); color: var(--white); border-color: var(--black); }
/* Koyu zeminli sayfalarda (ör. ilanlar.php) */
.listings-page .plink, .pagination-dark .plink {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.5);
}
.listings-page .plink:hover, .pagination-dark .plink:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); color: #fff; }
.listings-page .plink.on, .pagination-dark .plink.on { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── İLAN SAYFASI FİLTRELER ───────────────────────────────── */
/* Hero — koyu arka plan + başlık */
.listings-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 48px) var(--pad-x) 0;
}
.listings-hero-h {
  font-family: var(--f-disp);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 600; color: var(--white);
  letter-spacing: -.025em; line-height: 1.0; margin-bottom: 6px;
}
.listings-hero-h em { font-style: normal; font-weight: 300; color: rgba(245,240,232,.65); }

/* Tip tabları — hero içinde, koyu zeminde */
.filter-wrap {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; overflow-x: auto; scrollbar-width: none;
  background: var(--black);
}
.filter-wrap::-webkit-scrollbar { display: none; }
.ftype {
  padding: 16px 22px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--ease), border-color var(--ease); white-space: nowrap; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
}
.ftype:hover { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.25); }
.ftype.on { color: var(--white); border-bottom-color: var(--gold); }
.ftype-cnt { font-size: 9px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); padding: 2px 7px; font-weight: 700; transition: var(--ease); }
.ftype.on .ftype-cnt { background: var(--accent); color: var(--white); }

/* Kategori chips — koyu arka plan */
.cat-strip {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 var(--pad-x);
}
.cat-strip-inner {
  display: flex; gap: 8px; padding: 14px 0;
  overflow-x: auto; scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cchip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.5); cursor: pointer;
  transition: var(--ease); white-space: nowrap; text-decoration: none;
  background: transparent;
}
.cchip:hover { border-color: var(--gold); color: var(--white); }
.cchip.on { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }
.cchip svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Detay filtreler — ince koyu çubuk */
.detail-filters {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky; top: var(--nav-h); z-index: 50;
}
.df-inner {
  display: flex; align-items: stretch; overflow-x: auto;
  scrollbar-width: none; padding: 0 var(--pad-x);
}
.df-inner::-webkit-scrollbar { display: none; }
.df-f {
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 10px 16px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px; min-width: 108px;
  transition: background var(--ease);
}
.df-f:hover, .df-f:focus-within { background: rgba(255,255,255,.03); }
.df-l {
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.28); white-space: nowrap;
}
.df-s {
  border: none; outline: none; background: transparent;
  font-family: var(--f-sans); font-size: 12px; font-weight: 500;
  color: var(--white); appearance: none; cursor: pointer; padding: 0;
  white-space: nowrap;
}
.df-s option { background: var(--dark); color: var(--white); }
.df-end { padding: 10px 16px; display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.df-count { font-size: 11px; font-weight: 600; color: var(--gold); }
.df-clear {
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.16);
  padding: 4px 10px; cursor: pointer; transition: var(--ease); text-decoration: none; background: none;
}
.df-clear:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* İlan grid arka planı */
.listings-page { background: var(--black); }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-full {
  background: var(--cream); padding: 80px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.cta-left-h {
  font-family: var(--f-disp);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 600; color: var(--black);
  letter-spacing: -.025em; line-height: 1.1; margin-bottom: 10px;
}
.cta-left-h em { font-style: normal; font-weight: 300; color: var(--muted); }
.cta-left-p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

/* ── FORMLAR ──────────────────────────────────────────────── */
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #aaa; margin-bottom: 5px; }
.fc { width: 100%; border: 1px solid #e2ddd6; padding: 10px 13px; font-size: 13px; color: var(--black); background: var(--white); outline: none; transition: border-color var(--ease); font-family: var(--f-sans); appearance: none; }
.fc:focus { border-color: var(--black); }
textarea.fc { min-height: 88px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.alert { padding: 11px 13px; font-size: 13px; margin-bottom: 13px; border-left: 2px solid; }
.alert-ok  { background: #f0fdf4; color: #15803d; border-color: #4ade80; }
.alert-err { background: #fef2f2; color: #dc2626; border-color: #f87171; }

/* ── HAKKIMIZDA ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-visual { position: relative; overflow: hidden; background: var(--dark); min-height: 520px; isolation: isolate; }
.about-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter .6s ease;
  filter: saturate(.97) contrast(1.02);
}
.about-visual:hover img { transform: scale(1.045); filter: saturate(1.06) contrast(1.05); }
.about-visual::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--grain); opacity: .045; mix-blend-mode: overlay;
}
.about-visual-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--f-disp); font-size: 64px; color: rgba(255,255,255,.05); }
.about-badge { position: absolute; bottom: 26px; right: -1px; background: var(--white); padding: 16px 24px 16px 16px; border-left: 3px solid var(--gold); box-shadow: 0 10px 36px rgba(0,0,0,.18); z-index: 2; }
.about-badge-n { font-family: var(--f-disp); font-size: 26px; font-weight: 600; color: var(--black); line-height: 1; }
.about-badge-l { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.about-content { background: var(--cream); padding: 64px 52px; display: flex; flex-direction: column; justify-content: center; }
.about-content p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.88; margin-bottom: 12px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--sand); margin: 20px 0; }
.pillar { background: var(--cream); padding: 16px; transition: background .3s ease; }
.pillar:hover { background: #fff; }
.pillar-n { font-family: var(--f-disp); font-size: 18px; font-weight: 400; color: var(--accent); opacity: .45; margin-bottom: 4px; }
.pillar-t { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); margin-bottom: 2px; }
.pillar-d { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5; }

/* ── İLETİŞİM ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
.contact-info-box { background: var(--black); padding: 32px; }
.contact-info-box h3 { font-family: var(--f-disp); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 22px; }
.ci { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.ci-ic { width: 32px; height: 32px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ic svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.ci h4 { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.26); margin-bottom: 2px; }
.ci p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; margin: 0; }

/* ── DETAY ────────────────────────────────────────────────── */
.bc { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #bbb; margin-bottom: 20px; flex-wrap: wrap; }
.bc a { color: var(--black); font-weight: 500; }
.bc a:hover { color: var(--accent); }
.bc-sep { color: #ddd; }
.detail-grid { display: grid; grid-template-columns: 1fr 310px; gap: 32px; align-items: start; }
.gal-main { height: 460px; overflow: hidden; background: #ede9e2; display: flex; align-items: center; justify-content: center; margin-bottom: 3px; }
.gal-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.gal-thumb { height: 64px; overflow: hidden; cursor: pointer; opacity: .78; transition: opacity var(--ease); background: #ede9e2; }
.gal-thumb:hover, .gal-thumb.on { opacity: 1; outline: 2px solid var(--black); outline-offset: 0; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* ── İlan detay: hızlı özellikler (m² / Tip / Kat / Banyo) ─── */
.quick-specs { display: grid; gap: 1px; background: #eeebe6; margin: 20px 0; }
.quick-specs.cols-4 { grid-template-columns: repeat(4,1fr); }
.quick-specs.cols-3 { grid-template-columns: repeat(3,1fr); }
@media(max-width:520px){
  .quick-specs.cols-4, .quick-specs.cols-3 { grid-template-columns: repeat(2,1fr); }
}

.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.spec-table tr { border-bottom: 1px solid #f5f2ee; }
.spec-table tr:last-child { border: none; }
.spec-table td { padding: 10px 0; font-size: 13px; }
.spec-table td:first-child { color: #8c8c8c; width: 44%; font-size: 12px; }
.spec-table td:last-child { font-weight: 600; color: var(--black); }
.oz-wrap { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.oz-tag { background: #f8f5f0; color: var(--black); padding: 5px 11px; font-size: 10px; font-weight: 600; border: 1px solid #eeebe6; letter-spacing: .05em; }
.sb-card { background: var(--white); border: 1px solid #eeebe6; padding: 20px; margin-bottom: 10px; }
.sb-card h3 { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.price-card { background: var(--black); padding: 18px 20px; margin-bottom: 10px; }
.price-card-l { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 5px; }
.price-card-n { font-family: var(--f-disp); font-size: 24px; font-weight: 600; color: var(--white); letter-spacing: -.025em; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 0 var(--pad-x) 26px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-2) 50%, var(--gold) 75%, transparent 100%);
}
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.footer-cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.footer-cta-h { font-family: var(--f-disp); font-size: clamp(19px, 2.4vw, 27px); font-weight: 600; color: var(--white); letter-spacing: -.015em; max-width: 520px; line-height: 1.25; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin: 44px 0 40px; }
.footer-grid-4 { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.f-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.8; max-width: 230px; margin: 14px 0 18px; }
.f-social {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: var(--ease);
}
.f-social svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.f-social:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.f-col-t { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.f-links li { margin-bottom: 7px; }
.f-links a { position: relative; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.5); transition: color var(--ease), padding-left var(--ease); }
.f-links a:hover { color: #fff; padding-left: 6px; }
.f-conts li { display: flex; gap: 8px; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.45); margin-bottom: 8px; line-height: 1.5; align-items: flex-start; }
.f-conts svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.footer-bot { border-top: 1px solid rgba(255,255,255,.09); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bot p { font-size: 11px; color: rgba(255,255,255,.26); }

/* ══════════════════════════════════════════════════════════
   EDİTORİAL PROPERTY GRID
   ══════════════════════════════════════════════════════════ */
.prop-grid { display: grid; gap: 16px; background: var(--black); margin-bottom: 16px; }
.prop-grid-featured { grid-template-columns: 3fr 2fr; padding-top: 52px; border-top: 1px solid rgba(255,255,255,.12); }
.prop-grid-featured .pg-item:first-child { grid-row: 1 / 3; }
.prop-grid-3 { grid-template-columns: repeat(3,1fr); }
.prop-grid-2 { grid-template-columns: 1fr 1fr; }
.prop-grid-2-1 { grid-template-columns: 2fr 1fr; }
.prop-grid-2-1-stack { display: flex; flex-direction: column; gap: 16px; }
@media(max-width:768px){
  .prop-grid-2-1 { grid-template-columns: 1fr; }
}

/* Listeleme sayfasında (filtre barının hemen altında) stats-row ayracı gereksiz */
.listings-page .prop-grid-featured { padding-top: 28px; border-top: none; }

.pg-item {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, #1f1d19 0%, #2a2622 100%);
  display: block;
  text-decoration: none; color: #fff;
  min-height: 300px;
}
.pg-item.tall  { min-height: 520px; }
.pg-item.short { min-height: 250px; }

.pg-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .9s cubic-bezier(.16,1,.3,1), filter .6s ease;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}
.pg-item:hover .pg-bg { transform: scale(1.08); filter: saturate(1.18) contrast(1.06); }

.pg-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.15) 50%, transparent 58%);
  transform: translateX(-140%);
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.pg-item:hover::before { transform: translateX(140%); }

.pg-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(13,13,13,.65) 0%,
    rgba(13,13,13,.32) 44%,
    rgba(13,13,13,.02) 100%);
  transition: background .4s;
}
.pg-item:hover .pg-ov {
  background: linear-gradient(to top,
    rgba(13,13,13,.75) 0%,
    rgba(13,13,13,.42) 52%,
    rgba(13,13,13,.08) 100%);
}

.pg-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-size: 56px;
  color: rgba(255,255,255,.04);
}

.pg-top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  z-index: 2; display: flex; justify-content: space-between; align-items: flex-start;
}
.pg-badge {
  font-size: 8px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 9px; line-height: 1.4;
}
.pg-badge-s { background: rgba(13,13,13,.7); backdrop-filter: blur(4px); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.pg-badge-r { background: rgba(176,128,80,.88); color: #fff; }
.pg-badge-f { background: var(--gold); color: #fff; }

.pg-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 24px; z-index: 2;
}
.pg-price {
  font-family: var(--f-disp);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600; color: #fff;
  letter-spacing: -.02em; line-height: 1;
  margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 5px;
}
.pg-price small { font-family: var(--f-sans); font-size: 10px; font-weight: 300; color: rgba(255,255,255,.5); }
.pg-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.88); margin-bottom: 3px; line-height: 1.35; }
.pg-loc {
  font-size: 11px; color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: 4px; margin-bottom: 9px;
}
.pg-loc svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.pg-specs {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 9px; border-top: 1px solid rgba(255,255,255,.09);
  opacity: 0; transform: translateY(5px);
  transition: opacity .28s, transform .28s;
}
.pg-item:hover .pg-specs { opacity: 1; transform: translateY(0); }
.pg-spec { font-size: 10px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 3px; }
.pg-spec svg { width: 10px; height: 10px; stroke: rgba(255,255,255,.35); fill: none; stroke-width: 1.8; }

.pg-arrow {
  position: absolute; bottom: 18px; right: 18px; z-index: 2;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(4px);
  transition: opacity .26s, transform .26s;
}
.pg-item:hover .pg-arrow { opacity: 1; transform: translateX(0); }
.pg-arrow svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2; }

.pg-item.tall .pg-price { font-size: clamp(18px, 2.2vw, 26px); }
.pg-item.tall .pg-title { font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media(max-width:1100px){
  .proj-content  { padding: 44px 36px; }
  .about-content { padding: 52px 40px; }
}

@media(max-width:900px){
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { min-height: 340px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .cta-full      { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-row     { grid-template-columns: repeat(2,1fr); }
  .stat-box      { padding: 24px 14px; }
  .proj-item-full{ grid-template-columns: 1fr !important; min-height: auto; }
  .proj-item-full .proj-photo  { order: 0 !important; min-height: 260px; }
  .proj-item-full .proj-content{ order: 0 !important; padding: 28px 24px; }
  .detail-grid   { grid-template-columns: 1fr; }
  .gal-main      { height: 260px; }
  .prop-grid-featured { grid-template-columns: 1fr 1fr; }
  .prop-grid-featured .pg-item:first-child { grid-row: auto; }
  .pg-item.tall  { min-height: 260px; }
  .pg-item.short { min-height: 210px; }
}

@media(max-width:768px){
  .ticker-item { font-size: 10px; padding: 0 12px; }
  .ticker-track { animation-duration: 22s; }

  :root { --nav-h: 58px; }
  .nav  { padding: 0 18px; height: 58px; }
  .nav-logo    { font-size: 15px; gap: 9px; }
  .nav-logo-sq { width: 34px; height: 34px; font-size: 14px; }
  .hamburger   { display: flex; flex-direction: column; }
  .nav-links {
    display: flex !important; position: fixed; top: 0; right: 0; bottom: 0;
    width: 80%; max-width: 290px; background: var(--dark);
    flex-direction: column; align-items: stretch; gap: 0; z-index: 10000;
    box-shadow: -8px 0 40px rgba(0,0,0,.65);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; list-style: none; padding: 0;
    pointer-events: none;
  }
  .nav-links.open { 
    transform: translateX(0); 
    pointer-events: auto;
  }
  .nav-links > li > a {
    display: block; padding: 16px 20px;
    font-size: 15px; font-weight: 400;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.06);
    min-height: 48px; display: flex; align-items: center;
  }
  .nav-links > li > a:hover { background: rgba(255,255,255,.04); color: #fff; }
  .nav-links > li > a.on { color: var(--white); border-left: 2px solid var(--gold); padding-left: 18px; background: rgba(200,150,90,.07); }
  .nav-close-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.3); flex-shrink: 0;
  }
  .nav-close-item span  { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.28); }
  .nav-close-item button{ background: none; border: none; cursor: pointer; padding: 5px; display: flex; align-items: center; }
  .nav-mob-cta { display: block; padding: 7px 12px; }
  .nav-mob-cta:first-of-type { margin-top: 14px; }
  .nav-mob-cta:last-of-type  { margin-bottom: 8px; }
  .nav-end .btn { display: none; }
  .nav-tel      { display: none; }

  .hero          { height: 72vh; min-height: 460px; }
  .hero-body     { padding: 0 18px 52px; grid-template-columns: 1fr; }
  .hero-right    { display: none; }
  .hero-h1       { font-size: clamp(26px, 7vw, 40px); margin-bottom: 10px; }
  .hero-p        { font-size: 13px; max-width: 100%; margin-bottom: 20px; }
  .hero-btns .btn{ padding: 11px 18px; font-size: 10px; }
  .hero-dots     { left: 18px; bottom: 14px; }
  .hero-dot      { width: 13px; }
  .hero-dot.on   { width: 26px; }
  .hero-num      { display: none; }

  .listings-hero { padding: calc(58px + 28px) 18px 0; }
  .listings-hero-h { font-size: clamp(26px, 7vw, 40px); }
  .filter-wrap   { margin-top: 20px; }
  .ftype         { padding: 13px 14px; font-size: 10px; }
  .cat-strip     { padding: 0 18px; }
  .cchip         { padding: 7px 12px; font-size: 9px; }
  .detail-filters{ top: 58px; }
  .df-inner      { padding: 0 18px; }
  .df-f          { padding: 9px 12px; min-width: 85px; }

  .prop-grid-featured,
  .prop-grid-3,
  .prop-grid-2   { grid-template-columns: 1fr; }
  .prop-grid     { gap: 10px; }
  .pg-item       { min-height: 230px; }
  .pg-item.tall  { min-height: 280px; }
  .pg-specs      { opacity: 1 !important; transform: none !important; }
  .pg-arrow      { opacity: 1 !important; transform: none !important; }
  [style*="grid-template-columns:2fr 1fr"] { grid-template-columns: 1fr !important; }

  .listing-row   { grid-template-columns: 110px 1fr; gap: 0; }
  .listing-photo { height: 110px; }
  .listing-info  { padding: 12px 14px; }
  .listing-cta   { display: none; }
  .listing-price { font-size: 16px; }
  .listing-specs { gap: 8px; }

  .proj-content  { padding: 26px 18px; }
  .proj-name     { font-size: clamp(19px, 5vw, 26px); }
  .proj-nums     { gap: 16px; flex-wrap: wrap; }
  .proj-btns     { flex-direction: column; gap: 7px; }
  .proj-btns .btn{ width: 100%; justify-content: center; }

  .about-content { padding: 28px 18px; }
  .about-visual  { min-height: 300px; }
  .pillars       { grid-template-columns: 1fr 1fr; }

  .gal-main      { height: 220px; }
  .gal-thumb     { height: 52px; }

  .frow          { grid-template-columns: 1fr; }
  .cta-full      { padding: 40px 18px; gap: 22px; }
  .cta-left-h    { font-size: clamp(20px, 5vw, 28px); }
  .stats-row     { grid-template-columns: repeat(2,1fr); }
  .stat-box      { padding: 22px 12px; }
  .footer        { padding: 36px 18px 22px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bot    { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bot p  { color: rgba(255,255,255,.4); font-size: 12px; }
  .f-desc        { color: rgba(255,255,255,.5); font-size: 13px; max-width: 100%; }
  .f-col-t       { color: rgba(255,255,255,.4); font-size: 10px; }
  .f-links a     { color: rgba(255,255,255,.6); font-size: 13px; }
  .f-conts li    { color: rgba(255,255,255,.55); font-size: 13px; }
  .btn           { padding: 13px 22px; min-height: 46px; }
  .fc            { min-height: 46px; font-size: 16px; } /* 16px iOS otomatik zoom'u engeller */
  .cchip, .ftype, .df-f { min-height: 40px; }

  /* ── GENEL OKUNABİLİRLİK — düşük opaklık metinleri mobilde toparla ── */
  .hero-p              { color: rgba(255,255,255,.68); font-size: 14px; }
  .hero-stat-l         { color: rgba(255,255,255,.45); font-size: 10px; }
  .proj-desc           { color: var(--muted); font-size: 13.5px; }
  .proj-eyebrow        { color: var(--muted); font-size: 11px; }
  .stat-l              { color: rgba(255,255,255,.45); font-size: 10px; }
  .listings-hero-h em  { color: rgba(245,240,232,.78); }
  .ftype               { color: rgba(255,255,255,.55); font-size: 11px; }
  .ftype-cnt           { color: rgba(255,255,255,.5); }
  .cchip               { color: rgba(255,255,255,.62); font-size: 10.5px; }
  .df-l                { color: rgba(255,255,255,.42); font-size: 9.5px; }
  .df-count            { color: rgba(255,255,255,.8); }
  .listing-loc, .lspec { color: rgba(0,0,0,.45); font-size: 12px; }
  .pg-loc              { color: rgba(255,255,255,.6); font-size: 12px; }
  .pg-spec             { color: rgba(255,255,255,.68); font-size: 11px; }
  .pg-title            { font-size: 13px; color: rgba(255,255,255,.95); }
  .about-content p     { color: var(--muted); font-size: 13.5px; line-height: 1.75; }
  .pillar-d            { color: var(--muted); font-size: 12px; }
  .cta-left-p          { color: var(--muted); font-size: 13.5px; }

  /* İnce (300) fontlar mobilde küçük ekranda bulanık görünür — 400'e çıkar */
  .hero-p, .proj-desc, .about-content p, .pillar-d, .cta-left-p,
  .listing-title, .f-desc, .f-links a, .f-conts li {
    font-weight: 400 !important;
  }
}

@media(max-width:480px){
  .hero          { height: 65vh; min-height: 400px; }
  .hero-h1       { font-size: clamp(22px, 8vw, 34px); }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn{ width: 100%; justify-content: center; }
  .pg-item       { min-height: 200px; }
  .pg-body       { padding: 14px 16px; }
  .pg-price      { font-size: 15px; }
  .pillars       { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr 1fr; }
  .stat-box      { padding: 18px 10px; }
  .listing-row   { grid-template-columns: 130px 1fr; }
  .listing-cta   { display: none; }
  .footer-grid   { grid-template-columns: 1fr; }
  [style*="grid-template-columns:1fr 1fr;gap:52px"],
  [style*="grid-template-columns:1fr 1fr;gap:48px"],
  [style*="grid-template-columns:1fr 1fr;gap:36px"],
  [style*="grid-template-columns:1fr 1fr;gap:28px"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
/* ══════════════════════════════════════════════════════════
   İLAN DETAY — GALERİ ŞERİDİ + LIGHTBOX
   ══════════════════════════════════════════════════════════ */

.gal-strip {
  display: flex; gap: 4px;
  overflow-x: auto; scrollbar-width: thin;
  margin-top: 4px; padding-bottom: 4px;
  scroll-snap-type: x proximity;
}
.gal-strip::-webkit-scrollbar { height: 5px; }
.gal-strip::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.gal-strip-item {
  flex: 0 0 auto; width: 84px; height: 60px;
  overflow: hidden; cursor: pointer; background: #ede9e2;
  opacity: .8; transition: opacity .28s, outline-color .28s;
  scroll-snap-align: start;
  outline: 2px solid transparent; outline-offset: -2px;
}
.gal-strip-item:hover { opacity: 1; }
.gal-strip-item.on { opacity: 1; outline-color: var(--black); }
.gal-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gal-main { position: relative; }
.gal-main:hover::after {
  content: '🔍 Büyütmek için tıklayın';
  position: absolute; top: 12px; left: 12px;
  background: rgba(13,13,13,.7); color: #fff;
  font-size: 10px; font-weight: 600; padding: 5px 11px;
  border-radius: 20px; pointer-events: none;
  opacity: 0; animation: galHint .2s forwards;
}
@keyframes galHint { to { opacity: 1; } }

.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,8,8,.97);
  flex-direction: column; outline: none;
}
.lb-overlay.open { display: flex; }

.lb-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; flex-shrink: 0;
}
.lb-count { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.lb-close {
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .28s;
}
.lb-close:hover { background: rgba(255,255,255,.18); }
.lb-close svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

.lb-stage {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 0 70px; min-height: 0; position: relative;
}
.lb-stage img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  user-select: none; -webkit-user-drag: none;
}

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; background: rgba(255,255,255,.08); border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .28s;
}
.lb-nav:hover { background: rgba(255,255,255,.18); }
.lb-nav svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-thumbs {
  display: flex; gap: 5px; overflow-x: auto;
  padding: 14px 20px 18px; flex-shrink: 0;
  scrollbar-width: thin; justify-content: center;
}
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 3px; }
.lb-thumbs img {
  flex: 0 0 auto; width: 60px; height: 44px; object-fit: cover;
  cursor: pointer; opacity: .4; transition: opacity .28s, outline-color .28s;
  outline: 2px solid transparent; outline-offset: -2px;
}
.lb-thumbs img:hover { opacity: .75; }
.lb-thumbs img.on { opacity: 1; outline-color: var(--gold); }

@media(max-width:768px){
  .lb-stage { padding: 0 14px; }
  .lb-nav { width: 38px; height: 38px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-thumbs img { width: 48px; height: 36px; }
  .gal-strip-item { width: 64px; height: 46px; }
  .gal-main:hover::after { display: none; }
}

/* GÜVENLİK KİLİDİ — detay sayfası grid'i ve galeri genişliği garanti altına alınıyor */
.detail-grid { display: grid !important; grid-template-columns: 1fr 310px !important; gap: 32px !important; }
.detail-grid > div:first-child { min-width: 0; }
.gal-main { width: 100% !important; max-width: 100% !important; }
@media(max-width:900px){
  .detail-grid { grid-template-columns: 1fr !important; }
}

/* Yüklenen logo görseli — harf-kare ile aynı boyut/hizalama */
.nav-logo-img {
  height: 48px; width: auto; max-width: 220px;
  object-fit: contain; flex-shrink: 0;
}
@media(max-width:768px){
  .nav-logo-img { height: 38px; max-width: 170px; }
}

/* ── SIK SORULAN SORULAR (Ana Sayfa) ────────────────────────── */
.faq-section { background: var(--cream); padding: 88px 0; }
.faq-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.faq-h2 {
  font-family: var(--f-disp); font-size: clamp(26px,3.5vw,42px); font-weight: 400;
  color: var(--black); letter-spacing: -.025em; line-height: 1.15; margin-bottom: 14px;
}
.faq-h2 em { font-style: normal; font-weight: 300; color: var(--muted); }
.faq-p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; }

.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--sand); }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 18px;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 24px 4px; font-family: var(--f-sans); transition: padding var(--ease);
}
.faq-q-n { font-family: var(--f-disp); font-size: 14px; color: var(--gold); flex-shrink: 0; width: 26px; }
.faq-q-t { flex: 1; font-size: 15.5px; font-weight: 600; color: var(--black); line-height: 1.4; transition: color var(--ease); }
.faq-q-ic {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease);
}
.faq-q-ic svg { width: 13px; height: 13px; stroke: var(--black); fill: none; stroke-width: 2; }
.faq-q-ic .faq-vline { transition: opacity var(--ease), transform var(--ease); transform-origin: center; }

.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-a { padding: 0 4px 26px 44px; font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.85; }

.faq-item.open .faq-q-ic { background: var(--black); border-color: var(--black); }
.faq-item.open .faq-q-ic svg { stroke: var(--white); }
.faq-item.open .faq-q-ic .faq-vline { opacity: 0; transform: rotate(90deg); }
.faq-item.open .faq-q-t { color: var(--accent); }

@media(max-width:600px){
  .faq-section { padding: 56px 0; }
  .faq-head { margin-bottom: 34px; }
  .faq-q { gap: 12px; padding: 18px 2px; }
  .faq-q-t { font-size: 14px; }
  .faq-q-n { width: 20px; font-size: 12px; }
  .faq-q-ic { width: 24px; height: 24px; }
  .faq-a { padding-left: 32px; padding-right: 2px; font-size: 13.5px; }
}