/* ==========================================================================
   M KAYDOS OKEY SALONU — Orman içinde nezih bir oyun dünyası
   Kendine has tasarım: orman-lüks paleti + imza "okey taşı" motifi
   ========================================================================== */

:root {
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Orman + ahşap + bakır koyu palet */
    --void: #0a0f0b;
    --deep: #0e150f;
    --card: #141c16;
    --card-2: #18211a;
    --line: rgba(212, 178, 120, 0.14);

    /* Sıcak vurgular */
    --amber: #d8ad62;
    --amber-light: #ecc985;
    --amber-deep: #b3853f;
    --copper: #c47a45;

    /* Orman yeşilleri */
    --moss: #5c8a63;
    --pine: #2f5d42;
    --pine-deep: #1c3a29;

    /* Hanımlar salonu yumuşak gül-altın */
    --rose: #d9a6a0;
    --rose-soft: #e8c9c4;

    /* Metin */
    --txt: #f1ece1;
    --txt-soft: rgba(241, 236, 225, 0.72);
    --txt-mut: rgba(241, 236, 225, 0.42);

    --radius: 18px;
    --tr: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --tr-spring: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--txt);
    line-height: 1.7;
    overflow-x: hidden;
    /* hafif dokulu orman zemini */
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(47, 93, 66, 0.18), transparent 60%),
        radial-gradient(circle at 85% 8%, rgba(216, 173, 98, 0.06), transparent 40%);
    background-attachment: fixed;
}

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

/* ============ ORTAK BAŞLIK ÖĞELERİ ============ */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.1rem;
}

.sec-label i {
    color: var(--moss);
}

.sec-label.center {
    justify-content: center;
}

.sec-label.light {
    color: var(--amber-light);
}

.sec-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 4.5vw, 3.3rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--txt);
}

.sec-title.center {
    text-align: center;
}

.sec-title .hl {
    font-style: italic;
    color: var(--amber);
    position: relative;
}

.sec-lead {
    max-width: 640px;
    margin: 1.3rem auto 0;
    text-align: center;
    color: var(--txt-soft);
    font-weight: 300;
}

/* ============ İMZA: OKEY TAŞI ============ */
.okey-tile {
    --tile-bg: #f4ecd8;
    width: 46px;
    height: 62px;
    border-radius: 8px;
    background: linear-gradient(150deg, #fbf5e6 0%, var(--tile-bg) 55%, #e3d6ba 100%);
    color: #1c2230;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.9),
        inset 0 -5px 8px rgba(140, 120, 80, 0.35),
        0 10px 22px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(120, 100, 60, 0.25);
}

/* alt göbek deliği (gerçek okey taşı gibi) */
.okey-tile::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #d8c7a0, #b09a6a);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.okey-tile.c-red { color: #b3242b; }
.okey-tile.c-black { color: #1c2230; }
.okey-tile.c-blue { color: #1d5a8a; }
.okey-tile.c-amber { color: var(--amber-deep); }

.okey-tile.mini {
    width: 30px;
    height: 40px;
    font-size: 1rem;
    border-radius: 6px;
}

.okey-tile.mini::after {
    width: 6px;
    height: 6px;
    bottom: 5px;
}

/* ============ BUTONLAR ============ */
.btn-amber,
.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--tr);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
    color: #1a130a;
    box-shadow: 0 10px 30px rgba(216, 173, 98, 0.3);
}

.btn-amber:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(216, 173, 98, 0.45);
}

.btn-line {
    background: rgba(255, 255, 255, 0.04);
    color: var(--txt);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.btn-line:hover {
    border-color: var(--amber);
    color: var(--amber-light);
    transform: translateY(-3px);
}

/* ============ SCROLL İLERLEME ŞERİDİ ============ */
.leaf-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 100000;
    background: linear-gradient(90deg, var(--pine), var(--moss), var(--amber));
    box-shadow: 0 0 10px rgba(216, 173, 98, 0.5);
    transition: width 0.1s linear;
}

/* ============ NAV ============ */
.ok-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem clamp(1.2rem, 5vw, 3.5rem);
    transition: var(--tr);
}

.ok-nav.scrolled {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    background: rgba(10, 15, 11, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.ok-back {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--txt);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem 0.5rem 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--line);
    background: rgba(10, 15, 11, 0.4);
    backdrop-filter: blur(8px);
    transition: var(--tr);
}

.ok-back:hover {
    border-color: var(--amber);
    color: var(--amber-light);
    transform: translateX(-3px);
}

.ok-brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--txt);
    text-decoration: none;
}

.ok-brand em {
    font-style: italic;
    color: var(--amber);
}

/* ============ HERO ============ */
.ok-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 clamp(1.2rem, 5vw, 3.5rem) clamp(3rem, 8vh, 6rem);
}

.ok-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ok-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    will-change: transform;
}

.ok-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, var(--void) 4%, rgba(10, 15, 11, 0.4) 45%, rgba(10, 15, 11, 0.55) 100%),
        linear-gradient(105deg, rgba(10, 15, 11, 0.85) 0%, transparent 60%);
}

/* üstten yaprak/orman gölge dokusu */
.ok-hero-canopy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(28, 58, 41, 0.55), transparent 70%);
}

.floating-tiles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.okey-tile.float {
    position: absolute;
    top: -90px;
    opacity: 0;
    animation-name: tileFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(var(--rot));
}

@keyframes tileFall {
    0% { transform: translateY(-90px) rotate(var(--rot)); opacity: 0; }
    8% { opacity: 0.85; }
    92% { opacity: 0.85; }
    100% { transform: translateY(112vh) rotate(calc(var(--rot) * -1.4)); opacity: 0; }
}

.ok-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.ok-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: rgba(10, 15, 11, 0.45);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1.6rem;
}

.ok-eyebrow .eb-tile {
    color: var(--amber);
}

.ok-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3.2rem, 11vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.ok-hero-title .script {
    display: block;
    font-style: italic;
    font-weight: 500;
    color: var(--amber);
}

.ok-hero-sub {
    margin: 1.6rem 0 2.3rem;
    max-width: 560px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: var(--txt-soft);
}

.ok-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ok-hero-side {
    position: absolute;
    right: clamp(1rem, 4vw, 2.5rem);
    top: 50%;
    z-index: 3;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    color: var(--txt-mut);
    font-weight: 500;
}

.ok-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--txt-mut);
}

.ok-scroll span {
    width: 1px;
    height: 38px;
    background: linear-gradient(var(--amber), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
    50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ============ INTRO ============ */
.ok-intro {
    padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 5vw, 3.5rem);
    max-width: 1240px;
    margin: 0 auto;
}

.ok-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.ok-intro-text p {
    color: var(--txt-soft);
    margin-top: 1.1rem;
    font-weight: 300;
}

.ok-intro-text strong {
    color: var(--amber-light);
    font-weight: 600;
}

.ok-intro-marks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2rem;
}

.ok-intro-marks .mark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--txt-soft);
}

.ok-intro-marks .mark i {
    color: var(--moss);
    font-size: 1.05rem;
}

.ok-intro-visual {
    position: relative;
}

.ok-photo-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.ok-photo-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 90px rgba(10, 15, 11, 0.5);
    border-radius: var(--radius);
}

.ok-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3.4;
    transition: var(--tr-spring);
}

.ok-photo-frame:hover img {
    transform: scale(1.05);
}

.tile-stack {
    position: absolute;
    left: -28px;
    bottom: -28px;
    display: flex;
    gap: 6px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(20, 28, 22, 0.85);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tile-stack .okey-tile:nth-child(odd) { transform: rotate(-5deg); }
.tile-stack .okey-tile:nth-child(even) { transform: rotate(4deg); }

/* ============ ÇAM AYRACI ============ */
.pine-divider {
    line-height: 0;
    color: var(--pine-deep);
}

.pine-divider svg {
    width: 100%;
    height: 56px;
    display: block;
    fill: currentColor;
    opacity: 0.6;
}

/* ============ İKİ SALON ============ */
.salons {
    padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 5vw, 3.5rem) clamp(4rem, 9vh, 6rem);
    max-width: 1340px;
    margin: 0 auto;
}

.salons-head {
    margin-bottom: 3rem;
}

.salon-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.salon-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
    transition: var(--tr-spring);
}

.salon-card:hover {
    transform: translateY(-8px);
}

.salon-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: var(--tr-spring);
}

.salon-card:hover .salon-bg {
    transform: scale(1.14);
}

.salon-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 12, 9, 0.96) 8%, rgba(8, 12, 9, 0.75) 40%, rgba(8, 12, 9, 0.25) 100%);
}

.salon-card.women .salon-veil {
    background: linear-gradient(to top, rgba(20, 12, 14, 0.96) 8%, rgba(28, 16, 20, 0.7) 42%, rgba(40, 22, 28, 0.2) 100%);
}

.salon-body {
    position: relative;
    z-index: 2;
    padding: clamp(1.8rem, 3vw, 2.6rem);
}

.salon-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    background: rgba(216, 173, 98, 0.14);
    border: 1px solid rgba(216, 173, 98, 0.3);
    color: var(--amber-light);
}

.salon-card.women .salon-icon {
    background: rgba(217, 166, 160, 0.16);
    border-color: rgba(217, 166, 160, 0.4);
    color: var(--rose-soft);
}

.salon-kicker {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.salon-card.women .salon-kicker {
    color: var(--rose);
}

.salon-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.salon-desc {
    color: var(--txt-soft);
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.salon-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.salon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--txt-soft);
    margin-bottom: 0.55rem;
}

.salon-list li i {
    color: var(--moss);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.salon-card.women .salon-list li i {
    color: var(--rose);
}

/* salon içi kural rozeti */
.salon-rule {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: rgba(217, 166, 160, 0.1);
    border: 1px solid rgba(217, 166, 160, 0.35);
    font-size: 0.88rem;
    color: var(--rose-soft);
}

.salon-rule i {
    font-size: 1.2rem;
    color: var(--rose);
    flex-shrink: 0;
}

.salon-rule strong {
    color: #fff;
    font-weight: 600;
}

.salon-rule.alt {
    background: rgba(92, 138, 99, 0.12);
    border-color: rgba(92, 138, 99, 0.35);
    color: rgba(220, 235, 222, 0.85);
}

.salon-rule.alt i {
    color: var(--moss);
}

/* orta ayraç */
.salon-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1.6rem;
    gap: 1rem;
}

.salon-mid-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(var(--line), var(--amber), var(--line));
    opacity: 0.6;
}

.salon-mid-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--amber-light);
    border: 1px solid var(--amber);
    background: var(--deep);
    box-shadow: 0 0 0 6px rgba(216, 173, 98, 0.06), 0 0 30px rgba(216, 173, 98, 0.25);
    flex-shrink: 0;
}

/* ============ POLICY SEAL ============ */
.policy {
    padding: clamp(2rem, 5vh, 4rem) clamp(1.2rem, 5vw, 3.5rem) clamp(4rem, 9vh, 6rem);
    display: flex;
    justify-content: center;
}

.policy-card {
    position: relative;
    max-width: 820px;
    text-align: center;
    padding: clamp(2.4rem, 5vw, 3.6rem);
    border-radius: 24px;
    background:
        radial-gradient(ellipse 80% 120% at 50% 0%, rgba(217, 166, 160, 0.08), transparent 60%),
        linear-gradient(160deg, var(--card-2), var(--card));
    border: 1px solid rgba(217, 166, 160, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.policy-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid var(--rose);
    opacity: 0.7;
}

.policy-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.policy-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.policy-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.policy-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

.policy-seal {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--rose-soft);
    background: radial-gradient(circle at 35% 30%, rgba(217, 166, 160, 0.3), rgba(217, 166, 160, 0.08));
    border: 1px solid rgba(217, 166, 160, 0.45);
    box-shadow: 0 0 30px rgba(217, 166, 160, 0.25);
}

.policy-kicker {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.policy-text {
    color: var(--txt-soft);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}

.policy-text strong {
    color: #fff;
    font-weight: 600;
}

.policy-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
    color: var(--txt-mut);
    font-style: italic;
    font-family: var(--font-display);
}

/* ============ AMBIENCE ============ */
.ambience {
    padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 5vw, 3.5rem);
    max-width: 1240px;
    margin: 0 auto;
}

.ambience-head {
    text-align: center;
    margin-bottom: 3rem;
}

.amb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.amb-card {
    padding: 2rem 1.8rem;
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--card-2), var(--card));
    border: 1px solid var(--line);
    transition: var(--tr-spring);
    position: relative;
    overflow: hidden;
}

.amb-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pine), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--tr-spring);
}

.amb-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 173, 98, 0.35);
}

.amb-card:hover::before {
    transform: scaleX(1);
}

.amb-ic {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    background: rgba(216, 173, 98, 0.1);
    border: 1px solid rgba(216, 173, 98, 0.25);
    color: var(--amber-light);
}

.amb-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.amb-card p {
    color: var(--txt-soft);
    font-size: 0.92rem;
    font-weight: 300;
}

/* ============ ORMAN PARALLAX BANDI ============ */
.forest-band {
    position: relative;
    padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 5vw, 3.5rem);
    overflow: hidden;
}

.forest-bg {
    position: absolute;
    inset: 0;
    background: url('images/bungalov.png') center / cover fixed no-repeat;
    transform: scale(1.05);
}

.forest-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--void), rgba(10, 15, 11, 0.55) 35%, rgba(10, 15, 11, 0.7) 65%, var(--void)),
        radial-gradient(ellipse 60% 60% at 50% 50%, transparent, rgba(28, 58, 41, 0.35));
}

.forest-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.forest-content p {
    color: var(--txt-soft);
    margin-top: 1.2rem;
    font-weight: 300;
}

.forest-stats {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 4.5rem);
    margin-top: 3rem;
}

.f-stat .num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}

.f-stat span {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--txt-soft);
}

/* ============ İKRAM MENÜSÜ ============ */
.treat {
    padding: clamp(4rem, 9vh, 6rem) clamp(1.2rem, 5vw, 3.5rem);
    max-width: 900px;
    margin: 0 auto;
}

.treat-head {
    text-align: center;
    margin-bottom: 2.4rem;
}

.treat-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.t-tab {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--txt-soft);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--tr);
}

.t-tab:hover {
    color: var(--amber-light);
    border-color: rgba(216, 173, 98, 0.4);
}

.t-tab.active {
    background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
    color: #1a130a;
    border-color: transparent;
}

.treat-panel {
    display: none;
    animation: fadeUp 0.5s ease;
}

.treat-panel.active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.treat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 1.4rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--card-2), var(--card));
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2.6rem;
    transition: var(--tr);
}

.treat-item::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--amber);
    box-shadow: 0 0 10px rgba(216, 173, 98, 0.6);
}

.treat-item:hover {
    border-color: rgba(216, 173, 98, 0.35);
    transform: translateX(5px);
}

.ti-name {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--txt);
}

.ti-desc {
    font-size: 0.88rem;
    color: var(--txt-soft);
    font-weight: 300;
}

/* ============ GALERİ ============ */
.ok-gallery {
    padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 5vw, 3.5rem);
    max-width: 1240px;
    margin: 0 auto;
}

.gallery-head {
    text-align: center;
    margin-bottom: 2.4rem;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.g-item.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tr-spring);
}

.g-item:hover img {
    transform: scale(1.08);
}

.g-item figcaption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    background: linear-gradient(to top, rgba(8, 12, 9, 0.85), rgba(8, 12, 9, 0.2));
    opacity: 0;
    transition: var(--tr);
}

.g-item figcaption i {
    font-size: 1.4rem;
    color: var(--amber-light);
}

.g-item:hover figcaption {
    opacity: 1;
}

/* ============ YORUMLAR ============ */
.ok-reviews {
    padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 5vw, 3.5rem);
    max-width: 1240px;
    margin: 0 auto;
}

.reviews-head {
    text-align: center;
    margin-bottom: 2.8rem;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.rev-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--card-2), var(--card));
    border: 1px solid var(--line);
    transition: var(--tr-spring);
}

.rev-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 173, 98, 0.3);
}

.rev-stars {
    color: var(--amber);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.rev-card p {
    color: var(--txt-soft);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.4rem;
}

.rev-by {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.rev-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a130a;
    background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
}

.rev-by strong {
    display: block;
    font-size: 0.95rem;
}

.rev-by span {
    font-size: 0.8rem;
    color: var(--amber);
}

/* ============ CTA ============ */
.ok-cta {
    position: relative;
    padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 5vw, 3.5rem);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.ok-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(216, 173, 98, 0.14), transparent 65%);
    pointer-events: none;
}

.ok-cta-box {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    padding: clamp(2.5rem, 5vw, 3.8rem);
    border-radius: 24px;
    background: linear-gradient(160deg, var(--card-2), var(--card));
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.ok-cta-box p {
    color: var(--txt-soft);
    font-weight: 300;
    margin: 1rem auto 2rem;
    max-width: 520px;
}

.ok-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.ok-cta-info {
    display: flex;
    justify-content: center;
    gap: clamp(1.2rem, 4vw, 2.6rem);
    flex-wrap: wrap;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}

.ok-cta-info .ci {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--txt-soft);
}

.ok-cta-info .ci i {
    color: var(--amber);
}

/* ============ FOOTER ============ */
.ok-footer {
    background: var(--deep);
    border-top: 1px solid var(--line);
    padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 5vw, 3.5rem) 2rem;
}

.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--txt);
    text-decoration: none;
}

.footer-logo em {
    font-style: italic;
    color: var(--amber);
}

.footer-desc {
    margin-top: 1rem;
    color: var(--txt-soft);
    font-weight: 300;
    font-size: 0.92rem;
    max-width: 360px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    color: var(--txt);
}

.footer-links,
.footer-contact-list {
    list-style: none;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--txt-soft);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--tr);
}

.footer-links a:hover {
    color: var(--amber-light);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--txt-soft);
    font-size: 0.92rem;
}

.footer-contact-list i {
    color: var(--amber);
    margin-top: 0.25rem;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--txt-mut);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 0.7rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-soft);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: var(--tr);
}

.social-icons a:hover {
    color: var(--amber-light);
    border-color: var(--amber);
    transform: translateY(-3px);
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .ok-intro-grid {
        grid-template-columns: 1fr;
    }

    .tile-stack {
        left: 50%;
        transform: translateX(-50%);
    }

    .salon-split {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .salon-mid {
        flex-direction: row;
        padding: 0.4rem 0;
    }

    .salon-mid-line {
        width: auto;
        height: 1px;
        flex: 1;
        background: linear-gradient(90deg, var(--line), var(--amber), var(--line));
    }

    .amb-grid,
    .reviews-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ok-brand {
        font-size: 1.1rem;
    }

    .ok-hero-side {
        display: none;
    }

    .amb-grid,
    .reviews-row {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-item.wide {
        grid-column: span 2;
    }

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

    .forest-bg {
        background-attachment: scroll;
    }
}

/* Hareket azaltma */
@media (prefers-reduced-motion: reduce) {
    .okey-tile.float {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    * {
        scroll-behavior: auto;
    }
}
