@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Outfit:wght@200;300;400;500&display=swap');

:root {
    --warm-white: #FAF8F4;
    --off-white: #F5F0E8;
    --cream: #EDE7D9;
    --cream-dark: #DDD5C4;
    --charcoal: #1A1916;
    --dark: #0D0C0B;
    --mid: #4A4740;
    --stone: #8C8478;
    --stone-light: #B0A898;
    --gold: #B8975A;
    --gold-dark: #9A7A42;
    --gold-light: #CEB07C;
    --gold-pale: #EDE0C8;
    --white: #FFFFFF;
    --border: rgba(26,25,22,0.1);
    --border-gold: rgba(184,151,90,0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --shadow-sm: 0 2px 12px rgba(26,25,22,0.06);
    --shadow-md: 0 8px 40px rgba(26,25,22,0.10);
    --shadow-lg: 0 20px 80px rgba(26,25,22,0.14);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--warm-white);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* CUSTOM CURSOR */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: multiply;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(184,151,90,0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

body {
    cursor: none;
}

a, button {
    cursor: none;
}
/* Touch cihazlarda cursor:none dokunuşu bozar */
@media (hover: none) and (pointer: coarse) {
    body, a, button {
        cursor: auto !important;
    }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    /* Hafif frosted glass — hero üzerinde bile okunabilir */
    background: rgba(250,248,244,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .site-nav.scrolled {
        background: rgba(250,248,244,0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.4rem 5%;
        border-bottom: 1px solid rgba(184,151,90,0.15);
        box-shadow: 0 2px 24px rgba(26,25,22,0.06);
    }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--charcoal);
    text-transform: uppercase;
}

    .nav-logo span {
        color: inherit;
    }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--mid);
        position: relative;
        padding-bottom: 3px;
        transition: color 0.3s;
    }

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

        .nav-links a:hover, .nav-links a.active {
            color: var(--charcoal);
        }

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* #8 Compact lang switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    overflow: hidden;
}

.lang-btn {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    padding: 5px 10px;
    background: transparent;
    transition: all 0.25s;
    line-height: 1;
}

    .lang-btn:hover {
        color: var(--gold);
        background: rgba(184,151,90,0.06);
    }

    .lang-btn.active {
        background: var(--gold);
        color: var(--white);
    }

.lang-sep {
    font-size: 0.6rem;
    color: var(--border-gold);
    padding: 0 1px;
    pointer-events: none;
    user-select: none;
}
/* #6 Nav social icons */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-social-link {
    color: var(--stone-light);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

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


/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    z-index: 601;
    position: relative;
}

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--charcoal);
        transition: all 0.3s ease;
        transform-origin: center;
    }
    /* X state */
    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

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

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    z-index: 600;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 7rem 10% 3rem;
}
/* Kapama butonu */
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(245,240,232,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 2px;
}

    .mobile-close:hover {
        border-color: var(--gold);
        background: rgba(184,151,90,0.1);
    }

    .mobile-close svg {
        width: 18px;
        height: 18px;
        color: rgba(245,240,232,0.8);
        transition: color 0.3s;
    }

    .mobile-close:hover svg {
        color: var(--gold);
    }

/* Nav links — büyük tipografi */
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

    .mobile-nav-links li {
        overflow: hidden;
        border-bottom: 1px solid rgba(245,240,232,0.08);
    }

        .mobile-nav-links li:first-child {
            border-top: 1px solid rgba(245,240,232,0.08);
        }

    .mobile-nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.1rem 0;
        font-family: var(--font-display);
        font-size: clamp(2rem, 8vw, 3.2rem);
        font-weight: 300;
        color: rgba(245,240,232,0.75);
        letter-spacing: -0.01em;
        transition: color 0.25s, padding-left 0.25s;
        position: relative;
    }

        .mobile-nav-links a::after {
            content: '→';
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.25s, transform 0.25s;
        }

        .mobile-nav-links a:hover {
            color: var(--warm-white);
            padding-left: 0.5rem;
        }

            .mobile-nav-links a:hover::after {
                opacity: 1;
                transform: translateX(0);
            }

        .mobile-nav-links a.active {
            color: var(--gold);
            padding-left: 0.5rem;
        }

            .mobile-nav-links a.active::after {
                opacity: 1;
                transform: translateX(0);
            }
    /* Item counter */
    .mobile-nav-links li:nth-child(1) a::before {
        content: '01';
    }

    .mobile-nav-links li:nth-child(2) a::before {
        content: '02';
    }

    .mobile-nav-links li:nth-child(3) a::before {
        content: '03';
    }

    .mobile-nav-links li:nth-child(4) a::before {
        content: '04';
    }

    .mobile-nav-links li:nth-child(5) a::before {
        content: '05';
    }

    .mobile-nav-links li:nth-child(6) a::before {
        content: '06';
    }

    .mobile-nav-links a::before {
        font-family: var(--font-body);
        font-size: 0.6rem;
        color: rgba(184,151,90,0.6);
        letter-spacing: 0.2em;
        margin-right: 1.5rem;
        align-self: flex-end;
        padding-bottom: 0.35rem;
        flex-shrink: 0;
    }

.mobile-menu-footer {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

    .mobile-menu-footer .lang-switcher {
        border-color: rgba(245,240,232,0.2);
    }

    .mobile-menu-footer .lang-btn {
        color: rgba(245,240,232,0.6);
    }

        .mobile-menu-footer .lang-btn.active {
            background: var(--gold);
            color: var(--white);
        }

    .mobile-menu-footer .nav-social-link {
        color: rgba(245,240,232,0.4);
    }

        .mobile-menu-footer .nav-social-link:hover {
            color: var(--gold);
        }

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,25,22,0.4);
    z-index: 599;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
    pointer-events: none;
    visibility: hidden;
}

    .mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }


/* Desktop: hamburger gizli */
@media (min-width: 769px) {
    .nav-hamburger {
        display: none !important;
    }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 7rem;
    background: var(--off-white);
    overflow: hidden;
}
    /* Slider olarak kullanıldığında .hero class hero-slider'a geçer,
   gerçek height .hero-slide üzerinden gelir */
    .hero.hero-slider {
        display: block; /* flex değil, slaytları stack'leyeceğiz */
        padding-bottom: 0; /* slide içinde padding var */
        background: transparent;
    }

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    transform: scale(1.08);
    transition: opacity 0.9s ease;
}

/* Ken Burns keyframes — 4 farklı yön, slide'lar sırayla farklısını kullanır */
@keyframes kenburns-1 {
    0% {
        transform: scale(1.08) translate(0, 0);
    }

    100% {
        transform: scale(1.18) translate(-2%, -1.5%);
    }
}

@keyframes kenburns-2 {
    0% {
        transform: scale(1.08) translate(0, 0);
    }

    100% {
        transform: scale(1.18) translate(2%, -1%);
    }
}

@keyframes kenburns-3 {
    0% {
        transform: scale(1.12) translate(1.5%, 1%);
    }

    100% {
        transform: scale(1.06) translate(-1%, 0);
    }
}

@keyframes kenburns-4 {
    0% {
        transform: scale(1.1) translate(-1%, 0.5%);
    }

    100% {
        transform: scale(1.04) translate(1.5%, -1%);
    }
}

/* Aktif slide'a Ken Burns uygula */
.hero-slide.active .hero-bg-image {
    animation: kenburns-1 8s ease-in-out forwards;
}
/* Her slide kendi yönünü kullanır */
.hero-slide.active:nth-child(2) .hero-bg-image {
    animation-name: kenburns-2;
}

.hero-slide.active:nth-child(3) .hero-bg-image {
    animation-name: kenburns-3;
}

.hero-slide.active:nth-child(4) .hero-bg-image {
    animation-name: kenburns-4;
}

.hero-bg-image.loaded {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, rgba(250,248,244,0.82) 0%, rgba(250,248,244,0.22) 50%, rgba(250,248,244,0.02) 100% );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 780px;
}

.hero-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--charcoal);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

    .hero-title em {
        font-style: italic;
        color: var(--gold);
    }

.hero-body {
    font-size: 0.95rem;
    color: black;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    right: 5%;
    bottom: 7rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-text {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone-light);
    writing-mode: vertical-lr;
}

.hero-scroll-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 36px;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: none;
}

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

    .btn-gold:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(184,151,90,0.35);
    }

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

    .btn-outline-dark:hover {
        background: var(--charcoal);
        color: var(--white);
    }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
    }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

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

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    flex-shrink: 0;
    padding: 0 2rem;
}

.marquee-sep {
    color: var(--gold-light);
    padding: 0 0.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SECTIONS — Common
   ============================================================ */
.section {
    padding: 7rem 5%;
}

.section-sm {
    padding: 4rem 5%;
}

.section-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

    .section-label::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
}

    .section-title em {
        font-style: italic;
        color: var(--stone);
    }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
}

.link-arrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
}

    .link-arrow:hover {
        color: var(--gold);
        border-bottom-color: var(--gold);
    }

/* ============================================================
   SEGMENTS
   ============================================================ */
.segments-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3px;
    min-height: 580px;
}

.segment-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.segment-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.segment-card:hover .segment-img {
    transform: scale(1.06);
}

.segment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,25,22,0.75) 0%, rgba(26,25,22,0.15) 50%, transparent 100%);
    transition: background 0.4s;
}

.segment-card:hover .segment-overlay {
    background: linear-gradient(to top, rgba(26,25,22,0.88) 0%, rgba(26,25,22,0.25) 60%, transparent 100%);
}

.segment-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: var(--white);
    z-index: 1;
}

.segment-num {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.segment-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.segment-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.segment-card:hover .segment-desc {
    opacity: 1;
    transform: translateY(0);
}

.segment-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184,151,90,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1;
}

.segment-card:hover .segment-arrow {
    opacity: 1;
    border-color: var(--gold);
}

.segment-arrow svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 3.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.product-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.product-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-info {
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.product-cat {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.product-mat {
    font-size: 0.8rem;
    color: var(--stone-light);
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

    .project-card:first-child {
        grid-column: span 2;
    }

.project-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.project-card:first-child .project-card-img {
    aspect-ratio: 2/1.2;
}

.project-card:hover .project-card-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,25,22,0.8) 0%, transparent 50%);
    transition: background 0.4s;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(26,25,22,0.9) 0%, rgba(26,25,22,0.2) 60%);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem;
    color: var(--white);
}

.project-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
}

.project-card:first-child .project-title {
    font-size: 2rem;
}

.project-loc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
}

.project-card:hover .project-loc {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   PHILOSOPHY / SPLIT SECTION
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

    .split-section.reverse {
        direction: rtl;
    }

        .split-section.reverse > * {
            direction: ltr;
        }

.split-visual {
    position: relative;
    height: 520px;
}

.split-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 78%;
    object-fit: cover;
    display: block;
}

.split-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 52%;
    object-fit: cover;
    display: block;
    border: 6px solid var(--warm-white);
}

.split-quote-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 52%;
    background: var(--cream);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.split-quote-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    line-height: 1.5;
}

.body-text {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ============================================================
   REFERENCES / CLIENTS
   ============================================================ */
.references-section {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 5%;
    text-align: center;
}

.ref-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone-light);
    margin-bottom: 2.5rem;
}

.ref-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.ref-logo img {
    max-height: 36px;
    opacity: 0.45;
    filter: grayscale(1);
    transition: all 0.3s;
}

    .ref-logo img:hover {
        opacity: 0.9;
        filter: none;
    }

.ref-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--stone-light);
    transition: color 0.3s;
}

    .ref-name:hover {
        color: var(--stone);
    }

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.cta-section {
    padding: 9rem 5%;
    text-align: center;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(184,151,90,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

    .cta-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.cta-sub {
    font-size: 0.9rem;
    color: var(--stone-light);
    max-width: 420px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 5rem 5%;
}

.footer-brand-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
    display: block;
}

    .footer-brand-logo span {
        color: var(--gold);
    }

.footer-brand p {
    font-size: 0.82rem;
    color: var(--stone);
    line-height: 1.7;
    max-width: 220px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: 0.8rem;
    transition: all 0.3s;
}

    .social-link:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.footer-col h4 {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 0.7rem;
    }

    .footer-col ul a {
        font-size: 0.85rem;
        color: var(--stone);
        transition: color 0.3s;
        font-weight: 300;
    }

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

    .footer-bottom p {
        font-size: 0.75rem;
        color: var(--stone-light);
    }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: border-color 0.3s;
    outline: none;
}

    .form-control:focus {
        border-color: var(--gold);
    }

    .form-control.input-error {
        border-color: #c0392b;
    }

        .form-control.input-error:focus {
            border-color: #c0392b;
        }

    .form-control::placeholder {
        color: var(--stone-light);
    }

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}



/* hero class + hero-slide birleşimi: slider içindeki tam boyut slide */
.hero.hero-slide {
    /* hero-slide kurallarını devralan .hero override'larını sıfırla */
    min-height: 0;
}

    .hero.hero-slide.active {
        min-height: 0;
    }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
}

.hero-slide {
    /* Aktif olmayan slaytlar slider içinde absolute — dışarı çıkamaz */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
}

    .hero-slide.active {
        position: absolute;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

    .slider-dot.active {
        background: var(--gold);
        width: 40px;
    }
/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(255,255,255,0.8);
}

    .slider-arrow:hover {
        border-color: var(--gold);
        background: rgba(184,151,90,0.15);
        color: var(--gold);
    }

    .slider-arrow.prev {
        left: 3rem;
    }

    .slider-arrow.next {
        right: 3rem;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 10;
    width: 0%;
    transition: width linear;
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 1.5rem;
    }
}

/* ============================================================
   RUGS & CARPETS SPLIT SECTION
   ============================================================ */
.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.split-hero-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3.5rem;
    min-height: 480px;
    cursor: pointer;
}

.split-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-hero-panel:hover .split-hero-bg {
    transform: scale(1.04);
}

.split-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(26,25,22,0.78) 0%, rgba(26,25,22,0.20) 55%, rgba(26,25,22,0.05) 100% );
    transition: background 0.4s;
}

.split-hero-panel:hover .split-hero-overlay {
    background: linear-gradient( to top, rgba(26,25,22,0.88) 0%, rgba(26,25,22,0.30) 60%, rgba(26,25,22,0.08) 100% );
}

.split-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.split-hero-label {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .split-hero-label::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--gold-light);
    }

.split-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.split-hero-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.split-hero-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(184,151,90,0.4);
    padding-bottom: 3px;
    transition: all 0.3s;
}

.split-hero-panel:hover .split-hero-arrow {
    color: var(--gold);
    border-bottom-color: var(--gold);
    gap: 0.8rem;
}
/* Divider line between panels */
.split-hero-panel:first-child {
    border-right: 1px solid rgba(255,255,255,0.08);
}
/* Eyebrow tagline above split */
.split-eyebrow {
    text-align: center;
    padding: 5rem 5% 3rem;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.split-eyebrow-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.split-eyebrow-body {
    font-size: 0.9rem;
    color: var(--stone);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 300;
}

@media (max-width: 768px) {
    .split-hero {
        grid-template-columns: 1fr;
        isolation: isolate;
    }

    .split-hero-panel {
        min-height: 340px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

    .split-hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .split-hero-overlay,
    .split-hero-content {
        position: relative;
        z-index: 1;
    }

    .split-hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .split-eyebrow {
        padding: 3.5rem 4% 2rem;
    }
}

/* ============================================================
   #2 SEGMENTS — Equal 2x2 grid
   ============================================================ */
.segments-grid--equal {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 380px;
}

    .segments-grid--equal .segment-card {
        min-height: unset !important;
    }

/* ============================================================
   #10 RECENT PROJECTS
   ============================================================ */
.recent-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.recent-project-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    display: block;
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: var(--charcoal);
}

    .recent-project-card:hover {
        box-shadow: var(--shadow-md);
    }

.recent-project-img {
    width: 100%;
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    overflow: hidden;
    position: relative;
}

.recent-project-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.18) 100%);
    transition: opacity 0.3s;
}

.recent-project-card:hover .recent-project-img-overlay {
    opacity: 0;
}

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

.recent-project-info {
    padding: 1.2rem 1.4rem 1.4rem;
    border-top: 1px solid var(--border);
}

.recent-project-tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
}

.recent-project-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.recent-project-sub {
    font-size: 0.8rem;
    color: var(--stone);
    margin-bottom: 0.3rem;
}

.recent-project-loc {
    font-size: 0.75rem;
    color: var(--stone-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .recent-project-loc::before {
        content: '↗';
        font-size: 0.65rem;
        color: var(--gold);
    }


/* ============================================================
   #7 MAP SECTION
   ============================================================ */
.map-section {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

    .map-section iframe {
        width: 100%;
        height: 420px;
        display: block;
        filter: grayscale(0.15) contrast(1.02);
    }

@media (max-width: 768px) {
    .map-section iframe {
        height: 260px;
    }
}


/* ============================================================
   TESTIMONIAL CARDS — References page
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.star-filled {
    color: var(--gold);
    font-size: 1rem;
}

.star-empty {
    color: var(--cream-dark);
    font-size: 1rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.65;
    flex: 1;
    position: relative;
    padding-left: 1.2rem;
}

    .testimonial-quote::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -0.2rem;
        font-family: var(--font-display);
        font-size: 2.5rem;
        color: var(--gold-pale);
        line-height: 1;
        font-style: normal;
    }

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--stone);
    margin-top: 0.2rem;
}

.testimonial-logo {
    max-height: 28px;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.65;
    filter: grayscale(1);
    flex-shrink: 0;
}

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

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

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ============================================================
   FILTER PILLS
   ============================================================ */
.filter-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pill {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid var(--border);
    color: var(--stone);
    transition: all 0.3s;
    border-radius: 2px;
    font-weight: 400;
    background: transparent;
}

    .pill:hover, .pill.active {
        border-color: var(--gold);
        color: var(--gold);
        background: var(--gold-pale);
    }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 12rem 5% 5rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 1.2rem;
}

    .page-hero-title em {
        font-style: italic;
        color: var(--gold);
    }

.breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-light);
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1rem;
}

    .breadcrumb a {
        color: var(--stone-light);
        transition: color 0.3s;
    }

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

.breadcrumb-sep {
    color: var(--border);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold {
    color: var(--gold);
}

.text-stone {
    color: var(--stone);
}

.bg-cream {
    background: var(--cream);
}

.bg-off {
    background: var(--off-white);
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* ============================================================
   ANIMATIONS (AOS override)
   ============================================================ */
[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    /* Nav */
    .site-nav {
        padding: 1.8rem 5%;
    }

    /* Segments */
    .segments-grid {
        grid-template-columns: 1fr 1fr;
    }

        .segments-grid .segment-card:first-child {
            grid-column: span 2;
        }

    /* Split section */
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

        .split-section.reverse {
            direction: ltr;
        }

    .split-visual {
        height: 380px;
    }

    /* Grids */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

        .projects-grid .project-card:first-child {
            grid-column: span 2;
        }

    /* Stats */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Recent projects */
    .recent-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Segments equal */
    .segments-grid--equal {
        grid-auto-rows: 320px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    /* ── Prevent horizontal overflow globally ── */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    * {
        max-width: 100%;
    }

    img, video, canvas, svg {
        max-width: 100%;
        height: auto;
    }

    /* ── Cursor off ── */
    .cursor, .cursor-ring {
        display: none;
    }

    body {
        cursor: default;
    }

    a, button {
        cursor: pointer;
    }

    /* ── Navigation ── */
    .site-nav {
        padding: 1.2rem 4%;
    }

    .nav-links {
        display: none;
    }

    .nav-logo {
        font-size: 1.3rem;
        letter-spacing: 0.15em;
    }

    .nav-right {
        gap: 0.8rem;
    }

    .nav-lang-btn {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    /* ── Sections ── */
    .section {
        padding: 4rem 4%;
    }

    .section-sm {
        padding: 2.5rem 4%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    /* ── Hero ── */
    .hero {
        min-height: 100svh;
        padding-bottom: 5rem;
    }

    .hero-slider {
        min-height: 100svh;
        padding-bottom: 0;
    }

    .hero.hero-slider {
        min-height: 100svh;
        padding-bottom: 0;
    }

    .hero-slide {
        /* slider içinde tüm alan kaplasın */
        min-height: 100svh;
        padding-bottom: 5rem;
    }

    .hero-content {
        padding: 0 4%;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
        line-height: 1.0;
    }

    .hero-body {
        font-size: 0.88rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

        .hero-cta .btn {
            width: 100%;
            justify-content: center;
        }

    .hero-scroll {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient( 105deg, rgba(250,248,244,0.82) 0%, rgba(250,248,244,0.50) 55%, rgba(250,248,244,0.10) 100% );
    }

    /* ── Marquee ── */
    .marquee-band {
        padding: 0.9rem 0;
    }

    .marquee-item {
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    /* ── Segments ── */
    .segments-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

        .segments-grid .segment-card {
            min-height: 260px !important;
        }

            .segments-grid .segment-card:first-child {
                grid-column: 1;
                min-height: 320px !important;
            }

    .segment-name {
        font-size: 1.6rem;
    }

    .segment-desc {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Stats bar ── */
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 2rem 1rem;
        border-right: 1px solid var(--border);
    }

        .stat-item:nth-child(2n) {
            border-right: none;
        }

        .stat-item:nth-child(n+3) {
            border-top: 1px solid var(--border);
        }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    /* ── Products grid ── */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-info {
        padding: 1rem;
    }

    /* ── Projects grid ── */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

        .projects-grid .project-card:first-child {
            grid-column: 1;
        }

    .project-card-img {
        aspect-ratio: 3/2 !important;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-card:first-child .project-title {
        font-size: 1.4rem;
    }

    /* ── Split / Philosophy ── */
    .split-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr;
    }

        .split-section.reverse {
            direction: ltr;
        }

    .split-visual {
        height: auto;
        min-height: 0;
    }

    .split-img-main {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block;
    }

    .split-img-accent {
        position: relative;
        bottom: auto;
        left: auto;
        width: 60%;
        height: auto;
        aspect-ratio: 1;
        margin-top: 0.75rem;
        display: block;
    }

    .split-quote-card {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 1.5rem;
        margin-top: 0.75rem;
    }

    .split-quote-text {
        font-size: 0.95rem;
    }

    /* ── References ── */
    .references-section {
        padding: 3rem 4%;
    }

    .ref-logos {
        gap: 2rem;
    }

    /* ── CTA section ── */
    .cta-section {
        padding: 6rem 4%;
    }

    .cta-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .cta-sub {
        font-size: 0.85rem;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* ── Buttons ── */
    .btn {
        padding: 13px 28px;
        font-size: 0.7rem;
    }

    /* ── Footer ── */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem 4%;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem 4%;
    }

    /* ── Forms ── */
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .filter-pills {
        gap: 0.4rem;
    }

    .pill {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    /* ── Page hero (inner pages) ── */
    .page-hero {
        padding: 9rem 4% 3rem;
    }

    .page-hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .breadcrumb {
        font-size: 0.65rem;
        flex-wrap: wrap;
    }

    /* ── Detail pages: product / project ── */
    /* These use inline style grids — override via class if possible,
     otherwise the views should use responsive classes */

    /* ── Nav: hamburger visible, desktop links hidden ── */
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-social {
        display: none;
    }
    /* mobile-menu ve overlay her zaman rendered, visibility ile kontrol edilir */
    .lang-btn {
        padding: 4px 8px;
    }

    /* ── Segments equal ── */
    .segments-grid--equal {
        grid-template-columns: 1fr !important;
        grid-auto-rows: unset !important;
    }

        .segments-grid--equal .segment-card {
            min-height: 260px !important;
        }

    /* ── Recent projects ── */
    .recent-projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .recent-project-name {
        font-size: 1.05rem;
    }

    .recent-project-info {
        padding: 0.9rem 1rem 1rem;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .site-nav {
        padding: 1rem 4%;
    }

    .nav-logo {
        font-size: 1.15rem;
    }

    /* Single column products on very small screens */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 3.5rem 4%;
    }

    .bg-cream.section {
        padding-bottom: 4.5rem;
    }

    .home-capabilities {
        padding-top: 4.5rem;
    }

    /* CTA full width button */
    .cta-section .btn {
        max-width: 100%;
    }
}

/* ============================================================
   COLLECTION LANDING PAGE
   ============================================================ */

/* Hero */
.collection-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    background: var(--charcoal);
}

.collection-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .collection-hero-slide.active {
        opacity: 1;
    }

.collection-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}

.collection-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 4rem;
    z-index: 2;
}

.collection-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin: 0.3rem 0 0.6rem;
}

.collection-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

/* Slider dots */
.collection-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 4rem;
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.collection-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

    .collection-dot.active {
        background: var(--gold, #B8975A);
        transform: scale(1.3);
    }

/* Slider arrows */
.collection-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

    .collection-slider-arrow:hover {
        background: rgba(255,255,255,0.3);
    }

.collection-slider-prev {
    left: 1.5rem;
}

.collection-slider-next {
    right: 1.5rem;
}

/* Features */
.collection-features-section {
    padding-top: 4rem;
    padding-bottom: 0;
}

.collection-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.collection-feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border, #E8E4DE);
    border-radius: 6px;
    background: var(--white, #fff);
}

.collection-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.collection-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--charcoal, #2C2C2C);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.collection-feature-body {
    font-size: 0.82rem;
    color: var(--stone, #7C7C7C);
    line-height: 1.6;
    margin: 0;
}

/* Section header */
.collection-section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.collection-section-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.collection-count {
    font-size: 0.8rem;
    color: var(--stone);
}

/* Responsive */
@media (max-width: 768px) {
    .collection-hero {
        height: 55vw;
        min-height: 280px;
    }

    .collection-hero-content {
        padding: 1.5rem;
    }

    .collection-slider-dots {
        right: 1.5rem;
    }

    .collection-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .collection-feature-card {
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 480px) {
    .collection-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* split-hero 3+ panel grid modu */
.split-hero--grid {
    flex-wrap: wrap;
}

    .split-hero--grid .split-hero-panel {
        flex: 1 1 calc(50% - 1px);
        min-width: 300px;
    }

/* ============================================================
   COLLECTION LIST PAGE — CTA + CRAFTSMANSHIP
   ============================================================ */
.craftsmanship-grid {
    padding: 2rem 2rem;
}

@media (max-width: 900px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 580px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr !important;
    }
}

/* CTA Section */
.collection-cta-section {
    background: var(--charcoal, #2C2C2C);
    padding: 6rem 2rem;
    text-align: center;
    margin-top: 0;
}

.collection-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.collection-cta-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1rem;
}

.collection-cta-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 300;
    color: var(--white, #fff);
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin-bottom: 1.2rem;
}

.collection-cta-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.collection-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.collection-cta-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border-radius: 2px;
}

.collection-cta-btn--primary {
    background: var(--gold, #B8975A);
    color: var(--white, #fff);
    border: 1px solid var(--gold, #B8975A);
}

    .collection-cta-btn--primary:hover {
        background: transparent;
        color: var(--gold, #B8975A);
    }

.collection-cta-btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
}

    .collection-cta-btn--outline:hover {
        border-color: rgba(255,255,255,0.7);
        color: #fff;
    }

/* ============================================================
   BACK TO TOP — Progress Ring
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #backToTop.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

/* SVG ring */
.btt-ring {
    position: absolute;
    inset: 0;
    width: 44px;
    height: 44px;
    transform: rotate(-90deg);
}

.btt-ring-track {
    stroke: rgba(184,151,90,0.18);
    stroke-width: 1.5;
}

.btt-ring-progress {
    stroke: var(--gold, #B8975A);
    stroke-width: 1.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.15s linear;
}

/* Background circle */
#backToTop::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    transition: background 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

#backToTop:hover::before {
    background: var(--gold, #B8975A);
}

/* Arrow icon */
.btt-arrow {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 14px;
    color: var(--gold, #B8975A);
    transition: color 0.25s, transform 0.25s;
}

#backToTop:hover .btt-arrow {
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================================
   FOOTER — Powered by + Legal Links
   ============================================================ */
.footer-powered {
    color: var(--gold, #B8975A);
    text-decoration: none;
    transition: opacity 0.2s;
}

    .footer-powered:hover {
        opacity: 0.7;
    }

.footer-legal-links a {
    transition: opacity 0.2s;
}

    .footer-legal-links a:hover {
        opacity: 0.7;
    }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(28, 26, 24, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(184,151,90,0.2);
    padding: 1.4rem 2rem;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

    .cookie-banner.visible {
        transform: translateY(0);
    }

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

    .cookie-banner-text strong {
        color: rgba(255,255,255,0.85);
        font-weight: 500;
    }

    .cookie-banner-text a {
        color: var(--gold, #B8975A);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

.cookie-banner-actions {
    display: flex;
    gap: 0.7rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-btn--accept {
    background: var(--gold, #B8975A);
    color: #fff;
}

    .cookie-btn--accept:hover {
        background: #a07840;
    }

.cookie-btn--decline {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

    .cookie-btn--decline:hover {
        color: rgba(255,255,255,0.8);
        border-color: rgba(255,255,255,0.4);
    }

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ============================================================
   LEGAL PAGES (KVKK, Cookie Policy, Privacy)
   ============================================================ */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

    .legal-content h2 {
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--charcoal);
        margin: 2.5rem 0 0.8rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border);
    }

    .legal-content p,
    .legal-content li {
        font-size: 0.88rem;
        color: var(--stone);
        line-height: 1.85;
    }

    .legal-content ul {
        padding-left: 1.4rem;
        margin: 0.5rem 0 1rem;
    }

    .legal-content a {
        color: var(--gold, #B8975A);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin: 1rem 0 1.5rem;
}

    .legal-table th {
        background: var(--bg, #F5F2EE);
        font-weight: 600;
        font-size: 0.75rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--charcoal);
        padding: 0.7rem 1rem;
        text-align: left;
        border-bottom: 2px solid var(--border);
    }

    .legal-table td {
        padding: 0.65rem 1rem;
        border-bottom: 1px solid var(--border);
        color: var(--stone);
        vertical-align: top;
    }

    .legal-table tr:last-child td {
        border-bottom: none;
    }

@media (max-width: 640px) {
    .legal-table {
        font-size: 0.75rem;
    }

        .legal-table th, .legal-table td {
            padding: 0.5rem 0.6rem;
        }
}

/* ============================================================
   ONLINE STUDIO — COMING SOON
   ============================================================ */
.online-studio-coming {
    position: relative;
    background: var(--charcoal, #2C2C2C);
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.online-studio-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.online-studio-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.online-studio-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    border: 1px solid rgba(184,151,90,0.35);
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 2rem;
}

.online-studio-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--white, #FAF8F4);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.online-studio-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    max-width: 520px;
    margin: 0 auto 3rem;
}

.online-studio-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.online-studio-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.online-studio-feature-icon {
    color: var(--gold, #B8975A);
    font-size: 0.7rem;
}

.online-studio-notify {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.online-studio-notify-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.online-studio-notify-btn {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    border: 1px solid rgba(184,151,90,0.4);
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: all 0.25s;
    border-radius: 2px;
}

    .online-studio-notify-btn:hover {
        background: var(--gold, #B8975A);
        color: #fff;
        border-color: var(--gold, #B8975A);
    }

@media (max-width: 600px) {
    .online-studio-coming {
        padding: 5rem 1.5rem;
    }

    .online-studio-features {
        gap: 1.5rem;
    }

    .online-studio-feature {
        font-size: 0.7rem;
    }
}

/* ============================================================
   PROJECTS — EDITORIAL GRID
   ============================================================ */

/* Pill count badge */
.pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(26,25,22,0.08);
    font-size: 0.6rem;
    margin-left: 5px;
    color: var(--stone);
    transition: background 0.2s, color 0.2s;
}

.pill.active .pill-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Section wrapper */
.projects-editorial-section {
    padding: 0 0 6rem;
}

/* Row types */
.proj-row {
    display: grid;
    gap: 3px;
    margin-bottom: 3px;
}

.proj-row--hero {
    grid-template-columns: 1fr;
}

.proj-row--duo {
    grid-template-columns: 1fr 1fr;
}

.proj-row--trio {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Card */
.proj-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--cream-dark);
    text-decoration: none;
}

.proj-card-media {
    width: 100%;
    overflow: hidden;
}

    .proj-card-media img,
    .proj-card-placeholder {
        width: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.proj-card-placeholder {
    background: var(--cream-dark);
}

/* Heights by row type */
.proj-row--hero .proj-card-media img,
.proj-row--hero .proj-card-placeholder {
    height: 75vh;
    min-height: 480px;
    max-height: 780px;
}

.proj-row--duo .proj-card-media img,
.proj-row--duo .proj-card-placeholder {
    height: 55vh;
    min-height: 360px;
}

.proj-row--trio .proj-card-media img,
.proj-row--trio .proj-card-placeholder {
    height: 42vh;
    min-height: 280px;
}

/* Hover zoom */
.proj-card:hover .proj-card-media img {
    transform: scale(1.06);
}

/* Gradient overlay */
.proj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(14,13,11,0.88) 0%, rgba(14,13,11,0.35) 40%, rgba(14,13,11,0.05) 70%, transparent 100% );
    transition: background 0.4s;
}

.proj-card:hover .proj-card-overlay {
    background: linear-gradient( to top, rgba(14,13,11,0.92) 0%, rgba(14,13,11,0.55) 50%, rgba(14,13,11,0.1) 80%, transparent 100% );
}

/* Body text */
.proj-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem;
    color: #fff;
}

.proj-row--hero .proj-card-body {
    padding: 3rem 4rem;
}

.proj-card-meta {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light, #CEB07C);
    margin-bottom: 0.5rem;
}

.proj-card-title {
    font-family: var(--font-display);
    font-weight: 300;
    color: #FAF8F4;
    line-height: 1.15;
    margin: 0 0 0.4rem;
    font-size: 1.5rem;
}

.proj-row--hero .proj-card-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.proj-card-loc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
}

.proj-card-cta {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light, #CEB07C);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}

.proj-card:hover .proj-card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* CTA strip */
.proj-cta-strip {
    background: var(--charcoal);
    padding: 3rem 5%;
}

.proj-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.proj-cta-strip-text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.proj-cta-strip-btn {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    border: 1px solid rgba(184,151,90,0.5);
    padding: 0.75rem 1.8rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
    border-radius: 2px;
}

    .proj-cta-strip-btn:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

/* Responsive */
@media (max-width: 900px) {
    .proj-row--trio {
        grid-template-columns: 1fr 1fr;
    }

        .proj-row--trio .proj-card-media img,
        .proj-row--trio .proj-card-placeholder {
            height: 38vw;
            min-height: 220px;
        }
}

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

    .proj-row--hero .proj-card-media img,
    .proj-row--hero .proj-card-placeholder {
        height: 70vw;
        min-height: 280px;
    }

    .proj-row--duo .proj-card-media img,
    .proj-row--duo .proj-card-placeholder,
    .proj-row--trio .proj-card-media img,
    .proj-row--trio .proj-card-placeholder {
        height: 60vw;
        min-height: 220px;
    }

    .proj-row--hero .proj-card-body {
        padding: 2rem 1.5rem;
    }

    .proj-cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */

/* Hero */
.pd-hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.pd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.pd-hero:hover .pd-hero-bg {
    transform: scale(1.03);
}

.pd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(14,13,11,0.90) 0%, rgba(14,13,11,0.40) 45%, rgba(14,13,11,0.05) 100% );
}

.pd-hero-breadcrumb {
    position: absolute;
    top: 2rem;
    left: 5%;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
}

    .pd-hero-breadcrumb a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .pd-hero-breadcrumb a:hover {
            color: rgba(255,255,255,0.9);
        }

.pd-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5% 5rem;
    max-width: 900px;
}

.pd-hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light, #CEB07C);
    margin-bottom: 0.8rem;
}

.pd-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    color: #FAF8F4;
    line-height: 1;
    margin: 0 0 0.8rem;
    letter-spacing: 0.01em;
}

.pd-hero-loc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    display: flex;
    align-items: center;
}

.pd-hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    right: 5%;
    z-index: 2;
}

.pd-hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Main layout */
.pd-main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 6rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Description */
.pd-description {
    margin-bottom: 3rem;
}

    .pd-description p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: var(--charcoal);
        max-width: 680px;
    }

/* Gallery */
.pd-gallery-hero {
    margin-bottom: 3px;
    overflow: hidden;
}

    .pd-gallery-hero img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
        transition: transform 0.8s ease;
    }

    .pd-gallery-hero:hover img {
        transform: scale(1.02);
    }

.pd-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.pd-gallery-item {
    overflow: hidden;
}

    .pd-gallery-item img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block;
        transition: transform 0.7s ease;
    }

    .pd-gallery-item:hover img {
        transform: scale(1.04);
    }

.pd-gallery-item--wide {
    grid-column: span 2;
}

    .pd-gallery-item--wide img {
        aspect-ratio: 16/7;
    }

/* Sidebar */
.pd-sidebar {
    position: sticky;
    top: 100px;
}

.pd-info-card {
    background: var(--cream, #EDE7D9);
    border: 1px solid var(--border-gold, rgba(184,151,90,0.25));
    padding: 2rem;
    margin-bottom: 2rem;
}

.pd-info-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.pd-info-row {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border, rgba(26,25,22,0.1));
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .pd-info-row:last-of-type {
        border-bottom: none;
    }

.pd-info-row-key {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone, #8C8478);
}

.pd-info-row-val {
    font-size: 0.92rem;
    color: var(--charcoal, #1A1916);
}

.pd-info-divider {
    border-top: 1px solid var(--border-gold, rgba(184,151,90,0.25));
    margin: 1.5rem 0;
}

.pd-info-cta {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1rem;
    transition: all 0.25s;
    border-radius: 2px;
    margin-bottom: 0.6rem;
}

.pd-info-cta--primary {
    background: var(--charcoal, #1A1916);
    color: #FAF8F4;
    border: 1px solid var(--charcoal);
}

    .pd-info-cta--primary:hover {
        background: var(--gold, #B8975A);
        border-color: var(--gold);
    }

.pd-info-cta--outline {
    background: transparent;
    color: var(--stone, #8C8478);
    border: 1px solid var(--border, rgba(26,25,22,0.15));
    font-size: 0.68rem;
}

    .pd-info-cta--outline:hover {
        color: var(--charcoal);
        border-color: var(--charcoal);
    }

/* Sidebar quote */
.pd-sidebar-quote {
    border-left: 2px solid var(--gold, #B8975A);
    padding: 1rem 1.5rem;
    margin: 0;
}

    .pd-sidebar-quote p {
        font-family: var(--font-display);
        font-size: 1rem;
        font-style: italic;
        color: var(--stone, #8C8478);
        line-height: 1.7;
        margin: 0 0 0.5rem;
    }

    .pd-sidebar-quote cite {
        font-size: 0.65rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold, #B8975A);
        font-style: normal;
    }

/* Related projects */
.pd-related {
    background: var(--cream, #EDE7D9);
    padding: 4rem 0 0;
}

.pd-related-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 5% 2rem;
}

.pd-related-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.pd-related-all {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--gold, #B8975A);
    text-decoration: none;
    transition: opacity 0.2s;
}

    .pd-related-all:hover {
        opacity: 0.7;
    }

/* Responsive */
@media (max-width: 1024px) {
    .pd-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pd-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .pd-hero {
        height: 70vh;
        min-height: 380px;
    }

    .pd-hero-title {
        font-size: 2.2rem;
    }

    .pd-main {
        padding: 3rem 5%;
    }

    .pd-gallery-grid {
        grid-template-columns: 1fr;
    }

    .pd-gallery-item--wide {
        grid-column: span 1;
    }

        .pd-gallery-item--wide img {
            aspect-ratio: 4/3;
        }
}

/* ============================================================
   HOME — CAPABILITIES SECTION
   ============================================================ */
.home-capabilities {
    background: var(--white, #FFFFFF);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.home-capabilities-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

    .home-capabilities-header .section-label {
        color: var(--gold, #B8975A);
    }

    .home-capabilities-header .section-title {
        color: var(--charcoal, #1A1916);
    }

.home-capabilities-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(184,151,90,0.35);
}

    .home-capabilities-link:hover {
        opacity: 0.7;
    }

.home-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.home-cap-item {
    padding: 2rem 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border, rgba(26,25,22,0.1));
    border-right: 1px solid var(--border, rgba(26,25,22,0.1));
}

    .home-cap-item:nth-child(3n) {
        border-right: none;
    }

    .home-cap-item:nth-last-child(-n+3) {
        border-bottom: none;
    }

.home-cap-line {
    width: 28px;
    height: 1px;
    background: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.home-cap-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal, #1A1916);
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}

.home-cap-desc {
    font-size: 0.8rem;
    color: var(--stone, #8C8478);
    line-height: 1.75;
    margin: 0;
}

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

    .home-cap-item:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }

    .home-cap-item:nth-child(2n) {
        border-right: none;
    }

    .home-cap-item:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .home-cap-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 580px) {
    .home-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .home-cap-item {
        border-right: none !important;
        padding-right: 0;
    }

        .home-cap-item:nth-last-child(-n+2) {
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .home-cap-item:last-child {
            border-bottom: none;
        }

    .home-capabilities-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   PROJECTS — CARD GRID (Index page)
   ============================================================ */
.projects-grid-section {
    padding: 4rem 5%;
}

.projects-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.proj-grid-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
}

.proj-grid-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
}

    .proj-grid-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    }

.proj-grid-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
}

.proj-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,13,11,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.proj-grid-cta {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transform: translateY(6px);
    transition: transform 0.3s;
}

.proj-grid-card:hover .proj-grid-overlay {
    opacity: 1;
}

.proj-grid-card:hover .proj-grid-cta {
    transform: translateY(0);
}

.proj-grid-card:hover .proj-grid-media img {
    transform: scale(1.05);
}

.proj-grid-info {
    padding: 1rem 1rem 1.4rem;
    border-bottom: 1px solid var(--border);
}

.proj-grid-meta {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 0.35rem;
}

.proj-grid-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    margin: 0 0 0.2rem;
    line-height: 1.25;
}

.proj-grid-client {
    font-size: 0.75rem;
    color: var(--stone);
}

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

@media (max-width: 540px) {
    .projects-card-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid-section {
        padding: 2rem 5%;
    }
}

/* ============================================================
   PROJECT DETAIL — GALLERY THUMBS
   ============================================================ */
.pd-gallery-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.pd-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
}

.pd-thumb--wide {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pd-thumb:hover img {
    transform: scale(1.04);
}

.pd-thumb-hover {
    position: absolute;
    inset: 0;
    background: rgba(14,13,11,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.pd-thumb:hover .pd-thumb-hover {
    opacity: 1;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8,7,6,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1);
    backdrop-filter: blur(8px);
    /* Cursor'u geri getir — global cursor:none override */
    cursor: default !important;
}

    .lb-backdrop *, .lb-backdrop *::before, .lb-backdrop *::after {
        cursor: default !important;
    }

    .lb-backdrop button {
        cursor: pointer !important;
    }

    .lb-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

/* Film şeridi efekti — alt thumbnail bar */
.lb-box {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.lb-img-wrap {
    width: 100%;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .lb-img-wrap img {
        max-width: 100%;
        max-height: 78vh;
        object-fit: contain;
        display: block;
        border-radius: 2px;
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    }

/* Thumbnail strip */
.lb-strip {
    display: flex;
    gap: 6px;
    max-width: 100%;
    overflow-x: auto;
    padding: 2px 0;
    scrollbar-width: none;
}

    .lb-strip::-webkit-scrollbar {
        display: none;
    }

.lb-strip-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 40px;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0.4;
    cursor: pointer !important;
    transition: opacity 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

    .lb-strip-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .lb-strip-thumb:hover {
        opacity: 0.75;
        transform: translateY(-1px);
    }

    .lb-strip-thumb.active {
        opacity: 1;
        border-color: var(--gold, #B8975A);
        transform: translateY(-2px);
    }

/* Kapat */
.lb-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    z-index: 2;
    backdrop-filter: blur(4px);
}

    .lb-close:hover {
        background: rgba(255,255,255,0.2);
        color: #fff;
        transform: rotate(90deg);
    }

/* Ok butonları */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.75);
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 2;
    backdrop-filter: blur(6px);
}

    .lb-arrow:hover {
        background: rgba(255,255,255,0.18);
        border-color: rgba(255,255,255,0.3);
        color: #fff;
    }

.lb-prev {
    left: -4.5rem;
}

.lb-next {
    right: -4.5rem;
}

.lb-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.lb-next:hover {
    transform: translateY(-50%) translateX(3px);
}

/* Counter */
.lb-counter {
    position: absolute;
    top: -3.5rem;
    left: 0;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-body);
}

/* Mobile */
@media (max-width: 768px) {
    .lb-prev {
        left: 0.5rem;
        width: 40px;
        height: 40px;
    }

    .lb-next {
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }

    .lb-close {
        top: -3rem;
        right: 0;
    }

    .lb-strip-thumb {
        width: 44px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    .pd-gallery-grid-new {
        grid-template-columns: 1fr;
    }

    .pd-thumb--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   PROJECT DETAIL — SPLIT HERO
   ============================================================ */
.spd-hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 92vh;
    position: relative;
}

/* Sol: görsel */
.spd-hero-visual {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
}

    .spd-hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 8s ease;
    }

    .spd-hero-visual:hover img {
        transform: scale(1.04);
    }

.spd-hero-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
}

.spd-hero-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(26,25,22,0.55);
    backdrop-filter: blur(6px);
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
}

/* Sağ: içerik */
.spd-hero-info {
    display: flex;
    align-items: center;
    background: var(--cream, #EDE7D9);
    padding: 5rem 4rem;
    position: relative;
}

.spd-hero-info-inner {
    width: 100%;
    max-width: 460px;
}

.spd-breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--stone);
    margin-bottom: 2rem;
}

    .spd-breadcrumb a {
        color: var(--stone);
        text-decoration: none;
        transition: color 0.2s;
    }

        .spd-breadcrumb a:hover {
            color: var(--charcoal);
        }

.spd-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: 0.01em;
}

.spd-divider {
    width: 40px;
    height: 1px;
    background: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.spd-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--stone);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

    .spd-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.spd-details {
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(26,25,22,0.1);
}

.spd-detail-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(26,25,22,0.08);
}

.spd-detail-key {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    padding-top: 1px;
}

.spd-detail-val {
    font-size: 0.88rem;
    color: var(--charcoal);
}

.spd-cta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.spd-cta-btn {
    display: inline-block;
    background: var(--charcoal);
    color: #FAF8F4;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 1.8rem;
    text-align: center;
    transition: background 0.25s;
    border-radius: 2px;
}

    .spd-cta-btn:hover {
        background: var(--gold);
    }

.spd-cta-back {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--stone);
    text-decoration: none;
    text-align: center;
    transition: color 0.2s;
}

    .spd-cta-back:hover {
        color: var(--charcoal);
    }

/* Açıklama */
.spd-desc-section {
    padding: 5rem 10%;
    background: var(--white);
}

.spd-desc-inner {
    max-width: 700px;
}

    .spd-desc-inner p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: var(--charcoal);
    }

/* Galeri */
.spd-gallery-section {
    padding: 0 0 5rem;
    background: var(--white);
}

.spd-gallery-label {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0 10% 2rem;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
}

    .spd-gallery-label span {
        color: var(--stone);
        font-size: 0.6rem;
    }

.spd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0 10%;
}

.spd-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
}

.spd-thumb--wide {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.spd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.spd-thumb:hover img {
    transform: scale(1.04);
}

.spd-thumb-hover {
    position: absolute;
    inset: 0;
    background: rgba(14,13,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.spd-thumb:hover .spd-thumb-hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .spd-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .spd-hero-visual {
        height: 55vw;
        min-height: 320px;
    }

    .spd-hero-info {
        padding: 3rem 5%;
    }

    .spd-hero-info-inner {
        max-width: 100%;
    }

    .spd-gallery-grid {
        padding: 0 5%;
    }

    .spd-desc-section {
        padding: 3rem 5%;
    }

    .spd-gallery-label {
        padding: 0 5% 1.5rem;
    }
}

@media (max-width: 640px) {
    .spd-title {
        font-size: 1.8rem;
    }

    .spd-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .spd-thumb--wide {
        grid-column: span 2;
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   PROJECT DETAIL — EDITORIAL MASONRY GALLERY
   ============================================================ */
.spd-gallery-section {
    padding: 0;
    background: var(--white);
}

/* Row tipleri */
.spd-mrow {
    display: grid;
    gap: 3px;
    margin-bottom: 3px;
}

.spd-mrow--full {
    grid-template-columns: 1fr;
}

.spd-mrow--duo {
    grid-template-columns: 1fr 1fr;
}

.spd-mrow--trio {
    grid-template-columns: 1fr 1fr 1fr;
}

.spd-mrow--center {
    grid-template-columns: 1fr;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* Thumb */
.spd-mthumb {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--cream-dark);
}

    .spd-mthumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .spd-mthumb:hover img {
        transform: scale(1.04);
    }

/* Aspect ratio per row type */
.spd-mrow--full .spd-mthumb {
    aspect-ratio: 16/7;
}

.spd-mrow--duo .spd-mthumb {
    aspect-ratio: 3/2;
}

.spd-mrow--trio .spd-mthumb {
    aspect-ratio: 4/3;
}

.spd-mrow--center .spd-mthumb {
    aspect-ratio: 4/3;
}

/* Hover overlay */
.spd-mthumb-hover {
    position: absolute;
    inset: 0;
    background: rgba(14,13,11,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.spd-mthumb:hover .spd-mthumb-hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .spd-mrow--trio {
        grid-template-columns: 1fr 1fr;
    }

    .spd-mrow--center {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .spd-mrow--duo,
    .spd-mrow--trio {
        grid-template-columns: 1fr;
    }

    .spd-mrow--full .spd-mthumb {
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   PROJECT DETAIL — HORIZONTAL FILMSTRIP GALLERY
   ============================================================ */
.spd-filmstrip-section {
    padding: 4rem 0 5rem;
    background: var(--white);
    position: relative;
}

.spd-filmstrip-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 5% 1.5rem;
}

.spd-filmstrip-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.spd-filmstrip-count {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--stone);
}

/* Film şeridi */
.spd-filmstrip {
    display: flex;
    gap: 3px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 5%;
    cursor: grab;
}

    .spd-filmstrip::-webkit-scrollbar {
        display: none;
    }

    .spd-filmstrip:active {
        cursor: grabbing;
    }

/* Film item */
.spd-film-item {
    flex-shrink: 0;
    position: relative;
    width: 42vw;
    max-width: 620px;
    min-width: 280px;
    aspect-ratio: 3/2;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: zoom-in;
    background: var(--cream-dark);
}

    .spd-film-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
        pointer-events: none;
    }

    .spd-film-item:hover img {
        transform: scale(1.04);
    }

.spd-film-hover {
    position: absolute;
    inset: 0;
    background: rgba(14,13,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.spd-film-item:hover .spd-film-hover {
    opacity: 1;
}

/* Navigasyon okları */
.spd-filmstrip-nav {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    padding: 1.2rem 5% 0;
}

.spd-fnav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .spd-fnav-btn:hover {
        background: var(--charcoal);
        color: #fff;
        border-color: var(--charcoal);
    }

/* Drag scroll (mouse) */
.spd-filmstrip.is-dragging {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .spd-film-item {
        width: 75vw;
    }
}

@media (max-width: 480px) {
    .spd-film-item {
        width: 88vw;
        min-width: 0;
    }
}

/* ============================================================
   MANIFESTO PAGE
   ============================================================ */

/* Hero */
.manifesto-hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--charcoal, #1A1916);
    padding: 0 10% 6rem;
    position: relative;
    overflow: hidden;
}

    .manifesto-hero::before {
        content: 'M';
        position: absolute;
        right: -2%;
        top: 5%;
        font-family: var(--font-display);
        font-size: clamp(18rem, 35vw, 30rem);
        font-weight: 700;
        color: rgba(255,255,255,0.025);
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }

.manifesto-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.manifesto-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.manifesto-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: #FAF8F4;
    line-height: 1.05;
    margin: 0 0 2rem;
    letter-spacing: 0.01em;
}

.manifesto-hero-line {
    width: 50px;
    height: 1px;
    background: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.manifesto-hero-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    margin: 0;
}

.manifesto-hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 10%;
}

.manifesto-scroll-line {
    width: 1px;
    height: 55px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Body */
.manifesto-body {
    background: var(--white);
    padding: 7rem 10%;
}

.manifesto-body-inner {
    max-width: 900px;
}

.manifesto-lead {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.55;
    margin: 0 0 4rem;
    letter-spacing: 0.01em;
}

.manifesto-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

    .manifesto-two-col p {
        font-size: 0.9rem;
        color: var(--stone);
        line-height: 1.9;
        margin: 0;
    }

.manifesto-quote {
    border-left: 3px solid var(--gold, #B8975A);
    padding: 1.5rem 2.5rem;
    margin: 0 0 4rem;
    background: var(--cream, #EDE7D9);
    border-radius: 0 4px 4px 0;
}

    .manifesto-quote p {
        font-family: var(--font-display);
        font-size: clamp(1rem, 2vw, 1.3rem);
        font-style: italic;
        color: var(--charcoal);
        line-height: 1.6;
        margin: 0;
    }

.manifesto-closing {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.9;
    margin: 0;
}

/* Stats */
.manifesto-stats {
    background: var(--cream, #EDE7D9);
    padding: 5rem 10%;
}

.manifesto-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 1px solid var(--border-gold, rgba(184,151,90,0.2));
}

.manifesto-stat {
    text-align: center;
    padding: 3rem 2rem;
    border-right: 1px solid var(--border-gold, rgba(184,151,90,0.2));
    background: var(--white);
}

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

.manifesto-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.manifesto-stat-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
}

/* CTA */
.manifesto-cta {
    background: var(--charcoal, #1A1916);
    padding: 7rem 10%;
    text-align: center;
}

.manifesto-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.manifesto-cta-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1.2rem;
}

.manifesto-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: #FAF8F4;
    line-height: 1.2;
    margin: 0;
}

.manifesto-cta-btn {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    transition: all 0.25s;
    border-radius: 2px;
}

.manifesto-cta-btn--gold {
    background: var(--gold, #B8975A);
    color: #fff;
    border: 1px solid var(--gold);
}

    .manifesto-cta-btn--gold:hover {
        background: #9a7a42;
        border-color: #9a7a42;
    }

.manifesto-cta-btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}

    .manifesto-cta-btn--outline:hover {
        color: #fff;
        border-color: rgba(255,255,255,0.6);
    }

/* Responsive */
@media (max-width: 900px) {
    .manifesto-hero {
        padding: 0 5% 4rem;
        min-height: 70vh;
    }

    .manifesto-body {
        padding: 5rem 5%;
    }

    .manifesto-stats {
        padding: 4rem 5%;
    }

    .manifesto-cta {
        padding: 5rem 5%;
    }

    .manifesto-two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .manifesto-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manifesto-stat:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .manifesto-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .manifesto-headline {
        font-size: 2rem;
    }
}

/* ============================================================
   PROJECT DETAIL — BOTTOM CTA
   ============================================================ */
.proj-detail-cta {
    background: var(--cream, #EDE7D9);
    padding: 6rem 10%;
    text-align: center;
    border-top: 1px solid var(--border-gold, rgba(184,151,90,0.2));
}

.proj-detail-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.proj-detail-cta-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1rem;
}

.proj-detail-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.proj-detail-cta-sub {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.8;
    margin: 0;
}

.proj-detail-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.proj-detail-cta-btn {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    transition: all 0.25s;
    border-radius: 2px;
}

.proj-detail-cta-btn--primary {
    background: var(--charcoal, #1A1916);
    color: #FAF8F4;
    border: 1px solid var(--charcoal);
}

    .proj-detail-cta-btn--primary:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

.proj-detail-cta-btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid rgba(26,25,22,0.25);
}

    .proj-detail-cta-btn--ghost:hover {
        border-color: var(--charcoal);
    }

/* ============================================================
   PROJECT DETAIL — ABOUT / FIRMA TANITIM BLOĞU
   ============================================================ */
.proj-about-strip {
    background: var(--charcoal, #1A1916);
    padding: 6rem 10%;
}

.proj-about-strip-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.proj-about-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1.2rem;
}

.proj-about-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 300;
    color: #FAF8F4;
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.proj-about-line {
    width: 40px;
    height: 1px;
    background: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.proj-about-body {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
    margin: 0 0 1rem;
}

/* Sağ: rakamlar */
.proj-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 2.5rem;
}

.proj-about-stat {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem 1rem;
    text-align: center;
}

.proj-about-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: #FAF8F4;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.proj-about-stat-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* CTA butonları */
.proj-about-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.proj-about-btn {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    transition: all 0.25s;
    border-radius: 2px;
}

.proj-about-btn--gold {
    background: var(--gold, #B8975A);
    color: #fff;
    border: 1px solid var(--gold);
}

    .proj-about-btn--gold:hover {
        background: #9a7a42;
        border-color: #9a7a42;
    }

.proj-about-btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.18);
}

    .proj-about-btn--outline:hover {
        color: #fff;
        border-color: rgba(255,255,255,0.5);
    }

@media (max-width: 900px) {
    .proj-about-strip {
        padding: 5rem 5%;
    }

    .proj-about-strip-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================================
   PROJECT DETAIL — SCROLL HINT
   ============================================================ */
.spd-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 77.5%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: scrollBounce 2s ease-in-out infinite;
}

.spd-scroll-hint-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(184,151,90,0.6);
    background: rgba(184,151,90,0.12);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #B8975A);
    transition: background 0.25s, border-color 0.25s;
}

.spd-scroll-hint:hover .spd-scroll-hint-circle {
    background: var(--gold, #B8975A);
    border-color: var(--gold, #B8975A);
    color: #fff;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

@media (max-width: 1024px) {
    .spd-scroll-hint {
        display: none;
    }
}

/* ============================================================
   STUDIO — RESPONSIVE GRIDS
   ============================================================ */
.studio-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.studio-caps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

    .studio-caps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .studio-process-grid {
        grid-template-columns: 1fr;
    }

    .studio-caps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CONTACT — RESPONSIVE LAYOUT
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================================
   ABOUT — RESPONSIVE
   ============================================================ */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   COLLECTION DETAIL — CIX (elegant split)
   ============================================================ */

/* Hero grid */
.cix-hero {
    display: grid;
    grid-template-columns: 48% 52%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    padding-top: 80px; /* navbar yüksekliği */
    box-sizing: border-box;
}

/* Sol görsel */
.cix-visual {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark, #D8D0C2);
}

.cix-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

.cix-visual-empty {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
}

/* Tip nav pills — sol üst */
.cix-type-pills {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.cix-type-pill {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    background: rgba(250,248,244,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(250,248,244,0.3);
    color: rgba(255,255,255,0.8);
    transition: all 0.2s;
}

    .cix-type-pill:hover {
        background: rgba(250,248,244,0.3);
        color: #fff;
    }

    .cix-type-pill.active {
        background: var(--gold, #B8975A);
        border-color: var(--gold);
        color: #fff;
    }

/* Thumbnail strip — sol alt */
.cix-thumbs {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.cix-thumb {
    width: 40px;
    height: 52px;
    border-radius: 2px;
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

    .cix-thumb:hover {
        opacity: 0.8;
        transform: translateY(-2px);
    }

    .cix-thumb.active {
        opacity: 1;
        border-color: var(--gold, #B8975A);
        transform: translateY(-3px);
    }

/* Sağ bilgi paneli */
.cix-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream, #EDE7D9);
    padding: 4rem 5% 4rem 6%;
    overflow-y: auto;
}

.cix-info-inner {
    width: 100%;
    max-width: 480px;
}

.cix-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 1rem;
}

.cix-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--charcoal, #1A1916);
    line-height: 1.05;
    margin: 0 0 1.5rem;
    letter-spacing: 0.01em;
}

.cix-rule {
    width: 36px;
    height: 1px;
    background: var(--gold, #B8975A);
    margin-bottom: 1.5rem;
}

.cix-desc {
    font-size: 0.88rem;
    color: var(--stone, #8C8478);
    line-height: 1.9;
    margin: 0 0 2rem;
}

/* Özellikler */
.cix-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    border-top: 1px solid rgba(26,25,22,0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cix-feat {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.cix-feat-dot {
    color: var(--gold, #B8975A);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cix-feat-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}

.cix-feat-body {
    font-size: 0.76rem;
    color: var(--stone);
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.cix-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: none;
    border: 1px solid var(--charcoal, #1A1916);
    color: var(--charcoal);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    font-family: inherit;
    border-radius: 2px;
    transition: all 0.25s;
}

    .cix-cta:hover {
        background: var(--charcoal);
        color: #FAF8F4;
    }

.cix-cta-arrow {
    font-size: 1rem;
    transition: transform 0.2s;
}

.cix-cta:hover .cix-cta-arrow {
    transform: translateY(3px);
}

/* ═══ ÜRÜN GRİD ═══ */
.cix-products {
    background: var(--white, #FAFAF8);
    padding: 5rem 0;
}

.cix-products-bar {
    padding: 0 5% 3rem;
    border-bottom: 1px solid var(--border, rgba(26,25,22,0.08));
    margin-bottom: 3px;
}

.cix-products-heading {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--charcoal);
    margin: 0;
}

.cix-products-count {
    font-size: 0.75rem;
    color: var(--stone);
    letter-spacing: 0.06em;
}

/* Masonry-like grid */
.cix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.cix-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--cream-dark);
}

.cix-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.cix-card--tall .cix-card-img {
    aspect-ratio: 2/3;
}

.cix-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cix-card:hover .cix-card-img img {
    transform: scale(1.06);
}

.cix-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,13,11,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cix-card:hover .cix-card-overlay {
    opacity: 1;
}

.cix-card-view {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    transform: translateY(4px);
    transition: transform 0.3s;
}

.cix-card:hover .cix-card-view {
    transform: translateY(0);
}

.cix-card-info {
    padding: 0.8rem 0.8rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border, rgba(26,25,22,0.06));
}

.cix-card-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
}

.cix-card-mat {
    display: block;
    font-size: 0.72rem;
    color: var(--stone);
}

/* Responsive */
@media (max-width: 1100px) {
    .cix-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cix-hero {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }

    .cix-visual {
        height: 65vw;
        min-height: 300px;
        max-height: 480px;
    }

    .cix-info {
        padding: 3rem 5%;
        justify-content: flex-start;
    }

    .cix-info-inner {
        max-width: 100%;
    }

    .cix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cix-title {
        font-size: 2rem;
    }

    .cix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   COLLECTION — ARROW BUTTONS + THUMB GAP + EDITORIAL CTA
   ============================================================ */

/* Sol/Sağ ok */
.cix-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(250,248,244,0.35);
    background: rgba(250,248,244,0.12);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.25s;
}

    .cix-arrow:hover {
        background: rgba(250,248,244,0.28);
        border-color: rgba(250,248,244,0.6);
        color: #fff;
    }

.cix-arrow--prev {
    left: 1rem;
}

.cix-arrow--next {
    right: 1rem;
}

.cix-arrow--prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.cix-arrow--next:hover {
    transform: translateY(-50%) translateX(2px);
}

/* Thumbnail gap artır */
.cix-thumbs {
    gap: 8px !important;
    padding: 0 1rem;
}

.cix-thumb {
    width: 44px !important;
    height: 58px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ═══ EDITORIAL CTA BLOKLAR ═══ */
.cix-editorial-ctas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.cix-ecta-block {
    display: block;
    text-decoration: none;
    padding: 4rem 3.5rem;
    border-right: 1px solid rgba(26,25,22,0.08);
    background: var(--white, #FAFAF8);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

    .cix-ecta-block:last-child {
        border-right: none;
    }

    .cix-ecta-block::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold, #B8975A);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .cix-ecta-block:hover::after {
        transform: scaleX(1);
    }

    .cix-ecta-block:hover {
        background: var(--cream, #EDE7D9);
    }

.cix-ecta-block--mid {
    background: var(--cream, #EDE7D9);
}

    .cix-ecta-block--mid:hover {
        background: #E4DDD0;
    }

.cix-ecta-block--dark {
    background: var(--charcoal, #1A1916);
    border-right: none;
}

    .cix-ecta-block--dark:hover {
        background: #242220;
    }

    .cix-ecta-block--dark .cix-ecta-num {
        color: rgba(255,255,255,0.28);
    }

    .cix-ecta-block--dark .cix-ecta-label {
        color: var(--gold, #B8975A);
    }

    .cix-ecta-block--dark .cix-ecta-title {
        color: rgba(255,255,255,0.9);
    }

    .cix-ecta-block--dark .cix-ecta-sub {
        color: rgba(255,255,255,0.45);
    }

    .cix-ecta-block--dark .cix-ecta-link {
        color: var(--gold, #B8975A);
    }

    .cix-ecta-block--dark::after {
        background: var(--gold, #B8975A);
    }

.cix-ecta-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(26,25,22,0.22);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
}

.cix-ecta-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold, #B8975A);
    margin-bottom: 0.8rem;
    display: block;
}

.cix-ecta-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 300;
    color: var(--charcoal, #1A1916);
    line-height: 1.2;
    margin: 0 0 0.8rem;
}

.cix-ecta-sub {
    font-size: 0.8rem;
    color: var(--stone, #8C8478);
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.cix-ecta-link {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal, #1A1916);
    transition: letter-spacing 0.2s;
}

.cix-ecta-block:hover .cix-ecta-link {
    letter-spacing: 0.18em;
}

@media (max-width: 900px) {
    .cix-editorial-ctas {
        grid-template-columns: 1fr;
    }

    .cix-ecta-block {
        border-right: none;
        border-bottom: 1px solid rgba(26,25,22,0.08);
        padding: 3rem 2rem;
    }

        .cix-ecta-block:last-child {
            border-bottom: none;
        }

    .cix-arrow {
        display: flex;
        top: auto;
        bottom: 1rem;
        transform: none;
        width: 40px;
        height: 40px;
    }

    .cix-arrow--prev {
        left: calc(50% - 48px);
    }

    .cix-arrow--next {
        right: calc(50% - 48px);
        left: auto;
    }

    .cix-arrow--prev:hover {
        transform: translateX(-2px);
    }

    .cix-arrow--next:hover {
        transform: translateX(2px);
    }
}

/* ============================================================
   BANNER VIDEO
   ============================================================ */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
