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

:root {
    /* Ana Renk Paleti - Talep edilen palet */
    --bg-main: #cdc7bb;
    --bg-light: #fcfcfa;
    --text-main: #24221f;
    --text-muted: #5a544c;
    --text-light: #847b70;
    
    /* Yardımcı Lüks Tonlar */
    --accent-mink: #b8b0a2;
    --accent-brown: #5a4e41;
    --accent-gold: #9c8970;
    --bg-card: #f8f7f4;
    --bg-dark: #1a1816;
    --border-subtle: rgba(36, 34, 31, 0.12);
    --border-light: rgba(252, 252, 250, 0.2);
    
    /* Tipografi */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Geçişler & Efektler */
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.25s ease;
    --shadow-subtle: 0 16px 40px rgba(36, 34, 31, 0.06);
    --shadow-elevated: 0 24px 60px rgba(36, 34, 31, 0.12);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Ortak Konteyner & Bölüm Boşlukları */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
}

.section-padding {
    padding: 130px 0;
}

.section-padding-sm {
    padding: 90px 0;
}

/* Kicker & Editoryal Başlıklar */
.kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-brown);
    margin-bottom: 1rem;
}

.kicker::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--accent-brown);
    vertical-align: middle;
    margin-right: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.2vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    font-weight: 300;
}

/* Editoryal Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-light);
    border: 1px solid var(--text-main);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--accent-brown);
    border-color: var(--accent-brown);
    color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(36, 34, 31, 0.18);
}

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

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--text-main);
    color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-light-outline {
    background-color: transparent;
    color: var(--bg-light);
    border: 1px solid rgba(252, 252, 250, 0.5);
}

.btn-light-outline:hover, .btn-light-outline:focus {
    background-color: var(--bg-light);
    color: var(--text-main);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* ----------------------------------------------------
   1. HEADER & NAVIGATION
---------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.site-header.scrolled {
    background-color: rgba(252, 252, 250, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    box-shadow: 0 4px 30px rgba(36, 34, 31, 0.05);
    border-bottom: 1px solid rgba(36, 34, 31, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1;
    transition: color var(--transition-fast);
}

.brand-tagline {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-brown);
    margin-top: 5px;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-fast);
}
.brand-logo:hover .brand-logo-img {
    transform: scale(1.02);
}
.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 14px;
}
@media (max-width: 768px) {
    .brand-logo-img {
        height: 38px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.3vw, 2.8rem);
    list-style: none;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-main);
    position: relative;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-main);
    transition: width var(--transition-smooth);
}

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

.nav-cta-btn {
    padding: 12px 28px;
    font-size: 0.75rem;
    min-width: 155px;
    text-align: center;
    justify-content: center;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    z-index: 1100;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-main);
    transition: all var(--transition-smooth);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ----------------------------------------------------
   2. HERO ALANI (EDITORIAL LUXURY)
---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: slowZoomOut 14s ease-out forwards;
}

@keyframes slowZoomOut {
    0% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(36, 34, 31, 0.45) 0%,
        rgba(205, 199, 187, 0.35) 50%,
        rgba(36, 34, 31, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(252, 252, 250, 0.35);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bg-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6.8vw, 5.8rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--bg-light);
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 300;
    color: rgba(252, 252, 250, 0.92);
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--bg-light);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.85;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--bg-light) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #ffffff;
    animation: scrollDown 2.2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ----------------------------------------------------
   3. HAKKIMIZDA BÖLÜMÜ (EDITORIAL ASYMMETRY)
---------------------------------------------------- */
.about-section {
    background-color: var(--bg-light);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 7vw;
    align-items: center;
}

.about-visual-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: contrast(1.03);
    box-shadow: var(--shadow-elevated);
}

.about-accent-frame {
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 65%;
    aspect-ratio: 1/1;
    background-color: var(--bg-main);
    z-index: -1;
    border: 1px solid rgba(36, 34, 31, 0.1);
}

.about-floating-card {
    position: absolute;
    bottom: 40px;
    left: -28px;
    background-color: var(--bg-light);
    padding: 24px 32px;
    box-shadow: var(--shadow-subtle);
    border-left: 2px solid var(--accent-brown);
}

.about-floating-card h4 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1;
}

.about-floating-card span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-content {
    padding-right: 2vw;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.85;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.highlight-item h5 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.highlight-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-main);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--text-main);
    transition: all var(--transition-fast);
}

.editorial-link:hover {
    color: var(--accent-brown);
    border-color: var(--accent-brown);
    gap: 20px;
}

/* ----------------------------------------------------
   4. UYGULAMALAR (EDITORIAL VISUAL BLOCKS)
---------------------------------------------------- */
.services-section {
    background-color: var(--bg-main);
}

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

.editorial-services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}

.service-editorial-card {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.service-editorial-card:nth-child(1) { grid-column: span 7; }
.service-editorial-card:nth-child(2) { grid-column: span 5; }
.service-editorial-card:nth-child(3) { grid-column: span 4; }
.service-editorial-card:nth-child(4) { grid-column: span 4; }
.service-editorial-card:nth-child(5) { grid-column: span 4; }
.service-editorial-card:nth-child(6) { grid-column: span 6; }
.service-editorial-card:nth-child(7) { grid-column: span 6; }

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 24, 22, 0.88) 0%,
        rgba(26, 24, 22, 0.35) 50%,
        rgba(26, 24, 22, 0.15) 100%
    );
    transition: background var(--transition-smooth);
}

.service-editorial-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(26, 24, 22, 0.94) 0%,
        rgba(26, 24, 22, 0.55) 60%,
        rgba(26, 24, 22, 0.25) 100%
    );
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 38px 40px;
    z-index: 2;
    color: var(--bg-light);
}

.service-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-mink);
    margin-bottom: 0.5rem;
    display: block;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.service-desc {
    font-size: 0.95rem;
    color: rgba(252, 252, 250, 0.85);
    margin-bottom: 1.5rem;
    max-width: 520px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg-light);
    position: relative;
}

.service-link::after {
    content: "→";
    transition: transform var(--transition-fast);
}

.service-editorial-card:hover .service-link::after {
    transform: translateX(6px);
}

/* ----------------------------------------------------
   5. ÖNE ÇIKAN UYGULAMA (AYIN UYGULAMASI)
---------------------------------------------------- */
.featured-month-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6vw;
    align-items: center;
}

.featured-visual {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 560px;
}

.featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    background-color: var(--text-main);
    color: var(--bg-light);
    padding: 8px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.featured-details {
    padding: 3rem 0;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0 2.5rem;
    display: grid;
    gap: 1.1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-main);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--bg-main);
    color: var(--accent-brown);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ----------------------------------------------------
   6. DENEYİM (FULL-WIDTH LUXURY INTERIOR BANNER)
---------------------------------------------------- */
.experience-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.exp-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: contrast(1.08) saturate(0.9);
}

.exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 24, 22, 0.4) 0%, rgba(26, 24, 22, 0.85) 100%);
}

.exp-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 24px;
}

.exp-quote-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--bg-light);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.exp-desc {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: rgba(252, 252, 250, 0.88);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
}

/* ----------------------------------------------------
   7. NEDEN BİZİ TERCİH ETMELİSİNİZ (MINIMAL HORIZONTAL)
---------------------------------------------------- */
.reasons-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-subtle);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
    margin-top: 4rem;
}

.reason-item {
    padding-top: 2rem;
    border-top: 1px solid var(--text-main);
    transition: transform var(--transition-smooth);
}

.reason-item:hover {
    transform: translateY(-6px);
}

.reason-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    stroke-width: 1.1;
}

.reason-item h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.reason-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ----------------------------------------------------
   8. ÖNCESİ & SONRASI (INTERACTIVE BEFORE / AFTER)
---------------------------------------------------- */
.before-after-section {
    background-color: var(--bg-light);
}

.before-after-wrapper {
    max-width: 980px;
    margin: 3.5rem auto 1rem;
    position: relative;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    user-select: none;
    -webkit-user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-after-layer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 980px;
    height: 100%;
    object-fit: cover;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    font-size: 0.9rem;
}

.ba-labels {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 28px;
    pointer-events: none;
    z-index: 5;
}

.ba-label {
    background-color: rgba(36, 34, 31, 0.75);
    color: var(--bg-light);
    padding: 6px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.ba-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1.2rem;
}

/* ----------------------------------------------------
   9. GALERİ (EDITORIAL MASONRY / GRID)
---------------------------------------------------- */
.gallery-section {
    background-color: var(--bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 1.8rem;
    margin-top: 2rem;
}

/* Kategori Filtreleme Sekmeleri (Strateji 1) */
.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.gallery-filter-btn {
    background-color: var(--bg-light);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 10px 22px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border-radius: 2px;
}

.gallery-filter-btn:hover {
    background-color: var(--bg-card);
    border-color: var(--accent-brown);
}

.gallery-filter-btn.active {
    background-color: var(--text-main);
    color: var(--bg-light);
    border-color: var(--text-main);
}

/* Gizlenen veya sayfalandırılan öğeler (Strateji 1 & 2) */
.gallery-item.hidden-filter,
.gallery-item.hidden-pagination {
    display: none !important;
}

/* Galeri Öğeleri Varsayılan (Filtreli durum dahil düzgün grid için) */
/* Galeri Öğeleri Temel */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-dark);
    grid-column: span 4;
    aspect-ratio: 1/1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Dikey (9:16 & Portrait) Görseller: 4 sütun kaplar, 2 satır yüksekliğine uzar ve 9:16 oranını korur */
.gallery-item.item-portrait {
    grid-column: span 4;
    grid-row: span 2;
    aspect-ratio: 9 / 16;
}

/* Yatay (Landscape) Görseller: 8 sütun kaplar, 1 satır yüksekliğindedir */
.gallery-item.item-landscape {
    grid-column: span 8;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
}

/* Kare ve Standart Görseller: 4 sütun kaplar, 1 satır yüksekliğindedir */
.gallery-item.item-square {
    grid-column: span 4;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
}

/* Eğer class atanmamışsa eski editorial masonry blok yapısı yedek olarak çalışır */
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+1) { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+2) { grid-column: span 7; aspect-ratio: 16/10; }
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+3) { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+4) { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+5) { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+6) { grid-column: span 7; aspect-ratio: 16/10; }
.gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square):nth-child(7n+7) { grid-column: span 5; aspect-ratio: 4/5; }

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .gallery-item.item-portrait,
    .gallery-item.item-landscape,
    .gallery-item.item-square,
    .gallery-item:not(.item-portrait):not(.item-landscape) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 1 / 1 !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        display: block !important;
        column-count: 2;
        column-gap: 12px;
    }
    .gallery-item,
    .gallery-grid:not(.is-filtered) .gallery-item:not(.item-portrait):not(.item-landscape):not(.item-square) {
        display: inline-block !important;
        width: 100% !important;
        margin-bottom: 12px !important;
        break-inside: avoid !important;
        page-break-inside: avoid !important;
    }
    .gallery-item.item-portrait {
        aspect-ratio: 9 / 16 !important;
    }
    .gallery-item.item-landscape {
        aspect-ratio: 4 / 3 !important;
    }
    .gallery-item.item-square,
    .gallery-item:not(.item-portrait):not(.item-landscape) {
        aspect-ratio: 1 / 1 !important;
    }
}

/* Daha Fazla Göster Butonu (Strateji 2) */
.gallery-load-more-btn {
    padding: 14px 38px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(36, 34, 31, 0.15);
    transition: all var(--transition-smooth);
}

.gallery-load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(36, 34, 31, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.92);
}

.gallery-item-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(252, 252, 250, 0.92);
    padding: 10px 20px;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-item-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 24, 22, 0.96);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    padding: 40px;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 88vw;
    max-height: 82vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox-caption {
    text-align: center;
    color: var(--bg-light);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-top: 16px;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: transparent;
    color: var(--bg-light);
    font-size: 2rem;
    padding: 16px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    color: var(--accent-gold);
}

.lightbox-close { top: 24px; right: 32px; }
.lightbox-prev { top: 50%; left: 32px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 32px; transform: translateY(-50%); }

/* ----------------------------------------------------
   10. MÜŞTERİ YORUMLARI (EDITORIAL PULL-QUOTE SLIDER)
---------------------------------------------------- */
.testimonials-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonial-slider-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    display: none;
    animation: fadeInSlide 0.8s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    color: var(--accent-brown);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.review-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-main);
    margin-bottom: 2.2rem;
}

.review-author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-brown);
}

.review-service {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.slider-dot {
    width: 32px;
    height: 2px;
    background-color: rgba(36, 34, 31, 0.2);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--text-main);
    width: 48px;
}

/* ----------------------------------------------------
   11. INSTAGRAM VİTRİNİ
---------------------------------------------------- */
.instagram-section {
    background-color: var(--bg-main);
    padding: 90px 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.instagram-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
    background-color: var(--bg-dark);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 34, 31, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    color: var(--bg-light);
}

.instagram-card:hover img {
    transform: scale(1.08);
}

.instagram-card:hover .instagram-hover {
    opacity: 1;
}

/* ----------------------------------------------------
   12. RANDEVU ÇAĞRISI (CTA SECTION)
---------------------------------------------------- */
.appointment-cta-section {
    position: relative;
    background-color: var(--text-main);
    color: var(--bg-light);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.14;
    background-image: radial-gradient(var(--accent-gold) 1px, transparent 1px);
    background-size: 32px 32px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--bg-light);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(252, 252, 250, 0.85);
    margin-bottom: 2.8rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ----------------------------------------------------
   13. İLETİŞİM & HARİTA
---------------------------------------------------- */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6vw;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.contact-item h5 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.contact-item p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-map-wrapper {
    margin-top: 1rem;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-box {
    background-color: var(--bg-card);
    padding: 48px;
    border: 1px solid var(--border-subtle);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 1.8rem;
}

.contact-form {
    display: grid;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-main);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: #ffffff;
    border: 1px solid var(--border-subtle);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--text-main);
}

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

/* ----------------------------------------------------
   14. FOOTER
---------------------------------------------------- */
.site-footer {
    background-color: var(--text-main);
    color: var(--bg-light);
    padding: 90px 0 40px;
    border-top: 1px solid rgba(252, 252, 250, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(252, 252, 250, 0.12);
}

.footer-brand .brand-title {
    color: var(--bg-light);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(252, 252, 250, 0.75);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-col h6 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--bg-light);
    margin-bottom: 1.4rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(252, 252, 250, 0.78);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--bg-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(252, 252, 250, 0.6);
}

.legal-links {
    display: flex;
    gap: 1.8rem;
}

.legal-links a:hover {
    color: var(--bg-light);
    text-decoration: underline;
}

/* Modal Pencere (Hikayemiz / KVKK / Detay) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 24, 22, 0.82);
    backdrop-filter: blur(8px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-light);
    color: var(--text-main);
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-elevated);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.modal-header {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.modal-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Bildirim Toast */
.notification-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: var(--text-main);
    color: var(--bg-light);
    padding: 16px 28px;
    box-shadow: var(--shadow-elevated);
    font-size: 0.9rem;
    z-index: 6000;
    transform: translateY(120%);
    transition: transform var(--transition-smooth);
}

.notification-toast.show {
    transform: translateY(0);
}

/* ----------------------------------------------------
   15. SCROLL ANIMATION (REVEAL)
---------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ----------------------------------------------------
   16. RESPONSIVE / MOBİL & TABLET UYUMU
---------------------------------------------------- */
@media (max-width: 1200px) {
    .editorial-services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .service-editorial-card:nth-child(1),
    .service-editorial-card:nth-child(2),
    .service-editorial-card:nth-child(6),
    .service-editorial-card:nth-child(7) {
        grid-column: span 6;
    }
    .service-editorial-card:nth-child(3),
    .service-editorial-card:nth-child(4),
    .service-editorial-card:nth-child(5) {
        grid-column: span 6;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .gallery-item:nth-child(1) { grid-column: span 3; }
    .gallery-item:nth-child(2) { grid-column: span 3; }
    .gallery-item:nth-child(3) { grid-column: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 3; }
    .gallery-item:nth-child(7) { grid-column: span 3; }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .featured-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .ba-after-layer img {
        width: 100vw;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 85px 0;
    }
    
    .section-padding-sm {
        padding: 60px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right var(--transition-smooth);
        z-index: 1050;
        gap: 2rem;
    }

    .nav-menu.mobile-open {
        right: 0;
    }

    .hamburger-btn {
        display: flex;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .editorial-services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-editorial-card:nth-child(n),
    .gallery-item:nth-child(n) {
        grid-column: span 1;
    }

    .service-img-wrapper {
        height: 380px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-box {
        padding: 28px 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =====================================================
   18. ÇOKLU HERO SLIDER (EDITORIAL DYNAMIC SLIDER)
===================================================== */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.active .hero-bg-img {
    animation: slowZoomOut 14s ease-out forwards;
}

.hero-slider-controls {
    position: absolute;
    bottom: 50px;
    right: 5vw;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(252, 252, 250, 0.45);
    color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: rgba(36, 34, 31, 0.25);
    backdrop-filter: blur(8px);
}

.hero-slider-arrow:hover {
    background: var(--bg-light);
    color: var(--text-main);
    transform: scale(1.06);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px;
}

.hero-slider-dot {
    width: 26px;
    height: 2px;
    background: rgba(252, 252, 250, 0.35);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.hero-slider-dot.active {
    width: 44px;
    background: var(--bg-light);
}

/* Elfsight Ücretsiz Widget Reklam & Rozet Linklerini Global Gizle */
a[href*="elfsight.com"],
a[href*="elfsight.com/instagram-feed-instashow"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    z-index: -9999 !important;
}
