/* ============================================================
 * kodbizde.com tarafından yapılmıştır
 * ============================================================ */
/* =========================================================
   goldengolbyatlas — Premium Gayrimenkul
   Ultra-professional black & gold editorial design system
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Palette */
    --ink: #151515;
    --ink-02: #1C1C1C;
    --ink-03: #232323;
    --ink-04: #2A2A2A;
    --ink-05: #333333;
    --line: #363636;
    --line-soft: #2A2A2A;

    --gold: #C9A961;
    --gold-bright: #D4B776;
    --gold-deep: #9E854A;
    --gold-mute: #6B5A33;

    --paper: #F5F1EA;
    --paper-02: #EDE7DC;
    --mute: #8A8580;
    --mute-02: #A8A299;

    /* Type */
    --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;

    /* Rhythm */
    --container: 1360px;
    --gutter: clamp(20px, 4vw, 56px);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--paper);
    background: var(--ink);
    font-weight: 300;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ---------- Typography ---------- */
.display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.02;
}

h1.display {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h1.display em,
h2.display em,
h3.display em {
    font-style: normal;
    color: var(--gold);
    font-weight: 500;
}

h2.display {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3.display {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mute-02);
    max-width: 62ch;
    font-weight: 300;
}

.muted {
    color: var(--mute);
}

.rule {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 14px;
}

.hairline {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
    border: none;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(48px, 7vw, 96px);
}

.section-head .eyebrow {
    display: block;
    margin-bottom: 18px;
}

@media (max-width: 860px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ---------- Demo Banner ---------- */
.demo-banner {
    background: var(--gold);
    color: var(--ink);
    padding: 9px 0;
    position: relative;
    z-index: 99;
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.demo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
}

.demo-banner-inner .dot {
    width: 5px;
    height: 5px;
    background: var(--ink);
    border-radius: 50%;
    animation: demoPulse 1.4s ease-in-out infinite;
}

.demo-banner-inner b {
    font-weight: 600;
    letter-spacing: 0.3em;
}

.demo-banner-inner span.sep {
    color: rgba(10, 10, 10, 0.5);
}

.demo-banner-inner a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.demo-banner-inner a:hover {
    opacity: 0.65;
}

@keyframes demoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

/* Brand demo chip */
.brand-demo {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-left: 10px;
    align-self: center;
    line-height: 1;
    height: fit-content;
    position: relative;
    top: -2px;
}

.footer-brand .brand-demo {
    margin-left: 12px;
    font-size: 10px;
    top: -4px;
}

@media (max-width: 600px) {
    .demo-banner-inner {
        font-size: 10px;
        letter-spacing: 0.18em;
    }
    .demo-banner-inner .sep { display: none; }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 26px 0;
    transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 18px 0;
    border-bottom-color: var(--line-soft);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--paper);
}

.brand-mark {
    color: var(--gold);
}

/* Logo modu — yazı yerine resim */
.brand.brand-logo {
    padding: 0;
    line-height: 0;
}
.brand.brand-logo img {
    height: 40px;
    width: auto;
    max-width: 280px;
    display: block;
}
.nav.scrolled .brand.brand-logo img { height: 36px; }
@media (max-width: 600px) {
    .brand.brand-logo img { height: 34px; max-width: 200px; }
}

.brand-sub {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paper);
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.nav-cta {
    border: 1px solid var(--gold-mute);
    padding: 9px 18px;
    color: var(--gold);
    margin-left: 6px;
    transition: all 0.4s var(--ease);
}

.nav-menu a.nav-cta::after { display: none; }

.nav-menu a.nav-cta:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.nav-menu a.nav-cta.active {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--paper);
    letter-spacing: 0.02em;
}

.nav-phone:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.nav-toggle span:nth-child(1) {
    top: 3px;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
}

.nav-toggle span:nth-child(3) {
    bottom: 3px;
}

.nav-toggle.open span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(1px) rotate(-45deg);
}

@media (max-width: 980px) {
    .nav-menu,
    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu.mobile-open {
        display: flex;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--ink);
        flex-direction: column;
        padding: 40px var(--gutter);
        gap: 24px;
        border-top: 1px solid var(--line-soft);
        border-bottom: 1px solid var(--line-soft);
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.btn:hover {
    color: var(--ink);
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-solid {
    background: var(--gold);
    color: var(--ink);
}

.btn-solid::before {
    background: var(--gold-bright);
}

.btn-solid:hover {
    color: var(--ink);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--paper);
}

.btn-ghost::before {
    background: var(--paper);
}

.btn-ghost:hover {
    color: var(--ink);
}

.btn .arrow {
    display: inline-block;
    width: 18px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.4s var(--ease);
}

.btn .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: currentColor;
    transform-origin: right center;
    transform: rotate(45deg) translateY(-2px);
}

.btn .arrow::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: currentColor;
    transform-origin: right center;
    transform: rotate(-45deg) translateY(2px);
}

.btn:hover .arrow {
    width: 26px;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gold-mute);
    transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}

.link-more:hover {
    border-color: var(--gold);
    gap: 20px;
}

/* ---------- Hero Slider ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: clamp(140px, 18vh, 180px);
    padding-bottom: clamp(100px, 12vh, 140px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease), visibility 0s linear 1.1s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.1s var(--ease), visibility 0s linear 0s;
    z-index: 2;
}

.hero-slide .slide-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-slide .slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.05);
    transform: scale(1.08);
    transition: transform 6s var(--ease);
}

.hero-slide.active .slide-media img {
    transform: scale(1);
}

.hero-slide .slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(21, 21, 21, 0.35) 0%, transparent 30%, transparent 55%, var(--ink) 100%),
        linear-gradient(90deg, rgba(21, 21, 21, 0.55), transparent 50%);
}

.hero-slide .hero-content {
    opacity: 0;
    transition: opacity 1s var(--ease) 0.2s, transform 1s var(--ease) 0.2s;
    transform: translateY(30px);
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Counter & controls */
.hero-counter {
    position: absolute;
    left: var(--gutter);
    bottom: clamp(36px, 5vh, 56px);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--mute);
    z-index: 4;
}

.hero-counter .current {
    color: var(--gold);
    font-size: 16px;
    font-weight: 500;
}

.hero-counter .progress {
    width: 80px;
    height: 1px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.hero-counter .progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.6s var(--ease);
}

.hero-prev {
    position: absolute;
    left: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 21, 21, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    color: var(--paper);
    transition: all 0.4s var(--ease);
    z-index: 5;
    font-size: 18px;
}

.hero-prev:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(21, 21, 21, 0.9);
}

@media (max-width: 860px) {
    .hero-prev { display: none; }
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.05);
    animation: heroScale 16s var(--ease) forwards;
}

@keyframes heroScale {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 30%, transparent 55%, var(--ink) 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.55), transparent 50%);
}

.hero-content {
    position: relative;
    max-width: 880px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero-eyebrow::before {
    content: "";
    width: 56px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    opacity: 0;
    animation: rise 1s var(--ease) 0.5s forwards;
}

.hero-lede {
    margin-top: 28px;
    max-width: 520px;
    opacity: 0;
    animation: rise 1s var(--ease) 0.7s forwards;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 1s var(--ease) 0.9s forwards;
}

.hero-meta {
    display: none;
}

/* Tumblr-style next preview (top-right of hero, above search bar) */
.hero-next {
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px 14px 14px;
    background: rgba(21, 21, 21, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease);
    opacity: 0;
    animation: riseRight 1s var(--ease) 1.1s forwards;
    max-width: 340px;
    z-index: 3;
}

@keyframes riseRight {
    from { opacity: 0; transform: translateY(calc(-50% + 20px)); }
    to { opacity: 1; transform: translateY(-50%); }
}

.hero-next:hover {
    border-color: var(--gold);
    background: rgba(21, 21, 21, 0.92);
    transform: translateY(calc(-50% - 2px));
}

.hero-next .thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.hero-next .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.hero-next:hover .thumb img {
    transform: scale(1.08);
}

.hero-next .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.hero-next .label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-next .title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--paper);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-next .arrow {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
}

.hero-next:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .hero-next {
        max-width: 260px;
        padding: 10px 14px 10px 10px;
        gap: 12px;
    }
    .hero-next .thumb {
        width: 48px;
        height: 48px;
    }
    .hero-next .title {
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .hero-next {
        display: none;
    }
    .hero-counter {
        bottom: 20px;
    }
}

/* Dual CTA — Sell / Career */
.dual-cta {
    padding: clamp(70px, 10vw, 120px) 0;
    background: var(--ink-02);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.dual-cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(.18) brightness(.65) contrast(1.05);
}
.dual-cta-bg-overlay {
    position: absolute; inset: 0;
    z-index: 1; pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15,15,17,.55) 0%, rgba(15,15,17,.78) 100%),
        radial-gradient(60% 55% at 50% 30%, rgba(201,169,97,.10), transparent 70%);
}
.dual-cta:not(.has-bg) .dual-cta-bg,
.dual-cta:not(.has-bg) .dual-cta-bg-overlay { display: none; }
.dual-cta .container { position: relative; z-index: 2; }

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
}

@media (max-width: 860px) {
    .dual-cta-grid { grid-template-columns: 1fr; }
}

.dual-col {
    padding: clamp(40px, 5vw, 72px);
    background: var(--ink);
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: background 0.5s var(--ease);
}

.dual-col:last-child { border-right: none; }

@media (max-width: 860px) {
    .dual-col {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .dual-col:last-child { border-bottom: none; }
}

.dual-col:hover {
    background: var(--ink-02);
}

.dual-col .num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 40px;
    display: block;
}

.dual-col h3 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--paper);
}

.dual-col p {
    color: var(--mute-02);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 48ch;
}

/* Sell / Career form pages */
.form-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 5vw, 80px);
    padding-bottom: clamp(40px, 6vw, 72px);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(40px, 6vw, 72px);
}

@media (max-width: 860px) {
    .form-intro { grid-template-columns: 1fr; }
}

.form-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 40px 0 72px;
    border: 1px solid var(--line);
}

@media (max-width: 720px) {
    .form-steps { grid-template-columns: 1fr; }
}

.form-step {
    padding: 32px;
    border-right: 1px solid var(--line);
}

.form-step:last-child { border-right: none; }

@media (max-width: 720px) {
    .form-step {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .form-step:last-child { border-bottom: none; }
}

.form-step .step-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.form-step h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--paper);
}

.form-step p {
    color: var(--mute);
    font-size: 13px;
    line-height: 1.7;
}

.big-form {
    background: var(--ink-02);
    border: 1px solid var(--line);
    padding: clamp(32px, 5vw, 64px);
}

.big-form h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.big-form .field-lg input[type="file"] {
    font-size: 13px;
    color: var(--mute-02);
    padding: 6px 0;
}

.big-form .field-lg input[type="file"]::file-selector-button {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--paper);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-right: 16px;
    cursor: pointer;
    font-family: var(--sans);
}

.big-form .field-lg input[type="file"]::file-selector-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-meta span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
}

.hero-meta strong {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.01em;
}

@media (max-width: 720px) {
    .hero-meta { display: none; }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-cue { display: none; }

.scroll-cue .line {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--gold-mute), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-cue .line::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ---------- Search Bar ---------- */
.search {
    position: relative;
    margin-top: -48px;
    z-index: 10;
    padding-bottom: 20px;
}

.search-inner {
    background: var(--ink-03);
    border: 1px solid var(--line-soft);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
    gap: 0;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}

.search-field {
    padding: 22px 24px;
    border-right: 1px solid var(--line-soft);
    position: relative;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--paper);
    font-size: 15px;
    font-family: var(--sans);
    font-weight: 300;
    letter-spacing: 0.01em;
    appearance: none;
    cursor: pointer;
}

.search-field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                      linear-gradient(-45deg, transparent 50%, var(--gold) 50%);
    background-position: calc(100% - 12px) 12px, calc(100% - 6px) 12px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 24px;
}

.search-field select option {
    background: var(--ink-03);
    color: var(--paper);
}

.search-submit {
    background: var(--gold);
    color: var(--ink);
    padding: 0 44px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: background 0.4s var(--ease);
}

.search-submit:hover {
    background: var(--gold-bright);
}

@media (max-width: 980px) {
    .search-inner {
        grid-template-columns: 1fr 1fr;
    }

    .search-field {
        border-bottom: 1px solid var(--line-soft);
    }

    .search-field:nth-child(odd) {
        border-right: 1px solid var(--line-soft);
    }

    .search-field:nth-child(even) {
        border-right: none;
    }

    .search-submit {
        grid-column: 1 / -1;
        padding: 22px;
    }
}

/* ---------- Marquee Band (horizontal moving text) ---------- */
.marquee {
    padding: clamp(28px, 4vw, 44px) 0;
    background: linear-gradient(180deg, var(--ink-02) 0%, var(--ink-03) 100%);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeFlow 46s linear infinite;
    gap: 60px;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-mute);
    white-space: nowrap;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
}

.marquee-track span::after {
    content: "◆";
    color: var(--gold);
    -webkit-text-stroke: 0;
    font-size: 0.35em;
    margin-left: 30px;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeFlow {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Light / Parchment Section (inverted contrast) ---------- */
.section-light {
    background: linear-gradient(180deg, #F5F1EA 0%, #EDE7DC 100%);
    color: var(--ink);
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
    overflow: hidden;
}

.section-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(158, 133, 74, 0.4), transparent);
}

.section-light::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(158, 133, 74, 0.4), transparent);
}

.section-light .eyebrow { color: var(--gold-deep); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--ink); }
.section-light h1.display em, .section-light h2.display em, .section-light h3.display em {
    color: var(--gold-deep);
}
.section-light .lede { color: #5A564E; }
.section-light p { color: #3A3834; }

.section-light .btn {
    border-color: var(--ink);
    color: var(--ink);
}

.section-light .btn::before { background: var(--ink); }

.section-light .btn:hover { color: var(--paper); }

.section-light .btn-solid {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.section-light .story-sig b { color: var(--ink); }
.section-light .story-sig span { color: #7A746A; }
.section-light .story-sig { border-top-color: rgba(10, 10, 10, 0.15); }
.section-light .link-more { color: var(--gold-deep); border-color: rgba(158, 133, 74, 0.4); }
.section-light .link-more:hover { border-color: var(--gold-deep); }

.section-light .story-media::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(158, 133, 74, 0.35);
    pointer-events: none;
}

/* Gradient accent band (subtle animated glow) */
.accent-band {
    position: relative;
    background: var(--ink);
    overflow: hidden;
}

.accent-band::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: accentDrift 12s ease-in-out infinite alternate;
}

@keyframes accentDrift {
    from { transform: translate(-55%, -55%); opacity: 0.6; }
    to { transform: translate(-45%, -45%); opacity: 1; }
}

/* ---------- Featured Listings ---------- */
.listings-grid {
    display: grid;
    /* auto-fill ile boş slotlar korunur, max=380px ile tek kartta bile büyümez */
    grid-template-columns: repeat(auto-fill, minmax(290px, 380px));
    gap: clamp(24px, 3vw, 40px);
    /* Az kart varken sayfa ortasında yığılsın */
    justify-content: center;
}

.listings-grid.cols-2 {
    grid-template-columns: repeat(auto-fill, minmax(380px, 480px));
}

.card {
    background: var(--ink-02);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--line);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--ink-03);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}

.card:hover .card-media img {
    transform: scale(1.04);
}

/* Badges (top-left) */
.card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    line-height: 1;
}

.badge-gold {
    background: var(--gold);
    color: var(--ink);
}

.badge-outline {
    background: rgba(21, 21, 21, 0.7);
    color: var(--paper);
    border: 1px solid var(--line);
}

.badge-red {
    background: #8E3A3A;
    color: var(--paper);
}

.badge-new {
    background: rgba(21, 21, 21, 0.75);
    color: var(--gold);
    border: 1px solid var(--gold-mute);
}

/* Favorite button (top-right) */
.card-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 21, 21, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    color: var(--paper);
    transition: all 0.4s var(--ease);
    z-index: 2;
    cursor: pointer;
}

.card-fav:hover {
    background: var(--ink);
    border-color: var(--gold);
    color: var(--gold);
}

.card-fav.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.card-fav svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease);
}

.card-fav:hover svg {
    transform: scale(1.15);
}

.card-fav.active svg {
    fill: currentColor;
}

/* Kept for backward compat, now hidden */
.card-tag,
.card-ref {
    display: none;
}

.card-body {
    padding: 24px 22px 22px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 14px;
}

.card-meta .dot {
    width: 3px;
    height: 3px;
    background: var(--gold-mute);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-meta .tag {
    color: var(--gold);
}

.card-topmeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.card-topmeta .ref {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--mute);
}

.card-loc {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.card-topmeta .card-loc {
    margin-bottom: 0;
}

.card-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin-bottom: 14px;
    color: var(--paper);
}

.card-title a:hover {
    color: var(--gold);
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
    border: none;
}

.card-specs li {
    flex: 0 0 auto;
    padding: 0;
    border: none;
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    color: var(--mute-02);
    letter-spacing: 0.02em;
}

.card-specs li:not(:last-child)::after {
    content: "·";
    margin: 0 10px;
    color: var(--line);
}

.card-specs b {
    display: inline;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: 0.02em;
    margin-right: 4px;
}

.card-specs span {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--mute);
    font-weight: 400;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}

.card-price {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: 0;
    line-height: 1;
}

.card-price span {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mute);
    margin-left: 6px;
    font-weight: 400;
}

.card-cta {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: none;
    padding-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.4s var(--ease);
}

.card-cta::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.4s var(--ease);
}

.card:hover .card-cta::after {
    transform: translateX(4px);
}

/* ---------- Small card variant (listings page) ---------- */
.listings-grid.cards-sm {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.cards-sm .card-media {
    aspect-ratio: 3 / 2;
}

.cards-sm .card-body {
    padding: 16px 16px 18px;
}

.cards-sm .card-topmeta {
    margin-bottom: 8px;
    gap: 8px;
}

.cards-sm .card-loc {
    font-size: 10px;
    letter-spacing: 0.22em;
}

.cards-sm .card-topmeta .ref {
    font-size: 9px;
}

.cards-sm .card-title {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cards-sm .card-specs {
    margin-bottom: 14px;
}

.cards-sm .card-specs li,
.cards-sm .card-specs b,
.cards-sm .card-specs span {
    font-size: 12px;
}

.cards-sm .card-specs li:not(:last-child)::after {
    margin: 0 7px;
}

.cards-sm .card-foot {
    padding-top: 12px;
}

.cards-sm .card-price {
    font-size: 15px;
}

.cards-sm .card-price span {
    font-size: 10px;
    margin-left: 4px;
}

.cards-sm .card-cta {
    font-size: 10px;
    letter-spacing: 0.2em;
}

.cards-sm .badge {
    font-size: 9px;
    padding: 5px 9px;
    letter-spacing: 0.18em;
}

.cards-sm .card-fav {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
}

.cards-sm .card-fav svg {
    width: 13px;
    height: 13px;
}

.cards-sm .card-badges {
    top: 10px;
    left: 10px;
    gap: 4px;
}

/* ---------- Listings Layout (sidebar + grid) ---------- */
.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: flex-start;
}

.filter-panel {
    position: sticky;
    top: 100px;
    background: var(--ink-02);
    border: 1px solid var(--line-soft);
    padding: 28px 24px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Mobile toggle button (hidden on desktop) */
.filter-toggle-mobile {
    display: none;
}

.filter-backdrop {
    display: none;
}

/* ---------- Pagination ---------- */
.ll-pager {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ll-pager-info {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mute);
    font-family: var(--mono, monospace);
}
.ll-pager-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.ll-pager-btn {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--line-soft);
    color: var(--paper);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    font-family: var(--sans);
    cursor: pointer;
    line-height: 1;
    min-width: 42px;
    text-align: center;
    display: inline-block;
}
.ll-pager-btn:hover:not(.is-disabled):not(.is-active) {
    border-color: var(--gold);
    color: var(--gold);
}
.ll-pager-btn.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink, #1a1a1a);
    font-weight: 600;
    cursor: default;
}
.ll-pager-btn.is-disabled {
    color: var(--mute);
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.ll-pager-gap {
    color: var(--mute);
    font-size: 12px;
    padding: 0 4px;
    letter-spacing: 0.15em;
}

@media (max-width: 600px) {
    .ll-pager { flex-direction: column; align-items: stretch; gap: 16px; }
    .ll-pager-info { text-align: center; }
    .ll-pager-nav  { justify-content: center; }
    .ll-pager-btn  { padding: 9px 12px; font-size: 11px; }
}

@media (max-width: 1060px) {
    .listings-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Turn filter panel into a right-side drawer on mobile */
    .filter-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(380px, 88vw);
        height: 100vh;
        max-height: 100vh;
        z-index: 140;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        border: none;
        border-left: 1px solid var(--line);
        padding: 0;
        overflow: hidden;
        box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
    }

    .filter-panel.open {
        transform: translateX(0);
    }

    /* Scrollable content area inside drawer */
    .filter-panel-scroll {
        flex: 1;
        overflow-y: auto;
        padding: 64px 24px 24px;
        -webkit-overflow-scrolling: touch;
    }

    /* Fixed close/apply bar at bottom of drawer */
    .filter-panel-mobile-foot {
        flex-shrink: 0;
        display: flex;
        gap: 8px;
        padding: 14px 16px;
        background: var(--ink);
        border-top: 1px solid var(--line);
    }

    .filter-panel-mobile-foot button {
        flex: 1;
        padding: 14px;
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        font-weight: 500;
        border: 1px solid var(--line);
        color: var(--paper);
        background: transparent;
        transition: all 0.3s var(--ease);
        cursor: pointer;
    }

    .filter-panel-mobile-foot button:hover {
        border-color: var(--gold-mute);
        color: var(--gold);
    }

    .filter-panel-mobile-foot button.primary {
        background: var(--gold);
        color: var(--ink);
        border-color: var(--gold);
    }

    .filter-panel-mobile-foot button.primary:hover {
        background: var(--gold-bright);
        color: var(--ink);
    }

    /* Close X inside drawer — top right */
    .filter-drawer-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--ink);
        border: 1px solid var(--line);
        color: var(--paper);
        font-size: 16px;
        transition: all 0.3s var(--ease);
        cursor: pointer;
        z-index: 5;
    }

    .filter-drawer-close:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    /* Hide the in-panel "Filtreleri Uygula" button on mobile (sticky bar takes over) */
    .filter-panel .filter-actions {
        display: none;
    }

    /* Mobile filter trigger row */
    .filter-toggle-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 18px;
        background: var(--ink-02);
        border: 1px solid var(--line-soft);
        margin-bottom: 20px;
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--paper);
        cursor: pointer;
        width: 100%;
    }

    .filter-toggle-mobile:hover {
        border-color: var(--gold-mute);
    }

    .filter-toggle-mobile .filter-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
        height: 22px;
        padding: 0 7px;
        background: var(--gold);
        color: var(--ink);
        font-family: var(--mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0;
    }

    .filter-toggle-mobile .lines {
        display: inline-flex;
        flex-direction: column;
        gap: 3px;
        width: 16px;
    }

    .filter-toggle-mobile .lines span {
        height: 1px;
        background: var(--gold);
        display: block;
    }

    .filter-toggle-mobile .lines span:nth-child(1) { width: 100%; }
    .filter-toggle-mobile .lines span:nth-child(2) { width: 70%; }
    .filter-toggle-mobile .lines span:nth-child(3) { width: 40%; }

    /* Backdrop when drawer open */
    .filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
        z-index: 130;
    }

    .filter-backdrop.open {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s var(--ease), visibility 0s linear 0s;
    }

    /* Hide listing topbar sort on small mobile, rely on drawer */
    .listings-topbar .sort-group {
        font-size: 10px;
    }
}

/* Desktop: hide mobile-only drawer elements */
@media (min-width: 1061px) {
    .filter-drawer-close,
    .filter-panel-mobile-foot {
        display: none;
    }
}

.filter-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
}

.filter-panel-head h3 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--paper);
}

.filter-panel-head .reset {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}

.filter-panel-head .reset:hover {
    color: var(--gold);
}

.filter-group {
    padding: 20px 0;
    border-bottom: 1px solid var(--line-soft);
}

.filter-group:last-of-type { border-bottom: none; }

.filter-group h4 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.filter-input {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--line-soft);
    color: var(--paper);
    padding: 10px 12px;
    font-family: var(--sans);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.filter-input:focus {
    border-color: var(--gold-mute);
}

.filter-input::placeholder {
    color: var(--mute);
    font-weight: 300;
}

.filter-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--paper);
    cursor: pointer;
    font-weight: 300;
    transition: color 0.3s var(--ease);
}

.filter-list label:hover {
    color: var(--gold);
}

.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid var(--line);
    background: var(--ink);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.filter-list input[type="radio"] {
    border-radius: 50%;
}

.filter-list input[type="checkbox"]:checked,
.filter-list input[type="radio"]:checked {
    border-color: var(--gold);
    background: var(--gold);
}

.filter-list input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid var(--ink);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.filter-list input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--ink);
    border-radius: 50%;
}

.filter-list .count {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    padding: 7px 12px;
    background: var(--ink);
    border: 1px solid var(--line-soft);
    color: var(--paper);
    font-size: 11px;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-weight: 400;
}

.filter-tag:hover,
.filter-tag.active {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

.listings-main {
    min-width: 0;
}

.listings-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
    flex-wrap: wrap;
}

.listings-topbar .count-line {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mute);
}

.listings-topbar .count-line b {
    color: var(--gold);
    font-weight: 500;
    font-family: var(--mono);
    margin-right: 4px;
}

.listings-topbar .sort-group {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
}

.listings-topbar .sort-group select {
    background: transparent;
    border: 1px solid var(--line-soft);
    color: var(--paper);
    padding: 8px 28px 8px 12px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                      linear-gradient(-45deg, transparent 50%, var(--gold) 50%);
    background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.listings-topbar .sort-group select option { background: var(--ink-02); }

.view-toggle {
    display: flex;
    gap: 4px;
    margin-left: 16px;
}

.view-toggle button {
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid var(--line-soft);
    color: var(--mute);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.view-toggle button.active,
.view-toggle button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------- Signature Listing ---------- */
.signature {
    background: var(--ink-02);
    padding: clamp(60px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}

.signature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-mute), transparent);
}

.signature-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

@media (max-width: 960px) {
    .signature-grid { grid-template-columns: 1fr; }
}

.signature-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.signature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-media::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    pointer-events: none;
}

.signature-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-mute);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-align: center;
}

.signature-badge span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1.4;
}

.signature-badge strong {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 4px 0;
}

.signature-body .eyebrow {
    margin-bottom: 20px;
    display: block;
}

.signature-body h2 {
    margin-bottom: 28px;
}

.signature-body h2 em {
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
}

.signature-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 40px 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.signature-specs li {
    list-style: none;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signature-specs span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
}

.signature-specs b {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--paper);
}

.signature-price {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    margin-bottom: 32px;
}

.signature-price strong {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.signature-price span {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
}

/* ---------- Services / Columns ---------- */
.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.column {
    padding: 48px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.5s var(--ease);
}

.column:hover {
    background: var(--ink-02);
}

.column-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 40px;
}

.column h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--paper);
}

.column p {
    color: var(--mute-02);
    font-size: 14px;
    line-height: 1.75;
}

/* ---------- Stats ---------- */
.stats {
    background: var(--ink-02);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

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

.stat {
    padding: 64px 32px;
    text-align: center;
    border-right: 1px solid var(--line-soft);
    position: relative;
}

.stat:last-child { border-right: none; }

@media (max-width: 860px) {
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.stat span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
}

/* ---------- Story / About ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}

@media (max-width: 960px) {
    .story-grid { grid-template-columns: 1fr; }
}

.story-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-body {
    padding-top: clamp(20px, 4vw, 60px);
}

.story-body h2 {
    margin-bottom: 32px;
}

.story-body h2 em {
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
}

.story-body p {
    color: var(--mute-02);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.story-sig {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-sig b {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: 0.02em;
}

.story-sig span {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mute);
}

/* ---------- Testimonial ---------- */
.testimonial {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.testimonial-quote {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 500;
    font-style: normal;
    line-height: 1.4;
    color: var(--paper);
    position: relative;
    padding: 0 20px;
}

.testimonial-quote::before {
    content: "“";
    position: absolute;
    left: -20px;
    top: -40px;
    font-size: 7rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
}

.testimonial-author {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.testimonial-author b {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: 0.02em;
}

.testimonial-author span {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
}

/* Slider — birden fazla yorum varsa aynı alanda fade ile döner */
.testimonial-stage {
    position: relative;
    min-height: 220px;
}
.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s var(--ease), visibility 0s linear .6s;
}
.testimonial-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .9s var(--ease), visibility 0s linear 0s;
    position: relative;
    inset: auto;
}
.testimonial-dots {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.testimonial-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.testimonial-dot:hover { border-color: var(--gold); }
.testimonial-dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    isolation: isolate;
    padding: clamp(80px, 12vw, 140px) 0;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=85") center/cover;
    filter: brightness(0.28) contrast(1.1);
    z-index: -2;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ink) 0%, transparent 20%, transparent 80%, var(--ink) 100%);
    z-index: -1;
}

.cta-banner .container {
    text-align: center;
    max-width: 780px;
}

.cta-banner h2 {
    margin: 24px 0 32px;
}

.cta-banner h2 em {
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
}

.cta-banner .actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink-02);
    border-top: 1px solid var(--line);
    padding: clamp(60px, 8vw, 96px) 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--line-soft);
}

@media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > *:first-child { grid-column: 1 / -1; }
}

.footer-brand {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-brand em {
    color: var(--gold);
    font-style: normal;
}

/* ---------- Legal documents (gizlilik, kvkk, kullanım) ---------- */
.legal-doc {
    max-width: 760px;
    margin: 0 auto;
    color: var(--paper);
    font-size: 15px;
    line-height: 1.75;
}
.legal-doc .lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mute);
    border-left: 2px solid var(--gold);
    padding-left: 22px;
    margin: 0 0 56px;
    font-style: italic;
}
.legal-doc h2 {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 500;
    color: var(--paper);
    margin: 56px 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
    letter-spacing: -0.005em;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p { margin: 0 0 18px; color: var(--mute); }
.legal-doc ul {
    margin: 0 0 22px;
    padding-left: 22px;
    color: var(--mute);
}
.legal-doc ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}
.legal-doc ul li::marker { color: var(--gold); }
.legal-doc b, .legal-doc strong {
    color: var(--paper);
    font-weight: 500;
}
.legal-doc em { color: var(--gold); font-style: italic; }
.legal-doc a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s var(--ease);
}
.legal-doc a:hover { opacity: 0.7; }

.legal-contact {
    background: var(--ink-02);
    border: 1px solid var(--line-soft);
    border-left: 2px solid var(--gold);
    padding: 22px 26px;
    color: var(--paper) !important;
    line-height: 1.9;
    font-size: 14px;
    margin: 22px 0 !important;
}
.legal-fine {
    margin-top: 56px !important;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    font-size: 12px !important;
    color: var(--mute);
    opacity: 0.7;
    font-style: italic;
}

/* Footer logo modu */
.footer-brand-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 20px;
    text-decoration: none;
}
.footer-brand-logo img {
    height: 44px;
    width: auto;
    max-width: 320px;
    display: block;
}

.footer-tag {
    color: var(--mute);
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 28px;
}

.footer h4 {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 22px;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul a {
    color: var(--paper);
    font-size: 14px;
    font-weight: 300;
}

.footer ul a:hover { color: var(--gold); }

.footer address {
    font-style: normal;
    color: var(--paper);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
}

.footer address a { display: block; }
.footer address a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mute);
}

.footer-credit {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mute);
}

.footer-credit a {
    color: var(--gold);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s var(--ease);
}

.footer-credit a:hover {
    border-color: var(--gold);
}

.footer-credit .sep {
    color: var(--line);
}

.footer-credit-logo {
    border: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transition: opacity 0.3s var(--ease);
}
.footer-credit-logo:hover { opacity: .75; }
.footer-credit-logo img {
    height: 26px;
    width: auto;
    display: block;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--mute);
    transition: color 0.3s var(--ease);
}
.footer-legal-links a:hover { color: var(--gold); }

.footer-social a:hover { color: var(--gold); }

/* ---------- Page Header ---------- */
.page-head {
    padding-top: 180px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
/* Arka plan görseli — admin tarafından set edilince devreye girer */
.page-head.has-bg {
    padding-top: clamp(160px, 24vw, 220px);
    padding-bottom: clamp(60px, 8vw, 100px);
    min-height: clamp(360px, 45vh, 520px);
    border-bottom: 1px solid rgba(201,169,97,.25);
    background: var(--ink, #0d0d0e);
}
/* Görsel katmanı — explicit child div */
.page-head-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(.18) brightness(.78) contrast(1.05) sepia(.06);
    transform: scale(1.04);
}
/* Overlay katmanı — degrade + altın hâle */
.page-head-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.30) 45%, rgba(10,10,10,.85) 100%),
        radial-gradient(60% 55% at 50% 30%, rgba(201,169,97,.12), transparent 70%);
}
/* Görsel olmadığında bg/overlay gizle */
.page-head:not(.has-bg) .page-head-bg,
.page-head:not(.has-bg) .page-head-overlay { display: none; }
/* İçerik üstte */
.page-head .container { position: relative; z-index: 2; }
.page-head.has-bg h1,
.page-head.has-bg .eyebrow,
.page-head.has-bg .breadcrumb {
    text-shadow: 0 2px 14px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5);
}

.page-head .eyebrow {
    display: block;
    margin-bottom: 20px;
}

.page-head h1 {
    max-width: 14ch;
}

.page-head h1 em {
    font-style: normal;
    color: var(--gold);
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 32px;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Filter Bar ---------- */
.filter-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
    background: var(--ink-02);
    position: sticky;
    top: 72px;
    z-index: 20;
}

.filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--paper);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
}

.chip:hover,
.chip.active {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mute);
}

.filter-sort select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
    padding: 4px 20px 4px 0;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                      linear-gradient(-45deg, transparent 50%, var(--gold) 50%);
    background-position: calc(100% - 8px) 50%, calc(100% - 3px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.filter-sort select option {
    background: var(--ink-02);
}

/* ---------- Detail Page ---------- */
.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    /* Sabit yükseklik — kaynak görselin aspect-ratio'su ne olursa olsun
       galeri her zaman aynı boyutlarda kalır. Object-fit: cover ile
       portre fotoğraflar otomatik kırpılır. */
    height: clamp(380px, 42vw, 540px);
    margin-top: 40px;
    margin-bottom: 60px;
}

.detail-gallery > div {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.detail-gallery .primary {
    height: 100%;
}

.detail-gallery .secondary {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

.detail-gallery .secondary > div {
    min-height: 0; /* grid item'ın aşırı uzamasını engeller */
    height: 100%;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s var(--ease);
    display: block;
}

.detail-gallery > div:hover img {
    transform: scale(1.04);
}

/* "+N fotoğraf" overlay'i — 3. (son) secondary thumbnail'da */
.detail-gallery .more-photos {
    cursor: pointer;
    position: relative;
}
.detail-gallery .more-photos .more-photos-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(10, 10, 10, .55);
    color: var(--paper);
    font-family: var(--serif);
    pointer-events: none;
    transition: background .35s var(--ease);
}
.detail-gallery .more-photos:hover .more-photos-overlay {
    background: rgba(10, 10, 10, .75);
}
.detail-gallery .more-photos .more-num {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
    color: var(--gold);
}
.detail-gallery .more-photos .more-label {
    font-family: var(--mono, monospace);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, .8);
}

@media (max-width: 760px) {
    .detail-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    .detail-gallery .primary { aspect-ratio: 4 / 3; height: auto; }
    .detail-gallery .secondary {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .detail-gallery .secondary > div { aspect-ratio: 4 / 3; height: auto; }
}

/* ============== LIGHTBOX ============== */
.ilbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(8, 8, 10, .94);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    display: none;
    align-items: center; justify-content: center;
    padding: 60px 80px;
    animation: ilboxIn .2s ease-out;
}
.ilbox.open { display: flex; }
@keyframes ilboxIn { from { opacity: 0; } to { opacity: 1; } }

.ilbox-stage {
    position: relative;
    max-width: 100%; max-height: 100%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.ilbox-stage img {
    max-width: 100%;
    max-height: 88vh;
    width: auto; height: auto;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    transition: opacity .12s ease, transform .25s var(--ease, cubic-bezier(.4,0,.2,1));
    pointer-events: auto;
    cursor: default;
    background: #1a1a1a;
}

.ilbox button {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--paper, #f0ede6);
    cursor: pointer;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: inherit;
    font-size: 28px; font-weight: 300; line-height: 1;
    transition: all .18s ease;
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ilbox button:hover {
    background: var(--gold, #c9a961);
    border-color: var(--gold, #c9a961);
    color: #151515;
    transform: scale(1.05);
}
.ilbox-close { top: 28px;  right: 28px; font-size: 32px; }
.ilbox-prev  { left: 28px; top: 50%; transform: translateY(-50%); padding-right: 4px; }
.ilbox-next  { right: 28px; top: 50%; transform: translateY(-50%); padding-left: 4px; }
.ilbox-prev:hover, .ilbox-next:hover { transform: translateY(-50%) scale(1.05); }

.ilbox-counter {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono, monospace);
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, .75);
    background: rgba(0, 0, 0, .35);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .1);
}

/* Tıklayınca yakınlaştırma imleci */
.detail-gallery [data-gallery-idx] { cursor: zoom-in; }

@media (max-width: 700px) {
    .ilbox { padding: 60px 14px; }
    .ilbox button { width: 44px; height: 44px; font-size: 22px; }
    .ilbox-close { top: 14px; right: 14px; }
    .ilbox-prev  { left: 8px;  }
    .ilbox-next  { right: 8px; }
}

.detail-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    padding-top: 140px;
    padding-bottom: 20px;
    align-items: end;
}

@media (max-width: 860px) {
    .detail-header { grid-template-columns: 1fr; }
}

.detail-header .eyebrow { margin-bottom: 18px; }

.detail-header h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.015em;
}

.detail-header h1 em {
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
}

.detail-location {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 20px;
}

.detail-price-block {
    text-align: right;
}

.detail-price-block .label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
}

.detail-price-block .price {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

@media (max-width: 860px) {
    .detail-price-block { text-align: left; }
}

.detail-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    padding-bottom: 120px;
}

@media (max-width: 960px) {
    .detail-main { grid-template-columns: 1fr; }
}

.detail-body h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.detail-body p {
    color: var(--mute-02);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.85;
}

.detail-section { margin-bottom: 56px; }

.detail-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.detail-specs li {
    list-style: none;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.detail-specs span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
}

.detail-specs b {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--paper);
}

@media (max-width: 640px) {
    .detail-specs { grid-template-columns: repeat(2, 1fr); }
}

.features-list {
    columns: 2;
    column-gap: 40px;
    list-style: none;
}

.features-list li {
    padding: 12px 0 12px 20px;
    font-size: 14px;
    color: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    break-inside: avoid;
}

.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 640px) {
    .features-list { columns: 1; }
}

.detail-aside {
    position: sticky;
    top: 120px;
    align-self: start;
}

.agent-card {
    background: var(--ink-02);
    border: 1px solid var(--line);
    padding: 36px 32px;
}

.agent-card .eyebrow {
    display: block;
    margin-bottom: 20px;
}

.agent-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--gold-mute);
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-name {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--paper);
    margin-bottom: 4px;
}

.agent-role {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.agent-card .eyebrow {
    display: block;
    margin-bottom: 20px;
}

.agent-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agent-contact .label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
}

.agent-contact a {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: 0.01em;
}

.agent-contact a:hover { color: var(--gold); }

.agent-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.agent-form .field {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.agent-form input,
.agent-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--paper);
    font-size: 14px;
    font-weight: 300;
    resize: none;
}

.agent-form input::placeholder,
.agent-form textarea::placeholder {
    color: var(--mute);
    letter-spacing: 0.05em;
}

.agent-form textarea {
    min-height: 80px;
    padding-top: 8px;
}

.agent-form button {
    margin-top: 28px;
    width: 100%;
    justify-content: center;
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 96px);
}

@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block .label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-block p,
.contact-block a {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--paper);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.contact-block a:hover { color: var(--gold); }

.contact-form {
    background: var(--ink-02);
    border: 1px solid var(--line);
    padding: clamp(32px, 4vw, 56px);
}

.contact-form h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

.field-lg {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.form-row .field-lg:first-child {
    padding-right: 24px;
    border-right: 1px solid var(--line);
}

.form-row .field-lg:last-child {
    padding-left: 24px;
}

@media (max-width: 640px) {
    .form-row .field-lg:first-child {
        padding-right: 0;
        border-right: none;
    }
    .form-row .field-lg:last-child { padding-left: 0; }
}

.field-lg label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 10px;
}

.field-lg input,
.field-lg textarea,
.field-lg select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--paper);
    font-size: 15px;
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.01em;
    resize: none;
}

.field-lg input::placeholder,
.field-lg textarea::placeholder {
    color: var(--mute);
    font-weight: 300;
}

.field-lg textarea { min-height: 100px; }

.field-lg select option { background: var(--ink-02); }

.contact-form .btn { margin-top: 40px; }

/* ---------- Map ---------- */
.map-block {
    margin-top: 48px;
    aspect-ratio: 16 / 9;
    background: var(--ink-03);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

.map-block iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-directions-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(15, 15, 17, 0.92);
    border: 1px solid var(--gold);
    color: var(--paper);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4);
    z-index: 5;
}
.map-directions-btn:hover {
    background: var(--gold);
    color: var(--ink, #151515);
}
.map-directions-btn svg {
    color: var(--gold);
    transition: color 0.3s var(--ease);
    flex-shrink: 0;
}
.map-directions-btn:hover svg { color: var(--ink, #151515); }
.map-directions-btn .arrow {
    font-family: var(--serif, serif);
    font-size: 14px;
    letter-spacing: 0;
    transition: transform 0.3s var(--ease);
}
.map-directions-btn:hover .arrow { transform: translateX(4px); }
@media (max-width: 600px) {
    .map-directions-btn {
        right: 10px; bottom: 10px;
        padding: 10px 16px; font-size: 10px;
        letter-spacing: 0.12em;
    }
    .map-directions-btn .arrow { display: none; }
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 40px; }

/* ---------- Selection ---------- */
::selection {
    background: var(--gold);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--ink-05);
    border: 2px solid var(--ink);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-mute);
}

/* =============================================================
   Scroll-down indicator (page-head + hero)
   ============================================================= */
.scroll-down-indicator {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 6;
    opacity: 0.92;
    font-family: inherit;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    transition: opacity 0.45s ease, transform 0.45s ease, color 0.2s ease;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.scroll-down-indicator:hover { opacity: 1; color: var(--gold, #c9a961); }
.scroll-down-indicator.sdi-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(28px);
}
.sdi-text { font-weight: 500; opacity: 0.85; }
.sdi-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid currentColor;
    border-radius: 12px;
    position: relative;
    display: block;
}
.sdi-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -1.5px;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: currentColor;
    animation: sdi-wheel 1.7s ease-in-out infinite;
}
.sdi-chev {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    animation: sdi-chev 1.7s ease-in-out infinite;
    opacity: 0.7;
}
@keyframes sdi-wheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(10px); opacity: 0.3; }
}
@keyframes sdi-chev {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
    50%      { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

/* Pages with light page-head backgrounds: switch to dark indicator color */
.page-head:not(.has-bg) .scroll-down-indicator {
    color: var(--ink, #0d0d0e);
    text-shadow: none;
    opacity: 0.7;
}
.page-head:not(.has-bg) .scroll-down-indicator:hover { opacity: 1; }

@media (max-width: 640px) {
    .scroll-down-indicator { bottom: 0.9rem; font-size: 0.68rem; gap: 0.4rem; }
    .sdi-text { display: none; }
    .sdi-mouse { width: 20px; height: 30px; }
}