:root {
    --bg: #090b10;
    --bg-soft: #0e1218;
    --bg-elevated: rgba(18, 24, 33, 0.8);
    --surface: rgba(16, 21, 30, 0.86);
    --surface-strong: rgba(22, 28, 39, 0.95);
    --surface-muted: rgba(255, 255, 255, 0.05);
    --text: #f4ecdf;
    --text-soft: rgba(244, 236, 223, 0.76);
    --text-dim: rgba(244, 236, 223, 0.56);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(214, 181, 121, 0.28);
    --gold: #d6b579;
    --gold-strong: #ebc98e;
    --gold-soft: rgba(214, 181, 121, 0.14);
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.34);
    --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.26);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --nav-height: 92px;
    --shell-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(214, 181, 121, 0.12), rgba(214, 181, 121, 0) 28%),
        linear-gradient(180deg, #07090d 0%, #0a0d13 40%, #090b10 100%);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -2;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.42;
}

body::before {
    top: 8%;
    left: -8%;
    width: 24rem;
    height: 24rem;
    background: rgba(214, 181, 121, 0.16);
}

body::after {
    right: -8%;
    bottom: 10%;
    width: 28rem;
    height: 28rem;
    background: rgba(72, 87, 122, 0.18);
}

.page-aura {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 14% 20%, rgba(214, 181, 121, 0.06), rgba(214, 181, 121, 0) 24%),
        radial-gradient(circle at 88% 16%, rgba(122, 150, 210, 0.08), rgba(122, 150, 210, 0) 20%);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.site-main {
    position: relative;
    isolation: isolate;
}

.section-shell {
    width: min(100% - 48px, var(--shell-width));
    margin: 0 auto;
}

[data-section] {
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(214, 181, 121, 0), rgba(214, 181, 121, 0.78));
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 1rem;
    font-family: "Fraunces", serif;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--gold-strong) 0%, var(--gold) 100%);
    color: #18140d;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--line);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.055);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 30;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: rgba(7, 9, 13, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.site-navbar.is-scrolled {
    background: rgba(9, 11, 16, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.navbar-progress {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, rgba(214, 181, 121, 0.2), var(--gold));
    transition: width 0.12s linear;
}

.navbar-container {
    width: min(100% - 48px, 1320px);
    min-height: var(--nav-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.navbar-brand-logo {
    width: auto;
    height: 82px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.24));
}

.navbar-brand-copy {
    display: grid;
    gap: 0.12rem;
}

.navbar-brand-kicker {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.navbar-brand-name {
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
}

.navbar-panel {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.navbar-links a {
    position: relative;
    color: rgba(244, 236, 223, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.navbar-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(214, 181, 121, 0), var(--gold), rgba(214, 181, 121, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.navbar-links a:hover,
.navbar-links a.is-active {
    color: var(--text);
}

.navbar-links a:hover::after,
.navbar-links a.is-active::after {
    transform: scaleX(1);
}

.navbar-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.navbar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto 4px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.navbar-toggle span:last-child {
    margin-bottom: 0;
}

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

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

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 72px) 0 96px;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 34%;
    filter: saturate(0.9) contrast(1.08) brightness(0.56);
    transform: scale(1.03);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.78) 38%, rgba(7, 9, 13, 0.3) 72%, rgba(7, 9, 13, 0.64) 100%),
        radial-gradient(circle at 74% 26%, rgba(214, 181, 121, 0.14), rgba(214, 181, 121, 0) 24%);
}

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

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: end;
}

.hero-copy {
    max-width: 760px;
}

.hero-title {
    margin: 0 0 1.2rem;
    font-family: "Fraunces", serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-text {
    margin: 0 0 1.8rem;
    max-width: 62ch;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.82;
}

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

.hero-highlights {
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-highlights li {
    padding: 0.82rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(244, 236, 223, 0.84);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(18, 22, 30, 0.38) 0%, rgba(12, 15, 21, 0.22) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.034) 0%, rgba(255, 255, 255, 0.01) 100%),
        radial-gradient(circle at top right, rgba(214, 181, 121, 0.1), rgba(214, 181, 121, 0) 30%);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform-style: preserve-3d;
    will-change: transform;
}

@media (min-width: 1180px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.76fr);
        gap: 1.5rem;
    }

    .hero-card {
        width: min(100%, 470px);
        justify-self: end;
        margin-top: 7rem;
        margin-right: 0;
    }
}

.hero-card-label,
.services-spotlight-label,
.contact-panel-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.48rem 0.82rem;
    border: 1px solid rgba(214, 181, 121, 0.24);
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card-title {
    margin: 0 0 0.9rem;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-card-text,
.film-text,
.footer-cta-text {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.hero-metric {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metric strong,
.about-stat strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1;
}

.hero-metric span,
.about-stat span {
    display: block;
    margin-top: 0.55rem;
    color: var(--text-dim);
    font-size: 0.86rem;
    line-height: 1.5;
}

.hero-card-note {
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    font-size: 0.92rem;
}

.services-section,
.gallery-section,
.film-section,
.about-section,
.faq-section,
.contact-section {
    position: relative;
    padding: 104px 0;
    isolation: isolate;
    overflow: hidden;
}

.services-section {
    background:
        radial-gradient(circle at 14% 20%, rgba(214, 181, 121, 0.14), rgba(214, 181, 121, 0) 28%),
        linear-gradient(180deg, rgba(13, 16, 23, 0.58) 0%, rgba(8, 10, 15, 0.14) 100%);
}

.gallery-section {
    background:
        radial-gradient(circle at 86% 18%, rgba(108, 132, 186, 0.16), rgba(108, 132, 186, 0) 26%),
        linear-gradient(180deg, rgba(8, 10, 15, 0.14) 0%, rgba(13, 16, 23, 0.58) 100%);
}

.film-section {
    background:
        radial-gradient(circle at 14% 20%, rgba(214, 181, 121, 0.08), rgba(214, 181, 121, 0) 24%),
        linear-gradient(180deg, rgba(4, 6, 10, 0.92) 0%, rgba(9, 12, 17, 0.72) 100%);
}

.about-section {
    background:
        radial-gradient(circle at 82% 18%, rgba(214, 181, 121, 0.12), rgba(214, 181, 121, 0) 26%),
        linear-gradient(180deg, rgba(17, 13, 11, 0.28) 0%, rgba(10, 12, 16, 0.54) 100%);
}

.faq-section {
    background:
        radial-gradient(circle at 15% 18%, rgba(98, 124, 175, 0.12), rgba(98, 124, 175, 0) 24%),
        linear-gradient(180deg, rgba(9, 11, 16, 0.2) 0%, rgba(11, 14, 20, 0.56) 100%);
}

.contact-section {
    background:
        radial-gradient(circle at 84% 18%, rgba(214, 181, 121, 0.14), rgba(214, 181, 121, 0) 28%),
        linear-gradient(180deg, rgba(10, 13, 19, 0.24) 0%, rgba(10, 12, 17, 0.72) 100%);
}

.services-section::before,
.gallery-section::before,
.film-section::before,
.about-section::before,
.faq-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 22%, rgba(0, 0, 0, 0.16) 100%);
    opacity: 0.72;
}

.services-section::after,
.gallery-section::after,
.film-section::after,
.about-section::after,
.faq-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(214, 181, 121, 0.18), rgba(255, 255, 255, 0));
}

.services-layout,
.film-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 1.5rem;
    align-items: stretch;
}

.services-list,
.contact-panel,
.contact-form-card,
.services-spotlight,
.film-showcase,
.film-stack,
.about-story,
.about-stat,
.faq-item,
.footer-cta-card,
.gallery-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.services-list {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.service-card {
    width: 100%;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.15rem;
    border: 1px solid transparent;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.service-card:hover,
.service-card.is-active {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    background: rgba(214, 181, 121, 0.08);
}

.service-card-index {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 800;
}

.service-card-body strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.service-card-body small {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.services-spotlight {
    display: grid;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.services-spotlight-media {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

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

.services-spotlight-copy {
    padding: 1.7rem;
}

.services-spotlight-copy h3,
.film-player-screen h3,
.contact-panel h3,
.contact-form-head h3,
.footer-cta-title {
    margin: 0 0 0.9rem;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.services-spotlight-copy p,
.contact-panel p,
.contact-form-head p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.services-spotlight-copy ul,
.contact-points,
.about-principles {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.services-spotlight-copy li,
.contact-points li,
.about-principles li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.services-spotlight-copy li::before,
.contact-points li::before,
.about-principles li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold);
}

.contact-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.services-spotlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-spotlight-footer span {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.gallery-card {
    position: relative;
    display: grid;
    gap: 0.8rem;
    min-height: 240px;
    padding: 1.4rem;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(214, 181, 121, 0.18), rgba(214, 181, 121, 0) 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    opacity: 0.8;
}

.gallery-card > * {
    position: relative;
    z-index: 1;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.gallery-card-badge {
    display: inline-flex;
    justify-self: start;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-card strong {
    font-size: 1.3rem;
}

.gallery-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.gallery-card-meta {
    margin-top: auto;
    color: var(--text-dim);
    font-size: 0.88rem;
}

.film-showcase,
.film-stack {
    padding: 1.7rem;
}

.film-title {
    margin: 0 0 1rem;
    font-family: "Fraunces", serif;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.film-player {
    margin-top: 1.6rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 80% 20%, rgba(214, 181, 121, 0.16), rgba(214, 181, 121, 0) 30%),
        linear-gradient(180deg, rgba(6, 8, 12, 0.92), rgba(11, 14, 20, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    will-change: transform;
}

.film-player-tag {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.film-player-screen {
    min-height: 300px;
    padding: 1.4rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at center, rgba(38, 44, 58, 0.7), rgba(6, 8, 12, 0.92));
}

.film-player-label {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.film-player-screen p {
    margin: 0;
    max-width: 48ch;
    color: var(--text-soft);
    line-height: 1.8;
}

.film-stack {
    display: grid;
    gap: 1rem;
}

.film-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.film-card-index {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 800;
}

.film-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.04rem;
}

.film-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.film-cta {
    width: 100%;
}

.service-item {
    display: block;
}

.service-card-detail {
    display: none;
}

.services-spotlight-media {
    min-height: auto;
    aspect-ratio: 16 / 10;
    background: rgba(4, 6, 10, 0.86);
}

.services-spotlight-media img {
    transition:
        opacity 0.35s ease,
        transform 0.45s ease;
}

.services-spotlight-media img.is-swapping {
    opacity: 0.2;
    transform: scale(1.04);
}

.services-spotlight-copy {
    display: grid;
    gap: 1rem;
}

.services-spotlight-copy ul {
    margin-top: 0;
}

.services-spotlight-footer {
    align-items: flex-end;
}

.services-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.services-spotlight-actions .button {
    width: auto;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.gallery-card {
    min-height: 360px;
    padding: 0;
    align-items: end;
}

.gallery-card::before {
    content: none;
}

.gallery-card:hover {
    transform: translateY(-6px);
}

.gallery-card-media,
.gallery-card-overlay {
    position: absolute;
    inset: 0;
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-media img {
    transform: scale(1.07);
}

.gallery-card-overlay {
    background:
        linear-gradient(180deg, rgba(3, 4, 7, 0.02) 0%, rgba(3, 4, 7, 0.45) 42%, rgba(3, 4, 7, 0.95) 100%),
        radial-gradient(circle at top right, rgba(214, 181, 121, 0.2), rgba(214, 181, 121, 0) 32%);
}

.gallery-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.65rem;
    align-content: end;
    min-height: 100%;
    padding: 1.35rem;
}

.gallery-card-kicker {
    color: rgba(255, 248, 235, 0.72);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gallery-card strong {
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    line-height: 1.02;
}

.gallery-card p {
    color: rgba(247, 241, 232, 0.88);
    line-height: 1.72;
}

.gallery-card-meta {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
}

.film-player {
    display: grid;
    gap: 1rem;
}

.film-player-screen-video {
    min-height: auto;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.film-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.film-player-caption {
    display: grid;
    gap: 0.8rem;
    padding: 0 0.3rem 0.2rem;
}

.film-player-caption h3,
.service-card-detail-copy h3,
.gallery-detail-copy h1,
.collection-group-head h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.film-player-caption h3 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.film-player-caption p,
.service-card-detail-copy p,
.gallery-detail-copy p,
.collection-group-head p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.gallery-detail-page {
    position: relative;
    padding: 96px 0;
}

.gallery-detail-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.gallery-detail-hero {
    padding-top: calc(var(--nav-height) + 42px);
}

.gallery-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: center;
}

.gallery-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-back-link::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
}

.gallery-detail-copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.gallery-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.45rem;
}

.gallery-stat,
.collection-group,
.gallery-related-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.gallery-stat {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 1.05rem;
}

.gallery-stat strong {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
}

.gallery-stat span,
.collection-group-kicker {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.gallery-detail-media {
    overflow: hidden;
    min-height: 460px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.gallery-masonry {
    columns: 3 280px;
    column-gap: 1rem;
}

.gallery-photo {
    margin: 0 0 1rem;
    break-inside: avoid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-sm);
}

.gallery-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-related-card {
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.gallery-related-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.gallery-related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-related-card-copy {
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.05rem;
}

.gallery-related-card-copy strong {
    font-size: 1.05rem;
}

.gallery-related-card-copy span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.collection-groups {
    display: grid;
    gap: 1.35rem;
}

.collection-group {
    padding: 1.5rem;
}

.collection-group-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.25rem;
}

.collection-group-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    margin-bottom: 0.7rem;
}

.collection-group-actions {
    display: flex;
    gap: 0.75rem;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.about-intro {
    max-width: 680px;
}

.about-intro h2 {
    margin: 0 0 1rem;
    font-family: "Fraunces", serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-intro p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.about-story {
    padding: 1.7rem;
}

.about-story p {
    margin: 0 0 1rem;
    color: var(--text-soft);
    line-height: 1.85;
}

.about-story p:last-of-type {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-stat {
    padding: 1.35rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.4rem;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.faq-item.is-open .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.4rem 1.35rem;
    color: var(--text-soft);
    line-height: 1.75;
}

.contact-panel,
.contact-form-card {
    padding: 1.7rem;
}

.contact-details {
    display: grid;
    gap: 0.85rem;
    margin: 1.4rem 0 0;
}

.contact-detail {
    padding: 1rem 1rem 1rem 1.05rem;
    border-left: 2px solid rgba(214, 181, 121, 0.4);
    border-radius: 0 18px 18px 0;
    background: rgba(255, 255, 255, 0.03);
}

.contact-detail span {
    display: block;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-detail strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.96rem;
    line-height: 1.6;
}

.contact-form-head {
    margin-bottom: 1.2rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-field {
    display: grid;
    gap: 0.55rem;
}

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

.contact-field label {
    color: rgba(244, 236, 223, 0.8);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(5, 7, 11, 0.44);
    color: var(--text);
    outline: none;
    transition:
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(244, 236, 223, 0.36);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(214, 181, 121, 0.34);
    background: rgba(7, 9, 13, 0.68);
    box-shadow: 0 0 0 4px rgba(214, 181, 121, 0.08);
    transform: translateY(-1px);
}

.contact-submit {
    margin-top: 1.35rem;
}

.contact-form-guard {
    margin-top: 1.15rem;
}

.contact-form-guard .cf-turnstile {
    min-height: 66px;
}

.contact-submit-btn {
    width: 100%;
}

.contact-submit-btn[disabled] {
    opacity: 0.78;
    cursor: wait;
    transform: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.form-error {
    color: #efb2b2;
    font-size: 0.82rem;
    line-height: 1.5;
}

.contact-messages {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-message {
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-message.success {
    background: rgba(82, 171, 115, 0.14);
    border-color: rgba(82, 171, 115, 0.28);
    color: #d5f0dd;
}

.contact-message.error {
    background: rgba(193, 84, 84, 0.14);
    border-color: rgba(193, 84, 84, 0.28);
    color: #f4d3d3;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: auto;
    bottom: 16px;
    z-index: 48;
    width: min(calc(100% - 32px), 560px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(214, 181, 121, 0.14), rgba(214, 181, 121, 0) 34%),
        rgba(9, 11, 16, 0.94);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease,
        transform 0.24s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-content {
    display: grid;
    gap: 1rem;
    padding: 1.2rem 1.2rem 1.1rem;
}

.cookie-banner-copy strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
}

.cookie-banner-copy p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

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

.cookie-banner-actions .button {
    min-height: 48px;
}

body.has-cookie-banner .floating-whatsapp,
body.has-cookie-banner .mobile-dock {
    opacity: 0;
    pointer-events: none;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.88rem 1.05rem 0.88rem 0.88rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2cc36b 0%, #149b4e 100%);
    color: #f7fff9;
    box-shadow: 0 20px 34px rgba(8, 41, 20, 0.42);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        opacity 0.28s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(8, 41, 20, 0.48);
}

.floating-whatsapp-icon,
.mobile-dock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.floating-whatsapp-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.floating-whatsapp-icon svg,
.mobile-dock-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.floating-whatsapp-label {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.mobile-dock {
    display: none;
}

.mobile-dock-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.mobile-dock-whatsapp {
    background: linear-gradient(135deg, #27c768 0%, #149b4e 100%);
    color: #f8fffa;
}

.mobile-dock-contact {
    background: linear-gradient(135deg, var(--gold-strong) 0%, var(--gold) 100%);
    color: #18140d;
}

.footer-cta-section {
    position: relative;
    padding: 72px 0 0;
    background: linear-gradient(180deg, rgba(10, 12, 17, 0) 0%, rgba(7, 8, 12, 0.58) 100%);
}

.footer-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(214, 181, 121, 0.08), rgba(214, 181, 121, 0) 36%);
}

.footer-cta-card {
    padding: 2rem;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(214, 181, 121, 0.16), rgba(214, 181, 121, 0) 32%),
        linear-gradient(180deg, rgba(19, 16, 13, 0.88) 0%, rgba(11, 12, 17, 0.96) 100%);
}

.footer-cta-text {
    max-width: 64ch;
    margin: 0 auto;
}

.footer-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-footer {
    position: relative;
    padding: 60px 0 32px;
    background:
        radial-gradient(circle at top center, rgba(214, 181, 121, 0.12), rgba(214, 181, 121, 0) 28%),
        linear-gradient(180deg, #0a0809 0%, #040507 100%);
    border-top: 1px solid rgba(214, 181, 121, 0.14);
    box-shadow: inset 0 28px 48px rgba(0, 0, 0, 0.24);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
    opacity: 0.6;
}

.footer-shell {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    width: auto;
    height: 86px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}

.footer-brand-text {
    margin: 1rem 0 0;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 34ch;
}

.footer-column h3 {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.72rem;
}

.footer-column a,
.footer-column span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-column a:hover {
    color: var(--gold-strong);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(214, 181, 121, 0.14);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .hero-layout,
    .services-layout,
    .film-layout,
    .contact-layout,
    .about-layout,
    .gallery-detail-shell {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .services-spotlight {
        max-width: 760px;
    }

    .gallery-grid,
    .footer-grid,
    .gallery-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    :root {
        --nav-height: 72px;
    }

    body {
        padding-bottom: 78px;
    }

    .site-navbar {
        background: rgba(6, 8, 12, 0.9);
        border-bottom-color: rgba(214, 181, 121, 0.08);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .navbar-progress {
        display: none;
    }

    .section-shell {
        width: min(100% - 32px, var(--shell-width));
    }

    .navbar-container {
        width: min(100% - 20px, 1320px);
        min-height: var(--nav-height);
        gap: 0.75rem;
    }

    .navbar-brand-copy {
        display: none;
    }

    .navbar-brand-logo {
        height: 54px;
    }

    .navbar-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 16px;
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.025);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .navbar-toggle span {
        width: 18px;
        height: 2px;
        margin-bottom: 3px;
    }

    .navbar-panel {
        position: fixed;
        top: calc(var(--nav-height) + 8px);
        left: 10px;
        right: 10px;
        bottom: auto;
        max-height: calc(100vh - var(--nav-height) - 18px);
        padding: 1rem;
        display: grid;
        gap: 0.8rem;
        align-content: start;
        border: 1px solid var(--line);
        border-radius: 22px;
        background:
            radial-gradient(circle at top right, rgba(214, 181, 121, 0.12), rgba(214, 181, 121, 0) 26%),
            rgba(9, 11, 16, 0.98);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition:
            opacity 0.28s ease,
            visibility 0.28s ease,
            transform 0.28s ease;
    }

    .navbar-panel.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .navbar-links a {
        width: 100%;
        padding: 0.82rem 0.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.92rem;
        letter-spacing: 0.07em;
    }

    .navbar-links a::after {
        display: none;
    }

    .navbar-cta {
        width: 100%;
        margin-top: 0.25rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 22px);
        padding-bottom: 54px;
    }

    .hero-media img {
        object-position: center center;
    }

    .hero-title {
        font-size: clamp(2.45rem, 9.4vw, 3.9rem);
        line-height: 0.98;
    }

    .hero-text,
    .hero-card-text {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .hero-metrics,
    .footer-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-spotlight-footer,
    .hero-actions,
    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .section-heading,
    .about-intro {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .section-heading p {
        max-width: none;
    }

    .gallery-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(78vw, 1fr);
        gap: 0.85rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        padding-bottom: 0.3rem;
    }

    .gallery-card {
        min-height: 380px;
        scroll-snap-align: start;
    }

    .gallery-grid::-webkit-scrollbar {
        height: 6px;
    }

    .gallery-grid::-webkit-scrollbar-thumb {
        background: rgba(214, 181, 121, 0.3);
        border-radius: 999px;
    }

    .contact-form-card {
        order: 1;
    }

    .contact-panel {
        order: 2;
    }

    .contact-panel-actions {
        flex-direction: column;
    }

    .services-list {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .service-item {
        padding: 0.85rem;
        border: 1px solid var(--line);
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%);
        box-shadow: var(--shadow-md);
    }

    .service-item.is-active {
        border-color: var(--line-strong);
    }

    .service-card {
        padding: 0;
        border: 0;
        background: transparent;
        transform: none;
    }

    .service-card:hover,
    .service-card.is-active {
        transform: none;
        border-color: transparent;
        background: transparent;
    }

    .service-card-detail {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 0.4s ease,
            opacity 0.28s ease,
            margin-top 0.28s ease;
    }

    .service-item.is-active .service-card-detail {
        max-height: 1100px;
        opacity: 1;
        margin-top: 0.85rem;
    }

    .service-card-detail-media {
        overflow: hidden;
        aspect-ratio: 16 / 10;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 1rem;
    }

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

    .service-card-detail-copy {
        display: grid;
        gap: 0.9rem;
    }

    .service-card-detail-copy h3 {
        font-size: clamp(1.7rem, 5.4vw, 2.2rem);
    }

    .service-card-detail-copy ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.7rem;
    }

    .service-card-detail-copy li {
        position: relative;
        padding-left: 1.15rem;
        color: var(--text-soft);
        line-height: 1.68;
    }

    .service-card-detail-copy li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.72rem;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: var(--gold);
    }

    .service-card-detail-actions {
        display: grid;
        gap: 0.75rem;
    }

    .services-spotlight {
        display: none;
    }

    .gallery-detail-media {
        min-height: 340px;
    }

    .gallery-masonry {
        columns: 2 220px;
    }

    .collection-group-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-dock {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 44;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 0.65rem;
        padding: 0.55rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        background: rgba(8, 10, 15, 0.94);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
    }

    body.is-mobile-dock-visible .mobile-dock {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-dock-action {
        min-height: 46px;
        padding: 0.82rem 0.9rem;
        border-radius: 16px;
        font-size: 0.86rem;
    }

    .floating-whatsapp {
        display: none;
    }

    body.nav-open .floating-whatsapp,
    body.nav-open .mobile-dock {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 84px;
    }

    .services-section,
    .gallery-section,
    .film-section,
    .about-section,
    .faq-section,
    .contact-section,
    .site-footer {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer-cta-section {
        padding-top: 28px;
    }

    .hero-card,
    .services-spotlight,
    .film-showcase,
    .film-stack,
    .about-story,
    .contact-panel,
    .contact-form-card,
    .footer-cta-card,
    .faq-item,
    .gallery-card,
    .service-item,
    .collection-group {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .section-shell {
        width: min(100% - 24px, var(--shell-width));
    }

    .services-spotlight-copy,
    .film-showcase,
    .film-stack,
    .contact-panel,
    .contact-form-card {
        padding: 1.25rem;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .about-intro h2,
    .film-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-highlights {
        gap: 0.65rem;
    }

    .hero-highlights li {
        padding: 0.78rem 0.9rem;
        font-size: 0.84rem;
    }

    .service-card,
    .film-card {
        grid-template-columns: 1fr;
    }

    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        min-height: 56px;
    }

    .gallery-grid {
        grid-auto-columns: minmax(86vw, 1fr);
    }

    .gallery-card {
        min-height: 352px;
        padding: 0;
    }

    .gallery-card-content {
        padding: 1.15rem;
    }

    .gallery-detail-page {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .gallery-detail-copy h1 {
        font-size: clamp(2.45rem, 11vw, 3.6rem);
    }

    .gallery-detail-actions,
    .gallery-stats,
    .gallery-related-grid,
    .collection-group-actions {
        grid-template-columns: 1fr;
    }

    .gallery-detail-actions,
    .collection-group-actions {
        display: grid;
    }

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

    .gallery-masonry {
        columns: 1;
    }

    .gallery-related-card img {
        aspect-ratio: 16 / 11;
    }

    .cookie-banner {
        left: 12px;
        right: auto;
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .cookie-banner-content,
    .cookie-banner-actions {
        display: grid;
    }

    .cookie-banner-actions .button {
        width: 100%;
    }

    .mobile-dock {
        grid-template-columns: 1fr;
        padding: 0.55rem;
    }

    .mobile-dock-action {
        min-height: 48px;
        font-size: 0.88rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
