/* ====== BASE ====== */
:root {
    --bg: #374151;
    --bg: #2c3442;
    --text: #e7ebf5;
    --muted: #9aa3b8;
    --brand: #c7a667;
    --brand-2: #a98b54;
    --accent: #7cc5ff;
    --line: #1e2533;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter,system-ui,-apple-system,Arial;
    /* SAFETY NET against sideways scroll */
    overflow-x: hidden;
}

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

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

/* ====== LAYOUT ====== */
.container {
    width: min(1200px,92vw);
    margin: 0 auto;
}

.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

/* ====== HEADER ====== */
.header {
    position: fixed; /* was: sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 120; /* above content */
    backdrop-filter: blur(10px);
    background: rgba(15,17,21,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    /* keep your vertical padding but protect for iOS notch */
    padding: calc(6px + env(safe-area-inset-top,0px)) 0 6px;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .3px;
}

    .logo img {
        width: 40px;
        height: 40px;
    }

.menu {
    display: flex;
    gap: 18px;
}

    .menu a {
        opacity: .9;
    }

        .menu a:hover {
            opacity: 1;
        }

        .menu a.active {
            color: var(--brand-2);
        }

.burger {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    border: 1px solid #2b2f3c;
    background: #1a1f2b;
    color: #e8ecf8;
}

/* Mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.mobile-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #0f1219;
    padding: 24px;
    border-left: 1px solid #222838;
    box-shadow: var(--shadow);
}

.mobile-links {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

/* ====== UI PRIMS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    color: #141414;
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-ghost {
    background: transparent;
    border: 1px solid #2a2f3f;
}

.btn-dark {
    background: #0f1219;
    border: 1px solid #2a2f3f;
    color: #e9eefc;
}

.card {
    background: var(--card);
    border: 1px solid #222838;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.grid {
    display: grid;
    gap: 18px;
    min-width: 0;
}
/* min-width:0 helps children not overflow */
.grid-3 {
    grid-template-columns: repeat(3,1fr);
}

/* ====== HERO (HOME) ====== */
.hero {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 24px 0 10px;
}

    .hero h1 {
        font-size: clamp(28px,3.4vw,56px);
        line-height: 1.1;
        margin: 0 0 10px;
    }

    .hero p {
        color: var(--muted);
        max-width: 60ch;
    }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 26px;
}

.badge {
    padding: 8px 12px;
    border: 1px solid #2a2f3f;
    border-radius: 999px;
    font-size: 14px;
    color: #d7dcee;
}

.hero-card {
    background: radial-gradient(1200px 400px at 70% -10%,rgba(199,166,103,.12),transparent 50%), var(--card);
    border: 1px solid #222838;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* ====== MEN HERO ====== */
.hero-men {
    position: relative;
    min-height: 380px;
    display: grid;
    align-items: center;
}

    .hero-men .bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(800px 300px at 0% 0%,rgba(199,166,103,.12),transparent 50%), url('https://images.unsplash.com/photo-1517832606299-7ae9b720a186?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    }

    .hero-men .inner {
        position: relative;
        z-index: 1;
        padding: 56px 0;
    }

    .hero-men h1 {
        font-size: clamp(28px,3.4vw,50px);
        line-height: 1.1;
        margin: 0 0 10px;
    }

/* ====== PROMO RIBBON ====== */
.promo-ribbon {
    margin-top: 12px;
    background: linear-gradient(135deg,rgba(199,166,103,.25),rgba(228,210,162,.12));
    border: 1px solid #2a2f3f;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

/* ====== FEATURE CHIPS ====== */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #2a2f3f;
    background: linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    backdrop-filter: blur(6px);
    color: #e8ecf8;
}

/* ====== STAT BAR ====== */
.statbar {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin: 14px 0;
}

    .statbar .item {
        background: var(--card);
        border: 1px solid #222838;
        border-radius: 14px;
        padding: 12px;
        text-align: center;
        min-width: 0;
    }

    .statbar .num {
        font-size: 22px;
        font-weight: 800;
    }

    .statbar .label {
        color: var(--muted);
        font-size: 13px;
    }

/* ====== MEDIA BLOCK ====== */
.media {
    position: relative;
    border-radius: 14px;
    border: 1px solid #222838;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

    .media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ====== FEATURE MATRIX ====== */
.matrix {
    overflow: hidden;
}

    .matrix .matrix-head, .matrix .mrow {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }

    .matrix .matrix-head {
        background: linear-gradient(135deg,rgba(199,166,103,.18),rgba(228,210,162,.08));
        border-bottom: 1px solid #2a2f3f;
    }

    .matrix .mcell {
        padding: 12px;
        border-bottom: 1px solid #1f2330;
    }

    .matrix .mrow:nth-child(even) {
        background: rgba(255,255,255,.02);
    }

    .matrix .strong {
        font-weight: 800;
    }

/* ====== TABS ====== */
.tabs {
    margin-top: 16px;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #2a2f3f;
    background: #0f1219;
    cursor: pointer;
}

    .tab-btn.active {
        background: linear-gradient(135deg,var(--brand),var(--brand-2));
        color: #141414;
    }

.tab-content {
    display: none;
}

    .tab-content.show {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 18px;
        align-items: center;
    }

/* ====== SPLIT ====== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center;
}

/* ====== STICKY CTA ====== */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -120px;
    background: rgba(15,17,21,.95);
    border-top: 1px solid #222838;
    box-shadow: 0 -10px 30px rgba(0,0,0,.35);
    transition: bottom .35s;
}

    .sticky-cta .srow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
    }

    .sticky-cta.show {
        bottom: 0;
    }

/* ====== FLOATING CONTACT ====== */
.fab-wrap {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 10px;
    z-index: 60;
}

.fab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    color: #141414;
    box-shadow: var(--shadow);
    font-weight: 700;
    border: 1px solid #222838;
}

    .fab.secondary {
        background: #0f1219;
        color: #e9eefc;
        border: 1px solid #2a2f3f;
    }

    .fab svg {
        width: 18px;
        height: 18px;
    }

/* ====== FOOTER ====== */
.footer {
    border-top: 1px solid #222838;
    background: #0e1016;
}

    .footer .cols {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 24px;
    }

    .footer a {
        color: #cbd3e7;
        opacity: .9;
    }

        .footer a:hover {
            opacity: 1;
        }

.subfoot {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #2a2f3f;
    color: #9fa7bd;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

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

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

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

    .tabs .tab-content.show {
        grid-template-columns: 1fr;
    }

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

    .burger {
        display: grid;
    }

    .menu {
        display: none;
    }
}

/* ====== CTA variant ====== */
.cta {
    background: radial-gradient(800px 300px at 0% 0%,rgba(39,209,127,.12),transparent 50%), var(--card);
    border: 1px solid #222838;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
}

.cta-slim {
    grid-template-columns: 1fr .9fr;
    padding: 22px;
}

/* chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.chip {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #2a2f3f;
    background: linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    backdrop-filter: blur(6px);
}

/* service cards */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin: 16px 0 6px;
}

.svc-card {
    background: var(--card);
    border: 1px solid #222838;
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 10px;
}

    .svc-card .muted {
        color: var(--muted);
    }

    .svc-card .price {
        font-weight: 800;
        font-size: 18px;
    }

@media (max-width:980px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

/* matrix okunurluk */
.matrix .matrix-head {
    background: linear-gradient(135deg,rgba(199,166,103,.18),rgba(228,210,162,.08));
    border-bottom: 1px solid #2a2f3f;
}

.matrix .mrow:nth-child(even) {
    background: rgba(255,255,255,.02);
}

/* === VOOR & NA === */
.ba-hero .muted {
    color: var(--muted);
}

.ba-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #2a2f3f;
    background: #0f1219;
    cursor: pointer;
}

    .pill.active {
        background: linear-gradient(135deg,var(--brand),var(--brand-2));
        color: #141414;
    }

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

@media(max-width:1100px) {
    .ba-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:680px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}

.ba-card {
    display: grid;
    gap: 12px;
    background: var(--card);
    border: 1px solid #222838;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px;
}

.ba-info .muted {
    color: var(--muted);
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #2a2f3f;
    background: #0f1219;
}

.ba-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.ba-media {
    --pos: 50;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid #222838;
}

    .ba-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ba-media .ba-after {
        clip-path: inset(0 0 0 calc(var(--pos)*1%));
    }

    .ba-media .ba-slider {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: ew-resize;
    }

.ba-handle {
    position: absolute;
    top: 50%;
    left: calc(var(--pos)*1%);
    transform: translate(-50%,-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    box-shadow: 0 0 0 3px rgba(0,0,0,.35);
}

.ba-labels {
    position: absolute;
    inset: 10px 10px auto 10px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

.ba-media.big {
    aspect-ratio: 16/9;
    max-width: min(1100px,92vw);
    margin: 0 auto;
}

.ba-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 70;
}

    .ba-modal.show {
        display: flex;
    }

.ba-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(2px);
}

.ba-modal-content {
    position: relative;
    z-index: 1;
    background: #0f1219;
    border: 1px solid #222838;
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.ba-close {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #2a2f3f;
    background: #141827;
    color: #e9eefc;
    cursor: pointer;
}

/* ==== VOOR & NA (compact) ==== */
.vn-muted {
    color: var(--muted);
}

.vn-hero h1 {
    margin: 0 0 8px;
}

.vn-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
}

.vn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 16px;
}

.vn-card {
    display: grid;
    gap: 10px;
    background: var(--card);
    border: 1px solid #222838;
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow);
}

.vn-info h3 {
    margin: 0 0 4px;
}

.vn-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.vn-media {
    --pos: 50;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid #222838;
}

    .vn-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vn-media .vn-after {
        clip-path: inset(0 0 0 calc(var(--pos)*1%));
    }

    .vn-media .vn-slider {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: ew-resize;
    }

.vn-handle {
    position: absolute;
    top: 50%;
    left: calc(var(--pos)*1%);
    transform: translate(-50%,-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    box-shadow: 0 0 0 3px rgba(0,0,0,.35);
}

.vn-labels {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 8px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    pointer-events: none;
}

.vn-media.big {
    aspect-ratio: 16/9;
    max-width: min(1100px,92vw);
    margin: 0 auto;
}

.vn-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 70;
}

    .vn-modal.show {
        display: flex;
    }

.vn-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(2px);
}

.vn-dialog {
    position: relative;
    z-index: 1;
}

.vn-close {
    position: absolute;
    right: 0;
    top: -44px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #2a2f3f;
    background: #141827;
    color: #e9eefc;
    cursor: pointer;
}

.vn-mock {
    background: #0f1219;
    border: 1px solid #222838;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
}

.vn-mock-top {
    display: flex;
    gap: 6px;
    padding: 6px 10px;
}

    .vn-mock-top i {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

        .vn-mock-top i:nth-child(1) {
            background: #ff5f57;
        }

        .vn-mock-top i:nth-child(2) {
            background: #febc2e;
        }

        .vn-mock-top i:nth-child(3) {
            background: #28c940;
        }

@media (max-width:980px) {
    .vn-media.big {
        max-width: 95vw;
    }
}

.stepper {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 12px;
}

    .stepper li {
        display: grid;
        grid-template-columns: 32px 1fr;
        gap: 12px;
        align-items: start;
    }

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    background: var(--surface-2,#111);
    color: #fff;
}

.metrics {
    list-style: none;
    padding: 0;
    margin: 8px 0 10px;
    display: grid;
    gap: 12px;
}

.metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .7;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 10px;
}

    .mini-grid img {
        width: 100%;
        height: 92px;
        object-fit: cover;
        border-radius: 12px;
    }

.muted {
    color: var(--muted);
}

.list-plain {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface,rgba(0,0,0,.06));
    font-size: 12px;
}

.team-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    background: var(--surface,rgba(0,0,0,.08));
}

.hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

@media (max-width:900px) {
    .team-mini {
        align-items: flex-start;
    }
}

/* --- Over ons split (critical fixes) --- */
.about-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: start;
}

    .about-split > * {
        min-width: 0;
    }
/* prevent grid children from pushing width */
.about-copy, .about-media {
    min-width: 0;
}

.stack-vert {
    display: grid;
    gap: 12px;
}

.about-split .media {
    border-radius: 14px;
    border: 1px solid #222838;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-clip {
    aspect-ratio: 3/2;
    max-height: 360px;
}

    .media-clip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.float-card {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    border: 1px solid #2a2f3f;
    font-size: 13px;
}

/* Mobile stack (force, with safety) */
@media (max-width:980px) {
    .about-split {
        grid-template-columns: 1fr !important;
    }

    .media-clip {
        max-height: 300px;
    }
}

/* Desktop equal columns (only desktop) */
@media (min-width:981px) {
    .about-split {
        grid-template-columns: 1fr 1fr;
    }
}

/* Barber focus blok */
.barber-wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: center;
    background: var(--card);
    border: 1px solid #222838;
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.svc-compact .svc-card {
    padding: 16px;
}

.mosaic-2 {
    display: grid;
    grid-template-areas: 'big big' 's1 s2';
    gap: 10px;
}

.tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #222838;
}

    .tile.big {
        grid-area: big;
        aspect-ratio: 16/9;
    }

    .tile:nth-child(2) {
        grid-area: s1;
        aspect-ratio: 1/1;
    }

    .tile:nth-child(3) {
        grid-area: s2;
        aspect-ratio: 1/1;
    }

    .tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width:980px) {
    .barber-wrap {
        grid-template-columns: 1fr;
    }

    .tile.big {
        aspect-ratio: 4/3;
    }
}

/* Mini-gidsen */
.guide-grid .guide-card {
    display: grid;
    gap: 10px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    display: grid;
    gap: 6px;
}

    .step-list li {
        position: relative;
        padding-left: 16px;
    }

        .step-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            opacity: .6;
        }

.tip {
    margin-top: 6px;
    font-size: 13px;
    opacity: .9;
    border: 1px dashed #2a2f3f;
    border-radius: 12px;
}

@media (max-width:980px) {
    .guide-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===================== OVERRIDES ===================== */
.tab-buttons {
    gap: 10px;
    flex-wrap: wrap;
}

.pill, .tab-btn {
    padding: 10px 14px;
    border-radius: 999px;
    background: #1e2735;
    border: 1px solid #3b465b;
    color: var(--text) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

    .pill:hover, .tab-btn:hover {
        background: #243048;
        border-color: #4a5670;
    }

    .pill.active, .tab-btn.active {
        background: linear-gradient(135deg,var(--brand),var(--brand-2));
        color: #141414 !important;
        border-color: transparent;
    }

    .pill:focus-visible, .tab-btn:focus-visible {
        outline: 2px solid var(--brand-2);
        outline-offset: 2px;
    }

/* Drawer above FABs */
.resv-drawer {
    z-index: 90;
}

/* Hide FABs when drawer open */
body.drawer-open .fab-wrap {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .15s ease, transform .15s ease;
}

/* === HERO SLIDER ETC === (unchanged, kept for the rest of the site) */
.hero-slider {
    padding-top: 8px;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #222838;
    box-shadow: var(--shadow);
    background: var(--card);
    height: clamp(240px,42vw,520px);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slider .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #2a2f3f;
    background: rgba(15,17,21,.75);
    color: #e9eefc;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

    .slider .nav:hover {
        background: rgba(15,17,21,.95);
    }

.slider .prev {
    left: 12px;
}

.slider .next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

    .slider-dots .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        border: 1px solid #2a2f3f;
        background: rgba(255,255,255,.35);
        cursor: pointer;
    }

        .slider-dots .dot.on {
            background: var(--brand);
            border-color: transparent;
        }

.header {
    background: rgba(15,17,21,.92);
    border-bottom-color: rgba(255,255,255,.08);
}

.nav {
    height: 92px;
}

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

    .logo img {
        width: auto;
        height: auto;
    }

.brand-badge {
    display: inline-flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(199,166,103,.45);
    box-shadow: 0 6px 24px rgba(0,0,0,.35);
}

.brand-mark {
    height: 76px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
}

@media (max-width:980px) {
    .nav {
        height: 78px;
    }

    .brand-badge {
        width: 72px;
        height: 72px;
    }

    .brand-mark {
        height: 60px;
    }

    .brand-text {
        font-size: 20px;
    }
}

.hero-slider.fullbleed {
    padding-top: 0;
}

    .hero-slider.fullbleed .container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

.slider.fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: clamp(420px,78vh,860px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

    .slider.fullbleed .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .6s ease;
    }

        .slider.fullbleed .slide.active {
            opacity: 1;
        }

        .slider.fullbleed .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider.fullbleed .slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,rgba(0,0,0,.35) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,.55) 100%);
            pointer-events: none;
        }

.caption {
    position: absolute;
    left: max(24px, calc(50% - 560px));
    bottom: clamp(24px,8vh,96px);
    z-index: 1;
    max-width: min(600px, 92vw);
    display: grid;
    gap: 12px;
}

    .caption h1 {
        margin: 0;
        font-size: clamp(24px,3.4vw,48px);
        line-height: 1.1;
        text-shadow: 0 2px 12px rgba(0,0,0,.5);
    }

    .caption p {
        margin: 0;
        color: #e9eefc;
        opacity: .95;
        text-shadow: 0 1px 6px rgba(0,0,0,.5);
    }

    .caption .cta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

.slider.fullbleed .nav {
    top: 50%;
    transform: translateY(-50%);
}

.slider-dots {
    bottom: 16px;
}

main {
    padding-top: calc(var(--nav-h,86px) + 8px);
}

@media (max-width:980px) {
    main {
        padding-top: calc(var(--nav-h-mobile,68px) + 6px);
    }
}

main {
    padding-top: calc(var(--nav-h) + 12px);
}

@media (max-width:980px) {
    main {
        padding-top: calc(var(--nav-h-mobile) + 12px);
    }
}

.section.hero-slider, .hero-slider.section {
    padding: 0 !important;
}

.hero-slider {
    padding-top: 0 !important;
}

main > .hero-slider.fullbleed {
    margin-top: calc(-1 * (var(--nav-h) + 12px));
}

@media (max-width:980px) {
    main > .hero-slider.fullbleed {
        margin-top: calc(-1 * (var(--nav-h-mobile) + 12px));
    }
}

/* ========= MOBILE MENU VISIBILITY ========= */
body.no-scroll {
    overflow: hidden;
}

.mobile-drawer.show {
    display: block;
    z-index: 999;
    backdrop-filter: blur(8px);
}

.mobile-panel {
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1000;
}

.mobile-drawer.show .mobile-panel, body.drawer-open .mobile-panel {
    transform: translateX(0);
}

.mobile-links a {
    display: block;
    padding: 12px 2px;
    color: #cbd5e1;
    font-weight: 700;
    letter-spacing: .2px;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

    .mobile-links a:hover {
        color: #fff;
    }

    .mobile-links a.active {
        color: var(--brand);
    }






/* Drawer'ı diğer her şeyin üstüne al + animasyonlu görünürlük */
.mobile-drawer {
    z-index: 120; /* header/fab üstünde */
    opacity: 0;
    visibility: hidden; /* .show gelene kadar gizli */
    transition: opacity .25s ease;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,.55);
    /* JS zaten display: block yapıyor; burada dokunmuyoruz */
}

    .mobile-drawer.show {
        opacity: 1;
        visibility: visible;
    }

/* Panel sağdan kayarak gelsin ve güvenli alanı hesaba katsın */
.mobile-panel {
    width: min(86vw, 360px);
    padding: 18px calc(18px + env(safe-area-inset-right,0px)) 18px 18px;
    transform: translateX(100%);
    transition: transform .28s ease;
}

.mobile-drawer.show .mobile-panel {
    transform: translateX(0);
}

/* Linkleri daha tok ve dokunması kolay yapalım */
.mobile-links {
    gap: 12px;
    margin: 12px 0 16px;
}

    .mobile-links a {
        display: block;
        padding: 12px 10px;
        border-radius: 12px;
        border: 1px solid #2a2f3f;
        background: #1a2130;
        font-weight: 700;
        font-size: 18px;
    }

        .mobile-links a:hover {
            background: #243048;
            border-color: #4a5670;
        }





/* Make videos/iframes fill the existing .media box */
.media iframe,
.media video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Text line under each video */
.media-note {
    margin: 6px 2px 0;
    font-size: 14px;
    color: var(--muted);
}

    .media-note a {
        text-decoration: underline;
        text-underline-offset: 2px;
    }






/* 1) Put header back in the flow */
.header {
    position: sticky; /* was: fixed */
    top: 0;
    z-index: 120;
}

/* 2) We no longer need any global top padding for <main> */
main {
    padding-top: 0 !important;
}

    /* 3) Remove the negative pull-up that was added for the fullbleed hero */
    main > .hero-slider.fullbleed {
        margin-top: 0 !important;
    }

@media (max-width:980px) {
    main > .hero-slider.fullbleed {
        margin-top: 0 !important;
    }
}

/* 4) Keep the mobile drawer above the header */
.mobile-drawer {
    z-index: 120;
}

    .mobile-drawer.show {
        z-index: 120;
    }

















/* Two tidy video cards on the right */
.video-stack {
    display: grid;
    gap: 14px;
}

.video-card {
    background: var(--card);
    border: 1px solid #222838;
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
}

/* Keep perfect 16:9 and rounded corners */
.video-16x9 {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

    .video-16x9 iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

/* Plain caption line under each video */
.video-caption {
    margin: 8px 4px 2px;
    font-size: 14px;
    color: var(--muted);
}

    .video-caption a {
        text-decoration: underline;
        text-underline-offset: 2px;
    }




/* === Raise the hero a bit (override) === */

/* If your home hero uses <section class="hero-slider"><div class="slider">… */
.hero-slider .slider {
    /* was: clamp(240px, 42vw, 520px) */
    height: clamp(380px, 48vw, 620px);
}

/* If your hero has the class "fullbleed" on the slider, bump that too */
.slider.fullbleed {
    /* was: clamp(420px, 78vh, 860px) */
    height: clamp(520px, 84vh, 980px);
}

/* Optional: reduce the space BELOW the hero section */
.hero-slider + .section {
    /* was: 64px in .section */
    padding-top: 32px;
}








/* --- Promo + Social card --- */
.promo-social .muted {
    color: var(--muted);
}

.social-grid {
    display: grid;
    gap: 10px;
    margin: 10px 0 12px;
}

.sbtn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #2a2f3f;
    background: #0f1219;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: background .15s,border-color .15s,transform .15s;
}

    .sbtn:hover {
        background: #141a26;
        border-color: #3b465b;
        transform: translateY(-1px);
    }

    .sbtn svg {
        width: 18px;
        height: 18px;
    }

    /* tasteful brand tints */
    .sbtn.fb {
        border-color: rgba(66,103,178,.42);
    }
    /* Facebook blue */
    .sbtn.ig {
        border-color: rgba(199,103,255,.40);
    }
    /* IG vibe */
    .sbtn.wa {
        border-color: rgba(37,211,102,.45);
    }
/* WhatsApp green */

.mini-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.promo-note {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg,rgba(199,166,103,.18),rgba(228,210,162,.08));
    border: 1px solid #2a2f3f;
    font-size: 14px;
}

/* on narrower screens show two buttons per row */
@media (max-width:980px) {
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* ===== Brand area (bigger, clearer) ===== */
/* ===== Brand area: dairesel rozet, daha okunaklı ===== */
/* ---- LOGO: dairesel rozet + zoom/crop ---- */
.brand-badge {
    width: 96px; /* 80–96 arası deneyebilirsin */
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px; /* daire */
    overflow: hidden; /* kırpma */
    background: #fff; /* koyu header üstünde kontrast */
    border: 2px solid rgba(199,166,103,.55); /* zarif halka */
    box-shadow: 0 6px 24px rgba(0,0,0,.35);
    padding: 0; /* iç boşluk yok; tam kırpma */
}

.brand-mark {
    width: 100%;
    height: 100%;
    object-fit: cover; /* tam otur + zoom */
    object-position: 50% 45%; /* merkeze biraz yukarı kaydır; gerekirse ayarla */
    /* image-rendering kaldırıldı; çoğu durumda daha doğal sonuç verir */
}

/* Yan yazı */
.brand-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .2px;
}

/* Mobilde ufalt */
@media (max-width:980px) {
    .brand-badge {
        width: 86px;
        height: 86px;
    }

    .brand-text {
        font-size: 22px;
    }
}


/* Mobilde biraz küçült */
@media (max-width:980px) {
    .brand-badge {
        width: 78px;
        height: 78px;
        padding: 5px;
    }

    .brand-mark {
    }

    .brand-text {
        font-size: 22px;
    }
}

.brand-badge {
    position: relative;
}

    .brand-badge::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        box-shadow: inset 0 0 0 3px rgba(199,166,103,.25);
        pointer-events: none;
    }



.fab-wrap { position: fixed; right: 16px; bottom: 18px; display: flex; flex-direction: column; gap: 10px; z-index: 60; }
  .fab { display:inline-flex; align-items:center; gap:.5rem; padding:.75rem 1rem; border-radius:999px; font-weight:600; text-decoration:none; }
  .fab svg { width:18px; height:18px; }
  .fab.ig { background: linear-gradient(45deg,#F58529,#FEDA77,#DD2A7B,#8134AF,#515BD4); color:#fff; }
  .fab.secondary { background:#0f1620; color:#fff; }



/* Price list – clean & aligned */
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;   /* label ... amount */
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08); /* for dark bg; use rgba(0,0,0,.08) on light */
}
.price-list li:last-child { border-bottom: 0; }

/* Works with or without .label class */
.price-list li > .label,
.price-list li > :first-child {
  font-weight: 500;
  letter-spacing: .1px;
}

.price-list .amount {
  font-weight: 700;
  font-variant-numeric: tabular-nums; /* aligned digits */
  white-space: nowrap;                 /* keep € with number */
}

/* (optional) a bit tighter inside cards */
.card .price-list li { padding: 6px 0; }


/* === MOBILE-ONLY: hero caption'ı yukarı al ve daha okunur yap === */
@media (max-width: 980px) {
  /* Caption'ı ekranın üst-orta bandına taşı */
  .slider.fullbleed .caption {
    left: 16px;
    right: 16px;
    bottom: auto;                                      /* alttan kaldır */
    top: calc(12dvh + env(safe-area-inset-top, 0px));  /* iOS güvenli alan + üstten pay */
    max-width: 100%;
    gap: 8px;
  }

  /* Mobilde başlığı biraz küçült, taşmayı engelle */
  .slider.fullbleed .caption h1 {
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.15;
  }

  .slider.fullbleed .caption p {
    font-size: 14px;
  }

  /* Alttaki buton/dots ile çakışmayı azalt */
  .slider-dots {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  /* Üstteki yazı için üst tarafı biraz daha karart (sadece mobil) */
  .slider.fullbleed .slide::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 45%,
      rgba(0,0,0,.60) 100%
    );
  }
}

/* Çok kısa ekranlar (yükseklik < 700px) için biraz daha yukarı al */
@media (max-height: 700px) and (max-width: 980px) {
  .slider.fullbleed .caption { top: calc(16dvh + env(safe-area-inset-top, 0px)); }
}




/* === HERO SLIDER (slightly zoomed, not overcropped) === */
.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keep full-bleed effect */
    object-position: var(--fx, 60%) var(--fy, 48%);
    transform: scale(1.08); /* small zoom (8%) */
    transition: transform 3s ease-out; /* subtle smooth motion */
}

/* on hover or during animation cycle, slightly adjust */
.hero-slider .slide.active img {
    transform: scale(1.1); /* gentle dynamic zoom-in */
}

/* fallback for small screens — avoid too much crop */
@media (max-width: 640px), (max-height: 700px) {
    .hero-slider .slide img {
        transform: scale(1.02); /* smaller zoom on mobile */
    }
}
