:root {
    --bg-deep: #12081f;
    --bg-panel: #1c0f2e;
    --bg-elevated: #26143d;
    --accent: #8b5cf6;
    --accent-soft: #a78bfa;
    --accent-glow: rgba(139, 92, 246, 0.35);
    --text: #f5f3ff;
    --text-muted: #c4b5fd;
    --border: rgba(167, 139, 250, 0.22);
    --radius: 14px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --font: "DM Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background: radial-gradient(1200px 600px at 10% -10%, rgba(139, 92, 246, 0.18), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(124, 58, 237, 0.12), transparent 50%),
        var(--bg-deep);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}

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

a {
    color: var(--accent-soft);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: #ddd6fe;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(18, 8, 31, 0.92), rgba(18, 8, 31, 0.72));
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text);
    font-weight: 700;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #6d28d9);
    box-shadow: 0 10px 30px var(--accent-glow);
    letter-spacing: 0.02em;
}

.logo-text {
    font-size: 0.95rem;
    opacity: 0.92;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.35rem 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-soft), transparent);
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.main-nav a.is-active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.55rem 0.65rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-main {
    padding-bottom: 4rem;
}

.hero {
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40% 20% auto -20%;
    height: 70%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 0 1.75rem;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #6d28d9);
    color: #fff;
    box-shadow: 0 12px 36px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(139, 92, 246, 0.45);
}

.btn-ghost {
    border-color: var(--border);
    color: var(--text);
    background: rgba(38, 20, 61, 0.55);
}

.btn-ghost:hover {
    border-color: rgba(167, 139, 250, 0.45);
    background: rgba(38, 20, 61, 0.85);
}

.hero-card {
    background: linear-gradient(160deg, rgba(38, 20, 61, 0.95), rgba(18, 8, 31, 0.65));
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.55), transparent 40%, rgba(139, 92, 246, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-stat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius);
    background: rgba(18, 8, 31, 0.55);
    border: 1px solid var(--border);
}

.stat strong {
    display: block;
    font-size: 1.35rem;
    color: #fff;
}

.stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-note {
    margin: 1.35rem 0 0;
    max-width: 52ch;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.hero-note strong {
    color: var(--text);
}

.hero-media-col {
    position: relative;
}

.media-hero-frame {
    position: relative;
    margin: 0;
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--bg-panel);
    transform-style: preserve-3d;
    perspective: 900px;
}

.media-hero-frame__shine {
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        115deg,
        transparent 40%,
        rgba(255, 255, 255, 0.12) 48%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0.08) 52%,
        transparent 60%
    );
    transform: translateX(-30%);
    animation: shine-sweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0.85;
}

.media-hero-frame__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-hero-frame:hover .media-hero-frame__img,
.media-hero-frame:focus-within .media-hero-frame__img {
    transform: scale(1.06);
}

.media-hero-frame__cap {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    z-index: 3;
}

.media-pill {
    display: inline-block;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(18, 8, 31, 0.72);
    border: 1px solid rgba(167, 139, 250, 0.45);
    color: #f5f3ff;
    backdrop-filter: blur(10px);
}

.media-pill--ghost {
    background: rgba(139, 92, 246, 0.22);
}

.hero-stat--below {
    margin-top: 1rem;
}

.js-media-reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: saturate(0.85);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s ease;
}

.js-media-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
}

.media-cinema {
    position: relative;
    margin: 0;
    padding: 2.5rem 0 3rem;
    overflow: hidden;
}

.media-cinema__bg {
    position: absolute;
    inset: 0;
    background-image: var(--cinema-poster);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: blur(2px) brightness(0.55);
    z-index: 0;
}

.media-cinema--has-video .media-cinema__bg {
    opacity: 0.35;
}

.media-cinema__inner {
    position: relative;
    z-index: 1;
    width: min(1200px, 94vw);
    margin-inline: auto;
}

.media-cinema__frame {
    position: relative;
    border-radius: calc(var(--radius) + 10px);
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    min-height: min(52vh, 520px);
    background: #0b0414;
}

.media-cinema__video,
.media-cinema__fake {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-cinema__fake {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.35), transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(99, 102, 241, 0.25), transparent 40%), #12081f;
}

.media-cinema__fake-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    animation: grid-drift 18s linear infinite;
}

.media-cinema__fake-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.25;
    animation: scan-move 7s linear infinite;
}

.media-cinema__fake-label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: rgba(12, 5, 22, 0.65);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.media-cinema__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.media-cinema__glass {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
    max-width: min(420px, 88%);
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    background: rgba(18, 8, 31, 0.55);
    border: 1px solid rgba(167, 139, 250, 0.35);
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
    z-index: 4;
}

.media-cinema__eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.media-cinema__title {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.media-cinema__sub {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.media-marquee {
    border-block: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(38, 20, 61, 0.55), rgba(18, 8, 31, 0.2), rgba(38, 20, 61, 0.55));
    overflow: hidden;
    padding: 0.65rem 0;
}

.media-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee-slide 24s linear infinite;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(221, 214, 254, 0.88);
    white-space: nowrap;
}

.media-marquee__group {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.25rem;
    padding-inline-end: 1.25rem;
}

.media-gallery-section {
    padding-bottom: 1rem;
}

.media-gallery-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem min(5vw, 2rem) 1.25rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: min(5vw, 2rem);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-overflow-scrolling: touch;
}

.media-gallery-scroller:focus {
    outline: 2px solid rgba(167, 139, 250, 0.55);
    outline-offset: 4px;
}

.media-gallery-card {
    flex: 0 0 min(300px, 78vw);
    scroll-snap-align: start;
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
}

.media-gallery-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.media-gallery-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-gallery-card:hover .media-gallery-card__img-wrap img {
    transform: scale(1.05);
}

.media-gallery-card__glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
    transform: translateX(-40%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.6s ease;
    pointer-events: none;
}

.media-gallery-card:hover .media-gallery-card__glare {
    opacity: 1;
    transform: translateX(40%);
}

.media-gallery-card__meta {
    padding: 0.85rem 1rem 1rem;
}

.media-gallery-card__meta h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.media-gallery-card__meta p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.media-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.media-split__panel {
    position: relative;
    display: block;
    min-height: 280px;
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    border: 1px solid var(--border);
    color: #fff;
    transform-style: preserve-3d;
}

.media-split__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-split__panel:hover .media-split__bg {
    transform: scale(1.08);
}

.media-split__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 5, 22, 0.1), rgba(12, 5, 22, 0.75));
    z-index: 1;
}

.media-split__content {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 2;
}

.media-split__content h2 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}

.media-split__content p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(245, 243, 255, 0.85);
}

.media-split__panel--alt .media-split__veil {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.78));
}

.inline-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.86em;
    padding: 0.12rem 0.35rem;
    border-radius: 6px;
    background: rgba(18, 8, 31, 0.75);
    border: 1px solid var(--border);
    color: #e9d5ff;
}

.service-media-hero {
    padding: 0 0 2rem;
}

.service-media-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: stretch;
}

.service-media-hero__still {
    margin: 0;
    position: relative;
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    box-shadow: var(--shadow);
}

.service-media-hero__still img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    display: block;
}

.service-media-hero__still figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: linear-gradient(0deg, rgba(12, 5, 22, 0.92), transparent);
}

.service-media-hero__video-wrap {
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0b0414;
    min-height: 220px;
    position: relative;
    box-shadow: var(--shadow);
}

.service-media-hero__video {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.service-media-hero__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    background-image: var(--p);
    background-size: cover;
    background-position: center;
}

.service-media-hero__placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 5, 22, 0.2), rgba(12, 5, 22, 0.82));
}

.service-media-hero__placeholder span {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ede9fe;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(18, 8, 31, 0.65);
    backdrop-filter: blur(8px);
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-45%) rotate(8deg);
    }
    50% {
        transform: translateX(35%) rotate(8deg);
    }
    100% {
        transform: translateX(-45%) rotate(8deg);
    }
}

@keyframes grid-drift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-48px, -48px);
    }
}

@keyframes scan-move {
    0% {
        transform: translateY(-8%);
    }
    100% {
        transform: translateY(8%);
    }
}

@keyframes marquee-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section {
    padding: 2.5rem 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 2rem;
}

.section-head h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.section-head p {
    margin: 0;
    color: var(--text-muted);
}

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

.card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pill {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.18);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: var(--text);
}

.prose {
    max-width: 72ch;
}

.prose p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.prose p strong {
    color: var(--text);
}

.prose h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.35rem;
}

.breadcrumb {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text);
}

.page-hero {
    padding: 2.25rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    background: linear-gradient(180deg, rgba(38, 20, 61, 0.35), transparent);
}

.page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
}

.page-hero .lead {
    margin: 0;
    color: var(--text-muted);
    max-width: 65ch;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.region-card {
    display: block;
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius);
    background: var(--bg-panel);
    border: 1px solid var(--border);
    color: var(--text);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.region-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.5);
}

.region-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.region-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.region-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.region-links a {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(18, 8, 31, 0.65);
    border: 1px solid var(--border);
    color: var(--accent-soft);
}

.region-links a:hover {
    color: #fff;
    border-color: rgba(167, 139, 250, 0.55);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(18, 8, 31, 0.65);
    color: var(--text);
    font-family: inherit;
}

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

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(18, 8, 31, 0.2), rgba(12, 5, 22, 0.95));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
}

.footer-brand .footer-lead {
    margin: 0.75rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 36ch;
}

.footer-links h3,
.footer-bolgeler h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-tags a {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-tags a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1rem 0 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom-inner p {
    margin: 0;
}

.credit a {
    font-weight: 600;
    color: var(--accent-soft);
}

/* resim-videolar — sayfa geneline serpiştirilmiş medya */
.rv {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.rv__inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.rv-page-top {
    padding: 0.65rem 0 0.35rem;
    border-bottom: 1px solid var(--border);
    background: rgba(18, 8, 31, 0.35);
}

.rv-page-top__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.rv--micro {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.rv--thumb {
    max-width: 200px;
    height: 120px;
}

.rv--card {
    width: 100%;
    height: 140px;
    margin-bottom: 1rem;
}

.rv--wide {
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 160px;
}

.rv--band {
    width: 100%;
    height: min(22vh, 200px);
}

.rv--tile {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 120px;
}

.rv--float {
    float: right;
    width: min(38vw, 300px);
    aspect-ratio: 4 / 3;
    margin: 0 0 1rem 1.25rem;
}

.prose--rv-wrap::after {
    content: "";
    display: table;
    clear: both;
}

.hero-rv-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: flex-end;
    margin-top: 1rem;
}

.rv-between-hero {
    margin: 1rem auto 0;
}

.rv-dual {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1rem;
    align-items: stretch;
}

.rv-dual__cell {
    min-width: 0;
}

.section--rv-dual {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.region-card--with-rv .rv {
    margin-bottom: 0.75rem;
}

.rv-footer-splash {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(38, 20, 61, 0.45), transparent);
}

.rv-footer-splash__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

.rv-after-cinema {
    margin: 1rem auto;
}

.rv-after-cinema__row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: stretch;
}

.rv-marquee-gutter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0 1rem;
    opacity: 0.95;
}

.rv-gallery-embed {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 0;
    align-items: stretch;
}

.rv-gallery-embed .rv--thumb {
    flex: 1 1 160px;
}

.rv-gallery-embed .rv--tile {
    flex: 1 1 200px;
}

.rv-split-prelude {
    margin: 0 auto 1.5rem;
    max-width: min(1120px, 92vw);
}

.rv-bolge-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}

.rv-bolge-hero .rv--wide {
    flex: 2 1 280px;
}

.rv-bolge-hero .rv--micro {
    flex: 0 0 auto;
}

.rv-service-band {
    margin-bottom: 1.25rem;
}

.rv-contact-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

    .service-media-hero__grid {
        grid-template-columns: 1fr;
    }

    .rv-dual {
        grid-template-columns: 1fr;
    }

    .rv-after-cinema__row {
        grid-template-columns: 1fr;
    }

    .rv-footer-splash__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rv--float {
        float: none;
        width: 100%;
        margin: 1rem 0;
    }

    .rv-contact-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(18, 8, 31, 0.97);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .main-nav.is-open {
        max-height: 320px;
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem 1.25rem 1.25rem;
        align-items: flex-start;
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .media-marquee__track,
    .media-cinema__fake-grid,
    .media-cinema__fake-scan,
    .media-hero-frame__shine {
        animation: none !important;
    }

    .js-media-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .js-tilt {
        transform: none !important;
    }

    .media-hero-frame__img,
    .media-gallery-card__img-wrap img,
    .media-split__bg {
        transition: none !important;
    }
}

/* light theme override: white + orange */
:root {
    --bg-deep: #fffaf2;
    --bg-panel: #ffffff;
    --bg-elevated: #fff3df;
    --accent: #d97706;
    --accent-soft: #b45309;
    --accent-glow: rgba(217, 119, 6, 0.12);
    --text: #3a2412;
    --text-muted: #7f6245;
    --border: rgba(180, 83, 9, 0.18);
    --shadow: 0 12px 28px rgba(120, 70, 20, 0.11);
}

body {
    background: radial-gradient(1200px 600px at 10% -10%, rgba(245, 158, 11, 0.1), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(217, 119, 6, 0.08), transparent 50%), var(--bg-deep);
}

a {
    color: var(--accent-soft);
}

a:hover {
    color: #92400e;
}

.site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.9));
}

.logo {
    color: var(--text);
}

.main-nav a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.main-nav a.is-active {
    color: var(--text);
}

.nav-toggle span {
    background: var(--text);
}

.btn-ghost {
    color: var(--text);
    background: #ffffff;
}

.btn-ghost:hover {
    background: #fff2dd;
}

.btn i,
.main-nav a i {
    line-height: 1;
}

.card-ico {
    margin-right: 0.45rem;
    color: var(--accent-soft);
}

.title-ico {
    margin-right: 0.45rem;
    color: var(--accent-soft);
}

.hero-card,
.card,
.region-card,
.rv,
.media-gallery-card,
.service-media-hero__still {
    background: var(--bg-panel);
}

.hero-card {
    box-shadow: var(--shadow);
}

.stat {
    background: #fff3e0;
}

.stat strong {
    color: #9a3412;
}

.media-pill {
    background: rgba(255, 255, 255, 0.92);
    color: #9a3412;
}

.media-pill--ghost {
    background: rgba(245, 158, 11, 0.16);
}

.media-cinema__frame,
.service-media-hero__video-wrap {
    background: #ffe9cc;
    box-shadow: 0 18px 36px rgba(146, 64, 14, 0.16);
}

.media-cinema__bg {
    filter: blur(1px) brightness(1.08) saturate(1.05);
    opacity: 0.58;
}

.media-cinema__glass {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(180, 83, 9, 0.22);
}

.media-cinema__frame {
    border-color: rgba(180, 83, 9, 0.24);
}

.media-cinema__fake {
    background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.16), transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(217, 119, 6, 0.12), transparent 40%), #fff3e0;
}

.media-cinema__fake-grid {
    background-image: linear-gradient(rgba(154, 52, 18, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(154, 52, 18, 0.08) 1px, transparent 1px);
}

.media-cinema__fake-label {
    background: rgba(255, 255, 255, 0.86);
    color: #9a3412;
}

.media-cinema__fake-scan {
    background: repeating-linear-gradient(
        0deg,
        rgba(154, 52, 18, 0.04) 0px,
        rgba(154, 52, 18, 0.04) 1px,
        transparent 2px,
        transparent 4px
    );
}

.media-cinema__grain {
    opacity: 0.06;
}

.media-cinema__sub,
.page-hero .lead,
.prose p,
.card p,
.region-card p,
.section-head p,
.footer-brand .footer-lead,
.footer-bottom-inner {
    color: var(--text-muted);
}

.inline-code {
    background: #fff2df;
    color: #9a3412;
}

.page-hero {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1), transparent);
}

.region-links a {
    background: #fff2df;
    color: #b45309;
}

.region-links a:hover {
    color: #9a3412;
}

.form-group input,
.form-group textarea {
    background: #ffffff;
    color: var(--text);
}

.site-footer {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.96));
}

.footer-tags a:hover {
    color: #9a3412;
}

.rv-page-top {
    background: rgba(245, 158, 11, 0.09);
}

.rv-footer-splash {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), transparent);
}

/* mobile quick contact buttons */
.mobile-fab {
    display: none;
}

@media (max-width: 768px) {
    .main-nav {
        background: rgba(255, 255, 255, 0.98);
    }

    .mobile-fab {
        position: fixed;
        right: 0.9rem;
        bottom: 0.9rem;
        z-index: 70;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
    }

    .mobile-fab__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border-radius: 999px;
        padding: 0.62rem 0.9rem;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(31, 10, 67, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(6px);
    }

    .mobile-fab__btn i {
        font-size: 0.9rem;
        line-height: 1;
    }

    .mobile-fab__btn--call {
        background: linear-gradient(135deg, #d97706, #b45309);
    }

    .mobile-fab__btn--wa {
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }
}

/* final cleanup: remove all remaining purple accents */
.logo-mark,
.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.28);
}

.hero::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 60%);
}

.hero-card::after {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.45), transparent 40%, rgba(234, 88, 12, 0.2));
}

.btn-ghost:hover,
.card:hover,
.region-card:hover,
.region-links a:hover,
.media-gallery-scroller:focus {
    border-color: rgba(245, 158, 11, 0.45);
}

.media-pill {
    border-color: rgba(245, 158, 11, 0.42);
}

.media-marquee {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.16), rgba(255, 243, 224, 0.72), rgba(245, 158, 11, 0.16));
}

.media-marquee__track {
    color: rgba(154, 52, 18, 0.9);
}

.pill {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.35);
}

.mobile-fab__btn {
    box-shadow: 0 10px 22px rgba(180, 83, 9, 0.24);
}
