/* ===================================================================
   LAMPO LIGHTING — Creative anasayfa katmanı (index4)
   lampo.css tokenları üzerine çalışır; tüm sınıflar c- önekli.
   =================================================================== */

.c-page {
    --c-gut: 4vw;
    --c-radius: 22px;
}

.c-page section { padding-top: 0; padding-bottom: 0; }
.c-page .l-spot { display: none; }
.c-page ::selection { background: var(--l-gold); color: #0A0A0B; }

.c-wrap { padding-left: var(--c-gut); padding-right: var(--c-gut); }
.c-sec { padding-top: clamp(100px, 12vw, 200px) !important; padding-bottom: clamp(100px, 12vw, 200px) !important; }
.c-sec-top { padding-top: clamp(100px, 12vw, 200px) !important; }

/* -------------------------------------------------
   Ortak parçalar
------------------------------------------------- */
.c-kicker {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--l-cond); font-size: 13px; font-weight: 600;
    letter-spacing: .32em; text-transform: uppercase;
    color: var(--l-gold); line-height: 1;
}
.c-kicker::before { content: ""; width: 40px; height: 1px; background: currentColor; opacity: .7; }

/* satır maskesi ile yükselen başlık */
.c-line { display: block; overflow: hidden; padding: .14em 0 .1em; margin: -.14em 0 -.1em; }
.c-line > span { display: block; transform: translate3d(0, 108%, 0); transition: transform 1.3s var(--l-ease); }
.c-line:nth-child(2) > span { transition-delay: .12s; }
.c-line:nth-child(3) > span { transition-delay: .24s; }
[data-c-reveal].is-in .c-line > span,
.is-loaded .c-hero-intro .c-line > span { transform: none; }
.is-loaded .c-hero-intro .c-line:nth-child(1) > span { transition-delay: .15s; }
.is-loaded .c-hero-intro .c-line:nth-child(2) > span { transition-delay: .3s; }

.c-up { opacity: 0; transform: translate3d(0, 50px, 0); transition: opacity 1.1s var(--l-ease), transform 1.1s var(--l-ease); }
.c-up.is-in { opacity: 1; transform: none; }

[data-magnetic] { transition: transform .6s var(--l-ease); will-change: transform; }
[data-magnetic].is-mag { transition: transform .18s linear; }

/* -------------------------------------------------
   Açılış, ilerleme çubuğu, grain, imleç
------------------------------------------------- */
.c-loader {
    position: fixed; inset: 0; z-index: 3000;
    background: #070707;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    clip-path: inset(0 0 0 0);
    transition: clip-path 1.2s cubic-bezier(.76, 0, .24, 1) .1s;
}
.c-loader img { height: 56px; width: auto; opacity: 0; animation: c-flicker 1.3s steps(1) .15s forwards; }
.c-loader i { width: 190px; height: 1px; background: rgba(255, 255, 255, .12); position: relative; overflow: hidden; }
.c-loader i::after {
    content: ""; position: absolute; inset: 0; background: var(--l-gold-grad);
    transform: scaleX(0); transform-origin: left;
    animation: c-load 1.3s var(--l-ease) .1s forwards;
}
.is-loaded .c-loader { clip-path: inset(0 0 100% 0); pointer-events: none; }
@keyframes c-flicker {
    0% { opacity: 0; } 12% { opacity: 1; } 18% { opacity: .15; } 26% { opacity: 1; }
    34% { opacity: .3; } 42%, 100% { opacity: 1; }
}
@keyframes c-load { to { transform: scaleX(1); } }

.c-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
    background: var(--l-gold-grad); transform: scaleX(0); transform-origin: left;
}

.c-grain {
    position: fixed; inset: -50%; z-index: 1500; pointer-events: none; opacity: .06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    animation: c-grain 1.2s steps(6) infinite;
}
body[data-theme="light"] .c-grain { opacity: .045; }
@keyframes c-grain {
    0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); }
    60% { transform: translate(-2%, 5%); } 80% { transform: translate(5%, 1%); } 100% { transform: translate(0, 0); }
}

.c-cursor, .c-cursor-dot { position: fixed; top: 0; left: 0; z-index: 2500; pointer-events: none; border-radius: 50%; }
.c-cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--l-gold); }
.c-cursor {
    width: 40px; height: 40px; margin: -20px 0 0 -20px;
    border: 1px solid rgba(199, 154, 91, .55);
    display: flex; align-items: center; justify-content: center;
    transition: width .45s var(--l-ease), height .45s var(--l-ease), margin .45s var(--l-ease),
        background .45s var(--l-ease), border-color .45s var(--l-ease), opacity .3s;
}
.c-cursor span {
    font-family: var(--l-cond); font-size: 12px; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: #0A0A0B; opacity: 0; transition: opacity .3s;
}
.c-cursor.is-link { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(199, 154, 91, .12); }
.c-cursor.is-view, .c-cursor.is-drag { width: 100px; height: 100px; margin: -50px 0 0 -50px; background: var(--l-gold); border-color: var(--l-gold); }
.c-cursor.is-view span, .c-cursor.is-drag span { opacity: 1; }
.c-cursor.is-off, .c-cursor-dot.is-off { opacity: 0; }

/* -------------------------------------------------
   Header
------------------------------------------------- */
.c-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 96px; padding: 0 var(--c-gut);
    display: flex; align-items: center; gap: 30px;
    color: #fff;
    transition: height .5s var(--l-ease), transform .6s var(--l-ease), color .5s var(--l-ease);
}
.c-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: var(--l-bg); opacity: 0;
    border-bottom: 1px solid var(--l-line);
    transition: opacity .5s var(--l-ease);
}
.c-header.is-solid { height: 78px; color: var(--l-heading); }
.c-header.is-solid::before { opacity: .88; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.c-header.is-hidden { transform: translate3d(0, -100%, 0); }

.c-logo img { height: 44px; width: auto; transition: filter .5s var(--l-ease); }
.c-header.is-solid .c-logo img { filter: var(--l-logo-filter); }

.c-nav { margin-left: auto; display: flex; gap: 38px; }
.c-nav a {
    position: relative; display: block; overflow: hidden; color: inherit;
    font-family: var(--l-cond); font-size: 15px; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase; line-height: 1.3;
}
.c-nav a span { position: relative; display: block; transition: transform .55s var(--l-ease); }
.c-nav a span::after { content: attr(data-t); position: absolute; left: 0; top: 100%; color: var(--l-gold); }
.c-nav a:hover { color: inherit; }
.c-nav a:hover span { transform: translate3d(0, -100%, 0); }

.c-actions { display: flex; align-items: center; gap: 14px; }
.c-actions .l-theme-toggle { margin: 0; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); }
.c-header.is-solid .l-theme-toggle { background: var(--l-bg-2); border-color: var(--l-line); }
.c-actions .l-act { color: inherit; }

.c-head-cta {
    display: inline-flex; align-items: center; gap: 10px;
    height: 48px; padding: 0 22px; border-radius: 40px;
    border: 1px solid currentColor;
    font-family: var(--l-cond); font-size: 14px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: inherit; position: relative; overflow: hidden; isolation: isolate;
}
.c-head-cta::before {
    content: ""; position: absolute; inset: 0; z-index: -1; background: var(--l-gold);
    transform: translate3d(0, 101%, 0); border-radius: 40px;
    transition: transform .55s var(--l-ease);
}
.c-head-cta:hover { color: #0A0A0B; border-color: var(--l-gold); }
.c-head-cta:hover::before { transform: none; }

/* -------------------------------------------------
   HERO — iç / dış bölünme sahnesi
------------------------------------------------- */
.c-hero { position: relative; height: 430vh; }
.c-hero-stage {
    position: sticky; top: 0; height: 100vh; overflow: hidden;
    background: var(--l-bg);
    --inL: 0px; --inB: 0px; --outL: 0px; --outB: 0px; --Tf: 36vh;
}

.c-hero-bgtext {
    position: absolute; left: 0; top: 50%; z-index: 0;
    transform: translate3d(0, -50%, 0);
    white-space: nowrap; pointer-events: none; opacity: 0;
}
.c-hero-bgtext span {
    display: block; font-family: var(--l-display); font-size: 36vh; line-height: 1; letter-spacing: -.02em;
    color: transparent; -webkit-text-stroke: 1px var(--l-line-strong);
    will-change: transform;
}

.c-pane { position: absolute; inset: 0; margin: 0; overflow: hidden; z-index: 1; will-change: clip-path; }
.c-pane img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.28); will-change: transform; }
.c-pane::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .04) 38%, rgba(0, 0, 0, .12) 60%, rgba(0, 0, 0, .66) 100%);
}
.c-pane-out { z-index: 2; clip-path: inset(0 0 0 100%); }

.c-seam {
    position: absolute; top: 0; bottom: 0; left: 0; z-index: 4;
    width: 2px; margin-left: -1px; opacity: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(244, 227, 192, 0), #F4E3C0 18%, #fff 50%, #F4E3C0 82%, rgba(244, 227, 192, 0));
    box-shadow: 0 0 26px 5px rgba(231, 199, 140, .6), 0 0 110px 26px rgba(199, 154, 91, .28);
    will-change: transform, opacity;
}
.c-hero-stage.is-v .c-seam {
    top: 0; bottom: auto; left: 0; right: 0; width: auto; height: 2px; margin: -1px 0 0;
    background: linear-gradient(90deg, rgba(244, 227, 192, 0), #F4E3C0 18%, #fff 50%, #F4E3C0 82%, rgba(244, 227, 192, 0));
}

.c-hero-intro {
    position: absolute; left: var(--c-gut); right: 34vw; bottom: 11vh; z-index: 5;
    color: #fff; will-change: transform, opacity;
}
.c-hero-intro .c-kicker { color: var(--l-gold-soft); opacity: 0; transition: opacity 1s var(--l-ease) .1s; }
.is-loaded .c-hero-intro .c-kicker { opacity: 1; }
.c-page .c-mega {
    margin: 26px 0 0; color: #fff;
    font-family: var(--l-display); font-size: clamp(64px, 11.5vw, 220px); line-height: .88; letter-spacing: -.035em;
}
.c-mega em { font-style: italic; color: var(--l-gold-soft); }

.c-hero-aside {
    position: absolute; right: var(--c-gut); bottom: 11vh; z-index: 5; max-width: 250px;
    color: rgba(255, 255, 255, .8); text-align: right; will-change: transform, opacity;
    opacity: 0; transition: opacity 1s var(--l-ease) .6s;
}
.is-loaded .c-hero-aside { opacity: 1; }
.c-hero-aside p { font-size: 15.5px; line-height: 1.6; margin: 0 0 22px; }
.c-cue { display: inline-block; width: 1px; height: 70px; background: rgba(255, 255, 255, .22); position: relative; overflow: hidden; }
.c-cue i { position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--l-gold-soft); animation: c-cue 1.8s var(--l-ease) infinite; }
@keyframes c-cue { to { top: 100%; } }

.c-label {
    position: absolute; z-index: 6; color: #fff;
    display: flex; align-items: flex-end; gap: 18px;
    opacity: 0; pointer-events: none; will-change: transform, opacity;
}
.c-label-in { left: var(--inL); bottom: var(--inB); }
.c-label-out { left: var(--outL); bottom: var(--outB); }
.c-label.is-on { pointer-events: auto; }
.c-label small {
    display: block; margin-bottom: 10px;
    font-family: var(--l-cond); font-size: 12.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--l-gold-soft);
}
.c-label b { display: block; font-family: var(--l-display); font-weight: 400; font-size: clamp(34px, 4.2vw, 76px); line-height: 1; letter-spacing: -.02em; }
.c-label a {
    width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .4); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    transition: all .5s var(--l-ease);
}
.c-label a:hover { background: var(--l-gold); border-color: var(--l-gold); color: #0A0A0B; transform: rotate(-45deg); }

.c-hero-final {
    position: absolute; left: var(--c-gut); right: var(--c-gut); top: 0; z-index: 6;
    height: var(--Tf); padding-bottom: 3.4vh;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
    opacity: 0; pointer-events: none; will-change: transform, opacity;
}
.c-hero-final.is-on { pointer-events: auto; }
.c-page .c-hero-final h2 { margin: 0; font-size: min(5.8vw, 10vh); line-height: .92; letter-spacing: -.03em; }
.c-hero-final h2 em { font-style: italic; color: var(--l-gold); }
.c-hero-final-side { max-width: 400px; }
.c-hero-final-side p { color: var(--l-muted); font-size: 16px; line-height: 1.6; margin: 0 0 20px; }
.c-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.c-btns .l-btn { padding: 15px 26px; }

.c-hero-meter {
    position: absolute; right: var(--c-gut); top: 50%; z-index: 7;
    transform: translate3d(0, -50%, 0) rotate(90deg); transform-origin: right center;
    display: flex; align-items: center; gap: 14px;
    font-family: var(--l-cond); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
    color: #fff; mix-blend-mode: difference;
}
.c-hero-meter i { width: 110px; height: 1px; background: rgba(255, 255, 255, .3); position: relative; }
.c-hero-meter b { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }

/* -------------------------------------------------
   Manifesto — kelime kelime aydınlanan metin
------------------------------------------------- */
.c-manifesto .c-wrap { display: grid; grid-template-columns: 1fr 3.2fr; gap: var(--c-gut); align-items: start; }
.c-manifesto-side p {
    margin: 22px 0 0; color: var(--l-muted);
    font-family: var(--l-cond); font-size: 14px; letter-spacing: .16em; text-transform: uppercase; line-height: 1.7;
}
.c-words {
    margin: 0; color: var(--l-heading);
    font-family: var(--l-display); font-size: clamp(34px, 4.6vw, 84px); line-height: 1.1; letter-spacing: -.02em;
}
.c-words em { font-style: italic; color: var(--l-gold); }
.c-words .w { opacity: .13; transition: opacity .45s var(--l-ease); }
.c-words .w.on { opacity: 1; }
.c-pill {
    display: inline-block; vertical-align: middle; position: relative; top: -.06em;
    width: 1.9em; height: .82em; border-radius: 1em; overflow: hidden;
}
.c-pill img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.4); transition: transform 1.2s var(--l-ease); }
.c-pill.on img { transform: scale(1); }

/* -------------------------------------------------
   Bölüm başlıkları (01 / 02 / 03)
------------------------------------------------- */
.c-chapter-head {
    display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 3vw;
    padding: 0 var(--c-gut); margin-bottom: clamp(50px, 6vw, 110px);
}
.c-chapter-head.is-right { grid-template-columns: auto 1fr auto; text-align: right; }
.c-num {
    display: block; font-family: var(--l-display); line-height: .78;
    font-size: clamp(100px, 17vw, 320px); letter-spacing: -.04em;
    color: transparent; -webkit-text-stroke: 1px var(--l-gold); will-change: transform;
}
.c-page .c-chapter-title { margin: 0; font-size: clamp(66px, 10.5vw, 200px); line-height: .86; letter-spacing: -.04em; }
.c-page .c-chapter-title.is-sm { font-size: clamp(54px, 7.4vw, 140px); }
.c-chapter-title em { font-style: italic; color: var(--l-gold); }
.c-chapter-note { max-width: 360px; padding-bottom: 1.2vw; }
.c-chapter-note p { color: var(--l-muted); font-size: 16.5px; line-height: 1.65; margin: 0 0 22px; }
.is-right .c-chapter-note { text-align: left; }

/* -------------------------------------------------
   Büyüyen görsel + ışık katmanları
------------------------------------------------- */
.c-bigimg {
    position: relative; overflow: hidden;
    height: clamp(460px, 96vh, 1040px);
    --ci: 14%; --cx: 12%; --cr: 30px;
    clip-path: inset(var(--ci) var(--cx) var(--ci) var(--cx) round var(--cr));
    will-change: clip-path;
}
.c-bigimg > img {
    position: absolute; left: 0; top: -8%; width: 100%; height: 116%; object-fit: cover;
    transform: scale(1.25); will-change: transform;
    filter: brightness(var(--lum, 1.02)) saturate(var(--sat, 1.05));
    transition: filter 1s var(--l-ease);
}
.c-bigimg::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 55%);
}
.c-bigimg-warm {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(ellipse at 62% 22%, rgba(255, 190, 110, .38) 0%, rgba(255, 170, 80, .1) 40%, rgba(255, 170, 80, 0) 70%);
    mix-blend-mode: screen; opacity: 1; transition: opacity 1s var(--l-ease);
}
.c-bigimg.no-deco .c-bigimg-warm { opacity: 0; }

.c-glass {
    position: absolute; left: calc(var(--c-gut) + 2vw); bottom: calc(var(--c-gut) + 2vw); z-index: 3;
    width: min(420px, calc(100% - 2 * var(--c-gut)));
    padding: 30px 32px; border-radius: 18px; color: #fff;
    background: rgba(12, 11, 10, .34); border: 1px solid rgba(255, 255, 255, .16);
    -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2);
}
.c-glass .c-kicker { color: var(--l-gold-soft); }
.c-page .c-glass h3 { color: #fff; font-size: 34px; margin: 16px 0 8px; }
.c-glass p { color: rgba(255, 255, 255, .72); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }
.c-layer-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.c-layer-btns button {
    display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
    padding: 10px 16px; border-radius: 30px;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .22); color: rgba(255, 255, 255, .7);
    font-family: var(--l-cond); font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    transition: all .45s var(--l-ease);
}
.c-layer-btns button i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .3); transition: all .45s var(--l-ease); }
.c-layer-btns button.is-on { color: #fff; border-color: var(--l-gold); background: rgba(199, 154, 91, .18); }
.c-layer-btns button.is-on i { background: #FFD9A0; box-shadow: 0 0 10px 3px rgba(255, 200, 120, .8); }

/* -------------------------------------------------
   Görselli hover listesi
------------------------------------------------- */
.c-list { margin-top: clamp(60px, 7vw, 120px); border-top: 1px solid var(--l-line); }
.c-list a {
    position: relative; isolation: isolate; overflow: hidden;
    display: grid; grid-template-columns: 90px 1fr auto 64px; align-items: center; gap: 28px;
    padding: clamp(24px, 2.6vw, 42px) var(--c-gut);
    border-bottom: 1px solid var(--l-line); color: var(--l-heading);
}
.c-list a::before {
    content: ""; position: absolute; inset: 0; z-index: -1; background: var(--l-bg-2);
    transform: scaleY(0); transform-origin: bottom; transition: transform .6s var(--l-ease);
}
.c-list a:hover::before { transform: scaleY(1); transform-origin: top; }
.c-list .n { font-family: var(--l-cond); font-size: 14px; letter-spacing: .2em; color: var(--l-gold); }
.c-page .c-list h3 {
    margin: 0; font-size: clamp(36px, 4.8vw, 92px); line-height: 1; letter-spacing: -.025em;
    transition: transform .7s var(--l-ease), color .5s var(--l-ease);
}
.c-list a:hover h3 { transform: translate3d(2.4vw, 0, 0); color: var(--l-gold); font-style: italic; }
.c-list .t { font-family: var(--l-cond); font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--l-muted); }
.c-list .go {
    width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--l-line-strong);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    transition: all .55s var(--l-ease);
}
.c-list a:hover .go { background: var(--l-gold); border-color: var(--l-gold); color: #0A0A0B; transform: rotate(-45deg); }

.c-list-float {
    position: fixed; top: 0; left: 0; z-index: 60; pointer-events: none;
    width: 320px; height: 400px; margin: -200px 0 0 -160px;
    border-radius: 16px; overflow: hidden; opacity: 0;
    transition: opacity .45s var(--l-ease);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
    will-change: transform;
}
.c-list-float.is-on { opacity: 1; }
.c-list-float img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transform: scale(1.18);
    transition: opacity .55s var(--l-ease), transform 1s var(--l-ease);
}
.c-list-float img.on { opacity: 1; transform: none; }

/* -------------------------------------------------
   Yatay kayan proje galerisi
------------------------------------------------- */
.c-hs { position: relative; margin-top: clamp(100px, 12vw, 200px); }
.c-hs-sticky {
    position: sticky; top: 0; height: 100vh; overflow: hidden;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 70px;
}
.c-hs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding: 0 var(--c-gut); margin-bottom: 4vh; }
.c-page .c-hs-title { margin: 0; font-size: min(6vw, 10vh); line-height: .92; letter-spacing: -.03em; }
.c-hs-title em { font-style: italic; color: var(--l-gold); }
.c-hs-meta { text-align: right; }
.c-hs-meta p { margin: 14px 0 0; font-family: var(--l-cond); font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--l-muted); }

.c-hs-track { display: flex; align-items: center; gap: 1.8vw; padding: 0 var(--c-gut); will-change: transform; }
.c-hs-card {
    position: relative; flex: 0 0 auto; display: block; overflow: hidden;
    width: min(48vw, 92vh); height: 58vh; border-radius: var(--c-radius);
    background: var(--l-skeleton);
}
.c-hs-card.is-tall { width: min(30vw, 50vh); height: 64vh; }
.c-hs-card .in { position: absolute; inset: 0; transition: transform 1.3s var(--l-ease); }
.c-hs-card:hover .in { transform: scale(1.07); }
.c-hs-card img {
    position: absolute; top: 0; left: -12%; width: 124%; height: 100%; max-width: none; object-fit: cover;
    will-change: transform;
}
.c-hs-card::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .75) 100%);
}
.c-hs-no {
    position: absolute; top: 22px; left: 26px; z-index: 2;
    font-family: var(--l-display); font-size: 22px; color: rgba(255, 255, 255, .85);
}
.c-hs-cap { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 2; color: #fff; }
.c-hs-cap small { display: block; font-family: var(--l-cond); font-size: 12.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--l-gold-soft); margin-bottom: 8px; }
.c-page .c-hs-cap h4 { color: #fff; margin: 0; font-size: clamp(24px, 2.3vw, 42px); line-height: 1.1; transition: transform .7s var(--l-ease); }
.c-hs-card:hover .c-hs-cap h4 { transform: translate3d(10px, 0, 0); }

.c-hs-end { flex: 0 0 auto; width: 32vw; display: flex; align-items: center; justify-content: center; }
.c-round {
    position: relative; width: 230px; height: 230px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    border: 1px solid var(--l-gold); color: var(--l-heading); text-align: center; overflow: hidden; isolation: isolate;
    font-family: var(--l-display); font-size: 28px; line-height: 1.1;
}
.c-round::before {
    content: ""; position: absolute; inset: 0; z-index: -1; background: var(--l-gold); border-radius: 50%;
    transform: scale(0); transition: transform .7s var(--l-ease);
}
.c-round i { font-size: 22px; color: var(--l-gold); transition: color .5s, transform .6s var(--l-ease); }
.c-round:hover { color: #0A0A0B; }
.c-round:hover::before { transform: scale(1); }
.c-round:hover i { color: #0A0A0B; transform: rotate(45deg); }

.c-hs-bar { margin: 5vh var(--c-gut) 0; height: 1px; background: var(--l-line); position: relative; }
.c-hs-bar i { position: absolute; inset: 0; background: var(--l-gold); transform: scaleX(0); transform-origin: left; }

/* -------------------------------------------------
   Işık öncesi / sonrası karşılaştırma
------------------------------------------------- */
.c-compare {
    position: relative; overflow: hidden; user-select: none; touch-action: pan-y;
    height: clamp(460px, 92vh, 980px); margin: 0 var(--c-gut); border-radius: var(--c-radius);
    --cmp: 90%; cursor: ew-resize;
}
.c-compare .before, .c-compare .after { position: absolute; inset: 0; }
.c-compare img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.c-compare .before img { filter: brightness(.14) saturate(.15) contrast(1.15) hue-rotate(190deg); }
.c-compare .after { clip-path: inset(0 0 0 var(--cmp)); }
.c-compare .after img { filter: saturate(1.1) contrast(1.05); }
.c-compare-handle {
    position: absolute; top: 0; bottom: 0; left: var(--cmp); z-index: 3;
    width: 2px; margin-left: -1px; background: #FFF4E3;
    box-shadow: 0 0 22px 4px rgba(231, 199, 140, .7), 0 0 90px 22px rgba(199, 154, 91, .3);
}
.c-compare-handle i {
    position: absolute; top: 50%; left: 50%; width: 72px; height: 72px; margin: -36px 0 0 -36px;
    border-radius: 50%; background: var(--l-gold); color: #0A0A0B;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    box-shadow: 0 0 0 10px rgba(199, 154, 91, .2);
    animation: c-pulse 2.4s var(--l-ease) infinite;
}
@keyframes c-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(199, 154, 91, .45); } 60% { box-shadow: 0 0 0 22px rgba(199, 154, 91, 0); } }
.c-compare-tag {
    position: absolute; top: 28px; z-index: 4; padding: 9px 16px; border-radius: 30px;
    font-family: var(--l-cond); font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    color: #fff; background: rgba(0, 0, 0, .35); border: 1px solid rgba(255, 255, 255, .18);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.c-compare-tag.l { left: 28px; }
.c-compare-tag.r { right: 28px; }
.c-compare-cap {
    display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
    padding: 26px var(--c-gut) 0;
}
.c-compare-cap p { margin: 0; font-family: var(--l-display); font-size: clamp(24px, 2.4vw, 40px); color: var(--l-heading); }
.c-compare-cap em { font-style: italic; color: var(--l-gold); }
.c-compare-cap span { font-family: var(--l-cond); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--l-muted); }

/* -------------------------------------------------
   Dış mekân tilt kartları
------------------------------------------------- */
.c-ext-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6vw;
    padding: clamp(70px, 8vw, 140px) var(--c-gut) clamp(100px, 12vw, 200px);
}
.c-ext-grid > :nth-child(even) { margin-top: 7vw; }
.c-tilt {
    position: relative; display: block; overflow: hidden; border-radius: var(--c-radius);
    aspect-ratio: 3 / 4; background: var(--l-skeleton);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
.c-tilt.c-up { transform: perspective(1000px) translate3d(0, 50px, 0); }
.c-tilt.c-up.is-in {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: opacity 1.1s var(--l-ease), transform .7s var(--l-ease);
}
.c-tilt.c-up.is-in.is-moving { transition: opacity 1.1s var(--l-ease), transform .12s linear; }
.c-tilt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--l-ease); }
.c-tilt:hover img { transform: scale(1.08); }
.c-tilt::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 236, 200, .35) 0%, rgba(255, 236, 200, 0) 55%);
    transition: opacity .5s var(--l-ease);
}
.c-tilt:hover::before { opacity: 1; }
.c-tilt::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .78) 100%);
}
.c-tilt-body { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 3; color: #fff; }
.c-tilt-body small { display: block; font-family: var(--l-cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--l-gold-soft); margin-bottom: 8px; }
.c-page .c-tilt-body h4 { color: #fff; font-size: clamp(24px, 2vw, 34px); margin: 0; line-height: 1.1; }

/* -------------------------------------------------
   Hız şeridi + rakamlar
------------------------------------------------- */
.c-velo-sec { border-top: 1px solid var(--l-line); background: var(--l-bg-2); }
.c-velo { overflow: hidden; padding: clamp(40px, 5vw, 80px) 0; border-bottom: 1px solid var(--l-line); }
.c-velo-track { display: flex; width: max-content; will-change: transform; }
.c-velo-track span {
    display: flex; align-items: center; gap: 4vw; padding-right: 4vw; white-space: nowrap;
    font-family: var(--l-display); font-size: clamp(76px, 13vw, 250px); line-height: 1; letter-spacing: -.03em;
    color: var(--l-heading);
}
.c-velo-track span::after { content: "✦"; font-size: .25em; color: var(--l-gold); }
.c-velo-track span:nth-child(even) { color: transparent; -webkit-text-stroke: 1px var(--l-gold); font-style: italic; }

.c-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.c-stat { padding: clamp(40px, 5vw, 80px) var(--c-gut); border-right: 1px solid var(--l-line); transition: background .6s var(--l-ease); }
.c-stat:last-child { border-right: 0; }
.c-stat:hover { background: var(--l-bg-3); }
.c-stat b {
    display: flex; align-items: baseline; gap: 6px; font-weight: 400;
    font-family: var(--l-display); font-size: clamp(56px, 6.4vw, 118px); line-height: 1; color: var(--l-heading);
    transition: color .5s var(--l-ease);
}
.c-stat b em { font-style: normal; font-size: .42em; color: var(--l-gold); }
.c-stat:hover b { color: var(--l-gold); }
.c-stat > span { display: block; margin-top: 16px; font-family: var(--l-cond); font-size: 13.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--l-muted); }

/* -------------------------------------------------
   Süreç — üst üste binen kartlar
------------------------------------------------- */
.c-stack { padding: 0 var(--c-gut); }
.c-stack-card {
    position: sticky; top: calc(110px + var(--i) * 26px);
    display: grid; grid-template-columns: 1fr 1.15fr;
    height: min(70vh, 640px); margin-bottom: 7vh;
    border-radius: var(--c-radius); overflow: hidden;
    background: var(--l-surface); border: 1px solid var(--l-line);
    box-shadow: 0 -30px 60px -40px rgba(0, 0, 0, .6);
    transform-origin: center top; will-change: transform, filter;
}
.c-stack-card:last-child { margin-bottom: 0; }
.c-stack-body { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3.6vw, 64px); }
.c-stack-body .n {
    font-family: var(--l-display); font-size: clamp(80px, 9vw, 160px); line-height: .8;
    color: transparent; -webkit-text-stroke: 1px var(--l-gold);
}
.c-page .c-stack-body h3 { font-size: clamp(32px, 3.4vw, 60px); line-height: 1; letter-spacing: -.02em; margin: 0 0 18px; }
.c-stack-body p { color: var(--l-muted); font-size: 16.5px; line-height: 1.65; margin: 0 0 24px; max-width: 460px; }
.c-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.c-chips li {
    padding: 8px 14px; border: 1px solid var(--l-line-strong); border-radius: 30px;
    font-family: var(--l-cond); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--l-text);
}
.c-stack-media { position: relative; overflow: hidden; }
.c-stack-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--l-ease); }
.c-stack-card:hover .c-stack-media img { transform: scale(1.06); }

/* -------------------------------------------------
   CTA — imleçle aydınlanan başlık
------------------------------------------------- */
.c-cta {
    position: relative; overflow: hidden; isolation: isolate;
    padding: clamp(110px, 13vw, 220px) var(--c-gut) !important;
    background: #070707; color: #fff; text-align: center;
}
.c-cta-bg { position: absolute; inset: 0; z-index: -1; }
.c-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: grayscale(.4); }
.c-cta-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(7, 7, 7, .2) 0%, #070707 75%); }
.c-cta .c-kicker { color: var(--l-gold-soft); }

.c-page .c-cta-title {
    display: grid; margin: 34px 0 30px; color: #fff;
    font-size: clamp(66px, 13.5vw, 260px); line-height: .88; letter-spacing: -.04em;
    --mx: 50%; --my: 50%;
}
.c-cta-title > span { grid-area: 1 / 1; }
.c-cta-title .base { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .22); }
.c-cta-title .lit {
    color: #FBEBD0; font-style: italic;
    text-shadow: 0 0 30px rgba(231, 199, 140, .55), 0 0 80px rgba(199, 154, 91, .35);
    -webkit-mask-image: radial-gradient(circle min(26vw, 300px) at var(--mx) var(--my), #000 0%, rgba(0, 0, 0, .6) 45%, transparent 100%);
    mask-image: radial-gradient(circle min(26vw, 300px) at var(--mx) var(--my), #000 0%, rgba(0, 0, 0, .6) 45%, transparent 100%);
}
.c-cta-title .base { font-style: italic; }
.c-cta-sub { max-width: 560px; margin: 0 auto; color: rgba(255, 255, 255, .7); font-size: 17px; line-height: 1.65; }

.c-orbit {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 200px; height: 200px; margin-top: clamp(40px, 5vw, 70px);
}
.c-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: c-spin 16s linear infinite; overflow: visible; }
.c-orbit text { fill: var(--l-gold-soft); font-family: var(--l-cond); font-size: 13.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.c-orbit b {
    width: 104px; height: 104px; border-radius: 50%; background: var(--l-gold); color: #0A0A0B;
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    transition: transform .6s var(--l-ease), box-shadow .6s var(--l-ease);
}
.c-orbit:hover b { transform: scale(1.12) rotate(45deg); box-shadow: 0 0 60px 10px rgba(199, 154, 91, .45); color: #0A0A0B; }
@keyframes c-spin { to { transform: rotate(360deg); } }

.c-contact {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 1100px; margin: clamp(60px, 7vw, 110px) auto 0;
    border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 36px;
}
.c-contact a { color: #fff; font-family: var(--l-display); font-size: clamp(19px, 1.6vw, 26px); position: relative; justify-self: center; }
.c-contact a small { display: block; margin-bottom: 6px; font-family: var(--l-cond); font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }
.c-contact a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--l-gold);
    transform: scaleX(0); transform-origin: right; transition: transform .6s var(--l-ease);
}
.c-contact a:hover { color: var(--l-gold-soft); }
.c-contact a:hover::after { transform: scaleX(1); transform-origin: left; }

/* -------------------------------------------------
   Duyarlı
------------------------------------------------- */
@media (max-width: 1199px) {
    .c-nav, .c-header .l-theme-toggle { display: none; }
    .c-actions { margin-left: auto; }
    .c-hero-intro { right: var(--c-gut); }
    .c-hero-aside { display: none; }
    .c-hero-final { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 16px; }
    .c-hero-final-side p { display: none; }
    .c-page .c-hero-final h2 { font-size: min(8vw, 7vh); }
    .c-ext-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .c-ext-grid > :nth-child(even) { margin-top: 0; }
    .c-ext-grid > :nth-child(2), .c-ext-grid > :nth-child(4) { transform-origin: center; }
    .c-stats { grid-template-columns: repeat(2, 1fr); }
    .c-stat:nth-child(2) { border-right: 0; }
    .c-stat:nth-child(-n+2) { border-bottom: 1px solid var(--l-line); }
}

@media (max-width: 991px) {
    .c-manifesto .c-wrap { grid-template-columns: 1fr; gap: 30px; }
    .c-chapter-head, .c-chapter-head.is-right { grid-template-columns: 1fr; text-align: left; gap: 22px; }
    .c-chapter-head.is-right .c-num { order: -2; }
    .c-chapter-head.is-right .c-chapter-title { order: -1; }
    .c-num { font-size: 110px; }
    .c-list a { grid-template-columns: 50px 1fr 52px; gap: 16px; }
    .c-list .t { display: none; }
    .c-list .go { width: 52px; height: 52px; }
    .c-list-float { display: none; }

    /* yatay galeri: pin yerine dokunmatik kaydırma */
    .c-hs { height: auto !important; }
    .c-hs-sticky { position: relative; height: auto; padding: 0; }
    .c-hs-head { flex-direction: column; align-items: flex-start; }
    .c-hs-meta { text-align: left; }
    .c-page .c-hs-title { font-size: clamp(44px, 9vw, 80px); }
    .c-hs-track {
        overflow-x: auto; scroll-snap-type: x mandatory; transform: none !important;
        padding-bottom: 10px; scrollbar-width: none; align-items: stretch;
    }
    .c-hs-track::-webkit-scrollbar { display: none; }
    .c-hs-card, .c-hs-card.is-tall { width: 76vw; height: 62vh; max-height: 560px; scroll-snap-align: center; }
    .c-hs-card img { left: 0; width: 100%; transform: none !important; }
    .c-hs-end { width: 70vw; }
    .c-hs-bar { display: none; }

    .c-stack-card { grid-template-columns: 1fr; grid-template-rows: 38% 1fr; height: min(78vh, 680px); top: calc(90px + var(--i) * 14px); }
    .c-stack-media { order: -1; }
    .c-stack-body .n { position: absolute; top: 18px; right: 22px; font-size: 64px; -webkit-text-stroke-color: #fff; }
    .c-stack-body { justify-content: flex-end; }
    .c-contact { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 767px) {
    .c-page { --c-gut: 18px; --c-radius: 16px; }
    .c-header { height: 74px; }
    .c-header.is-solid { height: 66px; }
    .c-logo img { height: 36px; }
    .c-head-cta { display: none; }
    .c-hero { height: 380vh; }
    .c-hero-intro { bottom: 16vh; }
    .c-hero-meter { display: none; }
    .c-label { gap: 12px; }
    .c-label b { font-size: 30px; }
    .c-label a { width: 42px; height: 42px; font-size: 16px; }
    .c-hero-final { padding-bottom: 2.4vh; }
    .c-page .c-hero-final h2 { font-size: min(12vw, 6vh); }
    .c-btns .l-btn { padding: 13px 18px; font-size: 13px; }
    .c-hero-bgtext span { font-size: 22vh; }
    .c-bigimg { height: 82vh; }
    .c-glass { padding: 22px; left: var(--c-gut); bottom: var(--c-gut); width: calc(100% - 2 * var(--c-gut) - 12%); }
    .c-page .c-glass h3 { font-size: 26px; }
    .c-glass p { display: none; }
    .c-compare { height: 70vh; }
    .c-compare-handle i { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
    .c-compare-tag { top: 16px; font-size: 11px; padding: 7px 12px; }
    .c-compare-tag.l { left: 16px; } .c-compare-tag.r { right: 16px; }
    .c-compare-cap { flex-direction: column; gap: 6px; }
    .c-ext-grid { grid-template-columns: 1fr; }
    .c-tilt { aspect-ratio: 4 / 3; }
    .c-stats { grid-template-columns: 1fr 1fr; }
    .c-stat { padding: 34px 18px; }
    .c-round { width: 180px; height: 180px; font-size: 22px; }
    .c-orbit { width: 170px; height: 170px; }
    .c-orbit b { width: 86px; height: 86px; }
}

/* hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    .c-grain, .c-orbit svg, .c-cue i, .c-compare-handle i { animation: none; }
    .c-loader { display: none; }
    .c-line > span, .c-up { transform: none !important; opacity: 1 !important; transition: none !important; }
    .c-hero-intro .c-kicker, .c-hero-aside { opacity: 1; }
}
