:root {
    --bg: #080808;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --text: #f5f5f5;
    --text-muted: #a8a8a8;
    --gold: #f5c518;
    --gold-hover: #ffda45;
    --border: rgba(255, 255, 255, 0.08);
    --container: 1280px;
    --radius: 16px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    margin: 0 0 1rem;
}

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.eyebrow.center {
    text-align: center;
}

.section-head {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-lead {
    margin: 0;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.6;
}

.creator-program {
    padding-top: 3rem;
}

.creator-program .section-head {
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

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

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-primary:hover {
    background: var(--gold-hover);
}

.btn-secondary {
    border-color: var(--border);
    background: transparent;
    color: var(--text);
}

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

.btn-small {
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    align-items: center;
    min-height: 60px;
    background: rgba(8, 8, 8, 0.35);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 2rem), var(--container));
    height: 60px;
    margin: 0 auto;
    padding: 0;
}

.brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 0;
}

.brand--center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.brand-logo,
.brand img,
.custom-logo {
    height: 41px;
    width: auto;
    max-height: 41px;
    display: block;
    margin: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.primary-nav--left {
    flex: 1 1 0;
    z-index: 3;
}

.primary-nav a:not(.btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    margin: 0;
    padding: 0 0.75rem;
    color: #f3f3f3;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
}

.primary-nav a:not(.btn):hover {
    color: var(--gold);
}

.header-actions {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 0;
    z-index: 3;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 36px;
    margin: 0;
    padding: 0 0.75rem;
    color: #f3f3f3;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.header-phone svg {
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-height: 36px;
    margin: 0;
    padding: 0 1rem;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 5rem;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

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

.hero-media .hero-video,
.hero-media .video-embed--youtube,
.hero-media .video-embed--vimeo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-media .video-embed-scaler {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(100vh, 56.25vw);
    transform: translate(-50%, -50%);
}

.hero-media .video-embed-scaler iframe,
.hero-media .youtube-background-player,
.hero-media .youtube-background-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.hero-media .youtube-background-player {
    position: absolute;
    inset: 0;
}

.hero-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #111, #1d1a10);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, var(--hero-overlay-top, 0.1)) 0%,
        rgba(8, 8, 8, var(--hero-overlay-mid, 0.45)) 65%,
        rgba(8, 8, 8, var(--hero-overlay-bottom, 0.72)) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    width: min(calc(100% - clamp(2rem, 8vw, 12rem)), var(--container));
    margin-inline: auto;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    padding-left: clamp(0.25rem, 1.5vw, 1rem);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}

.hero-location-icon {
    flex-shrink: 0;
    color: var(--gold);
}

.hero-location-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}

.hero h1 {
    font-family: 'Bebas Neue', 'Champion Gothic', Impact, sans-serif;
    font-size: clamp(3rem, 7vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
    max-width: 900px;
}

.hero-title-accent {
    color: var(--gold);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.25rem;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.hero-feature-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--text-muted);
}

.hero-feature p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-muted);
}

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

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.35rem;
    border-radius: 8px;
    background: var(--gold);
    color: #111;
    font-size: 0.95rem;
    font-weight: 600;
    border: 0;
    text-shadow: none;
}

.btn-hero::after {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.15rem;
}

.btn-hero:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.35rem;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border);
    text-shadow: none;
}

.btn-hero-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.about-copy h2,
.contact-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-card,
.package-card,
.testimonial-card,
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-card {
    padding: 2rem;
}

.about-list {
    margin: 1.5rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.clients-logos {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-logos-track {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    width: max-content;
    animation: clientsMarquee 28s linear infinite;
}

.client-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 110px;
    padding: 0 1rem;
}

.client-logo-item img {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.92;
    filter: grayscale(10%);
    transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Hauteur visuelle du motif (lettres), pas du fichier image */
.client-logo-item--iad img {
    height: 69px;
}

.client-logo-item--aa img {
    height: 60px;
}

.client-logo-item--kretz img {
    height: 92px;
}

.client-logo-item--barnes img {
    height: 102px;
}

.client-logo-item--sothebys img {
    height: 52px;
}

.client-logo-item--junot img {
    height: 60px;
}

.client-logo-item--yrr {
    min-width: 142.5px;
    padding-inline: 0.95rem;
    margin-inline: calc(-4.5rem * 0.05 / 2);
}

.client-logo-item--yrr img {
    height: 84px;
    width: 68px;
    object-fit: contain;
    object-position: center;
}

.client-logo-item img:hover {
    opacity: 1;
    filter: none;
}

@keyframes clientsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.works-head {
    margin-bottom: 2.5rem;
}

.works-container {
    width: min(calc(100% - clamp(1.5rem, 4vw, 3rem)), var(--container));
}

.works-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.work-block {
    position: relative;
    width: 100%;
    height: clamp(340px, 52vw, 600px);
    overflow: hidden;
    background: #0a0a0a;
}

.work-block--link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.work-block--link:hover {
    transform: translateY(-2px);
}

.work-block--link:hover .work-block-overlay {
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.78) 0%,
        rgba(8, 8, 8, 0.2) 38%,
        rgba(8, 8, 8, 0.24) 62%,
        rgba(8, 8, 8, 0.84) 100%
    );
}

.work-block-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.work-block-media video,
.work-block-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-block-media .work-block-video,
.work-block-media .video-embed--youtube,
.work-block-media .video-embed--vimeo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.work-block-media .video-embed-scaler {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 177.78vh);
    height: max(100%, 56.25vw);
    transform: translate(-50%, -50%);
}

.work-block-media .video-embed-scaler iframe,
.work-block-media .youtube-background-player,
.work-block-media .youtube-background-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.work-block-media .youtube-background-player {
    position: absolute;
    inset: 0;
}

.work-block-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: var(--text-muted);
    background: linear-gradient(135deg, #151515, #221f14);
}

.work-block-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.72) 0%,
        rgba(8, 8, 8, 0.15) 38%,
        rgba(8, 8, 8, 0.2) 62%,
        rgba(8, 8, 8, 0.78) 100%
    );
    pointer-events: none;
}

.work-block-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.work-block-top h3 {
    margin: 0;
    max-width: min(680px, 70%);
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text);
}

.work-block-meta {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.work-block-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: right;
}

.work-block-meta-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.work-block-meta-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.75);
}

.work-block-desc {
    margin: 0;
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(245, 245, 245, 0.88);
}

.packages-grid,
.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.process--fhm {
    padding-top: clamp(4rem, 8vw, 6rem);
}

.process-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-head-copy {
    max-width: 720px;
    margin-bottom: 0;
}

.process-head .section-head {
    margin-bottom: 0;
}

.btn-process-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-process-cta:hover {
    border-color: rgba(245, 197, 24, 0.45);
    background: rgba(245, 197, 24, 0.08);
    transform: translateY(-2px);
}

.btn-process-cta-icon {
    display: inline-flex;
    color: var(--gold);
}

.process-steps {
    display: flex;
    gap: 1rem;
}

.process-step-card {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #151515;
}

.process-step-media {
    position: relative;
    aspect-ratio: 616 / 528;
    overflow: hidden;
    background: #101010;
}

.process-step-media video,
.process-step-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step-placeholder {
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.08), transparent 55%),
        linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
}

.process-step-media .process-step-video,
.process-step-media .video-embed--youtube,
.process-step-media .video-embed--vimeo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.process-step-media .video-embed-scaler {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 177.78%);
    height: max(100%, 56.25%);
    transform: translate(-50%, -50%);
}

.process-step-media .video-embed-scaler iframe,
.process-step-media .youtube-background-player,
.process-step-media .youtube-background-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.process-step-media .youtube-background-player {
    position: absolute;
    inset: 0;
}

.process-step-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 73%, #151515 100%);
    pointer-events: none;
}

.process-step-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.process-step-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.15rem;
    border-radius: 999px;
    background: var(--gold);
    color: #292929;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.process-step-body h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--text);
}

.process-step-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #a5a5a5;
}

.packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packages-grid--fhm {
    gap: 1.25rem;
    align-items: stretch;
}

.package-card {
    padding: 2rem;
    position: relative;
}

.package-card--fhm {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #161616;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.package-card--fhm:hover {
    transform: translateY(-4px);
}

.package-card--fhm.featured {
    border-color: rgba(245, 197, 24, 0.55);
    box-shadow: 0 24px 60px rgba(245, 197, 24, 0.08);
}

.package-card-media {
    position: relative;
    height: 150px;
    background: linear-gradient(145deg, #1f1a10 0%, #121212 55%, #080808 100%);
}

.package-card--media-1 .package-card-media {
    background: linear-gradient(145deg, #252015 0%, #14120e 55%, #080808 100%);
}

.package-card--media-2 .package-card-media {
    background: linear-gradient(145deg, #2a2212 0%, #161410 50%, #080808 100%);
}

.package-card--media-3 .package-card-media {
    background: linear-gradient(145deg, #1a1818 0%, #101010 55%, #080808 100%);
}

.package-card--media-4 .package-card-media {
    background: linear-gradient(145deg, #201c12 0%, #12100c 55%, #080808 100%);
}

.package-card--media-5 .package-card-media {
    background: linear-gradient(145deg, #2d2410 0%, #18140e 50%, #080808 100%);
}

.package-card--media-6 .package-card-media {
    background: linear-gradient(145deg, #1c1a14 0%, #111010 55%, #080808 100%);
}

.package-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, #161616 100%);
}

.package-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    padding: 1.35rem 1.35rem 1.5rem;
}

.package-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.package-card-head h3 {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

.package-services-count {
    flex-shrink: 0;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.package-readmore {
    position: relative;
}

.package-readmore.is-collapsed .package-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-desc {
    margin: 0 0 0.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.package-readmore-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.package-readmore-toggle:hover {
    color: var(--gold);
}

.package-readmore-toggle svg {
    transition: transform 0.2s ease;
}

.package-readmore:not(.is-collapsed) .package-readmore-toggle svg {
    transform: rotate(180deg);
}

.package-readmore-less {
    display: none;
}

.package-readmore:not(.is-collapsed) .package-readmore-more {
    display: none;
}

.package-readmore:not(.is-collapsed) .package-readmore-less {
    display: inline;
}

.package-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.package-pricing-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.package-pricing-value {
    color: var(--text);
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

.package-pricing-value small {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.15rem;
}

.package-services {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.package-service {
    border-bottom: 1px solid var(--border);
}

.package-service summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0;
    list-style: none;
    cursor: pointer;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.package-service summary::-webkit-details-marker {
    display: none;
}

.package-service summary svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.package-service[open] summary svg {
    transform: rotate(180deg);
}

.package-service p {
    margin: 0 0 0.85rem;
    padding-bottom: 0.15rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.package-explore {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.package-explore::after {
    content: '›';
    margin-left: 0.35rem;
    color: var(--gold);
}

.package-explore:hover {
    border-color: rgba(245, 197, 24, 0.45);
    color: var(--gold);
    transform: translateY(-1px);
}

.package-explore--featured {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.package-explore--featured::after {
    color: #111;
}

.package-explore--featured:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #111;
}

.package-card.featured {
    border-color: rgba(245, 197, 24, 0.45);
    transform: none;
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--gold);
    color: #111;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.package-price {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 700;
}

.package-card ul {
    margin: 1.5rem 0 2rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
}

.stats-grid strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-counter {
    font-variant-numeric: tabular-nums;
}

.stats-grid span {
    color: var(--text-muted);
}

.testimonial-card {
    padding: 2.5rem;
}

.testimonial-card blockquote p {
    font-size: 1.35rem;
    color: var(--text);
    font-family: 'Playfair Display', Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #111;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

.contact-form-wrap {
    padding: 2rem;
}

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

.contact-details a {
    color: var(--gold);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #0d0d0d;
    color: var(--text);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(245, 197, 24, 0.35);
    border-color: var(--gold);
}

.form-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
}

.form-alert.success {
    background: rgba(56, 142, 60, 0.18);
    border: 1px solid rgba(129, 199, 132, 0.35);
}

.form-alert.error {
    background: rgba(198, 40, 40, 0.18);
    border: 1px solid rgba(239, 83, 80, 0.35);
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    background: #050505;
}

.footer-inner {
    display: grid;
    gap: 2rem;
}

.footer-logo {
    width: 130px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a,
.footer-legal a {
    color: var(--text-muted);
}

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

@media (max-width: 960px) {
    .about-grid,
    .contact-grid,
    .packages-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .process-step-body p {
        font-size: 1rem;
    }

    .package-card.featured {
        transform: none;
    }

    .header-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 1.5rem);
        height: auto;
        min-height: 60px;
    }

    .primary-nav--left {
        display: none;
        order: 3;
        flex: 1 1 100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(8, 8, 8, 0.96);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .primary-nav--left.is-open {
        display: flex;
    }

    .brand--center {
        position: static;
        transform: none;
        order: 1;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
        order: 2;
    }

    .work-block-top {
        flex-direction: column;
        gap: 1rem;
    }

    .work-block-top h3 {
        max-width: 100%;
    }

    .work-block-meta {
        align-self: flex-start;
        text-align: left;
    }

    .work-block-meta-item {
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .hero-feature p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4.5rem 0;
    }

    .hero {
        padding-bottom: 3.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero {
        justify-content: center;
    }
}

.realisation-page {
    padding: 0;
}

.site-header--realisation {
    display: block;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    min-height: 0;
    padding: 1.5rem clamp(1.25rem, 3vw, 2rem) 0;
}

.header-inner--realisation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1664px;
    height: 72px;
    margin: 0 auto;
    padding: 0;
}

.brand--realisation {
    position: static;
    transform: none;
    flex-shrink: 0;
}

.brand--realisation .brand-logo,
.brand--realisation .custom-logo,
.brand--realisation img {
    height: 64px;
    max-height: 64px;
    width: auto;
}

.realisation-nav-back {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
    padding: 0.35rem 0.15rem;
    color: #f3f3f3;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.2s ease;
}

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

.realisation-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(420px, 56vw, 600px);
    padding: 6.5rem 0 2rem;
    overflow: hidden;
}

.realisation-hero-container {
    position: relative;
    z-index: 2;
}

.realisation-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.realisation-hero-title {
    margin: 0;
    max-width: min(560px, 70%);
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    mix-blend-mode: difference;
}

.realisation-hero-meta {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
    padding-bottom: 0.35rem;
}

.realisation-hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.realisation-hero-meta-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.72);
}

.realisation-hero-meta-value {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.55);
}

.realisation-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.realisation-hero-media video,
.realisation-hero-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisation-hero-placeholder {
    background: linear-gradient(135deg, #151515, #221f14);
}

.realisation-hero-media .realisation-hero-video,
.realisation-hero-media .video-embed--youtube,
.realisation-hero-media .video-embed--vimeo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.realisation-hero-media .video-embed-scaler {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 177.78vh);
    height: max(100%, 56.25vw);
    transform: translate(-50%, -50%);
}

.realisation-hero-media .video-embed-scaler iframe,
.realisation-hero-media .youtube-background-player,
.realisation-hero-media .youtube-background-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.realisation-hero-media .youtube-background-player {
    position: absolute;
    inset: 0;
}

.realisation-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.72) 0%,
        rgba(8, 8, 8, 0.15) 38%,
        rgba(8, 8, 8, 0.2) 62%,
        rgba(8, 8, 8, 0.78) 100%
    );
    pointer-events: none;
}

.realisation-main-video {
    padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.realisation-main-video-inner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.realisation-main-video-slot,
.realisation-main-video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #101010;
}

.realisation-main-video-slot {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.realisation-main-video-player .realisation-player,
.realisation-main-video-player .video-embed {
    width: 100%;
    height: 100%;
}

.realisation-main-video-player video,
.realisation-main-video-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.realisation-overview-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}

.realisation-overview-container {
    display: flex;
    justify-content: center;
}

.realisation-overview-content {
    width: min(100%, 1100px);
}

.realisation-overview-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.realisation-overview p {
    color: var(--text-muted);
    line-height: 1.75;
}

.realisation-footer-cta {
    padding: 0 0 clamp(4rem, 8vw, 6rem);
    text-align: center;
}

.realisation-cta {
    margin-top: 0;
}

@media (max-width: 960px) {
    .realisation-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .realisation-hero-title {
        max-width: 100%;
    }

    .realisation-hero-meta {
        padding-bottom: 0;
    }
}
