/* ════════════════════════════════════════════════════════════════
   SARDES CONSULTING — site.css
   Aesthetic: Luxury Editorial / Light Cream Theme
   Developer: Okan DOGAN
   https://www.linkedin.com/in/okandogan/
   ════════════════════════════════════════════════════════════════ */

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

/* ── Root Variables ── */
:root {
    --ink: #080C14;
    --ink-soft: #1A2236;
    --slate: #2E3D52;
    --parchment: #F3EDE2;
    --cream: #FAF7F2;
    --gold: #B8963E;
    --gold-light: #D4AF68;
    --gold-pale: #F0E4C4;
    --mist: #E4DED4;
    --white: #FFFFFF;
    --text-dark: #1A1F2E;
    --text-muted: #6B7280;
    /* Dark-theme view uyumluluğu için alias'lar */
    --bg: var(--cream);
    --surface: var(--white);
    --surface-2: var(--parchment);
    --border: rgba(8,12,20,0.1);
    --text-primary: var(--text-dark);
    --text-secondary: var(--slate);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius: 8px;
    --shadow-card: 0 4px 24px rgba(8,12,20,0.08), 0 1px 4px rgba(8,12,20,0.04);
    --shadow-lg: 0 24px 64px rgba(8,12,20,0.14);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h: 72px;
    --topbar-h: 40px;
}

/* ── Reset & Base ── */
*, *::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(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 0.9rem;
}

/* ── Typography ── */
.t-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.t-body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
}

/* ── Utility ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-pad {
    padding: 112px 0;
}

.section-pad-sm {
    padding: 80px 0;
}

.gold-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

    .gold-line.center {
        margin: 0 auto 24px;
    }

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

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(184,150,62,0.35);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 31px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
}

    .btn-outline:hover {
        background: var(--gold);
        color: var(--ink);
        transform: translateY(-2px);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 14px 20px;
    border: 1px solid rgba(184,150,62,0.3);
    border-radius: 2px;
    transition: var(--transition);
}

    .btn-ghost:hover {
        background: rgba(184,150,62,0.06);
        color: var(--ink);
    }

/* ════════════════════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════════════════════ */
#topbar {
    background: var(--ink);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
}

    #topbar > .container-wide {
        width: 100%;
    }

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--topbar-h);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

    .topbar-contact a {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.72rem;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: rgba(255,255,255,0.6);
        transition: color 0.2s;
    }

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

    .topbar-contact li {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.72rem;
        color: rgba(255,255,255,0.4);
    }

    .topbar-contact svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .social-links a {
        color: rgba(255,255,255,0.45);
        transition: color 0.2s;
        display: flex;
    }

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

    .social-links svg {
        width: 15px;
        height: 15px;
    }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-left: 20px;
}

.lang-btn {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    color: rgba(255,255,255,0.4);
    transition: all 0.2s;
    cursor: pointer;
}

    .lang-btn.active, .lang-btn:hover {
        color: var(--gold-light);
        background: rgba(184,150,62,0.12);
    }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
#navbar {
    height: var(--nav-h);
    background: rgba(10,13,20,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: var(--topbar-h);
    z-index: 100;
    transition: box-shadow 0.3s;
}

    #navbar.scrolled {
        background: rgba(10,13,20,0.99);
        box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #EAE6DC;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-tag {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

    .nav-menu a {
        padding: 8px 16px;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: rgba(196,190,176,0.85);
        transition: color 0.2s;
        position: relative;
    }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 16px;
            right: 16px;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

            .nav-menu a:hover::after,
            .nav-menu a.nav-active::after {
                transform: scaleX(1);
            }

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

.nav-cta {
    margin-left: 24px;
    background: var(--gold) !important;
    color: var(--ink) !important;
    padding: 11px 24px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border-radius: 2px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: var(--transition) !important;
    cursor: pointer !important;
}

    .nav-cta:hover {
        background: var(--gold-light) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 20px rgba(184,150,62,0.35) !important;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: rgba(196,190,176,0.8);
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px);
    }

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

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px,-5px);
    }

/* ── Mobile Nav ── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 100vw);
    height: 100dvh;
    background: var(--ink);
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 300;
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}

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

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.2s;
}

    .mobile-close svg {
        width: 22px;
        height: 22px;
    }

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

.mobile-menu {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

    .mobile-menu a {
        display: block;
        padding: 14px 0;
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 300;
        color: rgba(255,255,255,0.65);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transition: color 0.2s, padding-left 0.2s;
    }

        .mobile-menu a:hover {
            color: var(--gold-light);
            padding-left: 8px;
        }

.mobile-nav-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 299;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .overlay.show {
        opacity: 1;
        pointer-events: all;
    }

/* ════════════════════════════════════════════════════════════════
   HERO — Dark (intentional contrast)
   ════════════════════════════════════════════════════════════════ */
#hero {
    min-height: calc(92vh - var(--topbar-h));
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,150,62,0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(46,61,82,0.4) 0%, transparent 50%), linear-gradient(135deg, #080C14 0%, #1A2236 50%, #0D1520 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(184,150,62,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,150,62,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-left {
    max-width: 600px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 28px;
}

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

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.58);
    max-width: 520px;
    margin-bottom: 48px;
}

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

.hero-stats {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.hero-stat {
    padding: 28px 32px;
    background: rgba(8,12,20,0.4);
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}

    .hero-stat:hover {
        background: rgba(184,150,62,0.06);
    }

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

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

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

    50% {
        opacity: 1;
    }
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════ */
.marquee-strip {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink);
    opacity: 0.35;
}

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

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

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 96px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrap {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: 16px -16px -16px 16px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
}

.about-image-placeholder {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%);
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-initials {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.12);
    letter-spacing: 0.1em;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--ink);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    display: block;
}

.about-badge-txt {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.about-section-label {
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 24px;
}

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

.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--mist);
    transition: var(--transition);
}

    .about-pillar:hover {
        border-color: var(--gold-pale);
        box-shadow: var(--shadow-card);
        transform: translateY(-2px);
    }

.about-pillar-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-pillar-icon svg {
        width: 15px;
        height: 15px;
        color: var(--gold);
    }

.about-pillar-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════════
   SERVICES (Teaser — ana sayfa)
   ════════════════════════════════════════════════════════════════ */
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
}

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

.services-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.8;
    margin-top: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--mist);
    border: 1px solid var(--mist);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 52px 44px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--gold);
        transition: height 0.4s ease;
    }

    .service-card:hover {
        background: var(--parchment);
    }

        .service-card:hover::before {
            height: 100%;
        }

.service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s;
}

.service-card:hover .service-num {
    color: rgba(184,150,62,0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(184,150,62,0.25);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

/* ════════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.why-left-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    position: sticky;
    top: calc(var(--topbar-h) + var(--nav-h) + 40px);
}

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

.why-items {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--mist);
    transition: var(--transition);
}

    .why-item:first-child {
        border-top: 1px solid var(--mist);
    }

    .why-item:hover {
        padding-left: 16px;
    }

.why-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    padding-top: 4px;
}

.why-item-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
}

.why-item-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════════ */
.team-header {
    text-align: center;
    margin-bottom: 72px;
}

.team-section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 16px;
}

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

.team-grid {
    display: grid;
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--mist);
    transition: var(--transition);
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold-pale);
    }

.team-card-img {
    height: 280px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-card-initials {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.05em;
    z-index: 1;
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,12,20,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

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

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.team-card-bio {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
}

.team-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--mist);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 6px;
    color: var(--gold);
    transition: all 0.2s;
}

    .team-social a svg {
        width: 14px;
        height: 14px;
    }

    .team-social a:hover {
        background: var(--gold);
        color: var(--ink);
    }

.team-linkedin-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    font-style: italic;
}

.team-placeholder {
    opacity: 0.45;
}

/* ════════════════════════════════════════════════════════════════
   MEDIA
   ════════════════════════════════════════════════════════════════ */
.media-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}

.media-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: var(--ink);
}

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

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-sm);
    padding: 36px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .media-card:hover {
        border-color: var(--gold-pale);
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }

.media-card-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-tag-pill {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(184,150,62,0.3);
    padding: 3px 10px;
    border-radius: 20px;
}

.media-card-source {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.media-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    flex-grow: 1;
}

.media-card-excerpt {
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
}

.media-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--mist);
}

.media-card-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.media-card-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

    .media-card-link:hover {
        gap: 10px;
        color: var(--ink);
    }

/* ════════════════════════════════════════════════════════════════
   PAGE HERO (iç sayfa başlığı — dark stripe)
   ════════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--ink);
    position: relative;
    padding: 100px 0 72px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,62,0.07) 0%, transparent 60%), linear-gradient(160deg, #07090F, #0A0D14 60%, #111927 100%);
    z-index: 0;
}

    .page-hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(184,150,62,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(184,150,62,0.03) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

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

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 16px 0;
}

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

.page-hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    max-width: 580px;
}
/* t-label override inside page-hero */
.page-hero .t-label {
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.contact-lead {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-info-icon svg {
        width: 18px;
        height: 18px;
        color: var(--gold);
    }

.contact-info-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ink);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--mist);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}

    .form-input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(184,150,62,0.08);
        background: var(--white);
    }

    .form-input::placeholder {
        color: rgba(107,114,128,0.5);
    }

    .form-input option {
        background: var(--white);
        color: var(--ink);
    }

.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--mist);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
    min-height: 140px;
}

    .form-textarea:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(184,150,62,0.08);
        background: var(--white);
    }

    .form-textarea::placeholder {
        color: rgba(107,114,128,0.5);
    }

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(184,150,62,0.08);
    border: 1px solid rgba(184,150,62,0.3);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════════════════════════ */
.legal-body h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin: 36px 0 12px;
}

.legal-body p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
#footer {
    background: var(--ink);
    border-top: 1px solid rgba(184,150,62,0.15);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
    margin-bottom: 28px;
    max-width: 320px;
}

.footer-col-title {
    font-size: 0.60rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

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

    .footer-links a, .footer-links li {
        font-size: 0.85rem;
        font-weight: 300;
        color: rgba(255,255,255,0.42);
        transition: color 0.2s;
    }

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

    .footer-bottom-links a {
        font-size: 0.72rem;
        color: var(--gold);
        transition: color 0.2s;
    }

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

.footer-copy a {
    text-decoration: none;
    transition: all 0.2s ease;
}

    .footer-copy a:hover {
        text-decoration: underline;
        opacity: 0.8;
    }
/* ════════════════════════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(184,150,62,0.4);
    cursor: pointer;
}

    .back-to-top.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
        color: var(--ink);
    }

/* ════════════════════════════════════════════════════════════════
   INLINE DARK-SECTION OVERRIDES (dark on light page)
   ════════════════════════════════════════════════════════════════ */
/* Sections using var(--surface) now show white/cream */
/* Sections with explicit dark bg classes keep dark */
.dark-section {
    background: var(--ink) !important;
    color: rgba(255,255,255,0.75) !important;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .container, .container-wide {
        padding: 0 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats {
        grid-template-rows: 1fr;
        grid-template-columns: repeat(3,1fr);
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-left-title {
        position: static;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .topbar-contact li:nth-child(2),
    .topbar-contact li:nth-child(3) {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

    .contact-form {
        padding: 28px;
    }

    .media-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 80px 0;
    }

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

    .about-pillars {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 64px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
    }

    .page-hero {
        padding: 72px 0 48px;
    }

    .topbar-contact {
        display: none;
    }
}
