/* ─── TOKENS ─── */
:root {
    --black: #060606;
    --black2: #0d0d0d;
    --black3: #141414;
    --gold: #f5c518;
    --gold-dark: #cc9f00;
    --gold-light: #ffdf6d;
    --white: #ffffff;
    --muted: #777777;
    --muted-light: #b5b5b5;
    --line: rgba(245, 197, 24, 0.15);
    --line-white: rgba(255, 255, 255, 0.06);
    --glow: rgba(245, 197, 24, 0.25);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ─── GLOWING ORBS ─── */
.bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    top: 10%;
    left: -10%;
}

.glow-2 {
    top: 40%;
    right: -10%;
}

.glow-3 {
    bottom: 10%;
    left: 20%;
}

/* ─── TEXT GRADIENT ─── */
.text-gradient {
    background: linear-gradient(135deg, var(--white) 30%, var(--gold-light) 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 64px; /* slightly reduced for tighter look */
    transition: all .4s ease;
    background: rgba(0, 0, 0, 0.6); /* darker overlay */
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.96); /* even darker when scrolled */
    backdrop-filter: blur(20px);
    padding: 16px 64px;
    border-bottom: 1px solid var(--line-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    flex: 1;
}

.nav-links a {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted-light);
    transition: color .3s, text-shadow .3s;
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 40px;
}

.nav-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .25em;
    text-transform: uppercase;
}

.nav-brand-sub {
    font-size: .55rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
    flex: 1;
}

.nav-phone {
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted-light);
    letter-spacing: .05em;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone:hover {
    color: var(--gold);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.2);
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
    transform: skewX(-25deg);
}

.nav-cta:hover::after {
    left: 150%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    display: block;
    transform-origin: center;
    transition: transform .22s ease, opacity .18s ease, background-color .22s ease;
}

.hamburger[aria-expanded="true"] span {
    background: var(--gold);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--white);
    text-transform: uppercase;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(6, 6, 6, .6) 0%, rgba(6, 6, 6, .7) 50%, rgba(6, 6, 6, .98) 100%),
        url('https://images.unsplash.com/photo-1601236089882-e0e5f01cd33f?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.hero-crown {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(245, 197, 24, 0.4));
}

.hero-badge-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: .02em;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted-light);
    line-height: 1.85;
    max-width: 700px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ─── BUTTONS ─── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(245, 197, 24, 0.3);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
    transform: skewX(-25deg);
}

.btn-gold:hover::after {
    left: 150%;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all .3s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.15);
}

/* ─── SECTION COMMON ─── */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px;
    position: relative;
    z-index: 2;
}

/* ─── WHY CHOOSING US (NEDEN BİZ?) ─── */
.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 800px);
    justify-content: center;
    align-items: center;
}

.why-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-desc {
    font-size: 1rem;
    color: var(--muted-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line-white);
    background: linear-gradient(135deg, var(--black2), var(--black));
    transition: border-color .4s, box-shadow .4s;
}

.why-feature:hover {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.05);
}

.why-feature-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    padding-top: 2px;
    filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.3));
}

.why-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--white);
}

.why-feature-desc {
    font-size: .88rem;
    color: var(--muted-light);
    line-height: 1.65;
}

/* ─── ARTISTS (SANATÇILARIMIZ) ─── */
.artists-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0, rgba(217, 173, 69, .08), transparent 34rem),
        linear-gradient(180deg, var(--black), #0c0b09 55%, var(--black));
    border-top: 1px solid var(--line-white);
}

.artists-section .section {
    padding-top: 105px;
    padding-bottom: 120px;
}

.artists-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.artists-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--gold);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .2em;
}

.artists-header .why-title {
    margin-bottom: 17px;
}

.artists-header p {
    margin: 0;
    color: var(--muted-light);
    font-size: .9rem;
    line-height: 1.8;
}

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

.artist-card {
    position: relative;
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    background: var(--black2);
    border: 1px solid rgba(217, 173, 69, .2);
    isolation: isolate;
}

.artist-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 34% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .94));
    pointer-events: none;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .45s ease;
}

.artist-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.03);
}

.artist-card-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
}

.artist-card-overlay span {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.artist-card-overlay h3 {
    margin: 0;
    color: var(--white);
    font: 800 clamp(1rem, 2vw, 1.35rem)/1.2 'Montserrat', sans-serif;
}

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

    .artist-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }
}

@media (max-width: 580px) {
    .artists-section .section {
        padding-top: 78px;
        padding-bottom: 85px;
    }

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

    .artist-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .artist-card-overlay {
        padding: 22px;
    }
}

/* ─── SERVICES (HİZMETLER) ─── */
.services-section {
    background: linear-gradient(180deg, var(--black), var(--black2) 50%, var(--black) 100%);
    border-top: 1px solid var(--line-white);
    border-bottom: 1px solid var(--line-white);
    text-align: center;
    position: relative;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

.services-separator {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.4));
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.services-desc {
    font-size: 1rem;
    color: var(--muted-light);
    max-width: 650px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.service-card {
    background: linear-gradient(135deg, var(--black3), var(--black2));
    border: 1px solid var(--line-white);
    padding: 56px 40px;
    text-align: center;
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    opacity: 0;
    transition: opacity .4s ease;
}

.service-card:hover {
    border-color: var(--line);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 197, 24, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 28px;
    filter: drop-shadow(0 0 10px rgba(245, 197, 24, 0.35));
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-card-desc {
    font-size: .9rem;
    color: var(--muted-light);
    line-height: 1.75;
    margin-bottom: 32px;
    min-height: 90px;
}

.services-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ─── GALLERY (PORTFÖY) ─── */
.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    padding: 0;
    overflow: hidden;
    color: inherit;
    background: var(--black2);
    border: 1px solid var(--line-white);
    cursor: pointer;
    font: inherit;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1), filter .4s ease;
    filter: grayscale(45%) contrast(1.05);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
    padding: 28px;
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-expand {
    flex: 0 0 auto;
    color: var(--white);
    font-size: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .7));
}

.gallery-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gallery-lightbox {
    width: min(920px, calc(100vw - 32px));
    max-width: none;
    padding: 0;
    overflow: hidden;
    color: var(--white);
    background: #090909;
    border: 1px solid rgba(217, 173, 69, .45);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .85);
}

.gallery-lightbox[open] {
    display: grid;
}

.gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, .88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.gallery-lightbox > img {
    display: block;
    width: 100%;
    height: min(78vh, 850px);
    object-fit: contain;
    background: #030303;
}

.gallery-lightbox-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: rgba(4, 4, 4, .82);
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
}

.gallery-lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
}

.gallery-lightbox-footer p {
    margin: 0;
    color: var(--gold-light);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gallery-lightbox-footer a {
    color: var(--muted-light);
    font-size: .78rem;
}

@media (max-width: 580px) {
    .gallery-actions > * {
        width: 100%;
    }

    .gallery-lightbox > img {
        height: 72vh;
    }

    .gallery-lightbox-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ─── GALLERY FILTERS ─── */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-light);
    background: transparent;
    border: 1px solid var(--line-white);
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.25);
}

.gallery-item {
    transition: opacity .4s ease, transform .4s ease;
}

.gallery-item.hidden {
    display: none;
}

/* ─── CONTACT (İLETİŞİM) ─── */
.contact-section {
    background: linear-gradient(180deg, var(--black), var(--black2));
    border-top: 1px solid var(--line-white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line-white);
    padding-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(245, 197, 24, 0.3));
}

.contact-text strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.contact-text span {
    font-size: 1rem;
    color: var(--white);
}

/* Form */
.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line-white);
    padding-bottom: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--black3);
    border: 1px solid var(--line-white);
    color: var(--white);
    padding: 16px 18px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black);
    padding: 100px 64px 48px;
    border-top: 1px solid var(--line-white);
    position: relative;
    z-index: 2;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
}

.footer-brand p {
    font-size: .9rem;
    color: var(--muted-light);
    line-height: 1.75;
    margin-top: 20px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-social {
    width: 44px;
    height: 44px;
    background: var(--black2);
    border: 1px solid var(--line-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--muted-light);
    transition: all .3s ease;
}

.footer-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.3);
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    font-size: .88rem;
    color: var(--muted-light);
    transition: color .25s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-size: .8rem;
    color: var(--muted);
    transition: color .25s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.personnel-access {
    position: relative;
    color: var(--muted);
    font-size: .76rem;
}

.personnel-access summary {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
    opacity: .55;
    transition: opacity .2s, color .2s;
}

.personnel-access summary::-webkit-details-marker { display: none; }
.personnel-access summary:hover,
.personnel-access[open] summary { color: var(--gold); opacity: .9; }

.personnel-access-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    display: grid;
    min-width: 155px;
    padding: 7px;
    background: #11110f;
    border: 1px solid rgba(196, 154, 60, .22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
    z-index: 20;
}

.personnel-access-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    font-size: .72rem;
}

/* ─── WHATSAPP FLOAT ─── */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.float-wa-btn {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

.float-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, .5);
}

.float-wa-btn i {
    font-size: 1.8rem;
    color: var(--white);
}

.float-wa-label {
    background: rgba(10, 10, 10, .95);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 8px 16px;
    border: 1px solid var(--line-white);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all .3s ease;
}

.float-wa:hover .float-wa-label {
    opacity: 1;
    transform: translateX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .nav {
        padding: 20px 32px;
    }

    .nav.scrolled {
        padding: 14px 32px;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .nav-cta {
        display: none;
    }
}

.local-seo-section {
    position: relative;
    padding: 30px 0 105px;
    background: linear-gradient(180deg, var(--black), #0d0c0a);
}

.local-seo-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.local-seo-heading p {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--muted-light);
    font-size: .9rem;
    line-height: 1.75;
}

.local-seo-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.local-seo-links a {
    position: relative;
    display: grid;
    min-height: 145px;
    align-content: center;
    gap: 8px;
    padding: 25px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.local-seo-links a:hover {
    background: rgba(217, 173, 69, .06);
    border-color: rgba(217, 173, 69, .38);
    transform: translateY(-3px);
}

.local-seo-links span {
    color: var(--gold);
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.local-seo-links strong {
    max-width: 85%;
    font: 700 .93rem/1.35 'Montserrat', sans-serif;
}

.local-seo-links i {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #77736d;
}

@media (max-width: 900px) {
    .local-seo-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .local-seo-section {
        padding-bottom: 75px;
    }

    .local-seo-links {
        grid-template-columns: 1fr;
    }
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
    position: fixed;
    right: max(34px, env(safe-area-inset-right));
    bottom: max(102px, calc(env(safe-area-inset-bottom) + 84px));
    z-index: 190;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--gold-light);
    background: rgba(10, 10, 9, .9);
    border: 1px solid rgba(217, 173, 69, .32);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .42);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px) scale(.92);
    transition: opacity .22s ease, transform .22s ease, visibility .22s, color .2s ease, background-color .2s ease;
}

.scroll-top.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-top:hover,
.scroll-top:focus-visible {
    color: var(--black);
    background: var(--gold);
    transform: translateY(-2px) scale(1);
}

.scroll-top i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .scroll-top {
        right: max(23px, env(safe-area-inset-right));
        bottom: max(86px, calc(env(safe-area-inset-bottom) + 70px));
        width: 38px;
        height: 38px;
    }
}

/* ─── SPLASH SEQUENCE: BLACK → DROP → REVEAL ─── */
@property --ink-reveal {
    syntax: '<length>';
    inherits: false;
    initial-value: 0px;
}

.splash-screen {
    --ink-reveal: 0px;
    background: #000;
    -webkit-mask-image: radial-gradient(
        circle at calc(50% - 58px) calc(50% + 150px),
        transparent 0,
        transparent var(--ink-reveal),
        #000 calc(var(--ink-reveal) + 3px)
    );
    mask-image: radial-gradient(
        circle at calc(50% - 58px) calc(50% + 150px),
        transparent 0,
        transparent var(--ink-reveal),
        #000 calc(var(--ink-reveal) + 3px)
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    will-change: opacity, mask-image;
}

.splash-screen.is-revealing {
    animation: revealBehindInk .85s cubic-bezier(.22, .8, .28, 1) forwards;
}

.ink-spill {
    display: none;
}

@keyframes revealBehindInk {
    from {
        --ink-reveal: 0px;
    }

    to {
        --ink-reveal: 160vmax;
    }
}

@media (max-width: 480px) {
    .splash-screen {
        -webkit-mask-image: radial-gradient(
            circle at calc(50% - 48px) calc(50% + 125px),
            transparent 0,
            transparent var(--ink-reveal),
            #000 calc(var(--ink-reveal) + 3px)
        );
        mask-image: radial-gradient(
            circle at calc(50% - 48px) calc(50% + 125px),
            transparent 0,
            transparent var(--ink-reveal),
            #000 calc(var(--ink-reveal) + 3px)
        );
    }
}

/* ─── SPLASH SCREEN ─── */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #c89000 0%, #6b4e00 35%, #1a1100 70%, #000000 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: fadeOutSplash 0.5s ease-in-out 2.5s forwards;
}

/* ─── PAGE BACKGROUND ─── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('/images/backgroundtruva.png') center/cover no-repeat fixed;
    filter: blur(2px);
    z-index: -1;
}
/* ─── GLOBAL OVERLAY ─── */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 0;
}
.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.tattoo-machine-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: machineVibrate 1.5s cubic-bezier(.36, .07, .19, .97) forwards;
}

.tattoo-machine-img {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(245, 197, 24, 0.4));
}

.splash-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 2.2s ease-out 0.3s forwards;
    letter-spacing: .15em;
    text-transform: uppercase;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        color: #f5c518;
        text-shadow: 0 0 12px #f5c518, 0 0 30px #d4a017, 0 0 55px rgba(245, 197, 24, 0.7);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
        color: #f5c518;
        text-shadow: 0 0 12px #f5c518, 0 0 30px #d4a017, 0 0 55px rgba(245, 197, 24, 0.7);
    }

    40% {
        color: #f5c518;
        text-shadow: 0 0 12px #f5c518, 0 0 30px #d4a017, 0 0 55px rgba(245, 197, 24, 0.7);
    }

    70% {
        color: #1a1000;
        text-shadow: none;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        color: #000000;
        text-shadow: none;
    }
}

.ink-drop {
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, #fceabb 0%, #f5c518 50%, #d4a017 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    bottom: 25px;
    left: 20px;
    /* Görseldeki iğne ucu sol altta olduğu için manuel koordinat (X ve Y) verdik */
    opacity: 0;
    transform: scale(0);
    animation: dropFall 1.2s ease-in forwards;
}

.ink-spill {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #000000; /* tamamen siyah */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 5;
    opacity: 0;
    animation: spillExpand 1.5s cubic-bezier(0.1, 0.9, 0.2, 1) 0.9s forwards;
    filter: blur(2px);
}

@keyframes machineVibrate {

    0%,
    90% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10%,
    30%,
    50%,
    70% {
        transform: translate(-1px, -2px) rotate(-2deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate(2px, 1px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes dropFall {

    0%,
    40% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }

    50% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    80% {
        opacity: 1;
        transform: scale(1) translateY(120px);
    }

    90% {
        opacity: 0;
        transform: scale(1.5) translateY(140px);
    }

    100% {
        opacity: 0;
        transform: scale(0) translateY(140px);
    }
}

@keyframes spillExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(300);
        opacity: 1;
    }
}

@keyframes fadeOutSplash {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

/* ─── VISUAL POLISH PASS ─── */
:root {
    --black: #070707;
    --black2: #0d0c0b;
    --black3: #151310;
    --gold: #d9ad45;
    --gold-dark: #a97920;
    --gold-light: #f2dda1;
    --muted: #96928b;
    --muted-light: #cbc7bf;
    --line: rgba(217, 173, 69, 0.28);
    --line-white: rgba(255, 255, 255, 0.1);
    --glow: rgba(217, 173, 69, 0.22);
    --page-gutter: clamp(20px, 4vw, 48px);
    --radius: 2px;
}

html {
    scroll-padding-top: 92px;
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at 50% 15%, rgba(217, 173, 69, 0.06), transparent 28rem),
        var(--black);
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

body::before,
body::after {
    display: none;
}

button,
input,
select,
textarea {
    border-radius: 0;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

section[id],
.section[id] {
    scroll-margin-top: 88px;
}

.nav {
    min-height: 88px;
    padding: 18px clamp(28px, 4vw, 64px);
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.54));
    transition: min-height .35s ease, padding .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.nav.scrolled {
    min-height: 72px;
    padding: 10px clamp(28px, 4vw, 64px);
    background: rgba(7, 7, 7, 0.94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav-links a,
.nav-phone,
.footer-col a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-brand {
    margin: 0 clamp(20px, 3vw, 40px);
}

.nav-brand-logo img {
    width: 42px;
    height: 42px;
}

.nav-brand-text {
    line-height: 1;
}

.hamburger {
    appearance: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-white);
}

.mobile-menu {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background:
        radial-gradient(circle at 50% 30%, rgba(217, 173, 69, .12), transparent 20rem),
        rgba(7, 7, 7, .985);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: max(720px, 100svh);
    padding-top: 150px;
}

.hero-bg {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, .58) 0%, rgba(5, 5, 5, .48) 42%, rgba(7, 7, 7, .98) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, .32), transparent 38%, transparent 62%, rgba(5, 5, 5, .32)),
        url('/images/backgroundtruva.png') center 58% / cover no-repeat;
    transform: scale(1.01);
}

.hero-content {
    max-width: 980px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .55);
}

.hero-title {
    max-width: 950px;
    font-size: clamp(2.35rem, 5.5vw, 4.75rem);
    text-wrap: balance;
}

.hero-desc {
    max-width: 720px;
    color: #ddd9d0;
    text-wrap: balance;
}

.btn-gold,
.btn-outline,
.nav-cta,
.filter-btn {
    min-height: 50px;
    justify-content: center;
}

.btn-gold {
    box-shadow: 0 10px 30px rgba(169, 121, 32, .22);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    border-color: var(--gold-light);
}

.section {
    max-width: 1240px;
    padding: clamp(88px, 9vw, 120px) var(--page-gutter);
}

.contact-grid {
    gap: clamp(48px, 7vw, 80px);
}

.why-title,
.services-title {
    text-wrap: balance;
}

.why-feature,
.service-card,
.gallery-item,
.form-group input,
.form-group select,
.form-group textarea {
    border-color: var(--line-white);
}

.why-feature {
    min-height: 142px;
    background: linear-gradient(135deg, rgba(21, 19, 16, .96), rgba(9, 9, 9, .96));
}

.services-grid {
    align-items: stretch;
}

.service-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(155deg, #18150f 0%, #0d0d0c 52%, #090909 100%);
}

.service-card-desc {
    min-height: 0;
}

.gallery-grid {
    gap: clamp(12px, 2vw, 20px);
}

.gallery-item {
    background: var(--black2);
    transition: opacity .18s ease, transform .18s ease, border-color .25s ease;
}

.gallery-item:hover {
    border-color: rgba(217, 173, 69, .55);
}

.gallery-item.is-leaving {
    opacity: 0;
    transform: scale(.97);
    pointer-events: none;
}

.gallery-item.hidden,
.gallery-item[hidden] {
    display: none;
}

.gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(6, 6, 6, .88) 0%, rgba(6, 6, 6, .08) 52%, transparent 70%);
}

.gallery-tag {
    transform: translateY(3px);
    transition: transform .3s ease;
}

.gallery-item:hover .gallery-tag {
    transform: translateY(0);
}

.contact-section {
    background:
        radial-gradient(circle at 85% 35%, rgba(217, 173, 69, .08), transparent 26rem),
        linear-gradient(180deg, #090909, #0d0c0b);
}

.contact-info-title,
.form-title {
    min-height: 42px;
}

.contact-item {
    min-height: 88px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(20, 19, 17, .92);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(217, 173, 69, .35);
}

.footer {
    padding: clamp(72px, 8vw, 100px) var(--page-gutter) 40px;
    background: #060606;
}

.footer-grid {
    gap: clamp(36px, 5vw, 64px);
}

.float-wa {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
}

.splash-screen {
    background:
        radial-gradient(circle at center, rgba(217, 173, 69, .3) 0%, rgba(45, 31, 8, .96) 38%, #050505 78%);
    animation: none;
    transition: opacity .42s ease, visibility .42s ease;
}

.splash-screen.is-finished {
    visibility: hidden;
    opacity: 0;
}

.splash-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    color: var(--gold-light);
    animation: splashTextReveal 1.2s ease-out .15s both;
}

@keyframes splashTextReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
        letter-spacing: .08em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: .15em;
    }
}

@media (max-width: 1024px) {
    .nav {
        padding-inline: 24px;
    }

    .nav-brand {
        margin: 0;
        align-items: flex-start;
        text-align: left;
    }

    .nav-right {
        flex: 0 0 auto;
        gap: 16px;
    }

    .services-grid .service-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 16px);
        justify-self: center;
    }

}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding: 128px 20px 70px;
    }

    .hero-badge-wrap {
        margin-bottom: 22px;
    }

    .hero-badge-text {
        font-size: clamp(1.05rem, 5vw, 1.4rem);
    }

    .hero-title br {
        display: none;
    }

    .hero-actions,
    .services-actions {
        width: min(100%, 420px);
        flex-direction: column;
    }

    .hero-actions > *,
    .services-actions > * {
        width: 100%;
    }

    .why-feature {
        padding: 22px;
    }

    .services-grid .service-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .service-card {
        padding: 44px 28px;
    }

    .gallery-overlay {
        padding: 18px;
    }

    .footer-grid {
        gap: 44px;
    }
}

@media (max-width: 480px) {
    .nav-brand-logo {
        gap: 8px;
    }

    .nav-brand-logo img {
        width: 36px;
        height: 36px;
    }

    .nav-brand-text {
        font-size: 1rem;
        letter-spacing: .18em;
    }

    .nav-brand-sub {
        letter-spacing: .28em;
    }

    .nav-cta {
        display: none;
    }

    .why-feature {
        flex-direction: column;
        min-height: 0;
    }

    .gallery-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .filter-btn {
        padding-inline: 14px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 18px;
    }

    .float-wa-btn {
        width: 52px;
        height: 52px;
    }
}

@media (hover: none) {
    .gallery-img {
        filter: grayscale(12%) contrast(1.04);
    }

    .float-wa-label {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .splash-screen {
        display: none;
    }
}

/* ─── LANGUAGE SWITCHER ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.language-switcher {
    position: relative;
    display: block;
    min-width: 88px;
    height: 44px;
}

.language-trigger {
    display: flex;
    width: 100%;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 11px;
    color: var(--white);
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line-white);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: border-color .25s ease, background-color .25s ease;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-switcher.open .language-trigger {
    background: rgba(217, 173, 69, .08);
    border-color: rgba(217, 173, 69, .5);
}

.language-current-code {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.language-trigger .bi-chevron-down {
    color: var(--gold);
    font-size: .65rem;
    transition: transform .25s ease;
}

.language-switcher.open .language-trigger .bi-chevron-down {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 300;
    width: 228px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    background: rgba(10, 10, 9, .98);
    border: 1px solid rgba(217, 173, 69, .3);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.language-switcher.open .language-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.language-option {
    display: grid;
    width: 100%;
    min-height: 52px;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 13px;
    color: var(--muted-light);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.language-option:hover,
.language-option:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, .045);
}

.language-option.active {
    color: var(--gold-light);
    background: rgba(217, 173, 69, .09);
    border-color: rgba(217, 173, 69, .2);
}

.language-name {
    font-size: .78rem;
    font-weight: 700;
}

.language-code {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.language-option.active .language-code {
    color: var(--gold);
}

.language-flag {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 17px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 1px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .22), 0 2px 6px rgba(0, 0, 0, .35);
}

.language-flag--de {
    background-image: url('/images/flags/de.png');
}

.language-flag--tr {
    background-image: url('/images/flags/tr.png');
}

.language-flag--gb {
    background-image: url('/images/flags/gb.png');
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .nav-phone {
        display: none;
    }

    .nav-right {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding-inline: 18px;
    }

    .nav-right {
        gap: 10px;
    }

    .language-switcher {
        min-width: 78px;
    }

    .language-trigger {
        gap: 7px;
        padding-inline: 8px;
    }

    .language-menu {
        right: -48px;
        width: min(228px, calc(100vw - 28px));
    }
}

/* ─── MOBILE VIEWPORT STABILITY ─── */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.hero-title > span {
    display: block;
}

@media (max-width: 768px) {
    .mobile-close {
        display: none;
    }

    .nav,
    .nav.scrolled {
        width: 100%;
        max-width: 100vw;
        min-height: 72px;
        gap: 8px;
        padding: 10px 14px;
    }

    .nav-brand {
        flex: 1 1 auto;
        min-width: 0;
        margin: 0;
        align-items: flex-start;
        overflow: hidden;
        text-align: left;
    }

    .nav-brand-logo {
        min-width: 0;
        gap: 7px;
    }

    .nav-brand-logo img {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .nav-brand-text {
        overflow: hidden;
        font-size: .94rem;
        letter-spacing: .13em;
        line-height: 1.1;
        text-overflow: clip;
        white-space: nowrap;
    }

    .nav-brand-sub {
        margin-top: 3px;
        font-size: .46rem;
        letter-spacing: .22em;
        white-space: nowrap;
    }

    .nav-right {
        flex: 0 0 auto;
        min-width: 0;
        gap: 8px;
    }

    .language-switcher {
        width: 72px;
        min-width: 72px;
        height: 40px;
        flex: 0 0 72px;
    }

    .language-trigger {
        height: 40px;
        gap: 6px;
        padding: 0 7px;
    }

    .language-trigger .language-flag {
        width: 23px;
        height: 15px;
    }

    .language-menu {
        right: 0;
        width: min(228px, calc(100vw - 20px));
        max-width: calc(100vw - 20px);
    }

    .hamburger {
        display: flex;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        padding: 8px;
    }

    .hero {
        width: 100%;
        max-width: 100vw;
        min-height: 100svh;
        padding: 118px 18px 58px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-title {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2rem, 9.4vw, 3.1rem);
        line-height: 1.06;
        letter-spacing: -.035em;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-title > span + span {
        margin-top: .12em;
    }

    .hero-desc {
        width: 100%;
        max-width: 600px;
        font-size: .96rem;
        line-height: 1.7;
    }

    .hero-actions {
        max-width: 390px;
        margin-inline: auto;
    }
}

@media (max-width: 380px) {
    .nav,
    .nav.scrolled {
        padding-inline: 10px;
    }

    .nav-brand-logo img {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .nav-brand-text {
        font-size: .82rem;
        letter-spacing: .1em;
    }

    .nav-brand-sub {
        font-size: .42rem;
        letter-spacing: .16em;
    }

    .language-switcher {
        width: 68px;
        min-width: 68px;
        flex-basis: 68px;
    }

    .hero {
        padding-inline: 14px;
    }

    .hero-badge-text {
        font-size: .98rem;
    }

    .hero-title {
        font-size: clamp(1.82rem, 9.2vw, 2.2rem);
    }

    .hero-desc {
        font-size: .91rem;
    }
}
