/* ═══════════════════════════════════════════════════════
   BURHAN DAYININ YERİ — Ultra Professional Redesign
   Tema: Vintage Osmanlı Lüksü × Modern Gastronomi
   Palet: Derin Siyah + Antik Altın + Bakır + Fildişi
═══════════════════════════════════════════════════════ */

:root {
    /* Ana renkler */
    --ink: #0A0704;
    --ink-rich: #110C07;
    --ink-soft: #1E1510;
    --wood-dark: #2C1E14;
    --wood: #4A3020;
    --wood-mid: #6B4A30;

    /* Altın sistemi */
    --gold: #C8A96E;
    --gold-bright: #E2C98A;
    --gold-dim: #9A7D50;
    --gold-pale: #F0E4C4;
    --gold-deep: #7A5C30;

    /* Bakır sistemi */
    --copper: #B07040;
    --copper-light: #D4904E;
    --copper-dark: #8A5528;

    /* Metin */
    --cream: #F5EDD8;
    --cream-dim: #D8C9A8;
    --cream-faint: #B8A888;

    /* Tipografi */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-title: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;

    /* Boşluklar */
    --section-gap: 7rem;
    --container-max: 1200px;

    /* Gölgeler */
    --shadow-gold: 0 0 40px rgba(200, 169, 110, 0.15);
    --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* ═══════ RESET ═══════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ═══════ ANIMASYONLAR ═══════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlide {
    from {
        opacity: 0;
        transform: scale(1.08);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes wheelMove {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(200, 169, 110, 0);
    }
}

@keyframes grainAnim {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-2%, -3%);
    }

    30% {
        transform: translate(3%, 2%);
    }

    50% {
        transform: translate(-1%, 4%);
    }

    70% {
        transform: translate(2%, -2%);
    }

    90% {
        transform: translate(-3%, 1%);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-8px) rotate(-3deg);
    }
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ═══════ REVEAL SCROLL ═══════ */
.reveal-el {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-el.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 7, 4, 0);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(10, 7, 4, 0.97);
    box-shadow: 0 1px 0 rgba(200, 169, 110, 0.2), 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

/* Açık arka planlı bölümlerde (hakkımızda gibi) koyu navbar */
.navbar.on-light {
    background: rgba(10, 7, 4, 0.96);
    box-shadow: 0 1px 0 rgba(200, 169, 110, 0.18), 0 4px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

.navbar.on-light .navbar-border {
    opacity: 1;
}

.navbar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    transform: translateX(-50%);
    width: 100%;
}

.navbar.scrolled .navbar-border {
    opacity: 1;
}

.logo-img {
    height: 64px;
    width: auto;
    transition: opacity 0.3s;
    filter: drop-shadow(0 2px 8px rgba(200, 169, 110, 0.2));
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: color 0.3s;
}

.nav-links a span {
    position: relative;
}

.nav-links a span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--gold-bright);
}

.nav-links a:not(.btn-nav):hover span::after {
    transform: scaleX(1);
}

.btn-nav {
    margin-left: 0.5rem;
    padding: 0.55rem 1.4rem !important;
    background: transparent;
    border: 1px solid rgba(200, 169, 110, 0.5);
    border-radius: 3px;
    font-family: var(--font-title) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    color: var(--gold) !important;
    transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s !important;
}

.btn-nav:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--ink) !important;
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.3) !important;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   MOBİL MENU
═══════════════════════════════════════════════════════ */
.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 101;
    width: 48px;
    height: 48px;
    background: rgba(10, 7, 4, 0.9);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s;
}

.menu-toggle:hover {
    border-color: var(--gold);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    backdrop-filter: blur(6px);
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: linear-gradient(160deg, var(--wood-dark) 0%, var(--ink) 100%);
    border-right: 1px solid rgba(200, 169, 110, 0.15);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200, 169, 110, 0.25);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background 0.2s, border-color 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(200, 169, 110, 0.1);
    border-color: var(--gold);
}

.mobile-menu-close svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-content {
    padding: 4rem 1.75rem 2rem;
}

.mobile-logo {
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
}

.mobile-logo img {
    margin: 0 auto;
    max-height: 120px;
    width: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--cream-dim);
    font-family: var(--font-title);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    transition: color 0.2s, padding-left 0.25s;
}

.mobile-nav-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.mobile-btn-kurumsal {
    margin-top: 0.75rem;
    background: transparent !important;
    border: 1px solid rgba(200, 169, 110, 0.4) !important;
    color: var(--gold) !important;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 3px;
    letter-spacing: 0.2em;
}

.mobile-btn-kurumsal:hover {
    background: rgba(200, 169, 110, 0.1) !important;
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.mobile-contact-label {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.mobile-contact-text {
    font-size: 0.85rem;
    color: var(--cream-dim);
    margin-bottom: 0.4rem;
}

.mobile-contact-divider {
    display: block;
    text-align: center;
    color: var(--gold-dim);
    font-size: 0.55rem;
    margin: 0.75rem 0;
}

.mobile-contact-phone {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   BUTONLAR (Global)
═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-bright) 100%);
    background-size: 200% 100%;
    color: var(--ink);
    box-shadow: 0 4px 24px rgba(200, 169, 110, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 32px rgba(200, 169, 110, 0.45);
    transform: translateY(-2px);
}

.btn-ghost-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 110, 0.45);
}

.btn-ghost-gold:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--wood);
    border: 1.5px solid var(--wood-mid);
}

.btn-outline-dark:hover {
    background: var(--wood);
    color: var(--cream);
    border-color: var(--wood);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--ink-rich);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.is-active {
    opacity: 1;
    animation: heroSlide 8s ease-out both;
}

/* Overlay katmanları */
.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(10, 7, 4, 0.65) 100%);
    pointer-events: none;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(10, 7, 4, 0.3) 0%,
            rgba(10, 7, 4, 0.1) 30%,
            rgba(10, 7, 4, 0.4) 70%,
            rgba(10, 7, 4, 0.85) 100%);
    pointer-events: none;
}

.hero-overlay-grain {
    position: absolute;
    inset: -50%;
    z-index: 3;
    width: 200%;
    height: 200%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grainAnim 0.5s steps(2) infinite;
    pointer-events: none;
}

/* Dekoratif çerçeve köşeleri */
.hero-frame {
    position: absolute;
    inset: 1.5rem;
    z-index: 4;
    pointer-events: none;
}

.hero-frame-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: rgba(200, 169, 110, 0.4);
    border-style: solid;
}

.hero-frame-tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.hero-frame-tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.hero-frame-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.hero-frame-br {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

/* İçerik */
.hero-content-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 6rem 2rem;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* Süsleme */
.hero-ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 200px;
}

.hero-ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.hero-ornament:last-child .hero-ornament-line {
    background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.hero-ornament-diamond {
    font-size: 0.55rem;
    color: var(--gold);
    line-height: 1;
}

.hero-label {
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    line-height: 1.1;
}

.hero-title-script {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-title-main {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.35em;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold-bright), var(--gold-dim));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    display: block;
    margin-top: 0.2rem;
}

.hero-sub {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    color: rgba(245, 237, 216, 0.8);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(200, 169, 110, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.hero-dot.is-active {
    background: var(--gold);
    transform: scale(1.4);
    animation: pulseDot 2s ease-in-out infinite;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    right: 2.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(200, 169, 110, 0.5);
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.hero-scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--gold);
    border-radius: 1px;
    animation: wheelMove 1.8s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-frame {
        inset: 0.75rem;
    }

    .hero-frame-corner {
        width: 30px;
        height: 30px;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-dots {
        bottom: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
    background: linear-gradient(90deg, var(--wood-dark) 0%, var(--wood) 50%, var(--wood-dark) 100%);
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 3rem;
    gap: 0.2rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-faint);
}

.stat-divider {
    color: rgba(200, 169, 110, 0.25);
    font-size: 0.5rem;
    padding: 0 0.5rem;
}

@media (max-width: 640px) {
    .stats-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .stat-item {
        padding: 1.5rem 2rem;
        min-width: max-content;
    }

    .stat-divider {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   HAKKIMIZDA
═══════════════════════════════════════════════════════ */
.about-section {
    position: relative;
    padding: var(--section-gap) 0;
    background: var(--cream);
    overflow: hidden;
}

.about-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.about-bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.about-bg-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 112, 64, 0.06) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.about-inner {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Görsel */
.about-visual {
    position: relative;
}

.about-frame-outer {
    position: relative;
    border-radius: 2px;
}

.about-frame-inner {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-deep), 4px 4px 0 rgba(200, 169, 110, 0.2);
}

.about-frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual:hover .about-frame-inner img {
    transform: scale(1.04);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 7, 4, 0.3) 100%);
    pointer-events: none;
}

/* Dekoratif çerçeve çizgileri */
.about-frame-deco-h,
.about-frame-deco-v {
    position: absolute;
    background: rgba(200, 169, 110, 0.35);
}

.about-frame-deco-h {
    top: 20px;
    right: -20px;
    height: calc(100% - 40px);
    width: 1px;
}

.about-frame-deco-v {
    bottom: -20px;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
}

/* Float badge */
.about-badge-float {
    position: absolute;
    bottom: 2.5rem;
    left: -1.5rem;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

.about-badge-inner {
    background: var(--ink);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 169, 110, 0.1);
}

.about-badge-icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
}

.about-badge-txt {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: var(--cream-faint);
    text-transform: uppercase;
    line-height: 1.5;
}

/* İçerik */
.section-eyebrow {
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1rem;
    display: block;
}

.section-eyebrow-light {
    color: var(--gold);
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--wood-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-title em {
    font-style: italic;
    color: var(--copper);
}

.about-rule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.about-rule-line {
    height: 1px;
    background: linear-gradient(90deg, var(--copper), transparent);
    width: 60px;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-rule.is-visible .about-rule-line {
    width: 100px;
}

.about-rule-diamond {
    font-size: 0.5rem;
    color: var(--copper);
}

.about-text {
    font-size: 1rem;
    color: var(--wood-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-text em {
    font-style: italic;
    color: var(--wood-dark);
    font-family: var(--font-display);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(44, 30, 20, 0.06);
    border: 1px solid rgba(176, 112, 64, 0.2);
    border-radius: 3px;
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--wood-dark);
    text-transform: uppercase;
}

.about-feature-icon {
    font-size: 1rem;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-badge-float {
        left: 0.5rem;
        bottom: 1.5rem;
    }

    .about-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-rule {
        justify-content: center;
    }

    .about-features {
        justify-content: center;
    }

    .about-cta {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════
   İLETİŞİM
═══════════════════════════════════════════════════════ */
.contact-section {
    position: relative;
    background: linear-gradient(160deg, var(--ink-rich) 0%, var(--wood-dark) 40%, var(--ink) 100%);
}

.contact-top-border {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.4), transparent);
}

.contact-inner {
    padding: var(--section-gap) 0;
}

.section-title-light {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    text-align: center;
    margin-bottom: 0.75rem;
}

.contact-ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    margin: 0 auto 3.5rem;
}

.contact-ornament span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.3));
}

.contact-ornament span:last-child {
    background: linear-gradient(90deg, rgba(200, 169, 110, 0.3), transparent);
}

.contact-ornament em {
    font-style: normal;
    font-size: 0.5rem;
    color: var(--gold-dim);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 169, 110, 0.1);
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.contact-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
    background: rgba(200, 169, 110, 0.04);
    transform: translateX(4px);
}

.contact-card-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 3px;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid rgba(200, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon-wrap svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-card-label {
    display: block;
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.35rem;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--gold);
    transition: color 0.2s;
}

.contact-card-text a:hover {
    color: var(--gold-bright);
}

.contact-hours {
    padding: 1.5rem;
    background: rgba(200, 169, 110, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.12);
    border-radius: 4px;
    margin-top: 0.25rem;
}

.contact-hours-label {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.85rem;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--cream-dim);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.contact-hours-row:last-child {
    border-bottom: none;
}

/* Harita */
.contact-map {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(200, 169, 110, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 72%;
    background: var(--ink);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.05);
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    background: rgba(200, 169, 110, 0.05);
    border-top: 1px solid rgba(200, 169, 110, 0.1);
    transition: color 0.2s, background 0.2s;
}

.map-link svg {
    width: 13px;
    height: 13px;
}

.map-link:hover {
    color: var(--gold);
    background: rgba(200, 169, 110, 0.1);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        order: -1;
    }

    .map-wrapper {
        padding-bottom: 60%;
    }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(200, 169, 110, 0.08);
}

.footer-top-ornament {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-top-ornament span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.2));
}

.footer-top-ornament span:last-child {
    background: linear-gradient(90deg, rgba(200, 169, 110, 0.2), transparent);
}

.footer-top-ornament em {
    font-style: normal;
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--gold-dim);
    white-space: nowrap;
}

.footer-body {
    padding: 3.5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--cream-faint);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dim);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 110, 0.08);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--cream-faint);
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.35rem;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--cream-faint);
    margin-bottom: 0.4rem;
}

.footer-contact a {
    color: var(--gold-dim);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-address {
    margin-top: 0.75rem;
    font-size: 0.82rem !important;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(200, 169, 110, 0.25);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-top-ornament em {
        font-size: 0.48rem;
    }
}

/* ═══════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(200, 169, 110, 0.35);
    border-radius: 3px;
    background: rgba(10, 7, 4, 0.9);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s, background 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}