:root {
    --espresso: #171717;
    --espresso-2: #171717;
    --espresso-3: #171717;
    --cream: #F5F2EC;
    --cream-2: #EDE6D8;
    --copper: #B89A5E;
    --copper-light: #B89A5E;
    --charcoal: #171717;
    --mist: #B5A99B;
    --beyaz: #FCFAF7;
    --line-dark: rgba(193, 123, 75, 0.3);
    --line-light: rgba(30, 27, 24, 0.1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(.16, .8, .24, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--copper);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--copper);
    display: inline-block;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -.01em;
}

.accent-italic {
    font-style: italic;
    color: var(--copper);
}

:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 3px;
}

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 26px 0;
    transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 16px 0;
    background: rgba(28, 20, 16, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    flex-shrink: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .08em;
    color: var(--beyaz);
}

.brand__sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .16em;
    color: var(--copper-light);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 14px;
    color: var(--mist);
    position: relative;
    padding-bottom: 4px;
    transition: color .3s var(--ease);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--copper);
    transition: width .3s var(--ease);
}

.nav__link:hover {
    color: var(--beyaz);
}

.nav__link:hover::after {
    width: 100%;
}

/* ---------- DROPDOWN ---------- */
.nav__dropdown {
    position: relative;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.nav__chevron {
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.nav__dropdown:hover .nav__chevron {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--espresso-2);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    color: var(--mist);
    transition: color .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}

.nav__dropdown-link:hover {
    color: var(--beyaz);
    background: rgba(193, 123, 75, 0.1);
}

/* ---------- MOBILE DROPDOWN ---------- */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.mobile-dropdown__toggle {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--beyaz);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-dropdown__toggle::after {
    content: "+";
    font-family: var(--font-body);
    font-size: 24px;
    color: var(--copper-light);
    transition: transform .3s var(--ease);
}

.mobile-dropdown.open .mobile-dropdown__toggle::after {
    content: "−";
}

.mobile-dropdown__menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-dropdown.open .mobile-dropdown__menu {
    display: flex;
}

.mobile-dropdown__menu a {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--mist);
    transition: color .25s var(--ease);
}

.mobile-dropdown__menu a:hover {
    color: var(--copper);
}

.nav__cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--espresso);
    background: var(--copper-light);
    padding: 11px 22px;
    border-radius: 2px;
    letter-spacing: .02em;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.nav__cta:hover {
    background: var(--beyaz);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}

.nav__toggle span {
    height: 1px;
    width: 100%;
    background: var(--beyaz);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--espresso);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--beyaz);
}

.mobile-menu a:hover {
    color: var(--copper);
}

/* ---------- HERO (Split Layout) ---------- */
.section-hero {
    position: relative;
    background: var(--espresso);
    color: var(--beyaz);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero__left {
    flex: 0 0 52%;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    position: relative;
    z-index: 2;
}

.hero__left .container {
    width: 100%;
}

.hero__left .eyebrow {
    margin-bottom: 24px;
}

.hero__left h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 28px;
}

.hero__left p {
    font-size: 17px;
    color: var(--mist);
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__right {
    flex: 1;
    position: relative;
    background:
        linear-gradient(270deg, rgba(28, 20, 16, 0) 0%, rgba(28, 20, 16, 0.15) 30%, rgba(28, 20, 16, 1) 100%),
        url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.hero__right::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 140px;
    background: linear-gradient(90deg, var(--espresso), transparent);
}

.hero__blade {
    position: absolute;
    top: 15%;
    left: 48%;
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, transparent, var(--copper) 40%, var(--copper-light) 50%, var(--copper) 60%, transparent);
    opacity: .6;
    z-index: 3;
}

.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(90deg, rgba(193, 123, 75, .05) 0, rgba(193, 123, 75, .05) 1px, transparent 1px, transparent 100px),
        repeating-linear-gradient(0deg, rgba(193, 123, 75, .05) 0, rgba(193, 123, 75, .05) 1px, transparent 1px, transparent 100px);
}

.search-inline {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
    background: var(--cream);
    padding: 22px 26px;
    border: 1px solid var(--copper);
    border-radius: 3px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .4);
    width: fit-content;
    max-width: 100%;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--copper);
}

.field select {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-light);
    padding: 5px 0;
    appearance: none;
    min-width: 130px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0 L5 6 L10 0' fill='none' stroke='%231E1B18' stroke-width='1.2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 2px center;
}

.field select:focus {
    outline: none;
    border-bottom-color: var(--copper);
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--espresso);
    color: var(--beyaz);
    padding: 14px 28px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.search-btn:hover {
    background: var(--espresso-2);
    transform: translateY(-1px);
}

.search-btn svg {
    width: 14px;
    height: 14px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero__scroll span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--mist);
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--copper);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: .3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.4);
    }
}

/* ---------- STATS (Horizontal band) ---------- */
.section-stats {
    background: var(--cream-2);
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -1px;
}

.stats-band {
    display: flex;
    align-items: stretch;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 48px 24px 44px;
    position: relative;
    background: var(--cream-2);
    transition: background .35s var(--ease);
}

.stat:hover {
    background: var(--cream);
}

.stat+.stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: var(--line-light);
}

.stat__icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--copper);
    line-height: 1;
}

.stat__num {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--charcoal);
    line-height: 1;
}

.stat__label {
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: .55;
}

.stat__suffix {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--copper);
}

/* ---------- LISTINGS (Masonry-style grid) ---------- */
.section-listings {
    background: var(--cream);
    padding: 60px 0 130px;
}

.listings__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
    flex-wrap: wrap;
}

.listings__head h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.listings__head p {
    max-width: 380px;
    color: var(--charcoal);
    opacity: .6;
    font-size: 15px;
}

.listings__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    margin-top:30px;
}

.card {
    background: var(--beyaz);
    border: 1px solid var(--line-light);
    display: flex;
    flex-direction: column;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px -22px rgba(28, 20, 16, .3);
}

.card__media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--espresso-2);
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.card:hover .card__media img {
    transform: scale(1.08);
}

.card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: var(--copper);
    color: var(--beyaz);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    padding: 5px 12px;
    text-transform: uppercase;
}

.card__badge--right {
    left: auto;
    right: 14px;
}

.card__deal {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: var(--copper);
    color: var(--beyaz);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    padding: 5px 12px;
    text-transform: uppercase;
}

.card__deal--rent {
    background: #2e7d5b;
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 20, 16, .92) 0%, rgba(28, 20, 16, .35) 50%, transparent 100%);
    opacity: 0;
    transition: opacity .45s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.card:hover .card__overlay,
.card:focus-within .card__overlay {
    opacity: 1;
}

.card__overlay-info {
    font-family: var(--font-mono);
    color: var(--beyaz);
    font-size: 12px;
}

.card__overlay-info div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--line-dark);
}

.card__overlay-info span:last-child {
    color: var(--copper-light);
}

.card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.card__loc {
    font-size: 13px;
    color: var(--charcoal);
    opacity: .55;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card__loc::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
    display: inline-block;
    flex-shrink: 0;
}

.card__meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--charcoal);
    opacity: .5;
    letter-spacing: .03em;
    margin-bottom: 18px;
}

.card__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card__price {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--copper);
    font-weight: 500;
}

.card__link {
    font-size: 12px;
    color: var(--charcoal);
    opacity: .7;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity .3s var(--ease), gap .3s var(--ease);
}

.card__link:hover {
    opacity: 1;
    gap: 9px;
}

.card__link svg {
    width: 12px;
    height: 12px;
}

.listings__more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-outline {
    border: 1px solid var(--charcoal);
    padding: 14px 30px;
    font-size: 13px;
    letter-spacing: .03em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.btn-outline.light {
    border: 1px solid var(--copper-light);
    color: var(--beyaz);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 2px;
    transition: background .3s var(--ease), transform .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline.light:hover {
    background: var(--copper-light);
    color: var(--espresso);
    border-color: var(--copper-light);
}

/* ---------- PAGE HERO (Shared) ---------- */
.page-hero {
    background: var(--espresso);
    color: var(--beyaz);
    padding: 160px 0 80px;
}

.page-hero .eyebrow {
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
}

.page-hero__sub {
    color: var(--mist);
    font-size: 16px;
    max-width: 500px;
    margin: 0;
    line-height: 1.7;
}

@media (max-width:860px) {
    .page-hero h1 {
        font-size: 28px;
    }
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

.page-hero--cream {
    background: var(--cream-2);
    padding: 160px 0 60px;
}
.page-hero--cream .process__head {
    margin-bottom: 0;
}

/* ---------- HELPERS ---------- */
.pt-0 { padding-top: 0 !important; }

/* ---------- CONTACT ---------- */
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-row strong {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--copper);
    display: block;
    margin-bottom: 4px;
}
.contact-row p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
}

@media (max-width: 1080px) {
    .why__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ---------- WHY (Alternating cards) ---------- */
.section-why {
    background: var(--espresso);
    color: var(--beyaz);
    padding: 140px 0;
}

.why__head {
    max-width: 600px;
    margin-bottom: 70px;
}

.why__head h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why__item {
    background: var(--espresso-2);
    padding: 36px 32px;
    border: 1px solid var(--line-dark);
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.why__item:hover {
    border-color: var(--copper);
    transform: translateY(-3px);
}

.why__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--copper);
    font-size: 18px;
    flex-shrink: 0;
}

.why__item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--beyaz);
    font-weight: 400;
}

.why__item p {
    font-size: 14px;
    color: var(--mist);
    line-height: 1.7;
}

.why__stat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--copper-light);
    margin-top: 18px;
    letter-spacing: .06em;
}

/* ---------- FEATURED SOLD ---------- */
.section-sold {
    background: var(--cream);
    padding: 130px 0;
}

.sold__head {
    max-width: 600px;
    margin-bottom: 60px;
}

.sold__head h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.sold__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top:36px;
}

.sold-card {
    background: var(--beyaz);
    border: 1px solid var(--line-light);
    padding: 30px 26px;
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.sold-card:hover {
    border-color: var(--copper);
    box-shadow: 0 16px 36px -18px rgba(28, 20, 16, .18);
}

.sold-card__date {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--copper);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sold-card__title {
    font-family: var(--font-display);
    font-size: 21px;
    margin-bottom: 6px;
}

.sold-card__loc {
    font-size: 13px;
    color: var(--charcoal);
    opacity: .5;
    margin-bottom: 16px;
}

.sold-card__deal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line-light);
}

.sold-card__price {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--copper);
}

.sold-card__time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--charcoal);
    opacity: .4;
}

/* ---------- PROCESS (Vertical timeline) ---------- */
.section-process {
    background: var(--cream-2);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.section-process::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--line-light);
    display: none;
}

.process__head {
    max-width: 600px;
    margin: 0 auto 80px;
    text-align: center;
}

.process__head h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.process__head .eyebrow {
    justify-content: center;
}

.process__head .eyebrow::before {
    display: none;
}

.process__head .eyebrow::after {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--copper);
    display: inline-block;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 40px 24px 32px;
    background: var(--cream);
    border: 1px solid transparent;
    transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative;
}

.step:hover {
    border-color: var(--copper);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -16px rgba(28, 20, 16, .2);
}

.step__num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--copper);
    opacity: .35;
    line-height: 1;
    margin-bottom: 14px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.step p {
    font-size: 13.5px;
    opacity: .6;
    line-height: 1.65;
}

/* ---------- TESTIMONIAL (Card style) ---------- */
.section-testimonial {
    background: var(--espresso-2);
    color: var(--beyaz);
    padding: 140px 0;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--espresso);
    border: 1px solid var(--line-dark);
    padding: 36px 32px;
}

.testimonial-card__stars {
    color: var(--copper);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 22px;
    color: var(--mist);
}

.testimonial-card cite {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--copper-light);
    font-style: normal;
}

/* ---------- CTA (Full-width dark) ---------- */
.section-cta {
    background: var(--espresso-3);
    padding: 0;
}

.cta-split {
    display: flex;
    min-height: 380px;
}

.cta-split__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: 20px;
}

.cta-split__text h2 {
    font-size: clamp(28px, 3vw, 38px);
    color: var(--beyaz);
    margin-bottom: 14px;
}

.cta-split__text p {
    color: var(--mist);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-split__visual {
    flex: 1;
    background:
        linear-gradient(180deg, rgba(19, 14, 11, .55) 0%, rgba(19, 14, 11, .85) 100%),
        url('https://images.unsplash.com/photo-1600573472550-8090b5e0745e?auto=format&fit=crop&w=1200&q=80') center/cover;
    position: relative;
}

.cta-split__visual::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(193, 123, 75, .25);
    pointer-events: none;
}

.btn-solid {
    background: var(--copper-light);
    color: var(--espresso);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .3s var(--ease), transform .3s var(--ease);
    align-self: flex-start;
}

.btn-solid:hover {
    background: var(--beyaz);
    transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--espresso);
    color: var(--mist);
    padding: 90px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer__brand .brand__name {
    color: var(--beyaz);
}

.footer__brand p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer__col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 22px;
    font-weight: 500;
}

.footer__col li {
    margin-bottom: 13px;
    font-size: 14px;
}

.footer__col a:hover {
    color: var(--beyaz);
}

.footer__bottom {
    border-top: 1px solid rgba(181, 169, 155, .15);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.no-listings {
    text-align: center;
    padding: 60px 0;
    color: var(--charcoal);
    opacity: .6;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .03em;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .hero__scroll-line {
        animation: none;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1080px) {
    .hero__left {
        flex: 0 0 100%;
    }
    .hero__right {
        display: none;
    }
    .hero__blade {
        display: none;
    }
    .section-hero {
        min-height: auto;
    }
    .hero__scroll {
        display: none;
    }
    .listings__grid {
        grid-template-columns: 1fr 1fr;
    }
    .why__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .sold__grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .cta-split {
        flex-direction: column-reverse;
    }
    .cta-split__text {
        padding: 50px 0;
        margin: 0 auto;
        max-width: 100%;
    }
    .cta-split__visual {
        min-height: 240px;
    }
}

@media (max-width:860px) {
    .nav__links {
        display: none;
    }
    .nav__toggle {
        display: flex;
    }
    .search-inline {
        width: 100%;
        justify-content: stretch;
    }
    .field {
        flex: 1;
        min-width: 120px;
    }
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    .stats-band {
        flex-wrap: wrap;
    }
    .stat {
        flex: 0 0 50%;
        padding: 36px 20px 32px;
    }
    .stat+.stat::before {
        display: none;
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
    .section-process::before {
        display: none;
    }
}

@media (max-width:620px) {
    .container {
        padding: 0 22px;
    }
    .section-hero .container {
        padding: 0 22px;
    }
    .hero__left {
        padding: 140px 0 80px;
    }
    .search-inline {
        flex-direction: column;
        padding: 22px 18px;
    }
    .field {
        width: 100%;
    }
    .listings__grid {
        grid-template-columns: 1fr;
    }
    .sold__grid {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .cta-split__text {
        padding: 40px 22px;
    }
    .footer__top {
        grid-template-columns: 1fr;
    }
    .listings__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== HAKKIMIZDA / STORY ========== */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story__content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 20px;
    line-height: 1.25;
}
.story__content p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 14px;
}
.story__img-box {
    aspect-ratio: 4/5;
    background: var(--espresso-2);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-dark);
    margin-top:40px; 
    margin-bottom:40px;
}
.story__placeholder {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--copper-light);
    line-height: 1.4;
}
.story__placeholder span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mist);
}
.story__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 860px) {
    .story__grid { grid-template-columns: 1fr; gap: 36px; }
    .story__img-box { aspect-ratio: 3/4; }
}

/* ========== VALUES (Hakkımızda) ========== */
.values.bg-espresso {
    background: var(--espresso);
    color: var(--cream);
}
.values__header {
    text-align: center;
    margin-bottom: 48px;
}
.values__header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--beyaz);
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    padding: 32px 24px;
    margin-bottom: 20px;
    transition: border-color .3s;
}
.value-card:hover { border-color: var(--copper); }
.value-card__icon { margin-bottom: 18px; }
.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--beyaz);
    margin-bottom: 10px;
}
.value-card p {
    font-size: .92rem;
    color: var(--mist);
    line-height: 1.6;
}
@media (max-width: 860px) {
    .values__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .values__grid { grid-template-columns: 1fr; }
}

/* ========== TEAM ========== */
.team__header {
    text-align: center;
    margin-bottom: 48px;
}
.team__header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--espresso);
}
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--beyaz);
    border: 1px solid var(--line-light);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: border-color .25s;
}
.team-card:hover { border-color: var(--copper); }
.team-card__photo {
    aspect-ratio: 1;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card__placeholder {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--copper);
    font-weight: 600;
}
.team-card__info {
    padding: 20px;
}
.team-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--espresso);
    margin-bottom: 4px;
}
.team-card__role {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--copper);
    display: block;
    margin-bottom: 10px;
}
.team-card__info p {
    font-size: .88rem;
    color: var(--charcoal);
    line-height: 1.55;
}
.team-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 9px 16px;
    border: 1px solid var(--copper);
    border-radius: 3px;
    color: var(--copper);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.team-card__phone:hover {
    background: var(--copper);
    color: var(--beyaz);
}
@media (max-width: 860px) {
    .team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .team__grid { grid-template-columns: 1fr; }
}

/* ========== NUMBERS (sayaç bandı) ========== */
.numbers.bg-cream-2 { background: var(--cream-2); }
.numbers__row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}
.num-item__value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--espresso);
    display: block;
}
.num-item__sicak {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--copper);
    margin-left: 2px;
}
.num-item__perc {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--copper);
    margin-left: 2px;
}
.num-item__label {
    font-size: .85rem;
    color: var(--charcoal);
    margin-top: 6px;
    display: block;
}

/* ========== BLOG ========== */
.blog.bg-cream { background: var(--cream); }

/* ---------- ANA SAYFA BLOG BANDI ---------- */
.home-blog {
    background: var(--beyaz);
    padding: 80px 0;
}
.home-blog .listings__head {
    margin-bottom: 44px;
}
.blog__categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
    margin-top:36px;
}
.cat-chip {
    padding: 8px 18px;
    border: 1px solid var(--line-light);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--beyaz);
    cursor: pointer;
    transition: all .2s;
}
.cat-chip.active, .cat-chip:hover {
    background: var(--espresso);
    color: var(--copper-light);
    border-color: var(--espresso);
}
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Tasarım 1: Klasik Minimalist Blog Kartı ---- */
.blog-card {
    background: var(--beyaz);
    border: 1px solid var(--line-light);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--copper);
    box-shadow: 0 12px 32px rgba(28, 20, 16, .1);
}

.blog-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--espresso);
}
.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.blog-card:hover .blog-card__img img {
    transform: scale(1.06);
}

/* Overlay hover efekti */
.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 20, 16, .35);
    opacity: 0;
    transition: opacity .35s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.blog-card:hover .blog-card__overlay {
    opacity: 1;
}
.blog-card__overlay span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--beyaz);
    border: 1px solid rgba(255,255,255,.5);
    padding: 8px 20px;
    border-radius: 2px;
}
.blog-card:hover .blog-card__overlay span {
    border-color: var(--copper-light);
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--espresso-2);
    position: absolute;
    inset: 0;
}

.blog-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card__cat {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--copper);
}
.blog-card__body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--espresso);
    transition: color .3s var(--ease);
}
.blog-card:hover .blog-card__body h3 {
    color: var(--copper);
}
.blog-card__body h3 a { color: inherit; }
.blog-card__body h3 a:hover { color: var(--copper); }
.blog-card__body > p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: .65;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line-light);
}
.blog-card__date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--charcoal);
    opacity: .45;
    letter-spacing: .03em;
}
.blog-card__more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--copper);
    font-weight: 500;
    font-size: 12px;
    transition: gap .3s var(--ease);
}
.blog-card:hover .blog-card__more {
    gap: 10px;
}
.blog-card__more svg {
    width: 14px;
    height: 14px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--mist);
}
.empty-state p { margin-top: 14px; }
@media (max-width: 860px) {
    .blog__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .blog__grid { grid-template-columns: 1fr; }
    .blog-card__body h3 { font-size: 18px; }
}

/* ========== BLOG DETAY ========== */
.page-hero--small {
    padding: 160px 0 64px;
}
.blog-detail__meta {
    margin-top: 14px;
    font-size: .85rem;
    color: var(--mist);
}
.blog-detail__content {
    max-width: 760px;
    margin: 0 auto;
}

/* ---------- FLOATING SOCIAL BUTTON ---------- */
.floating-social {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
}

.floating-social__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--beyaz);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: transform .35s var(--ease), background .35s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.floating-social__toggle svg {
    width: 26px;
    height: 26px;
    transition: transform .35s var(--ease);
}

.floating-social__toggle:hover {
    transform: scale(1.08);
    background: var(--espresso);
}

.floating-social.active .floating-social__toggle {
    background: var(--espresso);
}

.floating-social.active .floating-social__toggle svg {
    transform: rotate(45deg);
}

.floating-social__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 0;
    list-style: none;
}

.floating-social__item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(24px) scale(0.4);
    transition: transform .4s var(--ease), opacity .4s var(--ease);
    pointer-events: none;
    position: relative;
}

.floating-social__item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.floating-social__item span {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
}

.floating-social.active .floating-social__item {
    pointer-events: auto;
}

/* Staggered animation delays */
.floating-social.active .floating-social__item:nth-child(1) { transition-delay: 0.04s; opacity: 1; transform: translateY(0) scale(1); }
.floating-social.active .floating-social__item:nth-child(2) { transition-delay: 0.09s; opacity: 1; transform: translateY(0) scale(1); }
.floating-social.active .floating-social__item:nth-child(3) { transition-delay: 0.14s; opacity: 1; transform: translateY(0) scale(1); }
.floating-social.active .floating-social__item:nth-child(4) { transition-delay: 0.19s; opacity: 1; transform: translateY(0) scale(1); }

/* Platform renkleri */
.floating-social__item--whatsapp { background: #25D366; }
.floating-social__item--sahibinden { background: #2E5D8A; }
.floating-social__item--emlakjet { background: #E8513A; }
.floating-social__item--instagram { background: #E4405F; }
.floating-social__item--facebook { background: #1877F2; }

/* Tooltip */
.floating-social__item::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--espresso);
    color: var(--beyaz);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease);
    font-family: var(--font-body);
}

.floating-social__item:hover::after {
    opacity: 1;
}

@media (max-width: 480px) {
    .floating-social {
        bottom: 20px;
        right: 20px;
    }
    .floating-social__toggle {
        width: 48px;
        height: 48px;
    }
    .floating-social__toggle svg {
        width: 22px;
        height: 22px;
    }
    .floating-social__item {
        width: 42px;
        height: 42px;
    }
    .floating-social__item svg {
        width: 20px;
        height: 20px;
    }
    .floating-social__item span {
        font-size: 14px;
    }
    .floating-social__list {
        gap: 10px;
        margin-bottom: 10px;
    }
    .floating-social__item::after {
        display: none;
    }
}
}
.blog-detail__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
}
.blog-detail__body h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--espresso);
    margin: 32px 0 12px;
}
.blog-detail__body p { margin-bottom: 16px; }
.blog-detail__body ul { margin: 12px 0 20px 24px; list-style: disc; }
.blog-detail__body ul li { margin-bottom: 6px; }
.blog-detail__nav {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
}
.blog-detail__nav .btn--ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--copper);
    font-weight: 500;
}

/* ========== DEĞERLEME FORM ========== */
.valuation.bg-cream { background: var(--cream); }
.valuation__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}
.valuation__form-wrap {
    background: var(--beyaz);
    border: 1px solid var(--line-light);
    border-radius: 6px;
    padding: 40px;
    margin-top:40px;
    margin-bottom:40px;
}
.valuation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--espresso);
}
.required { color: var(--copper); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--line-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--copper);
}
.btn--full {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}
.valuation__sidebar { display: flex; flex-direction: column; gap: 20px; }
.valuation__info-card {
    background: var(--beyaz);
    border: 1px solid var(--line-light);
    border-radius: 6px;
    padding: 28px;
    margin-top:40px;
    margin-bottom:40px;
}
.valuation__info-icon { margin-bottom: 16px; }
.valuation__info-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--espresso);
    margin-bottom: 14px;
}
.valuation__info-card ol {
    padding-left: 18px;
    color: var(--charcoal);
    font-size: .88rem;
    line-height: 2;
}
.faq-mini dt {
    font-weight: 600;
    font-size: .88rem;
    color: var(--espresso);
    margin-top: 14px;
}
.faq-mini dd {
    font-size: .84rem;
    color: var(--charcoal);
    margin-left: 0;
    margin-top: 2px;
    line-height: 1.5;
}
.valuation__success {
    text-align: center;
    padding: 20px 0;
}
.valuation__success h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--espresso);
    margin: 18px 0 10px;
}
.valuation__success p {
    color: var(--charcoal);
    margin-bottom: 22px;
}
@media (max-width: 860px) {
    .valuation__layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========== ACCORDION (Gizlilik) ========== */
.privacy.bg-cream { background: var(--cream); }
.privacy__content {
    max-width: 820px;
    margin: 0 auto;
}
.accordion {
    border: 1px solid var(--line-light);
    border-radius: 6px;
    margin-bottom: 12px;
    background: var(--beyaz);
    overflow: hidden;
}
.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--espresso);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s;
}
.accordion__trigger:hover { color: var(--copper); }
.accordion__trigger svg {
    transition: transform .3s;
    flex-shrink: 0;
}
.accordion__trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.accordion__panel.open {
    max-height: 2000px;
}
.accordion__panel p,
.accordion__panel h4,
.accordion__panel ul,
.accordion__panel li {
    padding: 0 24px;
}
.accordion__panel h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--espresso);
    margin: 18px 0 6px;
}
.accordion__panel p:last-child { padding-bottom: 24px; }
.accordion__panel ul { padding-left: 48px; margin: 6px 0; list-style: disc; }
.accordion__panel ul li { margin-bottom: 4px; }
.accordion__panel ul li:last-child { margin-bottom: 10px; }
