/* ==================================================================
   armiss/public/theme/style.css
   ARMISS GÜZELLİK MERKEZİ — bespoke "couture" tema.
   Sinematik koyu-lüks: şarap-siyah zemin, şampanya altını + gül kurusu.
   Cormorant Garamond (display serif) + Jost (sans). Saf CSS/JS.
   ================================================================== */

:root {
    --bg:        #0e0a0c;
    --bg-2:      #140e11;
    --surface:   #1a1216;
    --surface-2: #221820;
    --ink:       #f8f0ea;
    --text:      #cdbcb4;
    --muted:     #9a8a82;
    --line:      rgba(255,255,255,.08);
    --line-2:    rgba(216,176,106,.22);

    --gold:      #d8b06a;   /* şampanya altını */
    --gold-2:    #f1dcae;   /* açık altın */
    --rose:      #c98a96;   /* gül kurusu */
    --rose-deep: #b76e79;
    --plum:      #6d2f44;   /* derin erik */

    --accent:    var(--gold);     /* eski sınıflarla uyum */
    --accent-dk: #c39a52;
    --accent-sf: rgba(216,176,106,.12);
    --alt:       var(--rose);

    --max: 1240px;
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans:  "Jost", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

    --shadow:    0 20px 50px rgba(0,0,0,.45);
    --shadow-lg: 0 40px 90px rgba(0,0,0,.6);
    --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(216,176,106,.3); color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); line-height: 1.08; margin: 0 0 .4em; font-weight: 600; letter-spacing: .002em; }

/* Ortak başlık etiketi (eyebrow) */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .32em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7; }
.section-head.text-center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7; }

/* ------------ Scroll-reveal yardımcıları ------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------ Özel imleç ışıltısı ------------ */
.cursor-glow {
    position: fixed; top: 0; left: 0; width: 380px; height: 380px; border-radius: 50%;
    pointer-events: none; z-index: 9; transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(216,176,106,.10), rgba(201,138,150,.05) 40%, transparent 70%);
    mix-blend-mode: screen; transition: opacity .4s; will-change: transform;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ------------ Bölümler ------------ */
.section { padding: 120px 0; position: relative; }
.section.alt { background:
    radial-gradient(900px 500px at 80% -10%, rgba(109,47,68,.18), transparent 60%),
    var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto 64px; }
.section-head.text-center { text-align: center; }
.section-head h2 { font-size: clamp(34px, 5.2vw, 60px); font-weight: 500; }
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p { color: var(--muted); margin: 16px 0 0; font-size: 17px; font-weight: 300; }

/* ------------ Butonlar ------------ */
.btn {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 36px; border-radius: 999px; font-family: var(--sans);
    font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    border: 1px solid transparent; cursor: pointer; overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s, border-color .4s;
}
.btn-accent { color: #1a120c; background: linear-gradient(120deg, var(--gold-2), var(--gold)); box-shadow: 0 16px 40px rgba(216,176,106,.28); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(216,176,106,.45); }
.btn-ghost { color: var(--ink); border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-light { background: #fff; color: #1a120c; }
.btn-light:hover { transform: translateY(-3px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37,211,102,.4); }

/* ==================================================================
   DUYURU ŞERİDİ + NAVİGASYON
   ================================================================== */
.topbar { display: none; }
.announce {
    position: relative; z-index: 60; text-align: center; font-size: 12px; letter-spacing: .18em;
    text-transform: uppercase; color: #1a120c; padding: 9px 16px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
    font-weight: 500;
}
.site-header { position: sticky; top: 0; z-index: 50; transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(14,10,12,.82); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
body.home .site-header { position: fixed; left: 0; right: 0; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { max-height: 56px; }
.logo-text { font-family: var(--serif); font-size: 27px; font-weight: 600; color: #fff; letter-spacing: .04em; }
.logo-text b { color: var(--gold); font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a, .nav-item > a {
    position: relative; display: inline-flex; align-items: center; gap: 5px;
    padding: 10px 16px; font-size: 13px; font-weight: 400; color: #ece4de;
    letter-spacing: .12em; text-transform: uppercase; transition: color .3s;
}
.site-nav > a::after, .nav-item > a::after {
    content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.site-nav > a:hover, .nav-item:hover > a { color: var(--gold); }
.site-nav > a:hover::after, .nav-item:hover > a::after, .site-nav > a.active::after { transform: scaleX(1); }
.site-nav > a.active { color: var(--gold); }
.nav-item > a.has-caret::after { content: none; }

/* açılır menü */
.nav-item { position: relative; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 280px;
    background: rgba(20,14,17,.96); backdrop-filter: blur(18px);
    border: 1px solid var(--line-2); border-radius: 14px; box-shadow: var(--shadow-lg);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all .3s var(--ease); z-index: 60;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 12px 16px; border-radius: 9px; font-size: 14px; color: #d9cdc6; text-transform: none; letter-spacing: .01em; font-family: var(--serif); font-size: 17px; transition: background .25s, color .25s; }
.nav-dropdown a:hover { background: var(--accent-sf); color: var(--gold); }
.nav-cta { margin-left: 14px; padding: 12px 26px !important; }
.nav-toggle { display: none; }
.nav-toggle-btn { display: none; font-size: 26px; cursor: pointer; color: #fff; user-select: none; }

/* ==================================================================
   HERO — sinematik, animasyonlu gradient + yörünge halkaları
   ================================================================== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; background: var(--bg);
}
.hero.has-photo { background-size: cover; background-position: center; }
/* animasyonlu ışık alanları */
.hero-aura { position: absolute; inset: -20%; z-index: 0; pointer-events: none; }
.hero-aura span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.hero-aura .a1 { width: 50vw; height: 50vw; top: -10%; left: -8%; background: radial-gradient(circle, rgba(183,110,121,.55), transparent 65%); animation: drift1 22s var(--ease) infinite; }
.hero-aura .a2 { width: 46vw; height: 46vw; bottom: -14%; right: -6%; background: radial-gradient(circle, rgba(216,176,106,.45), transparent 65%); animation: drift2 26s var(--ease) infinite; }
.hero-aura .a3 { width: 38vw; height: 38vw; top: 30%; left: 40%; background: radial-gradient(circle, rgba(109,47,68,.5), transparent 60%); animation: drift3 30s var(--ease) infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,40px) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-70px,-30px) scale(1.15)} }
@keyframes drift3 { 0%,100%{transform:translate(-50%,0) scale(1); opacity:.4} 50%{transform:translate(-40%,-40px) scale(1.2); opacity:.6} }
/* dekoratif ince halkalar */
.hero-rings { position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: 760px; height: 760px; z-index: 1; pointer-events: none; opacity: .5; }
.hero-rings::before, .hero-rings::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(216,176,106,.25); }
.hero-rings::after { inset: 16%; border-color: rgba(201,138,150,.22); }
.hero-rings i { position: absolute; inset: 32%; border-radius: 50%; border: 1px solid rgba(216,176,106,.18); animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* film grain */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
    background-image: linear-gradient(180deg, transparent 60%, rgba(14,10,12,.9));
}
.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 880px; padding: 120px 0 80px; }
.hero .hero-logo { max-height: 140px; margin: 0 0 26px; }
.hero-eyebrow { color: var(--gold); letter-spacing: .4em; }
.hero h1 { font-size: clamp(48px, 8vw, 104px); font-weight: 500; color: #fff; line-height: .98; margin: 0 0 26px; }
.hero h1 .l { display: block; overflow: hidden; }
.hero h1 .l > span { display: block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.hero h1 .l:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .l:nth-child(3) > span { animation-delay: .24s; }
.hero h1 em { font-style: italic; color: var(--gold); }
@keyframes rise { to { transform: none; } }
.hero .hero-text { font-size: clamp(16px, 1.5vw, 20px); color: #e6d8d0; max-width: 560px; margin: 0 0 40px; font-weight: 300;
    opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards; }
@keyframes fadeUp { from { opacity:0; transform: translateY(20px);} to { opacity:1; transform:none; } }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease) .68s forwards; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{ transform: scaleY(.4); opacity:.4; transform-origin: top;} 50%{ transform: scaleY(1); opacity:1; transform-origin: top;} }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==================================================================
   AKAN ŞERİT (marquee)
   ================================================================== */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); font-style: italic; color: var(--ink); padding: 0 38px; display: inline-flex; align-items: center; gap: 38px; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--gold); font-size: 16px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==================================================================
   ROZETLER (4 değer)
   ================================================================== */
.badges { padding: 0; }
.badges .container { padding-top: 90px; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge-item { text-align: center; padding: 38px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); transition: transform .5s var(--ease), border-color .5s, background .5s; }
.badge-item:hover { transform: translateY(-8px); border-color: var(--line-2); background: var(--surface-2); }
.badge-item .b-ico { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; font-size: 28px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(216,176,106,.25), rgba(183,110,121,.12)); border: 1px solid var(--line-2); }
.badge-item h3 { font-size: 19px; margin: 0; color: var(--ink); font-weight: 600; }
.badge-item p { font-size: 13px; color: var(--muted); margin: 4px 0 0; }

/* ==================================================================
   HİZMETLER — premium tilt kartlar
   ================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
    position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 34px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    background: var(--surface); transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
    transform-style: preserve-3d; will-change: transform;
}
.svc-card::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: .9; transition: opacity .5s, transform .8s var(--ease); background: var(--art); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,10,12,.15) 0%, rgba(14,10,12,.7) 55%, rgba(14,10,12,.95) 100%); transition: background .5s; }
.svc-card.has-photo::before { background-size: cover; background-position: center; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.svc-card:hover::before { transform: scale(1.06); }
.svc-num { position: absolute; top: 26px; right: 30px; z-index: 2; font-family: var(--serif); font-size: 20px; color: var(--gold); opacity: .7; }
.svc-card .s-body { position: relative; z-index: 2; }
.svc-card .s-ico { font-size: 34px; margin-bottom: 14px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.svc-card h3 { font-size: 27px; color: #fff; margin-bottom: 10px; font-weight: 600; }
.svc-card p { color: #d8c9c1; margin: 0 0 18px; font-size: 14.5px; font-weight: 300; }
.svc-card .s-more { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; transition: gap .3s; }
.svc-card:hover .s-more { gap: 14px; }
/* gradient "demo görseller" — her karta farklı */
.svc-card:nth-child(6n+1){ --art: radial-gradient(120% 120% at 20% 10%, #7a3a4e, #2a151c 60%); }
.svc-card:nth-child(6n+2){ --art: radial-gradient(120% 120% at 80% 10%, #8a6a3a, #261c12 60%); }
.svc-card:nth-child(6n+3){ --art: radial-gradient(120% 120% at 30% 90%, #6d2f44, #1d1117 60%); }
.svc-card:nth-child(6n+4){ --art: radial-gradient(120% 120% at 70% 20%, #a86f78, #2a1a1e 62%); }
.svc-card:nth-child(6n+5){ --art: radial-gradient(120% 120% at 25% 30%, #9c7b46, #221a12 60%); }
.svc-card:nth-child(6n+6){ --art: radial-gradient(120% 120% at 75% 80%, #804a5a, #1f1217 60%); }

/* ==================================================================
   ÖNE ÇIKANLAR (work-block)
   ================================================================== */
.work-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.work-block:last-child { margin-bottom: 0; }
.work-block.reverse .work-media { order: 2; }
.work-media { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background:
    radial-gradient(120% 120% at 30% 20%, rgba(183,110,121,.4), transparent 60%),
    radial-gradient(120% 120% at 80% 90%, rgba(216,176,106,.3), transparent 60%), var(--surface-2); box-shadow: var(--shadow); position: relative; }
.work-media img { width: 100%; height: 100%; object-fit: cover; }
.work-media.placeholder { display: grid; place-items: center; }
.work-media .ph { font-size: 70px; opacity: .8; }
.work-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.work-tag::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.work-text h3 { font-size: clamp(28px, 3.4vw, 42px); color: #fff; font-weight: 500; }
.work-text p { color: var(--text); font-weight: 300; font-size: 16px; }

/* ==================================================================
   ÖNCE / SONRA — sürükle-karşılaştır slider
   ================================================================== */
.ba-wrap { max-width: 940px; margin: 0 auto; }
.ba-slider { position: relative; aspect-ratio: 16/10; border-radius: 20px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); user-select: none; cursor: ew-resize; }
.ba-layer { position: absolute; inset: 0; background-size: cover; background-position: center; display: grid; place-items: center; }
.ba-before { background:
    linear-gradient(135deg, #2b2226, #171013); }
.ba-after { background:
    radial-gradient(120% 120% at 30% 20%, rgba(216,176,106,.5), transparent 55%),
    radial-gradient(120% 120% at 80% 90%, rgba(201,138,150,.45), transparent 55%),
    linear-gradient(135deg, #3a2a30, #20141a);
    clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-layer .ba-emoji { font-size: 64px; opacity: .35; }
.ba-after .ba-emoji { opacity: .6; filter: drop-shadow(0 6px 18px rgba(216,176,106,.5)); }
.ba-tag { position: absolute; top: 16px; z-index: 4; font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
.ba-tag.b { left: 16px; background: rgba(0,0,0,.5); color: #e8dcd5; border: 1px solid var(--line); }
.ba-tag.a { right: 16px; background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #1a120c; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--gold); z-index: 5; transform: translateX(-1px); }
.ba-handle::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(120deg, var(--gold-2), var(--gold)); box-shadow: 0 8px 24px rgba(216,176,106,.5); }
.ba-handle::after { content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #1a120c; font-size: 20px; z-index: 2; }
.ba-caption { text-align: center; margin-top: 28px; }
.ba-caption h3 { font-size: 26px; color: var(--ink); margin-bottom: 6px; }
.ba-caption p { color: var(--muted); margin: 0; }

/* ==================================================================
   İSTATİSTİKLER (sayaç)
   ================================================================== */
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.stat2 { text-align: center; position: relative; }
.stat2 + .stat2::before { content: ""; position: absolute; left: -15px; top: 10%; bottom: 10%; width: 1px; background: var(--line); }
.stat2 .num { font-family: var(--serif); font-size: clamp(44px, 6vw, 72px); color: var(--gold); font-weight: 600; line-height: 1; }
.stat2 .lbl { color: var(--muted); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; margin-top: 12px; }

/* ==================================================================
   NEDEN BİZ (feature)
   ================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 38px 32px; transition: transform .5s var(--ease), border-color .5s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.feature-card .f-ico { width: 60px; height: 60px; display: grid; place-items: center; font-size: 26px; border-radius: 16px; background: radial-gradient(circle at 30% 30%, rgba(216,176,106,.22), rgba(183,110,121,.1)); border: 1px solid var(--line-2); margin-bottom: 22px; }
.feature-card h3 { font-size: 24px; color: var(--ink); }
.feature-card p { color: var(--muted); margin: 0; font-weight: 300; }

/* ==================================================================
   GALERİ — mozaik
   ================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line); background-size: cover; background-position: center; }
.gallery-item:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6){ grid-column: span 2; }
.gallery-item .art { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.gallery-item:nth-child(5n+1) .art{ background: radial-gradient(120% 120% at 20% 20%, #7a3a4e, #1d1117 65%); }
.gallery-item:nth-child(5n+2) .art{ background: radial-gradient(120% 120% at 80% 10%, #8a6a3a, #1f1812 65%); }
.gallery-item:nth-child(5n+3) .art{ background: radial-gradient(120% 120% at 30% 90%, #6d2f44, #19101400 65%), #1a1216; }
.gallery-item:nth-child(5n+4) .art{ background: radial-gradient(120% 120% at 70% 30%, #a86f78, #211519 65%); }
.gallery-item:nth-child(5n+5) .art{ background: radial-gradient(120% 120% at 50% 50%, #9c7b46, #1f1812 65%); }
.gallery-item:hover .art { transform: scale(1.08); }
.gallery-item .caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px; background: linear-gradient(transparent, rgba(14,10,12,.85)); color: #fff; font-family: var(--serif); font-size: 18px; }
.gallery-item .gi-ico { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); z-index: 1; font-size: 38px; opacity: .4; }

/* ==================================================================
   YORUMLAR (testimonial)
   ================================================================== */
.testi { max-width: 860px; margin: 0 auto; text-align: center; }
.testi .quote { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3.4vw, 38px); color: var(--ink); line-height: 1.4; }
.testi .quote::before { content: "“"; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -.3em; margin-right: .1em; }
.testi .who { margin-top: 26px; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-size: 12px; }
.testi .stars { color: var(--gold); letter-spacing: .3em; margin-top: 18px; }

/* ==================================================================
   SSS
   ================================================================== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); background: transparent; }
.faq-item > summary { list-style: none; cursor: pointer; padding: 26px 8px; font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 18px; transition: color .3s; }
.faq-item > summary:hover { color: var(--gold); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--gold); font-size: 28px; font-weight: 300; transition: transform .3s; }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 8px 26px; color: var(--muted); font-weight: 300; max-width: 760px; }

/* ==================================================================
   CTA
   ================================================================== */
.cta { position: relative; overflow: hidden; border: 1px solid var(--line-2); border-radius: 28px; padding: 90px 50px; text-align: center;
    background: radial-gradient(700px 320px at 50% 0%, rgba(216,176,106,.22), transparent 60%),
                radial-gradient(700px 320px at 50% 100%, rgba(109,47,68,.3), transparent 60%),
                var(--surface); }
.cta h2 { color: #fff; font-size: clamp(32px, 5vw, 56px); font-weight: 500; }
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p { color: #d8c9c1; max-width: 600px; margin: 14px auto 34px; font-weight: 300; font-size: 17px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================================================================
   İÇ SAYFA BAŞLIĞI + içerik
   ================================================================== */
.page-hero { position: relative; padding: 180px 0 90px; text-align: center; overflow: hidden;
    background: radial-gradient(800px 360px at 50% -10%, rgba(183,110,121,.28), transparent 60%),
                radial-gradient(700px 320px at 80% 30%, rgba(216,176,106,.16), transparent 60%), var(--bg-2);
    border-bottom: 1px solid var(--line); }
.page-hero .crumb { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); color: #fff; font-weight: 500; }
.page-hero p { color: #d8c9c1; max-width: 640px; margin: 14px auto 0; font-weight: 300; }

.prose { max-width: 820px; margin: 0 auto; font-weight: 300; }
.prose p { color: var(--text); }
.prose img { border-radius: 14px; margin: 22px 0; }
.prose h2, .prose h3 { margin-top: 1.4em; color: #fff; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 13px; top: 4px; }

.about-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-split img { border-radius: 18px; border: 1px solid var(--line); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 40px; text-align: center; }
.stat-card .num { font-size: 50px; font-weight: 600; color: var(--gold); font-family: var(--serif); }
.stat-card .lbl { color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }

/* hizmet detay */
.svc-detail { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.svc-section { margin-bottom: 38px; }
.svc-section h2 { font-size: 30px; color: #fff; }
.icon-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0; padding: 0; list-style: none; }
.icon-list li { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.icon-list li strong { display: block; color: #fff; margin-bottom: 4px; font-family: var(--serif); font-size: 18px; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding: 4px 0 20px 60px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #1a120c; font-weight: 600; font-family: var(--serif); }
.svc-aside .box { background: var(--surface); border: 1px solid var(--line-2); border-radius: 18px; padding: 30px; position: sticky; top: 120px; }
.svc-aside h3, .svc-aside h4 { color: #fff; }

.ph { display: grid; place-items: center; color: var(--muted); font-size: 48px; background: var(--surface-2); }

/* ÖNCE/SONRA kart (uygulamalarimiz.php) */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .5s var(--ease), border-color .5s; }
.ba-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.ba-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-img:nth-child(1){ background: linear-gradient(135deg,#2b2226,#171013); }
.ba-img:nth-child(2){ background: radial-gradient(120% 120% at 30% 20%, rgba(216,176,106,.45), transparent 55%), linear-gradient(135deg,#3a2a30,#20141a); }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img .ph { width: 100%; height: 100%; font-size: 34px; }
.ba-badge { position: absolute; top: 12px; z-index: 2; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.ba-badge.before { left: 12px; background: rgba(0,0,0,.6); color: #e8dcd5; border: 1px solid var(--line); }
.ba-badge.after { right: 12px; background: linear-gradient(120deg,var(--gold-2),var(--gold)); color: #1a120c; }
.ba-body { padding: 24px 26px; }
.ba-body h3 { font-size: 22px; color: #fff; margin-bottom: 8px; }
.ba-body p { color: var(--text); margin: 0; font-size: 14.5px; font-weight: 300; }

/* ==================================================================
   FORMLAR
   ================================================================== */
.form-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: 18px; padding: 36px; }
.form-card label { display: block; font-family: var(--sans); font-weight: 500; margin: 18px 0 7px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form-card input, .form-card textarea {
    width: 100%; padding: 15px 16px; background: var(--bg-2); color: var(--ink);
    border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: var(--sans); font-weight: 300;
    transition: border-color .3s, box-shadow .3s;
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,176,106,.15); }
.form-card textarea { min-height: 140px; resize: vertical; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-list li:last-child { border-bottom: 0; }
.info-list li .ico { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 12px; background: radial-gradient(circle at 30% 30%, rgba(216,176,106,.22), rgba(183,110,121,.1)); border: 1px solid var(--line-2); color: var(--gold); font-size: 19px; }
.info-list li strong { display: block; color: #fff; font-family: var(--serif); font-size: 18px; }

.notice { padding: 15px 18px; border-radius: 12px; margin-bottom: 16px; font-size: 14px; }
.notice-success { background: rgba(216,176,106,.12); border: 1px solid var(--line-2); color: var(--gold-2); }
.notice-error { background: rgba(201,138,150,.12); border: 1px solid rgba(201,138,150,.4); color: #e9b9c1; }

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; gap: 48px; padding: 84px 26px 50px; }
.footer-logo span { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #fff; }
.footer-logo img { max-height: 52px; }
.footer-about p { color: var(--muted); font-size: 14.5px; margin: 18px 0; font-weight: 300; max-width: 320px; }
.footer-social a { display: inline-block; margin-right: 8px; color: #d9cdc6; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: 12px; letter-spacing: .08em; transition: all .3s; }
.footer-social a:hover { color: #1a120c; border-color: var(--gold); background: var(--gold); }
.footer-col h4 { color: #fff; font-family: var(--serif); font-size: 19px; margin-bottom: 18px; font-weight: 600; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--muted); font-size: 14.5px; transition: color .3s; font-weight: 300; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; display: flex; gap: 12px; font-weight: 300; }
.footer-contact .ico { color: var(--gold); }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted); font-size: 13px; letter-spacing: .04em; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-credit { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; opacity: .8; transition: opacity .25s, color .25s; }
.footer-credit:hover { opacity: 1; color: var(--gold); }
.footer-credit img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
html[data-theme="light"] .footer-credit img { filter: none; opacity: 1; }
@media (max-width: 620px) { .footer-bottom-inner { justify-content: center; text-align: center; } }

/* WhatsApp sabit buton */
.whatsapp-float { position: fixed; left: 24px; bottom: 24px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.5); transition: transform .3s var(--ease); font-size: 26px; }
.whatsapp-float span { display: none; }
.whatsapp-float::before { content: "💬"; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); }

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1040px) {
    .svc-grid, .feature-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .work-block, .work-block.reverse .work-media { grid-template-columns: 1fr; order: 0; }
    .about-split, .svc-detail { grid-template-columns: 1fr; }
    .icon-list { grid-template-columns: 1fr; }
    .svc-aside .box { position: static; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 760px) {
    .section { padding: 84px 0; }
    .nav-toggle-btn { display: block; }
    .site-nav { position: fixed; inset: 92px 0 auto 0; flex-direction: column; align-items: stretch;
        background: rgba(14,10,12,.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
        padding: 18px 26px 28px; gap: 2px; transform: translateY(-130%); transition: transform .4s var(--ease); max-height: calc(100vh - 92px); overflow-y: auto; }
    .nav-toggle:checked ~ .site-nav { transform: translateY(0); }
    .site-nav > a, .nav-item > a { padding: 14px 8px; font-size: 15px; }
    .site-nav > a::after, .nav-item > a::after { content: none; }
    .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 1px solid var(--line-2); border-radius: 0; margin: 0 0 8px 14px; padding: 0; }
    .nav-cta { margin: 12px 0 0; justify-content: center; }
    .badges-grid { grid-template-columns: 1fr 1fr; }
    .stats-band { grid-template-columns: 1fr; gap: 40px; }
    .stat2 + .stat2::before { content: none; }
    .hero-rings { display: none; }
}
@media (max-width: 480px) {
    .svc-grid, .feature-grid, .stats-grid, .gallery-grid, .badges-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
    .cta { padding: 56px 24px; }
}

/* ==================================================================
   AÇIK MOD (ivory couture) — html[data-theme="light"]
   ================================================================== */
html[data-theme="light"] {
    --bg:        #faf6f1;
    --bg-2:      #f3ebe3;
    --surface:   #ffffff;
    --surface-2: #f8f1ea;
    --ink:       #2e2228;
    --text:      #6f5d56;
    --muted:     #a08e85;
    --line:      rgba(46,34,40,.10);
    --line-2:    rgba(183,110,121,.28);
    --gold:      #b07a2e;   /* açık zeminde okunur altın */
    --gold-2:    #d8b06a;
    --rose:      #b76e79;
    --rose-deep: #a85a67;
    --plum:      #7a3a4e;
    --accent:    #b07a2e;
    --accent-sf: rgba(176,122,46,.10);
    --shadow:    0 18px 48px rgba(120,80,60,.12);
    --shadow-lg: 0 36px 84px rgba(120,80,60,.18);
}
html[data-theme="light"] body { background: var(--bg); color: var(--text); }
html[data-theme="light"] ::selection { background: rgba(183,110,121,.25); color: #2e2228; }

/* Nav / header */
html[data-theme="light"] .site-header.scrolled { background: rgba(250,246,241,.85); }
html[data-theme="light"] .logo-text { color: var(--ink); }
html[data-theme="light"] .site-nav > a, html[data-theme="light"] .nav-item > a { color: #5a4a44; }
html[data-theme="light"] .nav-toggle-btn { color: var(--ink); }
html[data-theme="light"] .nav-dropdown { background: rgba(255,255,255,.97); border-color: var(--line-2); }
html[data-theme="light"] .nav-dropdown a { color: var(--text); }
@media (max-width: 760px) { html[data-theme="light"] .site-nav { background: rgba(250,246,241,.98); } }

/* Hero */
html[data-theme="light"] .hero:not(.has-photo) h1 { color: var(--ink); }
html[data-theme="light"] .hero:not(.has-photo) .hero-text { color: var(--text); }
html[data-theme="light"] .hero:not(.has-photo)::after { background-image: linear-gradient(180deg, transparent 52%, var(--bg)); }
html[data-theme="light"] .hero:not(.has-photo) .hero-aura span { opacity: .42; }

/* Hizmet kartları — açık yüzey + yumuşak pastel sanat + koyu metin */
html[data-theme="light"] .svc-card { background: var(--surface); box-shadow: 0 14px 40px rgba(120,80,60,.08); }
html[data-theme="light"] .svc-card:not(.has-photo)::after { background: linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(255,255,255,.72)); }
html[data-theme="light"] .svc-card:not(.has-photo) h3 { color: var(--ink); }
html[data-theme="light"] .svc-card:not(.has-photo) p { color: var(--text); }
html[data-theme="light"] .svc-card .s-ico { filter: none; }
html[data-theme="light"] .svc-card.has-photo::after { background: linear-gradient(180deg, rgba(20,14,17,.1) 0%, rgba(20,14,17,.78) 100%); }
html[data-theme="light"] .svc-card:nth-child(6n+1){ --art: radial-gradient(120% 120% at 20% 10%, #f3dde2, #ffffff 60%); }
html[data-theme="light"] .svc-card:nth-child(6n+2){ --art: radial-gradient(120% 120% at 80% 10%, #f4e6cb, #ffffff 60%); }
html[data-theme="light"] .svc-card:nth-child(6n+3){ --art: radial-gradient(120% 120% at 30% 90%, #f0dbe2, #ffffff 60%); }
html[data-theme="light"] .svc-card:nth-child(6n+4){ --art: radial-gradient(120% 120% at 70% 20%, #f6e3e6, #ffffff 62%); }
html[data-theme="light"] .svc-card:nth-child(6n+5){ --art: radial-gradient(120% 120% at 25% 30%, #f4ebd6, #ffffff 60%); }
html[data-theme="light"] .svc-card:nth-child(6n+6){ --art: radial-gradient(120% 120% at 75% 80%, #f1dde4, #ffffff 60%); }

/* Önce / sonra slider — açık tonlar */
html[data-theme="light"] .ba-before { background: linear-gradient(135deg, #ddd3cb, #c8bab0); }
html[data-theme="light"] .ba-after { background:
    radial-gradient(120% 120% at 30% 20%, rgba(216,176,106,.6), transparent 55%),
    radial-gradient(120% 120% at 80% 90%, rgba(201,138,150,.55), transparent 55%),
    linear-gradient(135deg, #f6eae1, #ecd9cf); }

/* Galeri — dusty pastel kareler */
html[data-theme="light"] .gallery-item:nth-child(5n+1) .art{ background: radial-gradient(120% 120% at 20% 20%, #e7c6cd, #f3ebe3 66%); }
html[data-theme="light"] .gallery-item:nth-child(5n+2) .art{ background: radial-gradient(120% 120% at 80% 10%, #ecd6ad, #f3ebe3 66%); }
html[data-theme="light"] .gallery-item:nth-child(5n+3) .art{ background: radial-gradient(120% 120% at 30% 90%, #e3c2cf, #f3ebe3 66%); }
html[data-theme="light"] .gallery-item:nth-child(5n+4) .art{ background: radial-gradient(120% 120% at 70% 30%, #ecccd2, #f3ebe3 66%); }
html[data-theme="light"] .gallery-item:nth-child(5n+5) .art{ background: radial-gradient(120% 120% at 50% 50%, #ecdcb2, #f3ebe3 66%); }
html[data-theme="light"] .gallery-item .caption { background: linear-gradient(transparent, rgba(46,34,40,.6)); }

/* Koyu zemine göre #fff verilmiş başlıkları açık modda koyuya çevir */
html[data-theme="light"] .cta h2,
html[data-theme="light"] .work-text h3,
html[data-theme="light"] .page-hero h1,
html[data-theme="light"] .prose h2, html[data-theme="light"] .prose h3,
html[data-theme="light"] .svc-section h2,
html[data-theme="light"] .icon-list li strong,
html[data-theme="light"] .svc-aside h3, html[data-theme="light"] .svc-aside h4,
html[data-theme="light"] .ba-body h3,
html[data-theme="light"] .info-list li strong,
html[data-theme="light"] .footer-logo span,
html[data-theme="light"] .footer-col h4 { color: var(--ink); }
html[data-theme="light"] .cta p, html[data-theme="light"] .page-hero p { color: var(--text); }
html[data-theme="light"] .cta { background:
    radial-gradient(700px 320px at 50% 0%, rgba(216,176,106,.18), transparent 60%),
    radial-gradient(700px 320px at 50% 100%, rgba(183,110,121,.16), transparent 60%), var(--surface); }
html[data-theme="light"] .footer-social a { color: var(--text); border-color: var(--line); }

/* Uygulama (önce/sonra kart) açık tonlar */
html[data-theme="light"] .ba-img:nth-child(1){ background: linear-gradient(135deg,#ddd3cb,#c8bab0); }
html[data-theme="light"] .ba-img:nth-child(2){ background: radial-gradient(120% 120% at 30% 20%, rgba(216,176,106,.5), transparent 55%), linear-gradient(135deg,#f6eae1,#ecd9cf); }

/* İmleç ışıltısı — açık zeminde çarpan (multiply) */
html[data-theme="light"] .cursor-glow { mix-blend-mode: multiply;
    background: radial-gradient(circle, rgba(183,110,121,.10), rgba(216,176,106,.06) 40%, transparent 70%); }

/* ---- Tema değiştirici buton ---- */
.theme-toggle { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid var(--line-2); background: var(--surface); color: var(--gold); display: grid; place-items: center; cursor: pointer;
    box-shadow: var(--shadow); transition: transform .35s var(--ease), color .3s, border-color .3s; }
.theme-toggle:hover { transform: translateY(-3px) rotate(18deg); border-color: var(--gold); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
html[data-theme="light"] .theme-toggle .sun { display: none; }
html[data-theme="light"] .theme-toggle .moon { display: block; }
