/* ================================================================
   AVEK GRUBU — Premium Corporate Experience
   2026  |  Zero Dependencies  |  Handcrafted Design System
   
   Sections:
   01. Reset & Base
   02. Custom Properties
   03. Noise & Grain
   04. Global Typography
   05. Custom Cursor
   06. Preloader
   07. Buttons & Magnetic
   08. Tags, Badges, Links
   09. Forms
   10. Skip Link
   11. Header
   12. Mobile Menu
   13. Hero — Cinematic
   14. Ticker / Marquee
   15. Editorial About
   16. Showcase Bento Cards
   17. Horizontal Scroll Stats
   18. Stacked Sector Cards
   19. CTA Split
   20. Magazine Projects
   21. Quote Section
   22. News Strip
   23. Contact CTA
   24. Footer Mega
   25. Page Header — Inner Pages
   26. About Page
   27. Sectors Page
   28. İK Page
   29. Contact Page
   30. News Grid Page
   31. Article Detail
   32. Policy Pages
   33. Utilities
   34. Keyframes
   35. Media Queries
   36. Reduced Motion
   ================================================================ */


/* ==========================================================
   01. RESET & BASE
   ========================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-x: clip;
    position: relative;
}

    body.is-locked {
        overflow: hidden;
        height: 100vh;
        touch-action: none;
    }

    body.is-loading {
        overflow: hidden;
        cursor: wait;
    }

img, video, svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.4s var(--ease);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
}

::selection {
    background: var(--accent);
    color: var(--white);
}


/* ==========================================================
   02. CUSTOM PROPERTIES
   ========================================================== */
:root {
    /* — Palette — */
    --black: #0A0A0A;
    --black-soft: #141416;
    --charcoal: #1C1C1E;
    --slate: #28282C;
    --white: #FFFFFF;
    --cream: #F0EDE8;
    --cream-dark: #E4DFD8;
    --sand: #D5CFC6;
    --accent: #E84C0E;
    --accent-hover: #FF6B2B;
    --accent-dark: #C73E0A;
    --ink: #1A1A1A;
    --ink-light: #333333;
    --ink-muted: #666666;
    --ink-faint: #999999;
    --border: #E5E5E2;
    --border-dark: rgba(255,255,255,0.08);
    --surface: #FFFFFF;
    --surface-alt: #F7F6F3;
    --surface-dark: #0A0A0A;
    /* — Typography — */
    --f-display: 'Space Grotesk', -apple-system, sans-serif;
    --f-body: 'Inter', -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', 'SF Mono', monospace;
    /* — Size scale — */
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 17px;
    --text-md: 20px;
    --text-lg: 24px;
    --text-xl: 32px;
    --text-1xl: clamp(28px, 3vw, 46px);
    --text-2xl: clamp(36px, 4vw, 56px);
    --text-3xl: clamp(48px, 6vw, 80px);
    --text-4xl: clamp(64px, 8vw, 120px);
    --text-display: clamp(80px, 12vw, 200px);
    --text-display-hero-2: clamp(40px, 6vw, 100px);
    /* — Spacing scale — */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 24px;
    --sp-6: 32px;
    --sp-7: 48px;
    --sp-8: 64px;
    --sp-9: 80px;
    --sp-10: 120px;
    --sp-11: 160px;
    /* — Layout — */
    --container: 1280px;
    --container-narrow: 800px;
    --container-wide: 1440px;
    --gutter: 24px;
    --header-h: 80px;
    --section-py: 80px;
    /* — Easings — */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);
    /* — Misc — */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-subtle: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.06);
    --shadow-elevated: 0 24px 80px rgba(0,0,0,0.1);
    --transition-base: 0.4s var(--ease);
    --transition-slow: 0.8s var(--ease-out);
    --transition-fast: 0.2s ease;
}


/* ==========================================================
   03. NOISE & GRAIN TEXTURE
   ========================================================== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}


/* ==========================================================
   04. GLOBAL TYPOGRAPHY
   ========================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

/* Tag / Eyebrow label */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: var(--sp-5);
}

    .tag::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--accent);
    }

.tag--light {
    color: rgba(255,255,255,0.4);
}

    .tag--light::before {
        background: rgba(255,255,255,0.2);
    }

/* Split text wrapper styles */
.split-line {
    display: block;
    overflow: hidden;
}

.split-char,
.split-word {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-expo);
}

.is-revealed .split-char,
.is-revealed .split-word {
    transform: translateY(0);
}

/* Stagger delays for split animations */
.split-word:nth-child(1) {
    transition-delay: 0.00s;
}

.split-word:nth-child(2) {
    transition-delay: 0.04s;
}

.split-word:nth-child(3) {
    transition-delay: 0.08s;
}

.split-word:nth-child(4) {
    transition-delay: 0.12s;
}

.split-word:nth-child(5) {
    transition-delay: 0.16s;
}

.split-word:nth-child(6) {
    transition-delay: 0.20s;
}

.split-word:nth-child(7) {
    transition-delay: 0.24s;
}

.split-word:nth-child(8) {
    transition-delay: 0.28s;
}

.split-word:nth-child(9) {
    transition-delay: 0.32s;
}

.split-word:nth-child(10) {
    transition-delay: 0.36s;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal--clip {
    opacity: 1;
    transform: none;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s var(--ease-expo);
}

    .reveal--clip.is-visible {
        clip-path: inset(0 0 0 0);
    }

.reveal--scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--ease), transform 1s var(--ease-out);
}

    .reveal--scale.is-visible {
        opacity: 1;
        transform: scale(1);
    }

/* Stagger delays */
[data-delay="1"] {
    transition-delay: 0.1s !important;
}

[data-delay="2"] {
    transition-delay: 0.2s !important;
}

[data-delay="3"] {
    transition-delay: 0.3s !important;
}

[data-delay="4"] {
    transition-delay: 0.4s !important;
}

[data-delay="5"] {
    transition-delay: 0.5s !important;
}


/* ==========================================================
   05. CUSTOM CURSOR
   ========================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor__dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: var(--radius-full);
    position: absolute;
    top: -3px;
    left: -3px;
    transition: opacity 0.3s ease, transform 0.15s ease;
}

.cursor__circle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--white);
    border-radius: var(--radius-full);
    position: absolute;
    top: -24px;
    left: -24px;
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), top 0.4s var(--ease-out), left 0.4s var(--ease-out), border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.cursor.is-hover .cursor__circle {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    background: rgba(255,255,255,0.1);
}

.cursor.is-hover .cursor__dot {
    opacity: 0;
    transform: scale(0);
}

.cursor__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor.is-text .cursor__circle {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    background: rgba(255,255,255,0.08);
}

.cursor.is-text .cursor__dot {
    opacity: 0;
}

.cursor.is-text .cursor__text {
    opacity: 1;
}

.cursor.is-hidden .cursor__dot,
.cursor.is-hidden .cursor__circle {
    opacity: 0;
    transform: scale(0);
}

@media (hover: none), (pointer: coarse) {
    .cursor {
        display: none;
    }
}


/* ==========================================================
   06. PRELOADER
   ========================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--sp-5);
    transition: clip-path 1.2s var(--ease-expo);
    clip-path: inset(0 0 0 0);
}

    .preloader.is-done {
        clip-path: inset(100% 0 0 0);
        pointer-events: none;
    }

.preloader__logo {
    margin-bottom: var(--sp-4);
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderFadeIn 0.6s 0.2s var(--ease-out) forwards;
}

    .preloader__logo img {
        height: clamp(200px, 8vw, 200px);
        width: auto;
    }

.preloader__counter {
    display: flex;
    align-items: baseline;
    font-family: var(--f-mono);
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    opacity: 0;
    animation: preloaderFadeIn 0.6s 0.4s var(--ease-out) forwards;
}

.preloader__number {
    min-width: 3ch;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.preloader__percent {
    font-size: 0.4em;
    color: var(--accent);
    margin-left: 4px;
}

.preloader__line {
    width: clamp(120px, 30vw, 200px);
    height: 1px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    opacity: 0;
    margin-top: var(--sp-6);
    animation: preloaderFadeIn 0.6s 0.6s var(--ease-out) forwards;
}

.preloader__line-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s linear;
}


/* ==========================================================
   07. BUTTONS & MAGNETIC
   ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--f-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
    white-space: nowrap;
    isolation: isolate;
}

    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.6s var(--ease-expo);
    }

    .btn:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

.btn--primary {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
}

    .btn--primary::before {
        background: var(--accent-dark);
    }

.btn--outline {
    color: var(--ink);
    border: 1px solid var(--ink);
}

    .btn--outline::before {
        background: var(--ink);
    }

    .btn--outline:hover {
        color: var(--white);
    }

.btn--ghost {
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

    .btn--ghost::before {
        background: var(--white);
    }

    .btn--ghost:hover {
        color: var(--black);
    }

.btn--white {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

    .btn--white::before {
        background: var(--cream);
    }

.btn--sm {
    padding: 14px 28px;
    font-size: var(--text-xs);
}

.btn--lg {
    padding: 24px 56px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

.btn__icon {
    display: inline-flex;
    transition: transform 0.4s var(--ease);
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

/* Magnetic wrapper */
.magnetic {
    will-change: transform;
    transition: transform 0.4s var(--ease-out);
}


/* ==========================================================
   08. TAGS, BADGES, LINK-ARROWS
   ========================================================== */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--accent);
    color: var(--white);
}

.badge--dark {
    background: var(--charcoal);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    position: relative;
}

    .link-arrow svg {
        width: 20px;
        height: 20px;
        transition: transform 0.4s var(--ease);
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    .link-arrow:hover svg {
        transform: translateX(6px);
    }

    .link-arrow::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: currentColor;
        transition: width 0.5s var(--ease-expo);
    }

    .link-arrow:hover::after {
        width: calc(100% - 32px);
    }

.link-arrow--light {
    color: var(--white);
}

.link-arrow--accent {
    color: var(--accent);
}


/* ==========================================================
   09. FORMS
   ========================================================== */
.form-group {
    position: relative;
    margin-bottom: var(--sp-6);
}

.form-field {
    width: 100%;
    padding: 20px 0 12px;
    font-size: var(--text-base);
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.4s var(--ease);
}

    .form-field::placeholder {
        color: transparent;
    }

    .form-field:focus {
        border-color: var(--accent);
    }

.form-label {
    position: absolute;
    top: 20px;
    left: 0;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-faint);
    pointer-events: none;
    transition: all 0.3s var(--ease);
    transform-origin: left;
}

.form-field:focus + .form-label,
.form-field:not(:placeholder-shown) + .form-label {
    top: 0;
    font-size: var(--text-xs);
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-field--dark {
    color: var(--white);
    border-color: var(--border-dark);
}

    .form-field--dark + .form-label {
        color: rgba(255,255,255,0.3);
    }

    .form-field--dark:focus + .form-label,
    .form-field--dark:not(:placeholder-shown) + .form-label {
        color: var(--accent);
    }

/* Auto-dark form fields inside dark containers */
.contact-page__form .form-field {
    color: var(--white);
    border-color: var(--border-dark);
}

.contact-page__form .form-label {
    color: rgba(255,255,255,0.3);
}

.contact-page__form .form-field:focus + .form-label,
.contact-page__form .form-field:not(:placeholder-shown) + .form-label {
    color: var(--accent);
}

textarea.form-field {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
}


/* ==========================================================
   10. SKIP LINK
   ========================================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--gutter);
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    z-index: 100000;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: var(--text-sm);
}

    .skip-link:focus {
        top: 16px;
    }


/* ==========================================================
   11. HEADER
   ========================================================== */
.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    padding-top: env(safe-area-inset-top);
    transition: background-color 0.5s var(--ease);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

    .hdr::after {
        position: absolute;
        bottom: 0;
        left: var(--gutter);
        right: var(--gutter);
        height: 1px;
        background: rgba(255,255,255,0.06);
        opacity: 0;
        transition: opacity 0.5s var(--ease);
    }

    .hdr.is-scrolled {
        background-color: var(--black);
        background: var(--black);
    }

        .hdr.is-scrolled::after {
            opacity: 1;
        }

/* Inner pages start scrolled */
.hdr--solid {
    background: var(--black);
}

    .hdr--solid::after {
        opacity: 1;
    }

.hdr__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(80px + env(safe-area-inset-top));
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hdr__logo img {
    width: 120px;
    height: auto;
    transition: opacity 0.3s ease;
}

.hdr__logo:hover img {
    opacity: 0.7;
}

.hdr__nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

.hdr__link {
    font-family: var(--f-display);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    position: relative;
    transition: color 0.3s var(--ease);
}

    .hdr__link:hover,
    .hdr__link.active {
        color: var(--white);
    }

    .hdr__link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.5s var(--ease-expo);
    }

    .hdr__link:hover::after,
    .hdr__link.active::after {
        width: 100%;
    }

/* ---- Header dropdown ---- */
.hdr__item {
    position: relative;
    display: flex;
    align-items: center;
}

    .hdr__item--has-drop > .hdr__link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

.hdr__caret {
    width: 13px;
    height: 13px;
    transition: transform 0.35s var(--ease);
}

.hdr__item--has-drop:hover .hdr__caret {
    transform: rotate(180deg);
}

.hdr__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 232px;
    margin-top: 16px;
    padding: var(--sp-3);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease-out), visibility 0.35s;
    z-index: 1000;
}

    /* invisible bridge so the cursor can travel to the dropdown */
    .hdr__dropdown::before {
        content: '';
        position: absolute;
        top: -16px;
        left: 0;
        right: 0;
        height: 16px;
    }

.hdr__item--has-drop:hover .hdr__dropdown,
.hdr__item--has-drop:focus-within .hdr__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hdr__dropdown-link {
    font-family: var(--f-display);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.65);
    padding: 11px 14px;
    white-space: nowrap;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

    .hdr__dropdown-link:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.06);
        padding-left: 20px;
    }

/* Menu button — two lines that morph */
.hdr__menu-btn {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    width: 32px;
    padding: 4px 0;
    z-index: 1100;
    position: relative;
}

.hdr__menu-line {
    display: block;
    height: 1.5px;
    background: var(--white);
    transition: all 0.5s var(--ease-expo);
}

    .hdr__menu-line:nth-child(1) {
        width: 32px;
    }

    .hdr__menu-line:nth-child(2) {
        width: 20px;
    }

.hdr__menu-btn.is-active .hdr__menu-line:nth-child(1) {
    transform: translateY(4.75px) rotate(45deg);
}

.hdr__menu-btn.is-active .hdr__menu-line:nth-child(2) {
    width: 32px;
    transform: translateY(-4.75px) rotate(-45deg);
}


/* ==========================================================
   12. MOBILE MENU — Full-screen takeover
   ========================================================== */
.mmenu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .mmenu.is-open {
        pointer-events: auto;
        visibility: visible;
    }

.mmenu__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--black);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s var(--ease-expo);
}

.mmenu.is-open .mmenu__bg {
    transform: scaleY(1);
}

.mmenu__nav {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 var(--gutter);
}

/* Spacers push links to vertical center when content fits;
   shrink to 0 when dropdown expands and nav overflows */
.mmenu__nav::before,
.mmenu__nav::after {
    content: '';
    flex: 1;
    min-height: var(--sp-5);
}

.mmenu__link {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    font-family: var(--f-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    padding: 8px 0;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s ease;
}

.mmenu.is-open .mmenu__link {
    opacity: 1;
    transform: translateX(0);
}

.mmenu__link:nth-child(1) {
    transition-delay: 0.15s;
}

.mmenu__link:nth-child(2) {
    transition-delay: 0.20s;
}

.mmenu__link:nth-child(3) {
    transition-delay: 0.25s;
}

.mmenu__link:nth-child(4) {
    transition-delay: 0.30s;
}

.mmenu__link:nth-child(5) {
    transition-delay: 0.35s;
}

.mmenu__link:nth-child(6) {
    transition-delay: 0.40s;
}

.mmenu__num {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.2);
    align-self: flex-start;
    padding-top: 8px;
}

.mmenu__link:hover {
    color: var(--accent);
}

    .mmenu__link:hover .mmenu__num {
        color: var(--accent);
    }

/* ---- Mobile submenu (dropdown groups) ---- */
.mmenu__group {
    display: flex;
    flex-direction: column;
}

.mmenu__link--toggle {
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: var(--sp-4);
}

    .mmenu__link--toggle > span {
        display: inline-flex;
        align-items: center;
        gap: var(--sp-6);
    }

.mmenu__chev {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.4s var(--ease-expo), color 0.3s var(--ease);
}

.mmenu__group.is-open .mmenu__chev {
    transform: rotate(180deg);
    color: var(--accent);
}

.mmenu__sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    padding-left: calc(var(--sp-6) + 3ch);
    transition: max-height 0.55s var(--ease-expo);
}

.mmenu__group.is-open .mmenu__sub {
    max-height: 460px;
}

.mmenu__sublink {
    font-family: var(--f-display);
    font-size: clamp(17px, 2.4vw, 22px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    padding: 7px 0;
    transition: color 0.25s var(--ease), transform 0.25s var(--ease-out);
}

    .mmenu__sublink:hover {
        color: var(--accent);
        transform: translateX(6px);
    }

.mmenu__footer {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: var(--sp-5) var(--gutter);
    padding-bottom: calc(var(--sp-5) + env(safe-area-inset-bottom));
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.5s var(--ease-out), transform 0.5s 0.5s var(--ease-out);
}

.mmenu.is-open .mmenu__footer {
    opacity: 1;
    transform: translateY(0);
}

.mmenu__social {
    display: flex;
    gap: var(--sp-5);
}

    .mmenu__social a {
        font-family: var(--f-display);
        font-size: var(--text-sm);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: rgba(255,255,255,0.4);
        transition: color 0.3s ease;
    }

        .mmenu__social a:hover {
            color: var(--white);
        }

.mmenu__info {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.3);
    text-align: right;
}

/* Menu header — logo + close */
.mmenu__header {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-5) var(--gutter);
    padding-top: calc(var(--sp-5) + env(safe-area-inset-top));
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s 0.2s var(--ease-out);
}

.mmenu.is-open .mmenu__header {
    opacity: 1;
}

.mmenu__logo img {
    height: auto;
    width: 150px;
    filter: brightness(0) invert(1);
}

.mmenu__close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

    .mmenu__close:hover {
        border-color: var(--accent);
    }

    .mmenu__close svg {
        width: 20px;
        height: 20px;
        stroke: var(--white);
        stroke-width: 2;
        fill: none;
    }

/* Menu contact info */
.mmenu__contact {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.mmenu__contact-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .mmenu__contact-item:hover {
        color: var(--white);
    }

    .mmenu__contact-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        stroke: var(--accent);
        fill: none;
        stroke-width: 1.5;
    }

.mmenu__social-icons {
    display: flex;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
}

    .mmenu__social-icons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.12);
        transition: border-color 0.3s ease, background 0.3s ease;
    }

        .mmenu__social-icons a:hover {
            border-color: var(--accent);
            background: rgba(232,76,14,0.1);
        }

    .mmenu__social-icons svg {
        width: 16px;
        height: 16px;
        fill: rgba(255,255,255,0.6);
        transition: fill 0.3s ease;
    }

    .mmenu__social-icons a:hover svg {
        fill: var(--white);
    }


/* ==========================================================
   13. HERO — Cinematic Typography
   ========================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero__video {
    /* Handled by .hero__slide styles */
}

.hero__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient( 180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,0.95) 100% );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter) var(--sp-8);
    max-width: var(--container-wide);
    margin: 0 auto;
    width: 100%;
}

.hero__title {
    margin-bottom: var(--sp-9);
    margin-left: var(--sp-8);
    ;
}

.hero__line {
    display: block;
    overflow: hidden;
    line-height: 0.9;
}

.hero__word {
    display: inline-block;
    font-family: var(--f-display);
    font-size: var(--text-display-hero-2);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.04em;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease-expo);
    line-height: normal;
}

.hero.is-ready .hero__word {
    transform: translateY(0);
}

.hero__line:nth-child(2) .hero__word {
    transition-delay: 0.15s;
}

/* Outlined second line variant */
.hero__word--outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
}

.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__info {
    display: flex;
    gap: var(--sp-7);
}

    .hero__info span {
        font-family: var(--f-mono);
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,0.35);
    }

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
}

.hero__scroll-text {
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

    .hero__scroll-line::after {
        content: '';
        position: absolute;
        top: -100%;
        width: 100%;
        height: 100%;
        background: var(--accent);
        animation: scrollPulse 2s var(--ease-smooth) infinite;
    }

/* ----------------------------------------------------------
   HERO SLIDER
   ---------------------------------------------------------- */
.hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s var(--ease-smooth);
    pointer-events: none;
    will-change: opacity;
}

    .hero__slide.is-active {
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
    }

    .hero__slide .hero__video,
    .hero__slide .hero__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.75;
    }

    .hero__slide .hero__img {
        opacity: 0.55;
    }

    /* Ken Burns effect for image slides */
    .hero__slide[data-type="image"] .hero__img {
        transform: scale(1.08);
        transition: transform 8s linear, opacity 1.2s var(--ease-smooth);
    }

    .hero__slide[data-type="image"].is-active .hero__img {
        transform: scale(1);
    }

/* Arrows */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out);
}

    .hero__arrow svg {
        width: 20px;
        height: 20px;
    }

    .hero__arrow:hover {
        background: rgba(255,255,255,0.12);
        color: var(--white);
        border-color: rgba(255,255,255,0.25);
    }

    .hero__arrow:active {
        transform: translateY(-50%) scale(0.92);
    }

.hero__arrow--prev {
    left: var(--gutter);
}

.hero__arrow--next {
    right: var(--gutter);
}

/* Dots */
.hero__dots {
    position: absolute;
    bottom: calc(var(--sp-8) + 100px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out);
    padding: 0;
}

    .hero__dot:hover {
        border-color: rgba(255,255,255,0.6);
        transform: scale(1.3);
    }

    .hero__dot.is-active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.2);
    }

/* Progress bar */
.hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.06);
    z-index: 5;
    overflow: hidden;
}

.hero__progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s linear;
}

    .hero__progress-fill.is-animating {
        transition: width linear;
    }

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero__arrow {
        width: 35px;
        height: 35px;
    }

        .hero__arrow svg {
            width: 15px;
            height: 15px;
        }

    .hero__arrow--prev {
        left: 15px;
        bottom: 7rem;
        top: unset;
    }

    .hero__arrow--next {
        right: 15px;
        bottom: 7rem;
        top: unset;
    }

    .hero__dots {
        bottom: calc(var(--sp-8) + 80px);
        gap: 10px;
    }

    .hero__dot {
        width: 8px;
        height: 8px;
    }
}


/* ==========================================================
   14. TICKER / MARQUEE
   ========================================================== */
.ticker {
    background: var(--black);
    padding: var(--sp-6) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

.ticker__track {
    display: flex;
    align-items: center;
    gap: var(--sp-7);
    width: max-content;
    animation: tickerScroll 50s linear infinite;
    will-change: transform;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

.ticker__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

    .ticker__item img {
        height: 45px;
        width: auto;
        opacity: 0.35;
        filter: brightness(0) invert(1);
        transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
    }

    .ticker__item:hover img {
        opacity: 1;
    }

.ticker__dot {
    flex-shrink: 0;
    font-size: 6px;
    color: rgba(255,255,255,0.15);
    user-select: none;
}


/* ==========================================================
   14B. BRAND SHOWCASE — Premium Logo Grid
   ========================================================== */
.brands {
    padding: var(--section-py) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    /* Decorative dot grid */
    .brands::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 32px 32px;
        pointer-events: none;
    }

.brands__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.brands__header {
    text-align: center;
    margin-bottom: var(--sp-10);
}

    .brands__header h2 {
        font-size: var(--text-2xl);
        margin-top: var(--sp-3);
        margin-bottom: var(--sp-4);
        color: var(--white);
    }

    .brands__header p {
        font-size: var(--text-base);
        color: rgba(255,255,255,0.45);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.7;
    }

.brands__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    /*background: rgba(255,255,255,0.06);*/
}

.brands__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--sp-9) var(--sp-6);
    background: var(--black);
    text-decoration: none;
    color: var(--white);
    transition: all 0.5s var(--ease-out);
    position: relative;
}

    .brands__item:hover {
        background: var(--charcoal);
    }

    /* Accent glow on hover */
    .brands__item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.5s var(--ease-expo);
    }

    .brands__item:hover::after {
        width: 60%;
    }


.brands__logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
}

    .brands__logo img {
        height: auto;
        max-width: 220px;
        object-fit: contain;
        filter: brightness(0) invert(1);
        opacity: 0.5;
        transition: all 0.5s var(--ease);
    }

.brands__item:hover .brands__logo img {
    opacity: 1;
    filter: brightness(1) invert(0) drop-shadow(0 0 20px rgba(232,76,14,0.3));
}

.brands__name {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 600;
    display: none;
    margin-bottom: 4px;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease);
}

.brands__item:hover .brands__name {
    opacity: 1;
}

.brands__sector {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out);
}

.brands__item:hover .brands__sector {
    opacity: 1;
    transform: translateY(20px);
}


/* ==========================================================
   15. EDITORIAL ABOUT — Sticky Image + Scrolling Text
   ========================================================== */
.editorial {
    padding: var(--section-py) 0;
    overflow: hidden;
    position: relative;
}

    /* Subtle ambient bloom */
    .editorial::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.04) 0%, transparent 60%);
        top: 20%;
        right: -200px;
        pointer-events: none;
    }

.editorial__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.editorial__media {
    position: relative;
}

.editorial__img {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-7));
    overflow: hidden;
}

    .editorial__img img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        transition: transform 8s var(--ease);
    }

    .editorial__img:hover img {
        transform: scale(1.04);
    }

    /* Decorative accent bar */
    .editorial__img::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 4px;
        height: 80px;
        background: var(--accent);
    }

.editorial__content {
    padding-top: var(--sp-7);
}

.editorial__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--sp-7);
    color: var(--ink);
}

.editorial__body p {
    font-size: var(--text-base);
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: var(--sp-5);
}

    .editorial__body p:last-child {
        margin-bottom: var(--sp-7);
    }

.editorial__signature {
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border);
}

    .editorial__signature strong {
        display: block;
        font-family: var(--f-display);
        font-size: var(--text-lg);
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px;
    }

    .editorial__signature span {
        font-size: var(--text-sm);
        color: var(--ink-faint);
    }


/* ==========================================================
   16. SHOWCASE — Premium Sector Cards (Redesigned)
   ========================================================== */
.showcase {
    background: var(--black);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

    /* Ambient glow */
    .showcase::before {
        content: '';
        position: absolute;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(232,76,14,0.06) 0%, transparent 65%);
        top: 10%;
        left: -200px;
        pointer-events: none;
    }

    .showcase::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(232,76,14,0.04) 0%, transparent 60%);
        bottom: 5%;
        right: -150px;
        pointer-events: none;
    }

.showcase__wrap {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

.showcase__header {
    max-width: 640px;
    margin-bottom: var(--sp-9);
}

    .showcase__header h2 {
        font-size: var(--text-1xl);
        margin-bottom: 0;
        color: var(--white);
    }

    .showcase__header .tag {
        color: var(--accent);
    }

/* Premium grid layout */
.showcase__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(380px, auto);
    gap: 20px;
}

.showcase__card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    grid-column: span 4;
    transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease);
}

    .showcase__card:hover {
        border-color: rgba(232,76,14,0.3);
        transform: translateY(-4px);
    }

/* Size variants */
.showcase__card--hero {
    grid-column: span 8;
    grid-row: span 2;
}

.showcase__card--wide {
    grid-column: span 8;
}

.showcase__card--wide-full {
    grid-column: span 12;
}

.showcase__card--tall {
    grid-row: span 2;
}

/* Full-bleed image */
.showcase__card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.showcase__card-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

    .showcase__card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s var(--ease), opacity 0.6s var(--ease);
    }

.showcase__card:hover .showcase__card-img img {
    transform: scale(1.08);
}

/* Gradient overlay on card */


.showcase__card:hover::before {
    background: linear-gradient(180deg, transparent 0%, rgba(28,28,30,0.5) 30%, rgba(28,28,30,0.9) 70%, rgba(10,10,10,0.98) 100% );
}

/* Card content — positioned at bottom */
.showcase__card-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: var(--sp-7);
}

    .showcase__card--hero .showcase__card-info {
        padding: var(--sp-9);
    }

.showcase__card-num {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: var(--white);
    font-weight: 500;
    background: var(--accent);
    letter-spacing: 0.15em;
    padding: var(--sp-2) var(--sp-5);
   display:none;
}

.showcase__card-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--sp-3);
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 3px 3px 6px var(--black);
}

.showcase__card--hero .showcase__card-info h3 {
    font-size: var(--text-xl);
}

.showcase__card-info p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,1);
    max-width: 440px;
}

.showcase__card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    width: fit-content;
    transition: all 0.4s var(--ease);
}
.showcase__card-link-full-width{ 
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}
    .showcase__card-link:hover {
        color: var(--white);
        gap: 16px;
        box-shadow: var(--shadow-elevated);
    }

    .showcase__card-link::after {
        content: '→';
    }

/* Brand logo row inside card */
.showcase__card-brands {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    flex-wrap: wrap;
}

    .showcase__card-brands img {
        height: 20px;
        width: auto;
        opacity: 0.4;
        filter: brightness(0) invert(1);
        transition: opacity 0.3s var(--ease);
    }

.showcase__card:hover .showcase__card-brands img {
    opacity: 0.7;
}


/* ==========================================================
   17. STATS GRID — Counters (responsive grid, no slider)
   ========================================================== */
.hscroll {
    position: relative;
    padding: var(--sp-6) 0;
    background: var(--black);
    color: var(--white);
    overflow: clip;
}

    /* Ambient bloom glow */
    .hscroll::before {
        content: '';
        position: absolute;
        width: 1000px;
        height: 1000px;
        background: radial-gradient(circle, rgba(232,76,14,0.07) 0%, transparent 60%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 0;
    }

.hscroll__pin {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    z-index: 1;
}

/* Web: 4 across */
.hscroll__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

.hscroll__slide {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-9) var(--sp-5);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.5s var(--ease-out);
}
    .hscroll__slide:hover {
        border-color: rgba(232,76,14,0.45);
        background: rgba(255,255,255,0.04);
        transform: translateY(-6px);
    }

/* — Multi-value auto-slider (Kart 2) — */
.hscroll__slide--multi {
    overflow: hidden;
    gap: var(--sp-4);
}

.hscroll__multi-track {
    display: grid;
    grid-template-areas: "cell";
    width: 100%;
    min-height: 130px;
}

.hscroll__multi-item {
    grid-area: cell;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    pointer-events: none;
}

    .hscroll__multi-item.is-active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.hscroll__multi-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    flex-shrink: 0;
}

.hscroll__multi-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease-back);
}

    .hscroll__multi-dot:hover {
        border-color: rgba(255,255,255,0.55);
        transform: scale(1.3);
    }

    .hscroll__multi-dot.is-active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.55);
    }

/* Thin progress bar at bottom of slider card */
.hscroll__multi-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--accent);
    opacity: 0.7;
    z-index: 1;
    transition: width 5s linear;
}

    /* Decorative ring behind number */
    .hscroll__slide::before {
        content: '';
        position: absolute;
        width: clamp(160px, 16vw, 270px);
        height: clamp(160px, 16vw, 270px);
        border: 1px solid rgba(255,255,255,0.04);
        border-radius: 50%;
        pointer-events: none;
    }

.hscroll__number {
    font-family: var(--f-display);
    font-size: clamp(56px, 6vw, 92px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
    margin-bottom: var(--sp-3);
    font-variant-numeric: tabular-nums;
    position: relative;
    z-index: 1;
    min-height: 1em;
}

    .hscroll__number .accent {
        color: var(--accent);
    }

.hscroll__label {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

/* Tablet & small laptop: 2 x 2 */
@media (max-width: 1200px) {
    .hscroll__track {
    }
}

/* Mobile: stacked */
@media (max-width: 640px) {
    .hscroll__track {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }
}


/* ==========================================================
   18. STACKED SECTOR CARDS
   ========================================================== */
.stacked {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

    /* Ambient gradient */
    .stacked::before {
        content: '';
        position: absolute;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(232,76,14,0.03) 0%, transparent 60%);
        bottom: 10%;
        left: -200px;
        pointer-events: none;
    }

.stacked__head {
    max-width: var(--container);
    margin: 0 auto var(--sp-9);
    padding: 0 var(--gutter);
    width: 100%;
}

.stacked__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.stacked__header {
    max-width: 640px;
}

    .stacked__header h2 {
        font-size: var(--text-2xl);
    }

.stacked__cards {
}

.stacked__card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--white);
    color: inherit;
    text-decoration: none;
    min-height: 500px;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}

    .stacked__card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    }

    .stacked__card-img {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .stacked__card:nth-child(even) {
        background: var(--charcoal);
        border-color: var(--slate);
    }

    .stacked__card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100% );
        pointer-events: none;
        z-index: 1;
    }

    .stacked__card:nth-child(even) .stacked__card-content {
        color: var(--white);
    }

        .stacked__card:nth-child(even) .stacked__card-content h3 {
        }

        .stacked__card:nth-child(even) .stacked__card-content p {
            color: rgba(255,255,255,0.55);
        }

    .stacked__card:nth-child(even) .stacked__card-num {
        color: var(--accent);
    }

.stacked__card-img {
    overflow: hidden;
}

    .stacked__card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s var(--ease);
    }

.stacked__card:hover .stacked__card-img img {
    transform: scale(1.05);
}

.stacked__card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-6);
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2
}

.stacked__card-num {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: var(--sp-5);
}

.stacked__card-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--sp-4);
    color: var(--white);
}

.stacked__card-content p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: var(--sp-6);
}


/* ==========================================================
   19. CTA SPLIT — Diagonal
   ========================================================== */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.cta-split__dark {
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-10) var(--sp-10) var(--sp-10) var(--gutter);
    position: relative;
}

    /* Diagonal cut */
    .cta-split__dark::after {
        content: '';
        position: absolute;
        top: 0;
        right: -60px;
        width: 120px;
        height: 100%;
        background: var(--black);
        transform: skewX(-4deg);
        z-index: 2;
    }

    .cta-split__dark h2 {
        font-size: var(--text-3xl);
        color: var(--white);
        margin-bottom: var(--sp-5);
        position: relative;
        z-index: 3;
    }

    .cta-split__dark p {
        font-size: var(--text-base);
        line-height: 1.8;
        color: rgba(255,255,255,0.5);
        max-width: 480px;
        position: relative;
        z-index: 3;
    }

.cta-split__light {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--sp-10);
}

.cta-split__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.cta-split__light:hover .cta-split__img {
    transform: scale(1.04);
}

.cta-split__light-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    z-index: 1;
}

.cta-split__light .btn {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   20. MAGAZINE — Projects Grid
   ========================================================== */
.magazine {
    padding: var(--section-py) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

    .magazine::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.03) 0%, transparent 60%);
        bottom: 10%;
        left: -200px;
        pointer-events: none;
    }

.magazine__wrap {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.magazine__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--sp-9);
    flex-wrap: wrap;
    gap: var(--sp-5);
}

    .magazine__header h2 {
        font-size: var(--text-2xl);
    }

/* Asymmetric masonry-like grid */
.magazine__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 12px;
}

.magazine__item {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    cursor: pointer;
}

.magazine__item--hero {
    grid-column: span 7;
    grid-row: span 2;
}

.magazine__item--wide {
    grid-column: span 7;
}

.magazine__item--std {
    grid-column: span 5;
}

.magazine__img {
    position: absolute;
    inset: 0;
}

    .magazine__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s var(--ease), opacity 0.6s var(--ease);
    }

.magazine__item:hover .magazine__img img {
    transform: scale(1.08);
    opacity: 0.7;
}

.magazine__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-6);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s var(--ease-out);
}

.magazine__item:hover .magazine__info {
    transform: translateY(0);
    opacity: 1;
}

.magazine__cat {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--sp-2);
}

.magazine__info h3 {
    font-size: var(--text-lg);
    color: var(--white);
    font-weight: 500;
}


/* ==========================================================
   21. QUOTE — Full-screen Centered
   ========================================================== */
.quote-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: var(--sp-10) var(--gutter);
}

    /* Subtle radial glow */
    .quote-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(232,76,14,0.08) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.quote-section__wrap {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.quote-section__mark {
    font-family: var(--f-display);
    font-size: clamp(120px, 15vw, 240px);
    font-weight: 700;
    line-height: 0.6;
    color: rgba(255,255,255,0.04);
    margin-bottom: var(--sp-6);
    user-select: none;
}

.quote-section__text {
    font-family: var(--f-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: var(--sp-8);
}

.quote-section__cite {
    font-style: normal;
}

    .quote-section__cite strong {
        display: block;
        font-family: var(--f-display);
        font-size: var(--text-md);
        font-weight: 600;
        color: var(--white);
        margin-bottom: 4px;
    }

    .quote-section__cite span {
        font-size: var(--text-sm);
        color: rgba(255,255,255,0.35);
    }


/* ==========================================================
   22. NEWS STRIP — Horizontal Drag Scroll
   ========================================================== */
.news-strip {
    padding: var(--section-py) 0;
    overflow: hidden;
}

.news-strip__header {
    max-width: var(--container);
    margin: 0 auto var(--sp-9);
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--sp-5);
}

    .news-strip__header h2 {
        font-size: var(--text-2xl);
        margin-top: var(--sp-3);
    }

.news-strip__track {
    display: flex;
    gap: var(--sp-5);
    padding: 0 var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    margin-left: 50px;
}

    .news-strip__track::-webkit-scrollbar {
        display: none;
    }

    .news-strip__track.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }

.news-strip__card {
    flex: 0 0 420px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    transition: transform 0.3s var(--ease);
}

    .news-strip__card:hover {
        transform: translateY(-4px);
    }

.news-strip__img {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

    .news-strip__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s var(--ease);
    }

.news-strip__card:hover .news-strip__img img {
    transform: scale(1.06);
}

.news-strip__body {
    padding: var(--sp-5) 0;
}

.news-strip__badge {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--sp-3);
}

.news-strip__body h3 {
    font-size: var(--text-lg);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

    .news-strip__body h3 a {
        transition: color 0.3s ease;
    }

        .news-strip__body h3 a:hover {
            color: var(--accent);
        }


/* ==========================================================
   23. CONTACT CTA — Dark Split: Text + Form
   ========================================================== */
.contact-cta {
    padding: var(--section-py) 0;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

    /* Ambient glow */
    .contact-cta::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.06) 0%, transparent 60%);
        top: 0;
        left: -200px;
        pointer-events: none;
    }

.contact-cta__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-cta__text {
    padding-top: var(--sp-8);
}

    .contact-cta__text .tag {
        color: var(--accent);
        border-color: rgba(232,76,14,0.3);
    }

    .contact-cta__text h2 {
        font-size: var(--text-3xl);
        margin-bottom: var(--sp-5);
        color: var(--white);
    }

    .contact-cta__text p {
        font-size: var(--text-base);
        line-height: 1.8;
        color: rgba(255,255,255,0.55);
        margin-bottom: var(--sp-8);
        max-width: 420px;
    }

/* Contact details in CTA */
.contact-cta__details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.contact-cta__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

    .contact-cta__detail svg {
        flex-shrink: 0;
        margin-top: 2px;
        color: var(--accent);
    }

    .contact-cta__detail a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s var(--ease);
    }

        .contact-cta__detail a:hover {
            color: var(--accent);
        }

/* Visual block in CTA */
.contact-cta__visual {
    position: relative;
    overflow: hidden;
    align-self: center;
}

    .contact-cta__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4 / 3;
        display: block;
    }

    .contact-cta__visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, var(--black) 0%, transparent 25%), linear-gradient(to left, var(--black) 0%, transparent 25%), linear-gradient(to bottom, var(--black) 0%, transparent 20%), linear-gradient(to top, var(--black) 0%, transparent 20%);
        pointer-events: none;
        z-index: 1;
    }

/* ==========================================================
   24. FOOTER — Mega
   ========================================================== */
.ftr {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

/* Giant text watermark */
.ftr__giant {
    padding: var(--sp-9) var(--gutter) 0;
    display: none;
    overflow: hidden;
    text-align: center;
}

    .ftr__giant span {
        display: block;
        font-family: var(--f-display);
        font-size: clamp(48px, 10vw, 140px);
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
        white-space: nowrap;
        user-select: none;
        text-transform: uppercase;
    }

.ftr__wrap {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: var(--sp-9) var(--gutter) var(--sp-7);
}

.ftr__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sp-9);
    padding-bottom: var(--sp-9);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ftr__col--brand p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin: var(--sp-5) 0 var(--sp-6);
    max-width: 320px;
}

.ftr__logo {
    height: 90px;
    width: auto;
}

.ftr__social {
    display: flex;
    gap: var(--sp-4);
}

    .ftr__social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-full);
        transition: all 0.3s var(--ease);
    }

        .ftr__social a svg {
            width: 16px;
            height: 16px;
            fill: rgba(255,255,255,0.5);
            transition: fill 0.3s ease;
        }

        .ftr__social a:hover {
            border-color: var(--accent);
            background: var(--accent);
        }

            .ftr__social a:hover svg {
                fill: var(--white);
            }

.ftr__col h5 {
    font-family: var(--f-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--sp-5);
}

.ftr__col ul li {
    margin-bottom: var(--sp-3);
}

.ftr__col ul a {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease, padding-left 0.3s var(--ease);
}

    .ftr__col ul a:hover {
        color: var(--white);
        padding-left: 8px;
    }

.ftr__address {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--sp-4);
}

    .ftr__address strong {
        color: rgba(255,255,255,0.7);
    }

.ftr__contact-link {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--sp-2);
    transition: color 0.3s ease;
}

    .ftr__contact-link:hover {
        color: var(--accent);
    }

.ftr__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--sp-6);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.25);
}

    .ftr__bottom a {
        color: rgba(255,255,255,0.35);
        transition: color 0.3s ease;
    }

        .ftr__bottom a:hover {
            color: var(--accent);
        }

.ftr__top-btn {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s ease;
    cursor: pointer;
}

    .ftr__top-btn:hover {
        color: var(--white);
    }


/* ==========================================================
   25. PAGE HEADER — Inner Pages (Parallax-ready)
   ========================================================== */
.pg-hero {
    position: relative;
    height: clamp(480px, 60vh, 650px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
}

/* Solid (imageless) hero — used by Projelerimiz */
.pg-hero--solid {
    height: clamp(340px, 44vh, 480px);
}

    .pg-hero--solid::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 28% 25%, rgba(232,76,14,0.18) 0%, transparent 55%);
        pointer-events: none;
    }

/* ==========================================================
   PROJELERİMİZ — Projects page (3-column grid)
   ========================================================== */
.projects-page {
    padding: var(--section-py) 0;
    position: relative;
    background: var(--surface-alt);
}

.projects-page__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.projects-page__head {
    text-align: center;
    margin-bottom: var(--sp-9);
}

    .projects-page__head h2 {
        font-size: var(--text-2xl);
        margin-top: var(--sp-3);
    }

.projects-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}

    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
    }

.project-card__img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

    .project-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s var(--ease);
    }

.project-card:hover .project-card__img img {
    transform: scale(1.06);
}

.project-card__info {
    padding: var(--sp-5) var(--sp-5) var(--sp-6);
}

.project-card__cat {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.project-card__info h3 {
    font-size: var(--text-lg);
    margin-top: var(--sp-2);
    color: var(--ink);
}

@media (max-width: 1024px) {
    .projects-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .projects-page__grid {
        grid-template-columns: 1fr;
    }
}

.pg-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

    .pg-hero__bg img {
        width: 100%;
        /*height: 100%;*/
        object-fit: cover;
        will-change: transform;
        backface-visibility: hidden;
    }

.pg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.95) 100% );
}

.pg-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter) var(--sp-8);
    width: 100%;
}

.pg-hero__breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: var(--sp-4);
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
}

    .pg-hero__breadcrumb a {
        color: rgba(255,255,255,0.35);
        transition: color 0.3s ease;
    }

        .pg-hero__breadcrumb a:hover {
            color: var(--white);
        }

    .pg-hero__breadcrumb .sep {
        color: rgba(255,255,255,0.15);
    }

.pg-hero h1 {
    font-size: var(--text-2xl);
    color: var(--white);
}

/* Smaller variant for policy pages */
.pg-hero--sm {
    height: clamp(360px, 45vh, 480px);
}

    .pg-hero--sm h1 {
        font-size: var(--text-2xl);
    }


/* ==========================================================
   26. ABOUT PAGE — Chairman, Timeline, Values
   ========================================================== */
/* Chairman split */
.chairman {
    padding: var(--section-py) 0;
}

.chairman__grid {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--sp-8);
    align-items: start;
}

.chairman__photo {
    position: relative;
}

    .chairman__photo img {
        width: 100%;
        aspect-ratio: 2 / 4;
        object-fit: cover;
    }

    /* Decorative accent block */
    .chairman__photo::after {
        content: '';
        position: absolute;
        bottom: -16px;
        right: -16px;
        width: 100px;
        height: 100px;
        background: var(--accent);
        z-index: -1;
    }

.chairman__badge {
    position: absolute;
    top: var(--sp-5);
    left: var(--sp-5);
    background: var(--accent);
    color: var(--white);
    padding: var(--sp-3) var(--sp-4);
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chairman__text {
    padding-top: var(--sp-6);
}

    .chairman__text h2 {
        font-size: var(--text-2xl);
        margin-bottom: var(--sp-5);
    }

    .chairman__text p {
        font-size: var(--text-base);
        line-height: 1.9;
        color: var(--ink-muted);
        margin-bottom: var(--sp-4);
    }

.chairman__sig {
    margin-top: var(--sp-7);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
}

    .chairman__sig strong {
        display: block;
        font-family: var(--f-display);
        font-size: var(--text-lg);
        color: var(--ink);
        margin-bottom: 2px;
    }

    .chairman__sig span {
        font-size: var(--text-base);
        color: var(--ink-faint);
    }

/* Timeline — Horizontal */
.timeline {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
    overflow: hidden;
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.04) 0%, transparent 60%);
        top: 30%;
        left: -200px;
        pointer-events: none;
    }

.timeline__header {
    max-width: var(--container);
    margin: 0 auto var(--sp-9);
    padding: 0 var(--gutter);
}

    .timeline__header h2 {
        font-size: var(--text-2xl);
        margin-top: var(--sp-3);
    }

.timeline__track-wrap {
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
}

    .timeline__track-wrap.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
    }

    .timeline__track-wrap::-webkit-scrollbar {
        display: none;
    }

/* Right-side fade — pinned to the section edge, does NOT scroll with content */
.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--surface-alt) 85%);
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.4s var(--ease);
}

    /* Hide the fade once user reaches the end */
    .timeline.is-scroll-end::after {
        opacity: 0;
    }

/* ===== Controls bar: hint (left) + nav buttons (bottom-right) ===== */
.timeline__controls {
    display: flex;
    align-items: center;
    justify-content: end; 
    gap: var(--sp-5);
    max-width: var(--container);
    margin: var(--sp-6) auto 0;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 4;
}

.timeline__hint {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--f-mono);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

    .timeline__hint-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: var(--radius-full);
        background: rgba(232,76,14,0.12);
        color: var(--accent);
        animation: hint-nudge 1.5s ease-in-out infinite;
    }

    /* Fades out once the user has scrolled to the end */
    .timeline.is-scroll-end .timeline__hint {
        opacity: 0.35;
    }

    .timeline.is-scroll-end .timeline__hint-icon {
        animation: none;
    }

.timeline__nav {
    display: flex;
    gap: var(--sp-3);
    flex-shrink: 0;
}

.timeline__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

    .timeline__nav-btn:hover:not(:disabled) {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-elevated);
    }

    .timeline__nav-btn:active:not(:disabled) {
        transform: translateY(0);
    }

    .timeline__nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

@keyframes hint-nudge {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
}

@media (max-width: 768px) {
    .timeline__hint{
        display:none
    }
    .timeline__track{
        padding-bottom:0!important;
    }
    .timeline__controls {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-4);
    }

    .timeline__nav {
        align-self: flex-end;
    }

    .timeline__nav-btn {
        width: 46px;
        height: 46px;
    }
}

.timeline__track {
    display: flex;
    gap: 0;
    padding: var(--sp-7) var(--gutter) var(--sp-9);
    width: max-content;
    position: relative;
}

    /* Horizontal line */
    .timeline__track::before {
        content: '';
        position: absolute;
        top: 0;
        left: var(--gutter);
        right: var(--gutter);
        height: 1px;
        background: var(--border);
    }

.timeline__item {
    width: 320px;
    flex-shrink: 0;
    padding-right: var(--sp-7);
    position: relative;
}

    /* Node on the line */
    .timeline__item::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 0;
        width: 14px;
        height: 14px;
        border: 2px solid var(--border);
        border-radius: var(--radius-full);
        background: var(--surface-alt);
        transition: all 0.3s var(--ease);
    }

    .timeline__item:hover::before {
        border-color: var(--accent);
        background: var(--accent);
        transform: scale(1.3);
    }

.timeline__year {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--sp-3);
}

.timeline__item h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--sp-3);
    color: var(--ink);
}

.timeline__item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-muted);
}

/* Values — Premium Cards */
.values {
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

    /* Ambient bloom */
    .values::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.05) 0%, transparent 55%);
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

.values__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.values__header {
    text-align: center;
    margin-bottom: var(--sp-9);
}

    .values__header h2 {
        font-size: var(--text-2xl);
        margin-top: var(--sp-3);
    }

/* Premium card grid */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
}

/* Vizyon & Misyon — single row pair */
.values__grid--pair {
    grid-template-columns: repeat(2, 1fr);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .values__grid--pair {
        grid-template-columns: 1fr;
    }
}

/* Anchor offset for fixed header (Hakkımızda dropdown navigation) */
.about-intro,
.chairman,
.timeline,
.values,
.degerler {
    scroll-margin-top: 90px;
}

/* ==========================================================
   HAKKIMIZDA — Intro section
   ========================================================== */
.about-intro {
    padding: var(--section-py) 0 0;
    position: relative;
    overflow: visible;
}

.about-intro__wrap {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--sp-10);
    align-items: start;
}

.about-intro__media {
    position: sticky;
    top: 100px; /* header yüksekliğine göre 80-120px arası oynat */
    align-self: start;
    overflow: hidden;
    height: calc(100vh - 140px);
    min-height: 520px;
}

    .about-intro__media img {
        width: 100%;
        height: 100%;
        max-height: none;
        aspect-ratio: auto;
        object-fit: cover;
        display: block;
    }

.about-intro__content .tag {
    margin-bottom: var(--sp-4);
}

.about-intro__content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-5);
}

.about-intro__body {
    font-size: var(--text-base);
    line-height: 1.9;
    color: var(--ink-muted);
}

    .about-intro__body p {
        margin-bottom: var(--sp-4);
    }

        .about-intro__body p:last-child {
            margin-bottom: 0;
        }
@media (max-width: 991px) {
    .about-intro__wrap {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
    }

    .about-intro__media {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
    }

        .about-intro__media img {
            height: auto;
            max-height: 520px;
        }
}

/* ==========================================================
   DEĞERLERİMİZ — Numbered editorial section (dark)
   ========================================================== */
.degerler {
    background: var(--white);
    color: var(--white);
    padding: var(--sp-9) 0;
    position: relative;
    overflow: hidden;
}

    .degerler::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.06) 0%, transparent 60%);
        top: -200px;
        right: -200px;
        pointer-events: none;
    }

.degerler__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.degerler__intro {
    text-align: center;
    margin-bottom: var(--sp-9);
}

    .degerler__intro h2 {
        font-size: var(--text-2xl);
        color: var(--black);
        margin-top: var(--sp-3);
    }

.degerler__list {
    counter-reset: deger;
    columns: 2;
    column-gap: var(--sp-10);
}

    /* Value title */
    .degerler__list :is(h2, h3, h4, h5, h6) {
        counter-increment: deger;
        position: relative;
        font-family: var(--f-display);
        font-size: var(--text-lg);
        font-weight: 600;
        color: var(--black-soft);
        margin: 0 0 var(--sp-3);
        padding: var(--sp-6) 0 0 64px;
        border-top: 1px solid rgba(255,255,255,0.12);
        break-inside: avoid;
        break-after: avoid;
    }

        .degerler__list :is(h2, h3, h4, h5, h6)::before {
            content: counter(deger, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: var(--sp-6);
            font-family: var(--f-mono);
            font-size: var(--text-base);
            font-weight: 500;
            color: var(--accent);
            letter-spacing: 0.02em;
        }

    /* Fallback if titles are bold instead of headings */
    .degerler__list strong,
    .degerler__list b {
        color: var(--black);
        font-weight: 600;
    }

    .degerler__list p {
        margin: 0 0 var(--sp-7);
        padding-left: 64px;
        font-size: 15px;
        line-height: 1.85;
        color: var(--black-soft);
        break-inside: avoid;
    }

@media (max-width: 980px) {
    .about-intro__wrap {
        grid-template-columns: 1fr;
        gap: var(--sp-7);
    }

    .about-intro__media {
        max-width: 460px;
    }
}

@media (max-width: 768px) {
    .degerler__list {
        columns: 1;
    }
}

.values__card {
    background: var(--white);
    padding: var(--sp-8) var(--sp-7);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}

    .values__card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 24px 80px rgba(232,76,14,0.08);
    }

    /* Accent top bar */
    .values__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s var(--ease-expo);
    }

    .values__card:hover::before {
        transform: scaleX(1);
    }

/* Card number */
.values__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,76,14,0.06);
    margin-bottom: var(--sp-5);
    font-family: var(--f-mono);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.values__card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--sp-4);
    color: var(--ink);
}

.values__card p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-muted);
}

.values__card ul {
    padding: 0;
    columns: 1;
}

    .values__card ul li {
        font-size: 15px;
        line-height: 1.8;
        color: var(--ink-muted);
        padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
        position: relative;
    }

        .values__card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: var(--radius-full);
        }

/* Wide card — now unused, kept for compatibility */
.values__card--wide {
    /* grid-column: 1 / -1; — removed for 3 equal cols */
}

    .values__card--wide ul,
    .values__card--wide .values__list {
        columns: 1;
        padding: 0;
        list-style: none;
    }

/* Accordion fallback styles (kept for backwards compat) */
.values__item {
    border-bottom: 1px solid var(--border);
}

    .values__item:first-child {
        border-top: 1px solid var(--border);
    }

.values__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-6) 0;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}

    .values__trigger h3 {
        font-size: var(--text-lg);
        font-weight: 500;
        transition: color 0.3s var(--ease);
    }

    .values__trigger:hover h3 {
        color: var(--accent);
    }

.values__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

    .values__icon::before,
    .values__icon::after {
        content: '';
        position: absolute;
        background: var(--ink);
        transition: transform 0.4s var(--ease-expo);
    }

    .values__icon::before {
        width: 16px;
        height: 1.5px;
    }

    .values__icon::after {
        width: 1.5px;
        height: 16px;
    }

.values__item.is-open .values__icon::after {
    transform: rotate(90deg);
}

.values__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-expo);
}

.values__panel-inner {
    padding-bottom: var(--sp-6);
}

.values__panel p {
    font-size: var(--text-base);
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: var(--sp-4);
}

.values__panel ul {
    columns: 2;
    column-gap: var(--sp-7);
    padding: 0;
}

    .values__panel ul li {
        font-size: 15px;
        line-height: 1.8;
        color: var(--ink-muted);
        padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
        position: relative;
        break-inside: avoid;
    }

        .values__panel ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: var(--radius-full);
        }


/* ==========================================================
   27. SECTORS PAGE — Full-page sections
   ========================================================== */
.sector-full {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
}

    .sector-full:nth-child(even) .sector-full__img {
        order: 2;
    }

    .sector-full:nth-child(even) .sector-full__content {
        order: 1;
    }

    .sector-full:nth-child(even) {
        background: var(--surface-alt);
    }

.sector-full__img {
    position: relative;
    overflow: hidden;
}

    .sector-full__img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s var(--ease);
    }

.sector-full:hover .sector-full__img img {
    transform: scale(1.04);
}

.sector-full__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-10);
}

.sector-full__num {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
}

.sector-full__content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-5);
}

.sector-full__content p {
    font-size: var(--text-base);
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: var(--sp-5);
    max-width: 520px;
}

.sector-full__brands {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    margin-top: var(--sp-5);
}

    .sector-full__brands img {
        height: 65px;
        width: auto;
        transition: all 0.3s var(--ease);
    }

        .sector-full__brands img:hover {
            opacity: 1;
            filter: none;
        }

/* Side navigation dots */
.sector-dots {
    position: fixed;
    right: var(--sp-6);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-dots__item {
    width: 10px;
    height: 10px;
    border: 1px solid var(--ink-faint);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

    .sector-dots__item.active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.5);
    }


/* ==========================================================
   28. İK PAGE — Bento Grid
   ========================================================== */
.ik-bento {
    padding: var(--section-py) 0;
}

.ik-bento__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.ik-bento__header {
    max-width: 640px;
    margin-bottom: var(--sp-9);
}

    .ik-bento__header h2 {
        font-size: var(--text-2xl);
        margin-top: var(--sp-3);
    }

.ik-bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 16px;
}

.ik-bento__card {
    background: var(--surface-alt);
    padding: var(--sp-7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--ease);
}

    .ik-bento__card:hover {
        background: var(--cream);
    }

.ik-bento__card--wide {
    grid-column: span 2;
}

.ik-bento__card--full {
    grid-column: 1 / -1;
}

.ik-bento__card--tall {
    grid-row: span 2;
}

.ik-bento__card--accent {
    background: var(--accent);
    color: var(--white);
}

    .ik-bento__card--accent:hover {
        background: var(--accent-dark);
    }

    .ik-bento__card--accent h3,
    .ik-bento__card--accent p {
        color: var(--white);
    }

    .ik-bento__card--accent p {
        opacity: 0.8;
    }

.ik-bento__card--dark {
    background: var(--charcoal);
}

    .ik-bento__card--dark:hover {
        background: var(--slate);
    }

    .ik-bento__card--dark h3 {
        color: var(--white);
    }

    .ik-bento__card--dark p {
        color: rgba(255,255,255,0.5);
    }

/* Visual card — with background photo */
.ik-bento__card--visual {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

    .ik-bento__card--visual > div:last-child {
        position: relative;
        z-index: 2;
    }

.ik-bento__card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s var(--ease-out);
}

.ik-bento__card--visual:hover .ik-bento__card-bg {
    transform: scale(1.06);
}

.ik-bento__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.82);
    z-index: 1;
}

.ik-bento__card--visual h3 {
    color: var(--white) !important;
}

.ik-bento__card--visual p {
    color: rgba(255,255,255,0.92) !important;
}

.ik-bento__card--visual .ik-bento__card-icon {
    background: rgba(255,255,255,0.15);
}

    .ik-bento__card--visual .ik-bento__card-icon svg {
        fill: var(--white);
    }

.ik-bento__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,76,14,0.08);
    margin-bottom: var(--sp-5);
}

.ik-bento__card--accent .ik-bento__card-icon {
    background: rgba(255,255,255,0.15);
}

.ik-bento__card--dark .ik-bento__card-icon {
    background: rgba(232,76,14,0.15);
}

.ik-bento__card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

.ik-bento__card--accent .ik-bento__card-icon svg {
    fill: var(--white);
}

.ik-bento__card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--sp-3);
    color: var(--ink);
}

.ik-bento__card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-muted);
}

.ik-bento__card .expanded-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-expo);
}

    .ik-bento__card .expanded-text.is-open {
        max-height: 500px;
    }

.ik-bento__read-more {
    margin-top: var(--sp-4);
    font-family: var(--f-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s var(--ease);
}

    .ik-bento__read-more:hover {
        gap: 12px;
    }

.ik-bento__card--accent .ik-bento__read-more {
    color: var(--white);
}

/* İK CTA banner — Premium */
.ik-cta {
    background: var(--black);
    padding: var(--sp-10) 0;
    position: relative;
    overflow: hidden;
}

    .ik-cta::before {
        content: '';
        position: absolute;
        width: 1000px;
        height: 1000px;
        background: radial-gradient(circle, rgba(232,76,14,0.08) 0%, transparent 55%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ik-cta .container {
        position: relative;
        z-index: 2;
    }

    .ik-cta h2 {
        font-size: var(--text-2xl);
        color: var(--white);
        margin-bottom: var(--sp-4);
        text-align: center;
    }

    .ik-cta > .container > p {
        font-size: var(--text-md);
        color: rgba(255,255,255,0.45);
        margin-bottom: var(--sp-8);
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

/* Kariyer link cards */
.ik-cta__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    margin: 0 auto;
}

.ik-cta__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp-7) var(--sp-5);
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s var(--ease-out);
    flex: 1;
    min-height: 320px;
}

    .ik-cta__card:hover {
        border-color: rgba(232,76,14,0.3);
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(232,76,14,0.08);
    }

.ik-cta__card-logo {
    height: auto;
    width: 180px;
    margin-bottom: var(--sp-5);
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s var(--ease);
}

.ik-cta__card:hover .ik-cta__card-logo {
    opacity: 1;
}

.ik-cta__card h4 {
    font-size: var(--text-base);
    color: var(--white);
    margin-bottom: var(--sp-3);
}

.ik-cta__card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--sp-5);
}

.ik-cta__card .btn {
    margin-top: auto;
    width: 100%;
}

.ik-cta__buttons {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
}


/* ==========================================================
   29. CONTACT PAGE — Premium Split Layout (Redesigned)
   ========================================================== */
.contact-page {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

    .contact-page::before {
        content: '';
        position: absolute;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(232,76,14,0.04) 0%, transparent 60%);
        top: 20%;
        right: -200px;
        pointer-events: none;
    }

.contact-page__grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--sp-9);
    position: relative;
    z-index: 1;
}

.contact-page__info h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-4);
}

.contact-page__info > p {
    color: var(--ink-muted);
    margin-bottom: var(--sp-8);
    font-size: var(--text-base);
    line-height: 1.8;
}

/* Info cards */
.contact-page__cards {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.contact-page__card {
    display: flex;
    gap: var(--sp-5);
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    padding: var(--sp-5) var(--sp-6);
    transition: all 0.4s var(--ease);
}

    .contact-page__card:hover {
        border-color: var(--accent);
        transform: translateX(4px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    }

.contact-page__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,76,14,0.06);
    flex-shrink: 0;
    transition: background 0.3s var(--ease);
}

.contact-page__card:hover .contact-page__icon {
    background: var(--accent);
}

.contact-page__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    transition: fill 0.3s var(--ease);
}

.contact-page__card:hover .contact-page__icon svg {
    fill: var(--white);
}

.contact-page__card-text h4 {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}

.contact-page__card-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-muted);
}

.contact-page__card-text a {
    color: var(--ink-muted);
    transition: color 0.3s ease;
}

    .contact-page__card-text a:hover {
        color: var(--accent);
    }

/* Contact form — Premium dark */
.contact-page__form {
    background: var(--black);
    padding: var(--sp-9);
    position: relative;
    overflow: hidden;
}

    /* Subtle glow inside form */
    .contact-page__form::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232,76,14,0.06) 0%, transparent 60%);
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

    .contact-page__form h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--sp-7);
        color: var(--white);
        position: relative;
        z-index: 1;
    }

    .contact-page__form .form-group {
        position: relative;
        z-index: 1;
    }

    .contact-page__form .form-row {
        position: relative;
        z-index: 1;
    }

    .contact-page__form .btn {
        position: relative;
        z-index: 1;
    }

/* KVKK checkbox styling */
.kvkk-consent {
    display: flex;
    gap: var(--sp-3);
    align-items: flex-start;
    margin-bottom: var(--sp-6);
    position: relative;
    z-index: 1;
}

    .kvkk-consent input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        min-width: 18px;
        flex-shrink: 0;
        margin-top: 2px;
        border: 1.5px solid rgba(255,255,255,0.2);
        border-radius: var(--radius-sm);
        background: transparent;
        cursor: pointer;
        transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
        position: relative;
    }

        .kvkk-consent input[type="checkbox"]:checked {
            background: var(--accent);
            border-color: var(--accent);
        }

            .kvkk-consent input[type="checkbox"]:checked::after {
                content: '';
                position: absolute;
                left: 4px;
                top: 0px;
                width: 6px;
                height: 10px;
                border: 2px solid #fff;
                border-top: none;
                border-left: none;
                transform: rotate(45deg);
            }

        .kvkk-consent input[type="checkbox"]:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

    .kvkk-consent.is-error input[type="checkbox"] {
        border-color: #e53935;
    }

    .kvkk-consent label,
    .kvkk-consent__text {
        font-size: var(--text-sm);
        line-height: 1.6;
        color: rgba(255,255,255,0.4);
    }

    .kvkk-consent__text label {
        font-size: inherit;
        line-height: inherit;
        color: inherit;
        cursor: pointer;
    }

        .kvkk-consent label a,
        .kvkk-consent__text a {
            position: relative;
            z-index: 2;
            color: var(--accent);
            text-decoration: underline;
            cursor: pointer;
        }

            .kvkk-consent__text a:hover {
                color: var(--white);
            }

.kvkk-consent {
    flex-wrap: wrap;
}

    .kvkk-consent .form-error-msg {
        width: 100%;
        padding-left: calc(18px + var(--sp-3));
    }

/* ==========================================================
   KVKK / COOKIE BANNER
   ========================================================== */
.kvkk {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: var(--sp-4) var(--gutter);
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.45);
    animation: kvkkRise 0.6s var(--ease-out) both;
}

@keyframes kvkkRise {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.kvkk__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--sp-6);
}

.kvkk__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(232, 76, 14, 0.1);
    color: var(--accent);
}

    .kvkk__icon svg {
        width: 26px;
        height: 26px;
    }

.kvkk__text {
    flex: 1 1 auto;
    min-width: 0;
}

.kvkk__title {
    font-family: var(--f-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.kvkk__text p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

    .kvkk__text a {
        color: var(--accent);
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color 0.3s var(--ease);
    }

        .kvkk__text a:hover {
            color: var(--white);
        }

.kvkk__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.kvkk__btn {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 26px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease-out);
}

.kvkk__btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

    .kvkk__btn--ghost:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--white);
    }

.kvkk__btn--accent {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--white);
}

    .kvkk__btn--accent:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--black);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .kvkk {
        padding: var(--sp-4);
    }

    .kvkk__inner {
        flex-wrap: wrap;
        gap: var(--sp-4);
    }

    .kvkk__icon {
        display: none;
    }

    .kvkk__actions {
        width: 100%;
    }

    .kvkk__btn {
        flex: 1 1 0;
        text-align: center;
        padding: 14px 18px;
    }
}

/* Field error states */
.form-group.is-error .form-field {
    border-color: #e53935 !important;
}

.form-group.is-error .form-label {
    color: #e53935 !important;
}

/* Inline validation error messages */
.form-error-msg {
    display: none;
    font-size: 11px;
    font-family: var(--f-mono);
    color: #e53935;
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin-top: 6px;
}

.form-group.is-error .form-error-msg,
.kvkk-consent.is-error .form-error-msg {
    display: block;
}

/* Hide form when success is active */
form.form--hidden {
    display: none;
}

/* Form success */
.form-success {
    display: none;
    text-align: center;
    padding: var(--sp-9) var(--sp-6);
    opacity: 0;
    transform: translateY(16px);
}

    .form-success.is-active {
        display: block;
        animation: formSuccessIn 0.5s var(--ease-out) forwards;
    }

@keyframes formSuccessIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success__icon {
    width: 72px;
    height: 72px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-5);
    background: rgba(232,76,14,0.08);
}

.form-success h3 {
    font-family: var(--f-display);
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--sp-3);
}

.form-success p {
    color: rgba(255,255,255,0.5);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* Map section */
.map-section {
    position: relative;
}

    .map-section iframe {
        width: 100%;
        height: 500px;
        border: 0;
        display: block;
        filter: grayscale(1) contrast(1.1);
        transition: filter 0.6s var(--ease);
    }

        .map-section iframe:hover {
            filter: grayscale(0);
        }


/* ==========================================================
   30. NEWS GRID PAGE — Masonry + Pills
   ========================================================== */
.news-page {
    padding: var(--section-py) 0;
    background: var(--surface-alt);
    position: relative;
}

    /* Ambient bloom */
    .news-page::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(232,76,14,0.03) 0%, transparent 60%);
        top: 15%;
        right: -200px;
        pointer-events: none;
    }

.news-page__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.news-page__filters {
    display: flex;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
    flex-wrap: wrap;
}

.filter-pill {
    padding: 12px 28px;
    font-family: var(--f-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    border: 1px solid var(--border);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .filter-pill::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s var(--ease-expo);
    }

    .filter-pill:hover {
        color: var(--white);
        border-color: var(--accent);
    }

        .filter-pill:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

    .filter-pill.active {
        background: var(--accent);
        color: var(--white);
        border-color: var(--accent);
    }

.news-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

    .news-card:hover {
        transform: translateY(-6px);
        border-color: rgba(232,76,14,0.2);
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }

.news-card__img {
    overflow: hidden;
    aspect-ratio: auto !important;
    position: relative;
}

    .news-card__img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
        opacity: 0;
        transition: opacity 0.4s var(--ease);
    }

.news-card:hover .news-card__img::after {
    opacity: 1;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.news-card:hover .news-card__img img {
    transform: scale(1.06);
}

.news-card__body {
    padding: var(--sp-5) var(--sp-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card__badge {
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--sp-2);
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    justify-content:space-between;
    margin-bottom: var(--sp-3);
}

.news-card__cat {
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: 4px 10px;
    background: rgba(232,76,14,0.06);
    font-weight: 600;
}

.news-card h3 {
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--sp-3);
}

    .news-card h3 a:hover {
        color: var(--accent);
    }

.news-card__date {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: var(--ink-faint);
}

/* Featured / hero news card — spans full row */
.news-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

    .news-card--featured:hover {
        border-color: var(--accent);
        box-shadow: 0 24px 80px rgba(0,0,0,0.06);
    }

    .news-card--featured .news-card__img {
        aspect-ratio: 16 / 10;
        height: 100%;
    }

    .news-card--featured .news-card__body {
        padding: var(--sp-8);
        justify-content: center;
    }

    .news-card--featured h3 {
        font-size: var(--text-xl);
        font-weight: 600;
        line-height: 1.25;
        margin-bottom: var(--sp-4);
    }

.news-card__excerpt {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-muted);
    margin-bottom: var(--sp-4);
}

/* Hover overlay with read more */
.news-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 2;
}

.news-card:hover .news-card__overlay {
    opacity: 1;
}

.news-card__read {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: var(--sp-3) var(--sp-5);
    border: 1px solid rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    transition: all 0.3s var(--ease);
}

.news-card:hover .news-card__read {
    border-color: var(--accent);
    background: var(--accent);
}


/* ==========================================================
   31. ARTICLE DETAIL — Premium Layout
   ========================================================== */
.article {
    padding: var(--section-py) 0;
}

.article__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--sp-9);
    align-items: start;
}

.article__main {
    min-width: 0;
}

.article__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    margin-bottom: var(--sp-5);
}

.article__featured {
    margin-bottom: var(--sp-5);
}

.article__hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: var(--sp-7);
}

.article__body {
    font-size: var(--text-base);
    line-height: 1.95;
}

    /* Drop cap */
    .article__body > p:first-of-type::first-letter {
        font-family: var(--f-display);
        font-size: 3.5em;
        font-weight: 700;
        float: left;
        line-height: 0.8;
        margin: 6px 12px 0 0;
        color: var(--accent);
    }

    .article__body p {
        margin-bottom: var(--sp-5);
        color: var(--ink-light);
    }

    .article__body a {
        color: var(--accent);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

        .article__body a:hover {
            color: var(--accent-dark);
        }

.article__media-links {
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border);
}

    .article__media-links h4 {
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: var(--sp-4);
        color: var(--ink);
    }

    .article__media-links ul li {
        margin-bottom: var(--sp-2);
    }

    .article__media-links a {
        font-size: 15px;
        color: var(--accent);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s var(--ease);
    }

        .article__media-links a:hover {
            gap: 14px;
        }

        .article__media-links a::after {
            content: '→';
        }

/* Sidebar — Redesigned Premium */
.article__sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-6));
}

.sidebar__section {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    padding: var(--sp-6);
    margin-bottom: var(--sp-5);
}

    .sidebar__section h4,
    .sidebar__title {
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: var(--sp-5);
        color: var(--ink);
        padding-bottom: var(--sp-3);
        border-bottom: 2px solid var(--accent);
        display: inline-block;
        font-family: var(--f-mono);
        font-weight: 600;
    }

.sidebar-card {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
    text-decoration: none;
    color: var(--ink);
    transition: color 0.3s ease;
    align-items: flex-start;
}


/* ==========================================================
   ABSTRACT DECORATIVE ENRICHMENT
   ========================================================== */

/* Corner accent — used on editorial and stats sections */
.editorial::after {
    content: '';
    position: absolute;
    top: var(--sp-7);
    right: var(--gutter);
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

/* Floating crosses on showcase */
.showcase::after {
    content: '+';
    position: absolute;
    top: 15%;
    right: 8%;
    font-family: var(--f-mono);
    font-size: 72px;
    font-weight: 100;
    color: rgba(232,76,14,0.06);
    pointer-events: none;
    animation: deco-spin 30s linear infinite;
}

@keyframes deco-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Vertical side line on CTA sections */
.cta-split::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(232,76,14,0.15), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Diagonal line accent on footer */
.ftr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

/* Ambient accent glow on contact-cta */
.contact-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,76,14,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dots pattern on hscroll */
.hscroll::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

/* Number accent on values section */
.values__header::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-display);
    font-size: 140px;
    font-weight: 700;
    color: rgba(0,0,0,0.02);
    pointer-events: none;
    line-height: 1;
}

.values__header {
    position: relative;
}

/* Ring decoration on ik-bento */
.ik-bento::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(232,76,14,0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Corner bracket on news page */
.news-page::before {
    content: '';
    position: absolute;
    bottom: var(--sp-7);
    left: var(--gutter);
    width: 48px;
    height: 48px;
    border-bottom: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    opacity: 0.1;
    pointer-events: none;
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card__img {
    overflow: hidden;
    width: 80px;
    height: 60px;
    flex-shrink: 0;
}

    .sidebar-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--ease);
    }

.sidebar-card:hover .sidebar-card__img img {
    transform: scale(1.06);
}

.sidebar-card__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sidebar-card__cat {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.sidebar-card__text h6,
.sidebar-card span {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
}

.sidebar-card:hover h6,
.sidebar-card:hover span {
    color: var(--accent);
}

/* Sidebar categories */
.sidebar__categories {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.sidebar__cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-3) 0;
    font-size: 15px;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

    .sidebar__cat-link:last-child {
        border-bottom: none;
    }

    .sidebar__cat-link:hover {
        color: var(--accent);
        padding-left: 8px;
    }

.sidebar__cat-count {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    color: var(--ink-faint);
}

/* Share links in sidebar */
.sidebar__share {
    display: flex;
    gap: var(--sp-3);
}

.sidebar__share-link,
.sidebar__share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    background: transparent;
    cursor: pointer;
    color: var(--ink-muted);
    padding: 0;
}

    .sidebar__share-link:hover,
    .sidebar__share-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--white);
    }

    .sidebar__share-link svg,
    .sidebar__share-btn svg {
        width: 16px;
        height: 16px;
        fill: var(--ink-muted);
        transition: fill 0.3s var(--ease);
    }

    .sidebar__share-link:hover svg,
    .sidebar__share-btn:hover svg {
        fill: var(--white);
        stroke: var(--white);
    }


/* ==========================================================
   32. POLICY PAGES — Sticky TOC
   ========================================================== */
.policy {
    padding: var(--section-py) 0;
}

.policy__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--sp-9);
    align-items: start;
}

/* Sticky Table of Contents */
.policy__toc {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-6));
    padding-right: var(--sp-5);
}

    .policy__toc h4 {
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--ink-faint);
        margin-bottom: var(--sp-4);
    }

    .policy__toc ul li {
        margin-bottom: var(--sp-2);
    }

    .policy__toc a {
        font-size: var(--text-sm);
        color: var(--ink-faint);
        line-height: 1.5;
        transition: color 0.3s ease, padding-left 0.3s var(--ease);
        display: block;
        padding: var(--sp-1) 0;
    }

        .policy__toc a:hover,
        .policy__toc a.active {
            color: var(--accent);
            padding-left: 8px;
        }

/* Policy content */
.policy__content {
    max-width: 720px;
}

.policy__lead {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--ink-muted);
    margin-bottom: var(--sp-7);
}

.policy__content h2 {
    font-size: var(--text-xl);
    margin: var(--sp-8) 0 var(--sp-4);
    scroll-margin-top: calc(var(--header-h) + var(--sp-6));
}

.policy__content h3 {
    font-size: var(--text-lg);
    margin: var(--sp-6) 0 var(--sp-3);
}

.policy__content h4 {
    font-size: var(--text-md);
    margin: var(--sp-5) 0 var(--sp-3);
}

.policy__content p {
    font-size: var(--text-base);
    line-height: 1.9;
    margin-bottom: var(--sp-4);
    color: var(--ink-light);
}

.policy__content ul {
    margin: var(--sp-4) 0;
    padding-left: var(--sp-5);
}

    .policy__content ul li {
        font-size: var(--text-base);
        line-height: 1.9;
        color: var(--ink-light);
        margin-bottom: var(--sp-2);
        padding-left: var(--sp-4);
        position: relative;
    }

        .policy__content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: var(--radius-full);
        }

.policy__content ol {
    margin: var(--sp-4) 0;
    padding-left: var(--sp-7);
    counter-reset: none;
}

    .policy__content ol li {
        font-size: var(--text-base);
        line-height: 1.9;
        color: var(--ink-light);
        margin-bottom: var(--sp-2);
    }

.policy__content strong {
    color: var(--ink);
}

.policy__content a {
    color: var(--accent);
}

    .policy__content a:hover {
        text-decoration: underline;
    }

/* Policy table */
.policy-table {
    width: 100%;
    overflow-x: auto;
    margin: var(--sp-5) 0;
}

    .policy-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .policy-table th,
    .policy-table td {
        padding: 14px 18px;
        text-align: left;
        font-size: 15px;
        line-height: 1.7;
        border: 1px solid var(--border);
        color: var(--ink-light);
    }

    .policy-table th {
        background: var(--surface-alt);
        font-family: var(--f-display);
        font-weight: 600;
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--ink);
    }

    .policy-table td:first-child {
        font-weight: 500;
        color: var(--ink);
    }


/* ==========================================================
   33. UTILITIES
   ========================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

/* Section spacing */
.section-pad {
    padding: var(--section-py) 0;
}


/* ==========================================================
   34. KEYFRAMES
   ========================================================== */
@keyframes preloaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes clipRevealUp {
    from {
        clip-path: inset(100% 0 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes clipRevealLeft {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232,76,14,0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(232,76,14,0);
    }
}


/* ==========================================================
   35. MEDIA QUERIES
   ========================================================== */

/* ---- Large Desktop (1440+) ---- */
@media (min-width: 1441px) {
    :root {
        --gutter: 40px;
    }

}
@media (max-width: 1440px) {
    .pg-hero {
        height: clamp(400px, 50vh, 620px);
    }
}

/* ---- Laptop (max 1280) ---- */
@media (max-width: 1280px) {
    .pg-hero {
        height: clamp(350px, 40vh, 520px);
    }
    .showcase__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .showcase__card {
        grid-column: span 3!important;
    }

    .showcase__card--hero {
        grid-column: span 6;
        flex-direction: column;
    }

        .showcase__card--hero .showcase__card-img {
            width: 100%;
            min-height: 300px;
        }

    .showcase__card--wide {
        grid-column: span 6;
    }
}

/* ---- Tablet Landscape (max 1024) ---- */
@media (max-width: 1024px) {
    .pg-hero__bg img{
        height:100%;
    }
    :root {
        --section-py: 120px;
        --gutter: 20px;
    }

    .hero__title {
        margin-left: unset;
    }

    .hdr__nav {
        display: none;
    }

    .hdr__menu-btn {
        display: flex;
    }

    .editorial__wrap {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .editorial__img {
        position: relative;
        top: auto;
    }

        .editorial__img img {
            /*aspect-ratio: 16 / 9;*/
        }

    .showcase__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
    }

    .showcase__card {
        grid-column: span 2!important;
    }

    .showcase__card--hero {
        grid-column: span 4;
        grid-row: span 1;
        flex-direction: column;
    }

        .showcase__card--hero .showcase__card-img {
            width: 100%;
            min-height: 280px;
        }

    .showcase__card--wide {
        grid-column: span 4;
    }

    .stacked__card {
        min-height: 340px;
    }

    .stacked__wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-split {
        grid-template-columns: 1fr;
    }

    .cta-split__dark::after {
        display: none;
    }

    .magazine__grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 250px;
    }

    .magazine__item--hero {
        grid-column: span 6;
    }

    .magazine__item--wide {
        grid-column: span 3;
    }

    .magazine__item--std {
        grid-column: span 3;
    }

    .contact-cta__inner {
        grid-template-columns: 1fr;
    }

    .contact-cta__visual {
        order: -1;
    }

    .ftr__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-7);
    }

    .chairman__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-7);
    }

    .chairman__photo {
        max-width: 400px;
    }

        .chairman__photo img {
            min-height: unset;
        }

    .sector-full {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sector-full__img {
        height: 400px;
    }

    .sector-full:nth-child(even) .sector-full__img {
        order: 0;
    }

    .sector-full:nth-child(even) .sector-full__content {
        order: 0;
    }

    .sector-dots {
        display: none;
    }

    .ik-bento__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ik-bento__card--wide {
        grid-column: span 2;
    }

    .ik-bento__card--full {
        grid-column: span 2;
    }

    /* Brand showcase tablet */
    .brands__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* News featured card tablet */
    .news-card--featured {
        grid-template-columns: 1fr 1fr;
    }

        .news-card--featured h3 {
            font-size: var(--text-lg);
        }

    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-7);
    }

    .article__wrap {
        grid-template-columns: 1fr;
    }

    .article__sidebar {
        position: static;
    }

    .policy__wrap {
        grid-template-columns: 1fr;
    }

    .policy__toc {
        position: static;
        display: flex;
        gap: var(--sp-3);
        flex-wrap: wrap;
        padding-bottom: var(--sp-6);
        border-bottom: 1px solid var(--border);
        margin-bottom: var(--sp-6);
    }

        .policy__toc h4 {
            width: 100%;
            margin-bottom: var(--sp-2);
        }

        .policy__toc ul {
            display: flex;
            gap: var(--sp-3);
            flex-wrap: wrap;
        }

            .policy__toc ul li {
                margin-bottom: 0;
            }

        .policy__toc a {
            padding: var(--sp-2) var(--sp-3);
            font-size: var(--text-xs);
        }

    .ik-cta__cards {
        grid-template-columns: 1fr;
    }
}

/* ---- Tablet Portrait (max 768) ---- */
@media (max-width: 768px) {
    :root {
        --section-py: 80px;
    }

    body {
        font-size: 16px;
    }

    .stacked__wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-3);
    }

    .hero {
        min-height: 550px;
    }

    .hero__word {
        font-size: clamp(56px, 14vw, 120px);
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-5);
    }

    .hero__info {
        flex-wrap: wrap;
        gap: var(--sp-4);
    }

    .hero__scroll {
        display: none;
    }

    .showcase__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .showcase__card,
    .showcase__card--hero,
    .showcase__card--wide,
    .showcase__card--tall {
        grid-column: span 1!important;
        grid-row: span 1;
    }
    .showcase__card {
        padding: var(--sp-11) 0 0 0;
    }

        .showcase__card--hero {
            flex-direction: column;
        }

        .showcase__card--hero .showcase__card-img {
            width: 100%;
            min-height: 280px;
        }

    .hscroll__slide {
        padding: var(--sp-7) var(--sp-5);
    }

    .stacked__card {
        position: relative;
        top: auto !important;
    }

    .magazine__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .magazine__item--hero,
    .magazine__item--wide,
    .magazine__item--std {
        grid-column: span 1;
    }

    .magazine__item--hero {
        grid-row: span 1;
    }

    .news-strip__card {
        flex: 0 0 320px;
    }

    .news-page__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-5);
    }

    .cta-split__dark {
        padding: var(--sp-9) var(--gutter);
    }

    .cta-split__light {
        min-height: 320px;
        padding: var(--sp-9) var(--gutter);
    }

    .ftr__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
    }

    .ftr__giant span {
        font-size: clamp(40px, 10vw, 80px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .ik-bento__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .ik-bento__card--wide {
        grid-column: span 1;
    }

    .ik-bento__card--full {
        grid-column: span 1;
    }

    /* Brand showcase mobile */
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands__item {
        padding: var(--sp-6) var(--sp-4);
    }

    .brands__header h2 {
        font-size: var(--text-xl);
    }

    /* News featured card mobile */
    .news-card--featured {
        grid-template-columns: 1fr;
    }

        .news-card--featured .news-card__img {
            aspect-ratio: 16 / 9;
        }

        .news-card--featured .news-card__body {
            padding: var(--sp-6);
        }

        .news-card--featured h3 {
            font-size: var(--text-base);
        }

    /* Visual bento cards */
    .ik-bento__card--visual {
        min-height: 220px;
    }

    /* Hide decorative elements on mobile */
    .editorial::after,
    .showcase::after,
    .values__header::after,
    .ik-bento::after,
    .news-page::before {
        display: none;
    }

    .contact-page__form {
        padding: var(--sp-6);
    }

    .values__panel ul {
        columns: 1;
    }

    .mmenu__link {
        font-size: clamp(28px, 6vw, 40px);
    }

    .mmenu__num {
        display: none;
    }

    .mmenu__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-5);
    }

    .mmenu__social {
        display: none;
    }

    .mmenu__info {
        display: none;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }

    .showcase__card--hero .showcase__card-info {
        padding: var(--sp-7);
    }
}

/* ---- Mobile (max 480) ---- */
@media (max-width: 480px) {
    :root {
        --section-py: 64px;
        --gutter: 16px;
    }

    body {
        font-size: 16px;
    }

    .btn {
        padding: 16px 28px;
        font-size: var(--text-xs);
    }

    .btn--lg {
        padding: 18px 36px;
    }

    .hero {
        min-height: 500px;
    }

    .hero__word {
        font-size: clamp(44px, 16vw, 80px);
    }

    .hero__info {
        display: none;
    }

    .pg-hero {
        height: 320px;
    }

    .pg-hero--sm {
        height: 240px;
    }

    .stacked__card-content {
        padding: var(--sp-6);
    }

    .news-strip__card {
        flex: 0 0 280px;
    }

    .news-page__grid {
        grid-template-columns: 1fr;
    }

    /* Brand showcase small mobile */
    .brands__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .brands__logo img {
        max-width: 100px;
    }

    /* News featured card small */
    .news-card__excerpt {
        display: none;
    }

    .sector-full__content {
        padding: var(--sp-7) var(--gutter);
    }

    .mmenu__link {
        font-size: 28px;
    }

    .quote-section__text {
        font-size: clamp(20px, 5vw, 28px);
    }

    .article__body > p:first-of-type::first-letter {
        font-size: 2.8em;
    }

    .ftr__bottom {
        flex-direction: column;
        gap: var(--sp-4);
        text-align: center;
    }
}


/* ==========================================================
   37. GALLERY LIGHTBOX
   ========================================================== */
.gallery-lb {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

    .gallery-lb.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.gallery-lb__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}

.gallery-lb__close {
    position: absolute;
    top: var(--sp-5);
    right: var(--sp-5);
    z-index: 3;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

    .gallery-lb__close:hover {
        border-color: var(--accent);
        background: rgba(232,76,14,0.12);
    }

    .gallery-lb__close svg {
        width: 20px;
        height: 20px;
        stroke: var(--white);
        stroke-width: 1.5;
        fill: none;
    }

/* Top bar: logo hint + counter */
.gallery-lb__topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-7);
    padding-right: calc(var(--sp-7) + 68px);
    pointer-events: none;
}

.gallery-lb__label {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.25);
}

.gallery-lb__counter {
    font-family: var(--f-mono);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.gallery-lb__current {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    font-family: var(--f-display);
    letter-spacing: -0.02em;
    min-width: 2ch;
    text-align: right;
}

.gallery-lb__sep {
    color: rgba(255,255,255,0.15);
    margin: 0 1px;
}

/* Stage + slides */
.gallery-lb__stage {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 100px 110px;
}

.gallery-lb__slides {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1160px;
}

.gallery-lb__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}

    .gallery-lb__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .gallery-lb__slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        box-shadow: 0 40px 120px rgba(0,0,0,0.7);
        user-select: none;
        -webkit-user-drag: none;
    }

/* Navigation arrows */
.gallery-lb__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease-out);
}

    .gallery-lb__arrow svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .gallery-lb__arrow:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--white);
        transform: translateY(-50%) scale(1.08);
    }

    .gallery-lb__arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

.gallery-lb__arrow--prev {
    left: var(--sp-5);
}

.gallery-lb__arrow--next {
    right: var(--sp-5);
}

/* Footer: info + dots */
.gallery-lb__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: var(--sp-10) var(--sp-7) var(--sp-6);
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-5);
    pointer-events: none;
}

.gallery-lb__info {
    flex: 1;
    min-width: 0;
}

.gallery-lb__cat {
    font-family: var(--f-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--sp-2);
}

.gallery-lb__title {
    font-family: var(--f-display);
    font-size: clamp(18px, 2.5vw, var(--text-xl));
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dots strip */
.gallery-lb__dots {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    pointer-events: auto;
}

.gallery-lb__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease-back);
}

    .gallery-lb__dot:hover {
        border-color: rgba(255,255,255,0.6);
        transform: scale(1.4);
    }

    .gallery-lb__dot.is-active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.5);
    }

/* Accent line at top */
.gallery-lb__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 3;
    transition: width 0.4s var(--ease-out);
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-lb__stage {
        padding: 88px 72px 110px;
    }
}

@media (max-width: 768px) {
    .gallery-lb__stage {
        padding: 72px 16px 100px;
    }

    .gallery-lb__arrow {
        width: 40px;
        height: 40px;
    }

        .gallery-lb__arrow svg {
            width: 16px;
            height: 16px;
        }

    .gallery-lb__arrow--prev {
        left: var(--sp-3);
    }

    .gallery-lb__arrow--next {
        right: var(--sp-3);
    }

    .gallery-lb__topbar {
        padding: var(--sp-4) var(--sp-5);
        padding-right: calc(var(--sp-5) + 56px);
    }

    .gallery-lb__close {
        top: var(--sp-3);
        right: var(--sp-3);
        width: 44px;
        height: 44px;
    }

    .gallery-lb__footer {
        padding: var(--sp-8) var(--sp-5) var(--sp-5);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-3);
    }

    .gallery-lb__title {
        font-size: var(--text-lg);
        white-space: unset;
        overflow: unset;
        text-overflow: unset;
    }
    .gallery-lb__dots{
        gap:4px;
    }
    .gallery-lb__arrow{
      top:75%;
    }
}

/* ==========================================================
   36. REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal--clip,
    .reveal--scale {
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .split-char,
    .split-word {
        transform: none;
    }

    .hero__word {
        transform: none;
    }

    .ticker__track {
        animation: none;
    }

    .hero__scroll-line::after {
        animation: none;
    }

    .preloader {
        display: none;
    }

    .cursor {
        display: none;
    }
}


@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }

    .hdr {
        top: 0;
        padding-top: env(safe-area-inset-top);
    }
}

@supports (padding: env(safe-area-inset-top)) {
    .hdr {
        padding-top: env(safe-area-inset-top);
    }
}

@media (max-width: 480px) {
    .ios .hdr {
        background-color: var(--black) !important;
    }
}

/* When mobile menu is open, header must sit below the overlay on all devices */
body.is-locked .hdr {
    z-index: 1 !important;
    will-change: auto;
    -webkit-transform: none;
    transform: none;
}
