/* Arto Moments — restored stylesheet (site styles) */

:root {
    --color-ink: #1a0f14;
    --color-deep: #2a1522;
    --color-surface: #24121c;
    --color-surface-2: #1e1218;
    --color-gold: #b8a35a;
    --color-gold-soft: rgba(184, 163, 90, 0.35);
    --color-accent: #7c1f5d;
    --color-muted: #a898a0;
    --font-serif: "Tajawal", system-ui, -apple-system, sans-serif;
    --font-sans: "Tajawal", system-ui, -apple-system, sans-serif;
    --radius-lg: 14px;
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.25);
    --sticky-header-offset: 72px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: #e8e0e4;
    background: var(--color-ink);
    overflow-x: clip;
}

@supports not (overflow: clip) {
    body {
        overflow-x: hidden;
    }
}

.page-shell {
    overflow-x: clip;
}

@supports not (overflow: clip) {
    .page-shell {
        overflow-x: hidden;
    }
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #dcc885;
}

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

/* Top bar */
.top-bar {
    background: var(--color-ink);
    border-bottom: 1px solid rgba(184, 163, 90, 0.12);
    font-size: 0.82rem;
    color: var(--color-muted);
}

.top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 0.55rem 0;
}

.top-bar__item {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.top-bar__icon {
    opacity: 0.75;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 15, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 163, 90, 0.1);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    min-height: var(--sticky-header-offset);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    line-height: 0;
}

.site-header .logo {
    flex-shrink: 0;
}

.logo__img {
    display: block;
    height: clamp(30px, 4.5vw, 42px);
    width: auto;
    max-width: min(200px, 46vw);
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.logo__mark {
    color: var(--color-gold);
}

.logo__sub {
    font-weight: 400;
    opacity: 0.92;
}

.logo--footer {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo__img--footer {
    height: clamp(48px, 8vw, 72px);
    width: auto;
    max-width: min(300px, 88vw);
    object-fit: contain;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav__list a {
    color: #d5c8ce;
}

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

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-toggle {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(184, 163, 90, 0.35);
    border-radius: 999px;
    color: var(--color-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(184, 163, 90, 0.35);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--color-gold);
}

.nav__close {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, #7c1f5d, #5a1544);
    color: #fff;
    border-color: rgba(184, 163, 90, 0.35);
}

.btn--primary:hover {
    filter: brightness(1.08);
    color: #fff;
}

.btn--secondary {
    background: transparent;
    color: var(--color-gold);
    border-color: rgba(184, 163, 90, 0.55);
}

.btn--secondary:hover {
    background: rgba(184, 163, 90, 0.12);
    color: #e8d89a;
}

.btn--ghost {
    background: transparent;
    color: #e8e0e4;
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn--link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.btn--whatsapp {
    width: 100%;
    margin-top: 0.5rem;
    background: #25d366;
    color: #fff;
    border-color: transparent;
}

.btn--whatsapp:hover {
    filter: brightness(1.06);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--sticky-header-offset) + 2rem) 0 4rem;
    background: var(--color-deep) var(--hero-bg, none) center / cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(26, 15, 20, 0.82) 0%, rgba(42, 21, 34, 0.75) 50%, rgba(26, 15, 20, 0.88) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}

.hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 1rem;
}

.hero__brand {
    margin: 0 0 1.15rem;
}

.hero__brand[data-hero-logo-tilt] {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
    padding: 0.55rem 1.5rem;
    perspective: clamp(520px, 72vw, 1000px);
    perspective-origin: 50% 42%;
}

.hero__logo-stage {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    transform-style: preserve-3d;
    transform: translateZ(0);
    will-change: transform;
}

.hero__logo {
    display: block;
    margin-inline: auto;
    max-width: min(280px, 78vw);
    width: auto;
    height: auto;
    max-height: clamp(48px, 12vw, 88px);
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.94;
    transform: translateZ(2px);
}

@media (prefers-reduced-motion: reduce) {
    .hero__brand[data-hero-logo-tilt] {
        perspective: none;
    }

    .hero__logo-stage {
        transform: none !important;
    }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 1.25rem;
}

.hero__desc {
    font-size: 1.08rem;
    font-weight: 300;
    color: #cfc3c8;
    margin: 0 0 2rem;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(184, 163, 90, 0.45);
    border-radius: 20px;
    opacity: 0.7;
}

.hero__scroll::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: heroScrollDot 2s ease-in-out infinite;
}

@keyframes heroScrollDot {
    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.35;
        transform: translateY(12px);
    }
}

/* Sections */
.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.section__title--center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section__lead {
    color: var(--color-muted);
    font-size: 1.08rem;
    font-weight: 300;
    margin: 0 0 1.5rem;
    max-width: 560px;
}

.section--about .section__lead {
    max-width: none;
}

.section--about {
    background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-surface-2) 100%);
    overflow: visible;
}

.section--services {
    background: var(--color-surface);
}

.section--gallery {
    background: var(--color-deep);
}

.section--films {
    background: var(--color-surface-2);
}

.section--contact {
    background: linear-gradient(180deg, var(--color-deep) 0%, #150a10 100%);
}

.section--contact::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(48px, 8vw, 92px);
    z-index: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201440%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20fill%3D%27%231a0f14%27%20d%3D%27M0%2C36%20C320%2C6%20640%2C88%20960%2C32%20S1360%2C72%201440%2C44%20L1440%2C100%20L0%2C100%20Z%27%2F%3E%3C%2Fsvg%3E")
        center bottom / 100% 100% no-repeat;
}

/* Scalloped dividers */
.section--about::after,
.section--services::after,
.section--gallery::after,
.section--films::after,
.section--catalogue::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(52px, 9vw, 104px);
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
}

.section--about::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201440%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20fill%3D%27%232a1522%27%20d%3D%27M0%2C0%20Q720%2C92%201440%2C0%20L1440%2C100%20L0%2C100%20Z%27%2F%3E%3C%2Fsvg%3E");
}

.section--services::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201440%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20fill%3D%27%233c132c%27%20d%3D%27M0%2C58%20C432%2C6%20864%2C104%201296%2C38%20L1440%2C50%20L1440%2C100%20L0%2C100%20Z%27%2F%3E%3C%2Fsvg%3E");
}

.section--gallery::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201440%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20fill%3D%27%231e1218%27%20d%3D%27M0%2C48%20Q360%2C10%20720%2C54%20T1440%2C42%20L1440%2C100%20L0%2C100%20Z%27%2F%3E%3C%2Fsvg%3E");
}

.section--films::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201440%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20fill%3D%27%232a1522%27%20d%3D%27M0%2C32%20C420%2C88%20840%2C4%201260%2C52%20L1440%2C40%20L1440%2C100%20L0%2C100%20Z%27%2F%3E%3C%2Fsvg%3E");
}

.section--catalogue::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201440%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20fill%3D%27%231a0f14%27%20d%3D%27M0%2C40%20L1440%2C40%20L1440%2C100%20L0%2C100%20Z%27%2F%3E%3C%2Fsvg%3E");
}

/* About ambient curve */
.about-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.about-curve {
    position: absolute;
    right: -8%;
    top: 10%;
    width: min(520px, 55vw);
    height: auto;
    opacity: 0.55;
}

body.is-loaded .about-curve__path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: aboutCurveDraw 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes aboutCurveDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* About grid */
.about-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(2.25rem, 5vw, 3.75rem);
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-list {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-inline-start: 1.5rem;
    margin-bottom: 0.85rem;
    color: #cfc3c8;
}

.about-list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 12px var(--color-gold-soft);
}

/* About collage */
.about-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 42px);
    gap: 10px;
}

.about-collage__cell {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(184, 163, 90, 0.15);
}

.about-collage__cell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.58);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-collage__cell img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-collage__title {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: clamp(0.75rem, 3vw, 1.35rem);
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.1vw, 1.55rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.45s ease 0.06s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
    pointer-events: none;
}

.about-collage__cell:hover .about-collage__title,
.about-collage__cell:focus-within .about-collage__title {
    opacity: 1;
    transform: translateY(0);
}

.about-collage__cell--1::after,
.about-collage__cell:nth-child(4n + 1)::after {
    transform: translateX(100%);
}

.about-collage__cell--2::after,
.about-collage__cell:nth-child(4n + 2)::after {
    transform: translateX(-100%);
}

.about-collage__cell--3::after,
.about-collage__cell:nth-child(4n + 3)::after {
    transform: translateY(-100%);
}

.about-collage__cell--4::after,
.about-collage__cell:nth-child(4n + 4)::after {
    transform: translateY(100%);
}

.about-collage__cell--1:hover::after,
.about-collage__cell--1:focus-within::after,
.about-collage__cell:nth-child(4n + 1):hover::after,
.about-collage__cell:nth-child(4n + 1):focus-within::after {
    transform: translateX(0);
}

.about-collage__cell--2:hover::after,
.about-collage__cell--2:focus-within::after,
.about-collage__cell:nth-child(4n + 2):hover::after,
.about-collage__cell:nth-child(4n + 2):focus-within::after {
    transform: translateX(0);
}

.about-collage__cell--3:hover::after,
.about-collage__cell--3:focus-within::after,
.about-collage__cell:nth-child(4n + 3):hover::after,
.about-collage__cell:nth-child(4n + 3):focus-within::after {
    transform: translateY(0);
}

.about-collage__cell--4:hover::after,
.about-collage__cell--4:focus-within::after,
.about-collage__cell:nth-child(4n + 4):hover::after,
.about-collage__cell:nth-child(4n + 4):focus-within::after {
    transform: translateY(0);
}

.about-collage__cell--1 {
    grid-column: 1 / 8;
    grid-row: 1 / 6;
}

.about-collage__cell--2 {
    grid-column: 8 / 13;
    grid-row: 1 / 4;
}

.about-collage__cell--3 {
    grid-column: 8 / 13;
    grid-row: 4 / 9;
}

.about-collage__cell--4 {
    grid-column: 1 / 8;
    grid-row: 6 / 9;
}

/* Vision / Mission cards */
.about-vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
}

.about-vm__card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(184, 163, 90, 0.38), rgba(124, 31, 93, 0.42), rgba(184, 163, 90, 0.1));
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.about-vm__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.about-vm__inner {
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 3.2vw, 2.35rem);
    border-radius: calc(var(--radius-lg) - 1px);
    background: linear-gradient(165deg, rgba(36, 18, 28, 0.98) 0%, rgba(42, 21, 34, 0.94) 48%, rgba(26, 15, 20, 0.92) 100%);
    backdrop-filter: blur(14px);
}

.about-vm__inner > * {
    position: relative;
    z-index: 1;
}

.about-vm__card--vision .about-vm__inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    border-start-start-radius: calc(var(--radius-lg) - 1px);
    border-end-start-radius: calc(var(--radius-lg) - 1px);
    background: linear-gradient(165deg, rgba(124, 31, 93, 0.48) 0%, rgba(124, 31, 93, 0.1) 55%, transparent 100%);
    transform: scaleX(0);
    transform-origin: inline-start center;
    opacity: 0;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
}

.about-vm__card--vision:hover .about-vm__inner::after,
.about-vm__card--vision:focus-within .about-vm__inner::after {
    transform: scaleX(1);
    opacity: 1;
}

.about-vm__card--mission .about-vm__inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    border-start-end-radius: calc(var(--radius-lg) - 1px);
    border-end-end-radius: calc(var(--radius-lg) - 1px);
    background: linear-gradient(195deg, rgba(184, 163, 90, 0.2) 0%, rgba(124, 31, 93, 0.38) 45%, rgba(26, 15, 20, 0.25) 100%);
    transform: scaleX(0);
    transform-origin: inline-end center;
    opacity: 0;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
}

.about-vm__card--mission:hover .about-vm__inner::after,
.about-vm__card--mission:focus-within .about-vm__inner::after {
    transform: scaleX(1);
    opacity: 1;
}

.about-vm__glow {
    position: absolute;
    inset: -45%;
    background: radial-gradient(circle at 28% 18%, rgba(124, 31, 93, 0.38) 0%, transparent 52%);
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-vm__glow--mission {
    background: radial-gradient(circle at 72% 22%, rgba(184, 163, 90, 0.14) 0%, rgba(124, 31, 93, 0.28) 42%, transparent 58%);
}

.about-vm__card:hover .about-vm__glow {
    opacity: 0.9;
    transform: scale(1.06) rotate(3deg);
}

.about-vm__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    border: 1px solid rgba(184, 163, 90, 0.38);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.35) rotate(-18deg);
}

.about-vm__card.aos-animate .about-vm__glyph {
    animation: aboutVmGlyphIn 0.68s cubic-bezier(0.34, 1.45, 0.64, 1) 0.14s forwards;
}

.about-vm__card--mission.aos-animate .about-vm__glyph {
    animation-delay: 0.24s;
}

@keyframes aboutVmGlyphIn {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.about-vm__title {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.85rem;
    line-height: 1.22;
}

.about-vm__title::after {
    content: "";
    display: block;
    width: 3.25rem;
    height: 2px;
    margin-top: 0.65rem;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left center;
}

.is-rtl .about-vm__title::after {
    transform-origin: right center;
}

.about-vm__card.aos-animate .about-vm__title::after {
    animation: aboutVmLineIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

.about-vm__card--mission.aos-animate .about-vm__title::after {
    animation-delay: 0.52s;
}

@keyframes aboutVmLineIn {
    to {
        transform: scaleX(1);
    }
}

.about-vm__text {
    margin: 0;
    color: #c9b9c1;
    font-size: 0.98rem;
    line-height: 1.72;
    font-weight: 300;
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
}

.about-vm__card.aos-animate .about-vm__text {
    animation: aboutVmTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

.about-vm__card--mission.aos-animate .about-vm__text {
    animation-delay: 0.64s;
}

@keyframes aboutVmTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Services pin */
.section--services.services-pin {
    padding-block: 0;
}

.services-pin__sticky {
    position: sticky;
    top: var(--sticky-header-offset);
    min-height: calc(100vh - var(--sticky-header-offset));
    min-height: calc(100dvh - var(--sticky-header-offset));
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
}

.services-pin__shell {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    max-height: calc(100vh - var(--sticky-header-offset));
    max-height: calc(100dvh - var(--sticky-header-offset));
}

.services-pin__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: clamp(0.85rem, 2vw, 1.35rem) 0 0.85rem;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(184, 163, 90, 0.12);
}

.services-pin__intro {
    flex: 1 1 12rem;
    min-width: 0;
}

.services-pin__title {
    margin: 0 0 0.35rem;
    text-align: start;
}

.services-pin__hint {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.services-pin__controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.services-pin__status {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.services-pin__dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
    align-items: center;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(26, 15, 20, 0.55);
    border: 1px solid rgba(184, 163, 90, 0.2);
}

.services-pin__btn {
    width: 1.9rem;
    height: 1.9rem;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(184, 163, 90, 0.35);
    background: rgba(26, 15, 20, 0.4);
    color: var(--color-gold);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.services-pin__btn:hover,
.services-pin__btn:focus-visible {
    border-color: var(--color-gold);
    background: rgba(96, 17, 59, 0.55);
    transform: scale(1.06);
    outline: none;
}

.services-pin__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.services-pin__chev {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 300;
    margin-top: -0.08em;
}

.services-pin__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(184, 163, 90, 0.35);
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.services-pin__dot:hover,
.services-pin__dot:focus-visible {
    border-color: var(--color-gold);
    transform: scale(1.15);
    outline: none;
}

.services-pin__dot.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 14px var(--color-gold-soft);
}

.services-pin__viewport {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    direction: ltr;
}

.services-pin__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    will-change: transform;
}

.service-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: clamp(0.75rem, 2vw, 1.5rem) 0 clamp(1rem, 3vw, 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.service-slide__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    min-height: min(100%, 600px);
}

.service-slide__media.service-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(184, 163, 90, 0.15);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
    max-height: min(54vh, 520px);
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.service-slider__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.service-slider__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.service-slider__slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.service-slider__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(clamp(14px, 3.5vw, 32px));
    transform: scale(1.12);
}

.service-slider__slide-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.service-slider__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    padding: 1.5rem;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.service-slider__dots {
    position: absolute;
    bottom: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    max-width: calc(100% - 5.5rem);
    margin: 0;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(26, 15, 20, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 163, 90, 0.2);
}

.service-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(184, 163, 90, 0.4);
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.service-slider__dot:hover,
.service-slider__dot:focus-visible {
    border-color: var(--color-gold);
    transform: scale(1.2);
    outline: none;
}

.service-slider__dot.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-soft);
}

.service-slider__btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(184, 163, 90, 0.45);
    border-radius: 50%;
    background: rgba(26, 15, 20, 0.72);
    color: var(--color-gold);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.service-slider__btn:hover,
.service-slider__btn:focus-visible {
    background: rgba(96, 17, 59, 0.85);
    border-color: var(--color-gold);
    outline: none;
}

.service-slider__btn:active {
    transform: translateY(-50%) scale(0.96);
}

.service-slider__btn--prev {
    inset-inline-start: 0.5rem;
}

.service-slider__btn--next {
    inset-inline-end: 0.5rem;
}

.service-slider__chev {
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 300;
    margin-top: -0.12em;
}

.service-slide__tag {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.service-slide__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.12;
}

.service-slide__detail {
    margin: 0 0 1.25rem;
    color: #d5c8ce;
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 300;
}

.service-slide__list {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.service-slide__list li {
    position: relative;
    padding-inline-start: 1.35rem;
    margin-bottom: 0.65rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.service-slide__list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.85;
}

.service-slide__cta {
    margin-top: 0.25rem;
}

@media (prefers-reduced-motion: no-preference) {
    .services-pin .service-slide__body {
        transition:
            filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.5s ease;
    }

    .services-pin .service-slide[aria-hidden="true"] .service-slide__body {
        filter: blur(11px);
        opacity: 0.4;
        pointer-events: none;
        user-select: none;
    }

    .services-pin .service-slide[aria-hidden="false"] .service-slide__body {
        filter: blur(0);
        opacity: 1;
        pointer-events: auto;
        user-select: auto;
    }

    @keyframes svcBodyLineIn {
        from {
            opacity: 0;
            transform: translateY(16px);
            filter: blur(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    .services-pin .service-slide__body--reveal .service-slide__tag {
        animation: svcBodyLineIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0s;
    }

    .services-pin .service-slide__body--reveal .service-slide__heading {
        animation: svcBodyLineIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.1s;
    }

    .services-pin .service-slide__body--reveal .service-slide__detail {
        animation: svcBodyLineIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.2s;
    }

    .services-pin .service-slide__body--reveal .service-slide__list li:nth-child(1) {
        animation: svcBodyLineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.32s;
    }

    .services-pin .service-slide__body--reveal .service-slide__list li:nth-child(2) {
        animation: svcBodyLineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.41s;
    }

    .services-pin .service-slide__body--reveal .service-slide__list li:nth-child(3) {
        animation: svcBodyLineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.5s;
    }

    .services-pin .service-slide__body--reveal .service-slide__list li:nth-child(4) {
        animation: svcBodyLineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.59s;
    }

    .services-pin .service-slide__body--reveal .service-slide__list li:nth-child(5) {
        animation: svcBodyLineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.68s;
    }

    .services-pin .service-slide__body--reveal .service-slide__cta {
        animation: svcBodyLineIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.8s;
    }
}

.services-pin__spacer {
    height: calc((var(--svc-n, 1) - 1) * 100vh);
    height: calc((var(--svc-n, 1) - 1) * 100dvh);
    pointer-events: none;
}

/* Home preloader — horizontal split (timing: main.js data-fake-ms only; scroll not locked so scrollbar stays stable) */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: auto;
    overflow: hidden;
    background: transparent;
}

.page-preloader__half {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #1a0f14;
    backface-visibility: hidden;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}

.page-preloader__half--start {
    inset-inline-start: 0;
    transform: translate3d(0, 0, 0);
}

.page-preloader__half--end {
    inset-inline-end: 0;
    transform: translate3d(0, 0, 0);
}

.page-preloader--exit .page-preloader__half--start {
    transform: translate3d(-100%, 0, 0);
}

.page-preloader--exit .page-preloader__half--end {
    transform: translate3d(100%, 0, 0);
}

.is-rtl .page-preloader--exit .page-preloader__half--start {
    transform: translate3d(100%, 0, 0);
}

.is-rtl .page-preloader--exit .page-preloader__half--end {
    transform: translate3d(-100%, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .page-preloader__half {
        transition-duration: 0.01ms;
    }
}

/* Gallery */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.gallery-filter {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 163, 90, 0.35);
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
    border-color: var(--color-gold);
    color: var(--color-gold);
    outline: none;
}

.gallery-filter.is-active {
    background: rgba(124, 31, 93, 0.45);
    border-color: var(--color-gold);
    color: #fff;
}

.gallery-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 1rem;
    width: 100%;
}

.gallery-masonry__item {
    position: relative;
    display: block;
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(184, 163, 90, 0.12);
    transition: border-color 0.4s ease, box-shadow 0.45s ease;
}

.gallery-masonry__item:hover,
.gallery-masonry__item:focus-visible {
    border-color: rgba(184, 163, 90, 0.42);
    box-shadow:
        0 0 0 1px rgba(184, 163, 90, 0.18),
        0 18px 42px rgba(0, 0, 0, 0.38),
        0 0 48px rgba(124, 31, 93, 0.12);
}

.gallery-masonry__item img {
    width: 100%;
    display: block;
    vertical-align: middle;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-masonry__item:hover img,
.gallery-masonry__item:focus-visible img {
    transform: scale(1.03);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.1rem 1rem 1.2rem;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(26, 15, 20, 0.22) 0%,
        rgba(26, 15, 20, 0.38) 28%,
        rgba(26, 15, 20, 0.62) 58%,
        rgba(26, 15, 20, 0.94) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item__overlay::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--color-gold) 50%, transparent 95%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.gallery-masonry__item:hover .gallery-item__overlay,
.gallery-masonry__item:focus-visible .gallery-item__overlay {
    opacity: 1;
}

.gallery-masonry__item:hover .gallery-item__overlay::before,
.gallery-masonry__item:focus-visible .gallery-item__overlay::before {
    transform: scaleX(1);
}

.gallery-item__category {
    position: relative;
    font-family: var(--font-sans);
    font-size: clamp(0.68rem, 1.4vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #f5ebd8;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 0 0.35rem;
    margin-bottom: 0.15rem;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transform: translateY(0.65rem);
    transition:
        opacity 0.4s ease 0.06s,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
        color 0.35s ease;
}

.gallery-item__category::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.gallery-masonry__item:hover .gallery-item__category,
.gallery-masonry__item:focus-visible .gallery-item__category {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-gold);
}

.gallery-masonry__item:hover .gallery-item__category::after,
.gallery-masonry__item:focus-visible .gallery-item__category::after {
    width: min(88%, 12rem);
}

.gallery-item__shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.06) 48%, transparent 62%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.gallery-masonry__item:hover .gallery-item__shine,
.gallery-masonry__item:focus-visible .gallery-item__shine {
    opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-masonry__item {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .gallery-masonry__item img {
        transition-duration: 0.01ms;
    }

    .gallery-masonry__item:hover img,
    .gallery-masonry__item:focus-visible img {
        transform: none;
    }

    .gallery-item__overlay {
        transition: opacity 0.2s ease;
    }

    .gallery-item__overlay::before {
        transition-duration: 0.01ms;
    }

    .gallery-masonry__item:hover .gallery-item__overlay::before,
    .gallery-masonry__item:focus-visible .gallery-item__overlay::before {
        transform: scaleX(1);
    }

    .gallery-item__category {
        opacity: 0;
        transform: none;
        transition: opacity 0.2s ease;
    }

    .gallery-masonry__item:hover .gallery-item__category,
    .gallery-masonry__item:focus-visible .gallery-item__category {
        opacity: 1;
    }

    .gallery-item__category::after {
        transition-duration: 0.01ms;
    }

    .gallery-item__shine {
        transition-duration: 0.01ms;
    }
}

.gallery-masonry__item.is-hidden {
    display: none;
}

.gallery-masonry__item.is-gallery-clipped {
    display: none !important;
}

.gallery-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

.gallery-load-more-wrap[hidden] {
    display: none !important;
}

.gallery-arrow {
    display: flex;
    justify-content: center;
    opacity: 0.85;
}

.gallery-arrow img {
    width: min(120px, 28vw);
    height: auto;
}

/* Films — vertical reels (#4 split hero + #8 watch-next rail) */
.section--films {
    overflow-x: hidden;
}

.section--films .section__lead {
    max-width: 36rem;
}

.films-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(58vh, 500px);
    z-index: 0;
    pointer-events: none;
}

.films-curve-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.films-hero-shell {
    position: relative;
    z-index: 1;
}

.films-hero {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1.12fr);
    gap: clamp(2rem, 5vw, 3.75rem);
    align-items: center;
}

.films-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 0.65rem;
}

.films-hero__lead {
    margin-bottom: 0.85rem;
}

.films-hero__hint {
    margin: 0 0 1.5rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    max-width: 32rem;
}

.films-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
}

.films-hero__cta .films-hero__ig-icon {
    flex-shrink: 0;
}

.films-hero__visual {
    justify-self: center;
    width: 100%;
    max-width: 300px;
}

.films-phone {
    position: relative;
    border-radius: 2.25rem;
    padding: 0.55rem;
    background: linear-gradient(145deg, rgba(184, 163, 90, 0.35), rgba(26, 15, 20, 0.92));
    box-shadow:
        0 0 0 1px rgba(184, 163, 90, 0.25),
        var(--shadow-soft);
}

.films-phone__notch {
    display: block;
    position: absolute;
    top: 0.45rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 1.35rem;
    background: var(--color-ink);
    border-radius: 0 0 0.65rem 0.65rem;
    z-index: 2;
    opacity: 0.92;
}

.films-phone__inner {
    position: relative;
    border-radius: 1.85rem;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9 / 16;
}

.films-phone__inner.is-films-muted-shade::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.28) 42%,
        rgba(0, 0, 0, 0.58) 100%
    );
    box-shadow: inset 0 0 56px rgba(0, 0, 0, 0.65);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.films-phone__inner.is-films-muted-shade:hover::after,
.films-phone__inner.is-films-muted-shade:focus-within::after {
    opacity: 0;
}

.films-phone__video {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}

.films-phone__caption {
    text-align: center;
    margin: 1rem 0 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

.films-more {
    margin-top: clamp(2.5rem, 6vw, 4rem);
}

.films-more__title {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 1.25rem;
    letter-spacing: 0.04em;
}

.films-rail-wrap {
    margin: 0 calc(-1 * min(4vw, 2rem));
    padding: 0 min(4vw, 2rem) 0.5rem;
    mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
    overflow-x: clip;
}

@supports not (overflow: clip) {
    .films-rail-wrap {
        overflow-x: hidden;
    }
}

.films-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.5rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(184, 163, 90, 0.45) rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
}

.films-rail::-webkit-scrollbar {
    height: 6px;
}

.films-rail::-webkit-scrollbar-thumb {
    background: rgba(184, 163, 90, 0.35);
    border-radius: 99px;
}

.films-rail__card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 128px;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    text-align: center;
    font: inherit;
}

.films-rail__frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(184, 163, 90, 0.2);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

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

.films-rail__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(124, 31, 93, 0.5), rgba(26, 15, 20, 0.95));
}

.films-rail__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(26, 15, 20, 0.75);
    border: 2px solid var(--color-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.films-rail__play::after {
    content: "";
    position: absolute;
    left: 52%;
    top: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 0.45em 0 0.45em 0.75em;
    border-color: transparent transparent transparent var(--color-gold);
}

.films-rail__name {
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--color-muted);
    letter-spacing: 0.04em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.films-rail__card:hover .films-rail__frame,
.films-rail__card:focus-visible .films-rail__frame {
    border-color: rgba(184, 163, 90, 0.55);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.films-rail__card:focus-visible {
    outline: none;
}

.films-rail__card:focus-visible .films-rail__frame {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.films-rail__card.is-active .films-rail__frame {
    border-color: var(--color-gold);
    box-shadow:
        0 0 0 2px rgba(184, 163, 90, 0.35),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .films-hero-bg {
        height: min(44vh, 380px);
    }

    .films-hero {
        grid-template-columns: 1fr;
    }

    .films-hero__visual {
        max-width: 280px;
        margin-inline: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .films-rail__card:hover .films-rail__frame,
    .films-rail__card:focus-visible .films-rail__frame {
        transform: none;
    }

    .films-phone__inner.is-films-muted-shade::after {
        transition-duration: 0.01ms;
    }
}

.is-rtl .films-hero__cta {
    flex-direction: row-reverse;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(184, 163, 90, 0.25);
    background: rgba(26, 15, 20, 0.6);
    color: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-actions {
    margin-top: 0.5rem;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-lg);
    background: rgba(36, 18, 28, 0.65);
    border: 1px solid rgba(184, 163, 90, 0.15);
}

.contact-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--color-gold);
}

.contact-card p {
    margin: 0.35rem 0;
    color: #cfc3c8;
    font-size: 0.95rem;
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
}

.map-link {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #12090d;
    border-top: 1px solid rgba(184, 163, 90, 0.12);
    padding: 3rem 0 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.site-footer__tagline {
    color: var(--color-muted);
    font-size: 0.92rem;
    margin: 0.75rem 0 0;
    max-width: 320px;
}

.site-footer__why-text {
    margin: 1rem 0 0;
    max-width: 320px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.site-footer__heading {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 1rem;
}

.site-footer__links,
.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
}

.site-footer__links li,
.site-footer__contact li {
    margin-bottom: 0.5rem;
}

.site-footer__links a,
.site-footer__contact a {
    color: #cfc3c8;
}

.social {
    display: flex;
    gap: 0.75rem;
}

.social__link--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(184, 163, 90, 0.35);
    color: var(--color-gold);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.site-footer__bottom p {
    margin: 0;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    z-index: 150;
    left: max(1rem, env(safe-area-inset-left));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 18px rgba(39, 180, 62, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: visible;
    text-decoration: none;
    transform-origin: center center;
    animation: wa-float-in 0.75s cubic-bezier(0.34, 1.45, 0.64, 1) both;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(39, 180, 62, 0.55), 0 4px 12px rgba(0, 0, 0, 0.22);
}

.wa-float:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.wa-float__icon {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.wa-float__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(91, 208, 102, 0.65);
    animation: wa-float-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes wa-float-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(0.55);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes wa-float-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    70% {
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float {
        animation: wa-float-in-reduced 0.35s ease forwards;
    }

    .wa-float__pulse {
        animation: none;
        opacity: 0;
    }
}

@keyframes wa-float-in-reduced {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
}

.modal__panel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid rgba(184, 163, 90, 0.25);
    box-shadow: var(--shadow-soft);
}

.modal__close {
    position: absolute;
    top: 0.75rem;
    inset-inline-end: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.modal__title {
    font-family: var(--font-serif);
    margin: 0 0 0.5rem;
    color: #fff;
}

.modal__sub {
    margin: 0 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Flash */
.flash {
    position: fixed;
    top: calc(var(--sticky-header-offset) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-size: 0.92rem;
    max-width: min(480px, 92vw);
    box-shadow: var(--shadow-soft);
}

.flash--success {
    background: rgba(40, 120, 72, 0.95);
    color: #fff;
}

.flash--error {
    background: rgba(140, 30, 50, 0.95);
    color: #fff;
}

/* Catalogue */
.section--catalogue {
    background: var(--color-surface-2);
}

.catalogue-hero__inner {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.catalogue-print-hint {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0 0 1.25rem;
}

.theme-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.theme-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(184, 163, 90, 0.2);
    background: rgba(36, 18, 28, 0.5);
}

.theme-card__visual {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.theme-card__body {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-card__body h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    color: #fff;
    margin: 0 0 0.75rem;
}

.theme-card__body p {
    margin: 0;
    color: #cfc3c8;
    line-height: 1.65;
}

.theme-card:nth-child(even) {
    direction: ltr;
}

.theme-card:nth-child(even) .theme-card__visual {
    order: 2;
}

.theme-card:nth-child(even) .theme-card__body {
    order: 1;
}

.catalogue-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* RTL helpers */
.is-rtl .nav__list {
    flex-direction: row-reverse;
}

.is-rtl .site-header__inner {
    flex-direction: row-reverse;
}

.is-rtl .theme-card:nth-child(even) .theme-card__visual {
    order: 1;
}

.is-rtl .theme-card:nth-child(even) .theme-card__body {
    order: 0;
}

/* Reduced motion — global snippets */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body.is-loaded .about-curve__path {
        animation: none;
        stroke-dashoffset: 0;
    }

    .about-collage__cell::after {
        transform: none !important;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .about-collage__cell:hover::after,
    .about-collage__cell:focus-within::after {
        opacity: 1;
    }

    .about-collage__title {
        transform: none;
        transition: opacity 0.35s ease 0.05s;
    }

    .about-collage__cell:hover .about-collage__title,
    .about-collage__cell:focus-within .about-collage__title {
        transform: none;
    }

    .about-vm__card:hover {
        transform: none;
    }

    .about-vm__card:hover .about-vm__glow {
        transform: none;
    }

    .about-vm__card--vision .about-vm__inner::after,
    .about-vm__card--mission .about-vm__inner::after {
        transform: none !important;
        transition: opacity 0.3s ease;
    }

    .about-vm__card--vision:not(:hover):not(:focus-within) .about-vm__inner::after,
    .about-vm__card--mission:not(:hover):not(:focus-within) .about-vm__inner::after {
        opacity: 0;
    }

    .about-vm__card--vision:hover .about-vm__inner::after,
    .about-vm__card--vision:focus-within .about-vm__inner::after,
    .about-vm__card--mission:hover .about-vm__inner::after,
    .about-vm__card--mission:focus-within .about-vm__inner::after {
        opacity: 1;
    }

    .about-vm__glyph,
    .about-vm__text {
        animation: none !important;
        opacity: 1;
        transform: none;
        filter: none;
    }

    .about-vm__title::after {
        animation: none !important;
        transform: scaleX(1);
    }

    .services-pin__sticky {
        position: relative;
        top: 0;
        min-height: 0;
        max-height: none;
    }

    .services-pin__shell {
        max-height: none;
    }

    .services-pin__viewport {
        overflow: visible;
    }

    .services-pin__track {
        transform: none !important;
        flex-direction: column;
        height: auto;
    }

    .service-slide {
        flex: none;
        height: auto;
        overflow: visible;
        padding-block: 1.5rem;
        border-bottom: 1px solid rgba(184, 163, 90, 0.1);
    }

    .service-slide:last-child {
        border-bottom: none;
    }

    .services-pin__spacer {
        display: none;
    }

    .services-pin .service-slide__body {
        filter: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        user-select: auto !important;
        transition: none !important;
    }

    .services-pin .service-slide__body--reveal .service-slide__tag,
    .services-pin .service-slide__body--reveal .service-slide__heading,
    .services-pin .service-slide__body--reveal .service-slide__detail,
    .services-pin .service-slide__body--reveal .service-slide__list li,
    .services-pin .service-slide__body--reveal .service-slide__cta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .hero__scroll::after {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-vm {
        grid-template-columns: 1fr;
    }

    .about-collage {
        grid-template-rows: repeat(8, 36px);
        max-width: 480px;
        margin-inline: auto;
    }

    .gallery-masonry {
        column-count: 2;
    }

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

    .theme-card,
    .theme-card:nth-child(even) .theme-card__visual {
        grid-template-columns: 1fr;
    }

    .theme-card:nth-child(even) .theme-card__visual {
        order: 0;
    }
}

@media (max-width: 900px) {
    .service-slide__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .service-slide__media.service-slider {
        max-height: min(52vh, 340px);
        aspect-ratio: 16 / 10;
    }

    .services-pin__intro {
        flex: 1 1 100%;
    }

    .services-pin__controls {
        flex: 1 1 100%;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .services-pin__status {
        align-self: flex-start;
    }

    .services-pin__dots {
        justify-content: center;
        align-content: center;
        width: 100%;
        max-width: none;
        min-width: 0;
        align-self: stretch;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    body.nav-menu-open {
        overflow: hidden;
        touch-action: none;
    }

    body.nav-menu-open .top-bar,
    body.nav-menu-open .site-header {
        visibility: hidden;
    }

    .nav-toggle {
        display: flex;
        justify-content: center;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 200;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
        background: var(--color-ink);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav__close {
        display: flex;
        position: absolute;
        top: max(1rem, env(safe-area-inset-top));
        right: max(1rem, env(safe-area-inset-right));
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(184, 163, 90, 0.35);
        border-radius: 10px;
        background: transparent;
        cursor: pointer;
        z-index: 1;
    }

    .nav__close-line {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 2px;
        margin-left: -9px;
        margin-top: -1px;
        background: var(--color-gold);
        border-radius: 1px;
    }

    .nav__close-line:first-child {
        transform: rotate(45deg);
    }

    .nav__close-line:last-child {
        transform: rotate(-45deg);
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex: 1 1 auto;
        width: 100%;
        min-height: 0;
    }

    .nav__list a {
        font-size: 1rem;
    }

    .is-rtl .nav__list {
        flex-direction: column;
        align-items: center;
    }

    .is-rtl .nav__close {
        right: auto;
        left: max(1rem, env(safe-area-inset-left));
    }

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

    .gallery-masonry {
        column-count: 1;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Print */
@media print {
    .page-preloader {
        display: none !important;
    }

    .top-bar,
    .site-header,
    .hero__scroll,
    .nav-toggle,
    .gallery-filters,
    .gallery-load-more-wrap,
    .gallery-arrow,
    .films-phone__video,
    .films-rail-wrap,
    .services-pin__dots,
    .service-slider__dots,
    .service-slider__btn,
    .modal,
    .flash,
    .wa-float {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .services-pin__sticky {
        position: relative !important;
        top: 0 !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .services-pin__shell {
        max-height: none !important;
    }

    .services-pin__track {
        transform: none !important;
        flex-direction: column !important;
        height: auto !important;
    }

    .service-slide {
        flex: none !important;
        height: auto !important;
        overflow: visible !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .services-pin__spacer {
        display: none !important;
    }

    .gallery-masonry__item.is-gallery-clipped {
        display: block !important;
    }

    main .section__title,
    main .section__lead,
    main .service-slide__body,
    main .service-slide__tag,
    main .service-slide__heading,
    main .service-slide__detail,
    main .service-slide__list li,
    main .about-vm__title,
    main .about-vm__text {
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
    }
}

