/* ==========================================================================
   Emlak — premium site stilleri
   ========================================================================== */

:root {
    --bg: #fbfbfd;
    --bg-alt: #f5f5f7;
    --surface: #ffffff;
    --ink: #1d1d1f;
    --ink-2: #424245;
    --muted: #6e6e73;
    --muted-2: #86868b;
    --line: #e3e3e8;
    --line-soft: rgba(0, 0, 0, .07);

    --dark: #0b0b0c;
    --dark-2: #151517;
    --dark-3: #1f1f22;
    --on-dark: #f5f5f7;
    --on-dark-muted: #a1a1a6;

    --gold: #a4804f;
    --gold-2: #c4a274;
    --gold-light: #dcc39b;
    --gold-soft: #f4eee4;

    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius: 20px;
    --radius-sm: 12px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04), 0 6px 20px rgba(0, 0, 0, .04);
    --shadow: 0 24px 60px -24px rgba(0, 0, 0, .22);
    --shadow-lg: 0 40px 100px -30px rgba(0, 0, 0, .4);

    --ease: cubic-bezier(.22, .8, .2, 1);
    --container: 1320px;
    --gutter: clamp(20px, 4vw, 48px);
    --header-h: 68px;

    --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter Display", "Inter", "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: "New York", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; text-wrap: balance; }
p { text-wrap: pretty; }
address { font-style: normal; }
::selection { background: var(--gold-light); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.center { text-align: center; }
.icon { width: 1.15em; height: 1.15em; flex: none; }
.img-placeholder { width: 100%; height: 100%; min-height: 100%; background: linear-gradient(135deg, #ececf0, #d9d9de); }

/* ---------- Butonlar & rozetler ---------- */
.btn {
    --h: 46px;
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    height: var(--h); padding: 0 24px;
    border-radius: 999px; border: 1px solid transparent;
    font-size: 15px; font-weight: 500; letter-spacing: -.01em; white-space: nowrap;
    background: transparent;
    transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn .icon { width: 18px; height: 18px; }
.btn:active { transform: scale(.98); }
.btn-sm { --h: 38px; padding: 0 16px; font-size: 14px; }
.btn-lg { --h: 56px; padding: 0 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .5); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f2f2f4; }
.btn-glass { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .28); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.btn-glass:hover { background: rgba(255, 255, 255, .22); }
.btn-outline { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, .6); }
.btn-outline:hover { border-color: var(--ink); background: #fff; }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--ink); }

.badge {
    display: inline-flex; align-items: center; height: 26px; padding: 0 11px;
    border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .01em; white-space: nowrap;
}
.badge-glass { background: rgba(255, 255, 255, .88); color: var(--ink); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.badge-gold { background: linear-gradient(135deg, #cfae80, #a4804f); color: #fff; }
.badge-dark { background: var(--ink); color: #fff; }
.badge-soft { background: var(--bg-alt); color: var(--ink-2); border: 1px solid var(--line-soft); }

.eyebrow {
    display: block; margin-bottom: 18px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold);
}
.eyebrow-light { color: rgba(255, 255, 255, .85); }
.eyebrow-gold { color: var(--gold-light); }

.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 500; color: var(--ink); white-space: nowrap; }
.link-arrow .icon { transition: transform .35s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.prose .link-arrow, .intro-copy .link-arrow { margin-top: 28px; }

/* ---------- Üst menü ---------- */
.site-header {
    position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
    background: rgba(251, 251, 253, .76);
    -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line-soft);
    transition: background-color .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), transform .45s var(--ease);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: .5em; line-height: 1; margin-right: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: .24em; text-transform: uppercase; }
.brand-sub { font-size: 10.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.brand-logo { height: 34px; width: auto; }
.brand-logo--light { display: none; }
.site-header .brand-logo--light:only-child { display: block; filter: brightness(0); }
.site-header.is-overlay:not(.is-scrolled) .brand-logo--light:only-child { filter: none; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
    position: relative; display: block; padding: 8px 14px; border-radius: 999px;
    font-size: 14px; color: var(--ink-2); transition: color .25s, background-color .25s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a[aria-current="page"]::after {
    content: ""; position: absolute; left: 50%; bottom: 1px; width: 4px; height: 4px; margin-left: -2px;
    border-radius: 50%; background: var(--gold);
}
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-header { background: var(--ink); color: #fff; }
.btn-header:hover { background: #000; }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: transparent; place-items: center; }
.menu-lines { position: relative; display: block; width: 20px; height: 10px; }
.menu-lines i { position: absolute; left: 0; width: 100%; height: 1.6px; border-radius: 2px; background: currentColor; transition: transform .4s var(--ease), top .4s var(--ease); }
.menu-lines i:first-child { top: 0; }
.menu-lines i:last-child { top: 8.4px; }
.menu-open .menu-lines i:first-child { top: 4.2px; transform: rotate(45deg); }
.menu-open .menu-lines i:last-child { top: 4.2px; transform: rotate(-45deg); }

/* Görsel üzerinde şeffaf menü */
.site-header.is-overlay:not(.is-scrolled) { background: transparent; border-color: transparent; color: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-header.is-overlay:not(.is-scrolled) .brand-sub { color: rgba(255, 255, 255, .7); }
.site-header.is-overlay:not(.is-scrolled) .main-nav a { color: rgba(255, 255, 255, .82); }
.site-header.is-overlay:not(.is-scrolled) .main-nav a:hover,
.site-header.is-overlay:not(.is-scrolled) .main-nav a[aria-current="page"] { color: #fff; }
.site-header.is-overlay:not(.is-scrolled) .btn-header { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.site-header.is-overlay:not(.is-scrolled) .brand-logo--light { display: block; }
.site-header.is-overlay:not(.is-scrolled) .brand-logo--light ~ .brand-logo--dark,
.site-header.is-overlay:not(.is-scrolled) .brand-logo--dark:has(+ .brand-logo--light) { display: none; }
.site-header.is-hidden { transform: translateY(-100%); }
.menu-open .site-header { background: var(--bg) !important; color: var(--ink) !important; border-color: var(--line-soft) !important; transform: none; }
.menu-open .site-header .main-nav a, .menu-open .site-header .brand-sub { color: var(--muted) !important; }

main { display: block; }
body:not(.has-overlay) main { padding-top: var(--header-h); }

/* Mobil menü */
.mobile-menu {
    position: fixed; inset: 0; z-index: 45; padding-top: var(--header-h);
    background: var(--bg); overflow-y: auto;
    opacity: 0; transition: opacity .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu-inner { padding-block: 24px 48px; }
.mobile-menu li { overflow: hidden; }
.mobile-menu li a {
    display: block; padding: 14px 0; border-bottom: 1px solid var(--line-soft);
    font-family: var(--font-display); font-size: clamp(1.8rem, 7vw, 2.4rem); font-weight: 600; letter-spacing: -.03em;
    transform: translateY(100%); transition: transform .6s var(--ease);
}
.mobile-menu.is-open li a { transform: none; }
.mobile-menu li:nth-child(2) a { transition-delay: .03s; } .mobile-menu li:nth-child(3) a { transition-delay: .06s; }
.mobile-menu li:nth-child(4) a { transition-delay: .09s; } .mobile-menu li:nth-child(5) a { transition-delay: .12s; }
.mobile-menu li:nth-child(6) a { transition-delay: .15s; } .mobile-menu li:nth-child(7) a { transition-delay: .18s; }
.mobile-menu li a[aria-current="page"] { color: var(--gold); }
.mobile-menu-contact { display: grid; gap: 10px; margin-top: 32px; }
body.menu-open { overflow: hidden; }

/* ---------- Bölümler ---------- */
.section { padding-block: clamp(84px, 11vw, 168px); }
.section-tight { padding-block: clamp(40px, 6vw, 80px); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: var(--on-dark); }
.section-dark .section-lead { color: var(--on-dark-muted); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center .section-title, .section-head--center .section-lead { margin-inline: auto; }
.section-title { font-size: clamp(2.3rem, 4.8vw, 4.2rem); line-height: 1.04; letter-spacing: -.038em; max-width: 17ch; }
.section-lead { margin-top: 18px; max-width: 54ch; font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.55; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
    position: relative; display: flex; align-items: flex-end;
    min-height: 100vh; min-height: 100svh; max-height: 1100px;
    color: #fff; background: var(--dark); overflow: hidden; isolation: isolate;
}
@media (min-height: 1100px) { .hero { min-height: 1000px; } }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media .img-placeholder { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s var(--ease) both; }
.hero-shade {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 26%),
        linear-gradient(90deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(0deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 38%, rgba(0, 0, 0, 0) 70%);
}
.hero-inner { padding-top: calc(var(--header-h) + 60px); padding-bottom: clamp(36px, 7vh, 84px); }
.hero-title { font-size: clamp(3rem, 8.4vw, 7.6rem); line-height: .96; letter-spacing: -.05em; max-width: 11ch; }
.hero-subtitle { margin-top: clamp(18px, 2.4vw, 28px); max-width: 44ch; font-size: clamp(1.05rem, 1.55vw, 1.35rem); line-height: 1.5; color: rgba(255, 255, 255, .82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3vw, 40px); }
.hero-scroll { position: absolute; right: var(--gutter); bottom: 40px; width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, .5); border-radius: 20px; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: scrollDot 2.2s var(--ease) infinite; }

.hero-anim { opacity: 0; transform: translateY(26px); animation: rise 1.15s var(--ease) var(--d, 0s) forwards; }

.hero-search {
    margin-top: clamp(36px, 5vw, 56px); max-width: 1040px; padding: 10px;
    border-radius: 26px; border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1); -webkit-backdrop-filter: blur(26px) saturate(160%); backdrop-filter: blur(26px) saturate(160%);
}
.seg { display: inline-flex; gap: 2px; padding: 4px; border-radius: 999px; background: rgba(255, 255, 255, .12); }
.hero-search .seg { margin: 2px 0 10px 2px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span, .seg a { display: block; padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: background-color .3s, color .3s; }
.seg input:checked + span { background: #fff; color: var(--ink); }
.seg input:focus-visible + span { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.hero-search-fields { display: grid; grid-template-columns: 1fr 1fr 1.5fr auto; align-items: stretch; background: #fff; color: var(--ink); border-radius: 18px; }
.hs-field { position: relative; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 12px 22px; min-width: 0; }
.hs-field + .hs-field::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line); }
.hs-field > span { font-size: 12px; font-weight: 600; color: var(--muted); }
.hs-field select, .hs-field input { width: 100%; border: 0; padding: 2px 0; background: transparent; font-size: 16px; font-weight: 500; outline: none; appearance: none; -webkit-appearance: none; text-overflow: ellipsis; }
.hs-field select { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236e6e73' stroke-width='1.6' viewBox='0 0 24 24'%3E%3Cpath d='m5 9 7 7 7-7'/%3E%3C/svg%3E") right center no-repeat; padding-right: 20px; cursor: pointer; }
.hs-field input::placeholder { color: var(--muted-2); font-weight: 400; }
.hs-submit { --h: auto; margin: 8px; padding: 0 28px; border-radius: 13px; }

/* ---------- Manifesto & rakamlar ---------- */
.statement-text {
    max-width: 30ch; margin-inline: auto; text-align: center;
    font-family: var(--font-display); font-size: clamp(1.9rem, 4.3vw, 3.7rem); font-weight: 600; line-height: 1.14; letter-spacing: -.035em;
}
.statement-text .w { opacity: .16; transition: opacity .5s var(--ease); }
.statement-text .w.on { opacity: 1; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(64px, 9vw, 128px); }
.statement .stats:first-child { margin-top: 0; }
.stat { display: flex; flex-direction: column; padding-top: 26px; border-top: 1px solid var(--line); }
.stat dt { order: 2; margin-top: 8px; font-size: 15px; color: var(--muted); }
.stat dd { order: 1; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 600; line-height: 1; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.stats--boxed { margin-top: 0; }
.stats--boxed .stat { padding: 32px; border: 0; border-radius: var(--radius); background: var(--bg-alt); }

/* ---------- Öne çıkan ilan ---------- */
.spotlight {
    display: grid; grid-template-columns: 1.55fr 1fr; margin-bottom: 28px;
    background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.spotlight-media { position: relative; display: block; min-height: 540px; overflow: hidden; background: #e8e8ed; }
.spotlight-media img, .spotlight-media .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.spotlight:hover .spotlight-media img { transform: scale(1.04); }
.spotlight-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 60px); }
.spotlight-title { margin-top: 18px; font-size: clamp(1.8rem, 2.8vw, 2.6rem); line-height: 1.08; letter-spacing: -.035em; }
.spotlight-loc { display: flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--muted); }
.spotlight-summary { margin-top: 20px; color: var(--ink-2); line-height: 1.65; }
.spotlight-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; padding-block: 22px; border-block: 1px solid var(--line-soft); }
.spotlight-specs dt { font-size: 13px; color: var(--muted); }
.spotlight-specs dd { margin-top: 4px; font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; }
.spotlight-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.spotlight-price { font-family: var(--font-display); font-size: clamp(1.6rem, 2.3vw, 2.1rem); font-weight: 600; letter-spacing: -.03em; }
.spotlight-price small { font-size: 14px; font-weight: 400; color: var(--muted); letter-spacing: 0; }

/* ---------- İlan kartı ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: clamp(20px, 2.2vw, 30px); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 0 0 1px var(--line-soft);
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--line-soft), var(--shadow); }
.card-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #e8e8ed; }
.card-img, .card-media .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), opacity .7s var(--ease); }
.card-img--alt { opacity: 0; }
@media (hover: hover) {
    .card:hover .card-img { transform: scale(1.05); }
    .card:hover .card-img--alt { opacity: 1; }
}
.card-badges { position: absolute; left: 14px; top: 14px; display: flex; gap: 6px; z-index: 2; }
.card-count { position: absolute; right: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; height: 26px; padding: 0 10px; border-radius: 999px; background: rgba(0, 0, 0, .45); color: #fff; font-size: 12px; font-weight: 500; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.card-count .icon { width: 14px; height: 14px; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 20px 24px 24px; }
.card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0 8px; font-size: 13px; color: var(--muted); }
.card-meta span + span::before { content: "·"; margin-right: 8px; }
.spotlight .card-meta .badge + span::before { content: none; }
.card-title { margin: 8px 0 16px; font-size: 1.22rem; line-height: 1.28; letter-spacing: -.022em; }
.card-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card-specs { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 18px; font-size: 13.5px; color: var(--ink-2); }
.card-specs li { display: inline-flex; align-items: center; gap: 6px; }
.card-specs .icon { width: 17px; height: 17px; color: var(--muted-2); }
.card-price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: -.025em; }
.card-price small { margin-left: 4px; font-family: var(--font); font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--muted); }

/* ---------- Tanıtım ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 130px); align-items: center; }
.intro-media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: #e8e8ed; }
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-copy .section-title { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
.intro-copy .prose { margin-top: 28px; }

.prose p { margin-bottom: 1.1em; font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose h3 { margin: 1.6em 0 .6em; font-size: 1.25rem; letter-spacing: -.02em; }
.prose ul { margin: 0 0 1.2em; display: grid; gap: .5em; }
.prose ul li { position: relative; padding-left: 22px; color: var(--ink-2); line-height: 1.65; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); }
.prose-lg p { font-family: var(--font-display); font-size: clamp(1.2rem, 1.9vw, 1.6rem); line-height: 1.5; letter-spacing: -.015em; color: var(--muted); }
.prose-lg p:first-child { color: var(--ink); }

/* ---------- Kategoriler ---------- */
.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.category { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; color: #fff; background: #1c1c1e; isolation: isolate; }
.category img, .category .img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.4s var(--ease); }
.category::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0) 55%); }
.category:hover img { transform: scale(1.06); }
.category-body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; gap: 6px; }
.category-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 600; letter-spacing: -.03em; }
.category-count { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255, 255, 255, .8); }
.category-count .icon { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.category:hover .category-count .icon { transform: translate(3px, -3px); }

/* ---------- Hizmetler ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.service { padding: clamp(28px, 3vw, 40px); border-radius: var(--radius); background: var(--dark-2); border: 1px solid rgba(255, 255, 255, .06); transition: background-color .4s var(--ease), transform .5s var(--ease); }
.service:hover { background: var(--dark-3); transform: translateY(-4px); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(220, 195, 155, .1); color: var(--gold-light); }
.service-icon .icon { width: 26px; height: 26px; }
.service h2, .service h3 { margin: 26px 0 10px; font-size: 1.28rem; letter-spacing: -.022em; }
.service p { color: var(--on-dark-muted); font-size: 15.5px; line-height: 1.65; }
.service-grid--light .service { background: var(--surface); border-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.service-grid--light .service:hover { background: var(--surface); box-shadow: var(--shadow); }
.service-grid--light .service-icon { background: var(--gold-soft); color: var(--gold); }
.service-grid--light .service p { color: var(--muted); }
.services-band .center { margin-top: clamp(40px, 5vw, 64px); }

/* ---------- CTA ---------- */
.cta-card {
    position: relative; overflow: hidden; isolation: isolate; text-align: center;
    padding: clamp(60px, 9vw, 130px) clamp(22px, 5vw, 80px);
    border-radius: var(--radius-xl); background: var(--dark); color: #fff;
}
.cta-glow { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(60% 55% at 50% -5%, rgba(220, 195, 155, .32), transparent 70%),
    radial-gradient(40% 40% at 90% 110%, rgba(164, 128, 79, .25), transparent 70%); }
.cta-title { max-width: 16ch; margin-inline: auto; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.04; letter-spacing: -.04em; }
.cta-text { max-width: 48ch; margin: 20px auto 0; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--on-dark-muted); }
.cta-phone {
    display: inline-block; margin: clamp(30px, 4vw, 44px) 0 clamp(26px, 3vw, 36px);
    font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 6.6rem); font-weight: 600; line-height: 1; letter-spacing: -.045em;
    background: linear-gradient(180deg, #fff 30%, var(--gold-light)); -webkit-background-clip: text; background-clip: text; color: transparent;
    font-variant-numeric: tabular-nums; transition: opacity .3s;
}
.cta-phone:hover { opacity: .85; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cta-hours { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; font-size: 14px; color: var(--on-dark-muted); }

/* ---------- Sayfa başlıkları ---------- */
.page-hero { padding-top: clamp(40px, 7vw, 100px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero--compact { padding-bottom: clamp(24px, 3vw, 40px); }
.page-title { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.02; letter-spacing: -.045em; max-width: 16ch; }
.page-title--xl { font-size: clamp(2.8rem, 7vw, 6.4rem); max-width: 17ch; line-height: .99; }
.page-lead { margin-top: clamp(18px, 2vw, 26px); max-width: 52ch; font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.5; color: var(--muted); }

.breadcrumb { margin-bottom: clamp(22px, 3vw, 36px); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--muted-2); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current] { color: var(--ink-2); }

.wide-media { aspect-ratio: 21 / 9; border-radius: var(--radius-lg); overflow: hidden; background: #e8e8ed; }
.wide-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Filtreler ---------- */
.filter-shell { padding-bottom: 8px; }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 12px; border-radius: 24px; background: var(--surface); box-shadow: 0 0 0 1px var(--line-soft), var(--shadow-sm); }
.seg--links { background: var(--bg-alt); }
.seg--links a { color: var(--muted); }
.seg--links a:hover { color: var(--ink); }
.seg--links a[aria-current="page"] { background: var(--ink); color: #fff; }
.filter-search { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 16px; border-radius: 999px; background: var(--bg-alt); color: var(--muted); }
.filter-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 15px; color: var(--ink); }
.filter-toggle { display: none; }
.filter-dot { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; }
.filter-panel { flex-basis: 100%; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)) auto; gap: 12px; align-items: end; padding: 4px 4px 2px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span { padding-left: 4px; font-size: 12px; font-weight: 600; color: var(--muted); }
.field select, .field input {
    width: 100%; height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
    font-size: 15px; outline: none; appearance: none; -webkit-appearance: none; transition: border-color .2s, box-shadow .2s;
}
.field select { padding-right: 34px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236e6e73' stroke-width='1.6' viewBox='0 0 24 24'%3E%3Cpath d='m5 9 7 7 7-7'/%3E%3C/svg%3E") right 14px center no-repeat; cursor: pointer; text-overflow: ellipsis; }
.field select:focus, .field input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(0, 0, 0, .05); }
.filter-actions { display: flex; gap: 6px; }

/* Temaya uygun açılır menü */
.cselect { position: relative; min-width: 0; }
.cselect-native { position: absolute !important; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; }
.cselect-btn {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; min-width: 0; margin: 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer;
}
.cselect-value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cselect-chev { width: 16px; height: 16px; color: var(--muted); transition: transform .35s var(--ease), color .2s; }
.cselect-btn[aria-expanded="true"] .cselect-chev { transform: rotate(180deg); color: var(--ink); }
.hs-field .cselect-btn { padding: 2px 0; font-size: 16px; font-weight: 500; }
.hs-field .cselect-btn:focus-visible { outline: none; }
.hs-field:has(.cselect-btn:focus-visible) { border-radius: 14px; box-shadow: inset 0 0 0 2px var(--gold-light); }
.field .cselect-btn { height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.field .cselect-btn:hover { border-color: #c7c7cc; }
.field .cselect-btn:focus-visible, .field .cselect-btn[aria-expanded="true"] { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(0, 0, 0, .05); }

.cselect-list {
    position: fixed; z-index: 130; margin: 0; padding: 6px; max-height: 320px; overflow-y: auto; overscroll-behavior: contain;
    background: rgba(255, 255, 255, .97); -webkit-backdrop-filter: blur(24px) saturate(180%); backdrop-filter: blur(24px) saturate(180%);
    border-radius: 18px; box-shadow: 0 0 0 1px var(--line-soft), 0 28px 70px -20px rgba(0, 0, 0, .3), 0 4px 14px rgba(0, 0, 0, .04);
    opacity: 0; transform: translateY(-6px) scale(.98); transform-origin: top center;
    transition: opacity .22s var(--ease), transform .32s var(--ease);
    scrollbar-width: thin; scrollbar-color: #d2d2d7 transparent;
}
.cselect-list.is-up { transform: translateY(6px) scale(.98); transform-origin: bottom center; }
.cselect-list.is-open { opacity: 1; transform: none; }
.cselect-list li {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 11px 14px; border-radius: 11px; font-size: 15px; line-height: 1.3; color: var(--ink-2);
    cursor: pointer; user-select: none; transition: background-color .15s, color .15s;
}
.cselect-list li + li { margin-top: 1px; }
.cselect-list li:first-child { color: var(--muted); }
.cselect-list li .icon { width: 16px; height: 16px; color: var(--gold); opacity: 0; transform: scale(.6); transition: opacity .2s, transform .3s var(--ease); }
.cselect-list li.is-active { background: var(--bg-alt); color: var(--ink); }
.cselect-list li[aria-selected="true"] { color: var(--ink); font-weight: 600; }
.cselect-list li[aria-selected="true"] .icon { opacity: 1; transform: none; }
.result-count { margin-bottom: 26px; font-size: 14px; color: var(--muted); }
.result-count strong { color: var(--ink); }

.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: clamp(40px, 5vw, 64px); }
.page-btn { display: inline-grid; place-items: center; min-width: 46px; height: 46px; padding: 0 10px; border-radius: 999px; border: 1px solid var(--line); font-size: 15px; font-weight: 500; transition: all .25s; }
.page-btn:hover { border-color: var(--ink); }
.page-btn.is-current { background: var(--ink); border-color: var(--ink); color: #fff; }
.page-gap { display: grid; place-items: center; width: 24px; color: var(--muted); }

.empty-state { max-width: 640px; margin: 20px auto; padding: clamp(40px, 6vw, 72px) 24px; text-align: center; border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 0 0 1px var(--line-soft); }
.empty-icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--bg-alt); color: var(--muted); }
.empty-icon .icon { width: 28px; height: 28px; }
.empty-state h2 { margin-top: 22px; font-size: 1.6rem; letter-spacing: -.025em; }
.empty-state p { margin: 12px auto 0; max-width: 46ch; color: var(--muted); }
.empty-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ---------- İlan detay ---------- */
.draft-banner { position: sticky; top: var(--header-h); z-index: 40; padding: 10px 20px; text-align: center; font-size: 14px; font-weight: 500; color: #fff; background: var(--gold); }
.listing-head { padding-top: clamp(20px, 3vw, 36px); }
.listing-head .breadcrumb { margin-bottom: 22px; }
.listing-head-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; margin-bottom: clamp(24px, 3vw, 36px); }
.listing-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; }
.listing-ref { margin-left: 6px; font-size: 13px; color: var(--muted); }
.listing-title { font-size: clamp(2.1rem, 4.6vw, 3.9rem); line-height: 1.04; letter-spacing: -.042em; max-width: 20ch; }
.listing-loc { display: flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 1.05rem; color: var(--muted); }
.listing-head-price { text-align: right; }
.price-label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-value { margin-top: 6px; font-family: var(--font-display); font-size: clamp(1.9rem, 3.3vw, 3rem); font-weight: 600; line-height: 1; letter-spacing: -.04em; white-space: nowrap; }
.price-note { margin-top: 6px; font-size: 14px; color: var(--muted); }

.gallery { position: relative; }
.gallery-grid {
    display: grid; gap: 10px; height: clamp(420px, 64vh, 680px);
    grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr;
    border-radius: var(--radius-lg); overflow: hidden;
}
.gallery-item { position: relative; padding: 0; border: 0; overflow: hidden; background: #e8e8ed; cursor: zoom-in; min-height: 0; }
.gallery-item img, .gallery-item .img-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0); transition: background-color .5s; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item:hover::after { background: rgba(0, 0, 0, .08); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:nth-child(n+6) { display: none; }
.gallery-count-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.gallery-count-1 .gallery-item:first-child { grid-row: auto; }
.gallery-count-2 { grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr; }
.gallery-count-2 .gallery-item:first-child { grid-row: auto; }
.gallery-count-3 { grid-template-columns: 2fr 1fr; }
.gallery-count-4 .gallery-item:nth-child(2) { grid-row: span 2; }
.gallery-ui { position: absolute; right: calc(var(--gutter) + 20px); bottom: 20px; display: flex; align-items: center; gap: 8px; }
.gallery-all { box-shadow: var(--shadow); }
.gallery-counter { display: none; height: 30px; padding: 0 12px; align-items: center; border-radius: 999px; background: rgba(0, 0, 0, .5); color: #fff; font-size: 13px; font-weight: 500; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-variant-numeric: tabular-nums; }

.listing-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(40px, 6vw, 100px); align-items: start; padding-bottom: clamp(80px, 10vw, 140px); }
.listing-main { min-width: 0; }
.keyfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 24px; padding-block: 34px; border-bottom: 1px solid var(--line); }
.keyfact { display: flex; flex-direction: column; }
.keyfact .icon { width: 28px; height: 28px; margin-bottom: 16px; color: var(--gold); stroke-width: 1.4; }
.keyfact dt { order: 2; margin-top: 4px; font-size: 13.5px; color: var(--muted); }
.keyfact dd { order: 1; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; letter-spacing: -.025em; }
.listing-block { padding-block: clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--line-soft); }
.listing-block:last-child { border-bottom: 0; }
.block-title { margin-bottom: 26px; font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -.03em; }
.listing-lead { margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.5; letter-spacing: -.015em; color: var(--ink); }
.prose-listing { position: relative; }
.prose-listing.is-clamped { max-height: 420px; overflow: hidden; }
.prose-listing.is-clamped::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 140px; background: linear-gradient(0deg, var(--bg), rgba(251, 251, 253, 0)); }
.readmore { margin-top: 14px; padding: 0; border: 0; background: none; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.readmore .icon { transition: transform .3s; }
.readmore[aria-expanded="true"] .icon { transform: rotate(180deg); }

.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px 28px; }
.amenities li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; }
.amenities .icon { width: 30px; height: 30px; padding: 7px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); stroke-width: 2; }
.detail-table { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; }
.detail-table div { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.detail-table dt { color: var(--muted); }
.detail-table dd { font-weight: 500; text-align: right; }

.embed { position: relative; overflow: hidden; border-radius: var(--radius); background: #e8e8ed; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed-video { aspect-ratio: 16 / 9; }
.embed-map { aspect-ratio: 16 / 10; }
.embed-map iframe { filter: grayscale(.25) contrast(1.02); }
.embed-map--wide { aspect-ratio: 21 / 8; margin-top: clamp(36px, 5vw, 60px); }
.map-caption { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; color: var(--muted); }
.map-caption small { color: var(--muted-2); }

.listing-aside { position: sticky; top: calc(var(--header-h) + 28px); padding-top: 34px; }
.agent-card { padding: 32px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 0 0 1px var(--line-soft), var(--shadow-sm); }
.agent-price { margin-top: 8px; font-family: var(--font-display); font-size: clamp(1.9rem, 2.6vw, 2.4rem); font-weight: 600; line-height: 1.05; letter-spacing: -.04em; }
.agent-divider { height: 1px; margin: 26px 0; background: var(--line); }
.agent { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.agent-mark { display: grid; place-items: center; flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: var(--gold-light); font-family: var(--font-serif); font-size: 1.45rem; }
.agent-name { font-weight: 600; letter-spacing: -.01em; }
.agent-role { font-size: 13.5px; color: var(--muted); }
.agent-card .btn + .btn { margin-top: 10px; }
.agent-note { margin: 20px 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.agent-share { display: flex; gap: 8px; }
.share-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 40px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 13.5px; transition: background-color .25s, border-color .25s; white-space: nowrap; }
.share-btn:hover { background: var(--bg-alt); border-color: var(--muted-2); }
.share-btn .icon { width: 16px; height: 16px; }
.agent-edit { display: block; margin-top: 18px; font-size: 13.5px; font-weight: 500; color: var(--gold); }

.listing-bar { display: none; }
.icon-btn { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; }
.icon-btn .icon { width: 22px; height: 22px; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 120; display: grid; grid-template-rows: auto minmax(0, 1fr) auto;
    background: #0a0a0b; color: #fff; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-top { display: flex; align-items: center; justify-content: space-between; padding: 16px var(--gutter); }
.lb-counter { font-size: 14px; color: rgba(255, 255, 255, .7); font-variant-numeric: tabular-nums; }
.lb-btn { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .1); color: #fff; transition: background-color .25s; }
.lb-btn:hover { background: rgba(255, 255, 255, .2); }
.lb-btn .icon { width: 22px; height: 22px; }
.lb-stage { position: relative; display: flex; align-items: center; justify-content: center; padding: 0 clamp(12px, 7vw, 110px); min-height: 0; touch-action: pan-y; }
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; user-select: none; -webkit-user-drag: none; transition: opacity .35s var(--ease), transform .5s var(--ease); }
.lb-stage img.is-loading { opacity: 0; transform: scale(.985); }
.lb-prev, .lb-next { position: absolute; top: 50%; margin-top: -24px; }
.lb-prev { left: clamp(10px, 2vw, 32px); }
.lb-next { right: clamp(10px, 2vw, 32px); }
.lb-thumbs { display: flex; gap: 8px; padding: 16px var(--gutter) 22px; overflow-x: auto; scrollbar-width: none; justify-content: safe center; }
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb { flex: none; width: 76px; height: 54px; padding: 0; border: 2px solid transparent; border-radius: 9px; overflow: hidden; background: #222; opacity: .45; transition: opacity .25s, border-color .25s; }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb.is-active, .lb-thumb:hover { opacity: 1; }
.lb-thumb.is-active { border-color: #fff; }
body.lb-open { overflow: hidden; }

/* ---------- Hakkımızda ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 2.2fr; gap: clamp(32px, 6vw, 100px); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 130px); align-items: start; }
.values-media { margin-top: 44px; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; }
.values-media img { width: 100%; height: 100%; object-fit: cover; }
.values-list li { display: flex; gap: 28px; padding: 34px 0; border-top: 1px solid var(--line); }
.values-list li:last-child { border-bottom: 1px solid var(--line); }
.values-num { padding-top: 6px; font-size: 14px; font-weight: 600; color: var(--gold); font-variant-numeric: tabular-nums; }
.values-list h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); letter-spacing: -.03em; }
.values-list p { margin-top: 8px; color: var(--muted); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.member-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-initial { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-serif); font-size: 4rem; color: var(--gold-2); }
.member figcaption { margin-top: 16px; }
.member strong { display: block; font-size: 1.1rem; letter-spacing: -.015em; }
.member span { font-size: 14px; color: var(--muted); }

/* ---------- Süreç ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.step { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, .16); }
.step-num { font-size: 14px; font-weight: 600; color: var(--gold-light); font-variant-numeric: tabular-nums; }
.step h3 { margin: 22px 0 10px; font-size: clamp(1.4rem, 2vw, 1.75rem); letter-spacing: -.03em; }
.step p { color: var(--on-dark-muted); line-height: 1.6; }

/* ---------- İletişim ---------- */
.contact-phone { margin-top: clamp(48px, 7vw, 96px); }
.contact-phone-link {
    display: inline-block; margin-top: 10px;
    font-family: var(--font-display); font-size: clamp(2.7rem, 9.5vw, 8rem); font-weight: 600; line-height: 1; letter-spacing: -.05em;
    font-variant-numeric: tabular-nums; transition: color .3s;
}
.contact-phone-link:hover { color: var(--gold); }
.contact-phone-alt { display: block; margin-top: 12px; font-size: 1.3rem; color: var(--muted); }
.contact-phone-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card {
    position: relative; display: flex; flex-direction: column; min-height: 220px; padding: 28px;
    border-radius: var(--radius); background: var(--surface); box-shadow: 0 0 0 1px var(--line-soft);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--line-soft), var(--shadow); }
.contact-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-alt); margin-bottom: auto; }
.contact-icon .icon { width: 22px; height: 22px; }
.contact-label { margin-top: 32px; font-size: 13px; color: var(--muted); }
.contact-value { margin-top: 4px; font-size: 1.05rem; font-weight: 500; line-height: 1.5; letter-spacing: -.01em; overflow-wrap: anywhere; }
.contact-go { position: absolute; top: 26px; right: 26px; color: var(--muted-2); transition: color .3s, transform .4s var(--ease); }
a.contact-card:hover .contact-go { color: var(--ink); transform: translate(3px, -3px); }
.contact-socials { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 28px; }
.contact-socials > span { margin-right: 8px; font-size: 14px; color: var(--muted); }
.contact-socials a { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; transition: box-shadow .25s; }
.contact-socials a:hover { box-shadow: inset 0 0 0 1px var(--ink); }

.not-found { min-height: 60vh; }

/* ---------- Alt bilgi ---------- */
.site-footer { padding-block: clamp(64px, 8vw, 110px) 32px; background: var(--dark); color: var(--on-dark-muted); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 40px; }
.brand--footer { color: #fff; }
.brand--footer .brand-sub { color: var(--on-dark-muted); }
.brand--footer .brand-logo--light { display: block; }
.brand--footer .brand-logo--light ~ .brand-logo--dark,
.brand--footer .brand-logo--dark:has(+ .brand-logo--light) { display: none; }
.brand--footer .brand-logo--dark:only-child { filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 22px; max-width: 36ch; font-size: 15px; line-height: 1.7; }
.site-footer h2 { margin-bottom: 20px; font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.footer-col li { margin-bottom: 12px; font-size: 15px; }
.footer-col a { transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.footer-contact .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--gold-light); }
.socials { display: flex; gap: 10px; margin-top: 26px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15); color: #fff; transition: background-color .3s, color .3s; }
.socials a:hover { background: #fff; color: var(--ink); }
.socials .icon { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; margin-top: clamp(48px, 6vw, 80px); padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13px; }

/* Mobil hızlı iletişim */
.quick-dock { display: none; }

/* ---------- Görünür olunca beliren öğeler ---------- */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1.15s var(--ease) var(--d, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ==========================================================================
   Duyarlı tasarım
   ========================================================================== */
@media (max-width: 1180px) {
    .main-nav { display: none; }
    .menu-toggle { display: grid; }
    .filter-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .filter-actions { grid-column: span 3; justify-content: flex-end; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .listing-layout { grid-template-columns: minmax(0, 1fr) 340px; }
}

@media (max-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .spotlight { grid-template-columns: 1fr; }
    .spotlight-media { min-height: 0; aspect-ratio: 16 / 10; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .category { aspect-ratio: 4 / 3; }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .hero-search-fields { grid-template-columns: 1fr 1fr; }
    .hs-field--grow { grid-column: span 2; border-top: 1px solid var(--line); }
    .hs-field--grow::before { display: none; }
    .hs-submit { grid-column: span 2; --h: 52px; margin: 0 8px 8px; }
}

@media (max-width: 900px) {
    body { font-size: 16px; }
    .intro-grid, .values-grid, .story-grid { grid-template-columns: 1fr; }
    .intro-media { aspect-ratio: 4 / 3; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .section-head--center { align-items: center; }

    .listing-head-grid { grid-template-columns: 1fr; align-items: start; gap: 20px; }
    .listing-head-price { text-align: left; }
    .listing-layout { grid-template-columns: 1fr; }
    .listing-aside { position: static; padding-top: 0; }
    .detail-table { grid-template-columns: 1fr; }

    .gallery { padding-inline: 0; }
    .gallery-grid {
        display: flex; height: auto; gap: 0; border-radius: 0;
        overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item, .gallery-item:nth-child(n+6) { display: block; flex: 0 0 100%; aspect-ratio: 4 / 3; scroll-snap-align: start; }
    .gallery-item:hover img { transform: none; }
    .gallery-ui { right: 16px; bottom: 16px; }
    .gallery-counter { display: inline-flex; }

    .js .filter-toggle { display: inline-flex; }
    .js .filter-panel { display: none; }
    .js .filter-panel.is-open { display: grid; }
    .filter-panel { grid-template-columns: 1fr 1fr; }
    .filter-actions { grid-column: span 2; }
    .filter-actions .btn { flex: 1; }

    .embed-map--wide { aspect-ratio: 4 / 3; }

    .quick-dock {
        position: fixed; left: 50%; bottom: calc(14px + env(safe-area-inset-bottom)); z-index: 60;
        display: flex; gap: 4px; padding: 5px; transform: translateX(-50%);
        border-radius: 999px; background: rgba(22, 22, 24, .86); -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%);
        box-shadow: var(--shadow-lg); transition: transform .5s var(--ease), opacity .4s;
    }
    .quick-dock a { display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 20px; border-radius: 999px; color: #fff; font-size: 14.5px; font-weight: 500; white-space: nowrap; }
    .quick-dock a:first-child { background: #fff; color: var(--ink); }
    .quick-dock .icon { width: 18px; height: 18px; }
    .quick-dock.is-hidden { transform: translate(-50%, 160%); opacity: 0; }
    .site-footer { padding-bottom: 110px; }

    .page-listing .quick-dock { display: none; }
    .listing-bar {
        position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60;
        display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 20px;
        border-radius: 22px; background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 0 0 1px var(--line-soft), var(--shadow-lg);
    }
    .listing-bar-price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
    .listing-bar-note { font-size: 12px; color: var(--muted); }
    .listing-bar-actions { display: flex; gap: 8px; }
    .listing-bar .btn { --h: 48px; }
}

@media (max-width: 700px) {
    :root { --header-h: 60px; }
    .card-grid--3 { grid-template-columns: 1fr; }
    .btn-header span { display: none; }
    .btn-header { width: 40px; padding: 0; }
    .hero-title { font-size: clamp(2.7rem, 13vw, 4rem); }
    .hero-scroll { display: none; }
    .hero-actions .btn { flex: 1 1 auto; }
    .hero-search { padding: 8px; border-radius: 22px; }
    .hero-search-fields { grid-template-columns: 1fr; }
    .hs-field + .hs-field::before { display: none; }
    .hs-field + .hs-field { border-top: 1px solid var(--line); }
    .hs-field--grow, .hs-submit { grid-column: auto; }
    .hs-field { padding: 10px 18px; }
    .service-grid { grid-template-columns: 1fr; }
    .categories { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
    .categories::-webkit-scrollbar { display: none; }
    .category { flex: 0 0 76%; aspect-ratio: 3 / 4; scroll-snap-align: start; }
    .steps { grid-template-columns: 1fr; row-gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { min-height: 0; }
    .contact-label { margin-top: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .wide-media { aspect-ratio: 4 / 3; }
    .spotlight-specs { grid-template-columns: repeat(3, 1fr); }
    .spotlight-foot .btn { width: 100%; }
    .filter-bar { border-radius: 20px; }
    .seg--links { width: 100%; }
    .seg--links a { flex: 1; text-align: center; }
    .filter-search { flex: 1 1 0; min-width: 0; }
    .keyfacts { grid-template-columns: repeat(2, 1fr); }
    .agent-card { padding: 24px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats--boxed .stat { padding: 24px; }
    .lb-prev, .lb-next { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .hero-anim { opacity: 1; transform: none; }
    .js .reveal { opacity: 1; transform: none; }
    .statement-text .w { opacity: 1; }
}

@media print {
    .site-header, .quick-dock, .listing-bar, .gallery-ui, .agent-share, .site-footer, .cta-section { display: none !important; }
    body:not(.has-overlay) main { padding-top: 0; }
}

.menu-open .quick-dock, .menu-open .listing-bar { display: none !important; }
