/* ========================================
   HAMILTON MAGIE — Design System v2
   Theme: Noir & Or Premium
   ======================================== */

:root {
    --black: #050505;
    --black-light: #0a0a0a;
    --black-card: #111111;
    --black-border: #1a1a1a;
    --black-hover: #161616;
    --gold: #d4a853;
    --gold-light: #f0c864;
    --gold-dark: #b8912e;
    --gold-muted: rgba(212, 168, 83, 0.15);
    --gold-glow: rgba(212, 168, 83, 0.08);
    --white: #ffffff;
    --white-soft: #f5f0e8;
    --white-muted: rgba(255, 255, 255, 0.7);
    --white-dim: rgba(255, 255, 255, 0.4);
    --gray: #888888;
    --gray-dark: #333333;
    --success: #2ecc71;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
    --section-pad: clamp(80px, 10vw, 140px);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.6s;
    --duration-fast: 0.3s;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white-muted);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--duration-fast) var(--ease-smooth); }
a:hover { color: var(--gold-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.section { padding: var(--section-pad) 0; position: relative; }

/* ===== Section Headers ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 24px; height: 1px;
    background: var(--gold);
}
.section-header .section-label { padding-left: 0; text-align: center; display: block; }
.section-header .section-label::before { display: none; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }
.section-header .section-title { margin-bottom: 20px; }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--white-dim);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-divider-small {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px 0 28px;
    border-radius: 2px;
}
.section-divider-small.center { margin-left: auto; margin-right: auto; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--duration-fast) var(--ease-smooth);
}
.nav.nav-scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-first {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.logo-last {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--duration-fast);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--duration-fast) var(--ease-out);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }
.nav-link-cta {
    color: var(--black) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all var(--duration-fast);
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
    color: var(--black) !important;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-fast);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.7) 70%),
        linear-gradient(180deg, rgba(5,5,5,0.5) 0%, transparent 25%, transparent 65%, rgba(5,5,5,0.95) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.3s forwards;
}
.hero-title { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.hero-title-first {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
}
.hero-title-last {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-top: 8px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.9s forwards;
}
.divider-line { width: clamp(40px, 8vw, 80px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-diamond { color: var(--gold); font-size: 0.6rem; }
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--white-soft);
    font-style: italic;
    margin-bottom: 12px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero-tagline {
    font-size: clamp(0.7rem, 1.3vw, 0.85rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.3s forwards;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.5s forwards;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--duration-fast);
}
.hero-cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
}
.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212,168,83,0.35);
    color: var(--black);
}
.hero-cta-primary svg { transition: transform var(--duration-fast); }
.hero-cta-primary:hover svg { transform: translateX(4px); }
.hero-cta-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
}
.hero-cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 1.8s forwards;
}
.hero-trust-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hero-trust-text { font-size: 0.8rem; color: var(--white-dim); }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 2s forwards;
}
.scroll-mouse {
    width: 24px; height: 40px;
    border: 2px solid var(--white-dim);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollWheel 2s var(--ease-smooth) infinite;
}
.scroll-text { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); }

@keyframes scrollWheel { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(12px)} }
@keyframes heroFadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ===== INTRO BANNER ===== */
.intro-banner {
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 32px 0;
}
.intro-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    flex-wrap: wrap;
}
.intro-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.intro-icon { font-size: 1.6rem; }
.intro-item strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    display: block;
    line-height: 1;
}
.intro-item span { font-size: 0.8rem; color: var(--white-dim); }
.intro-separator {
    width: 1px;
    height: 40px;
    background: var(--black-border);
}

/* ===== ABOUT ===== */
.about { background: var(--black-light); }
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.about-image { position: relative; }
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.about-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.about-image-wrapper:hover img { transform: scale(1.05); }
.about-image-border {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold-muted);
    border-radius: calc(var(--radius-lg) + 8px);
    pointer-events: none;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212,168,83,0.3);
    z-index: 2;
}
.badge-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--black); line-height: 1; }
.badge-text { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; color: var(--black); text-align: center; line-height: 1.3; }
.about-intro { font-size: 1.1rem; color: var(--white-soft); margin-bottom: 16px; line-height: 1.8; }
.about-text p { margin-bottom: 16px; }
.about-text strong { color: var(--gold); font-weight: 500; }
.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-muted);
    border-radius: var(--radius);
}
.value-item { display: flex; align-items: flex-start; gap: 12px; }
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.value-item span { font-size: 0.85rem; color: var(--white-dim); }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--black-border);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}
.stat-suffix { font-family: var(--font-display); font-size: clamp(1rem,1.5vw,1.2rem); color: var(--gold); margin-left: 2px; }
.stat-label { display: block; font-size: 0.8rem; color: var(--white-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(212,168,83,0.08), rgba(212,168,83,0.03));
    border-top: 1px solid var(--gold-muted);
    border-bottom: 1px solid var(--gold-muted);
}
.cta-banner-dark { background: var(--black-card); border-color: var(--black-border); }
.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-banner-text p { color: var(--white-dim); font-size: 0.95rem; }
.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--duration-fast);
}
.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,83,0.3);
    color: var(--black);
}

/* ===== PRESTATIONS (detailed layout) ===== */
.prestations { background: var(--black); }
.prestation-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.prestation-detail:last-child { margin-bottom: 0; }
.prestation-detail.reverse .prestation-detail-image { order: 2; }
.prestation-detail.reverse .prestation-detail-content { order: 1; }
.prestation-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.prestation-detail-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.prestation-detail-image:hover img { transform: scale(1.05); }
.prestation-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-muted);
    line-height: 1;
    margin-bottom: 16px;
}
.prestation-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.prestation-detail-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 20px;
}
.prestation-detail-content p { margin-bottom: 14px; }
.prestation-detail-content strong { color: var(--gold); font-weight: 500; }
.prestation-features {
    list-style: none;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prestation-features li {
    padding-left: 24px;
    position: relative;
    font-size: 0.92rem;
    color: var(--white-muted);
}
.prestation-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 3px;
}
.prestation-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: all var(--duration-fast);
}
.prestation-detail-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ===== WHY CHOOSE ===== */
.why-choose { background: var(--black-light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    padding: 32px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
    text-align: center;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-muted);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.why-card-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.6; }

/* ===== EVENTS ===== */
.events { background: var(--black); }
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.event-card { position: relative; }
.event-image {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.event-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity var(--duration);
}
.event-image:hover .event-overlay { opacity: 1; }
.event-image:hover img { transform: scale(1.08); }
.event-overlay-content { transform: translateY(20px); transition: transform var(--duration) var(--ease-out); }
.event-image:hover .event-overlay-content { transform: translateY(0); }
.event-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.event-text { font-size: 0.88rem; color: var(--white-muted); line-height: 1.6; margin-bottom: 16px; }
.event-link {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all var(--duration-fast);
}
.event-link:hover { background: var(--gold); color: var(--black); }
.event-card-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); text-align: center; margin-top: 16px; }
.event-card-desc { font-size: 0.85rem; color: var(--white-dim); text-align: center; margin-top: 6px; }

/* ===== GALLERY ===== */
.gallery { background: var(--black-light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 12px;
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-grid .gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(13) { grid-column: span 2; }
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-fast);
    color: var(--gold);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: var(--white);
    padding: 12px;
    transition: all var(--duration-fast);
    z-index: 10;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ===== REVIEWS SECTION ===== */
.reviews { background: var(--black); }

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 64px);
    margin-top: 32px;
    padding: 32px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}
.reviews-score { text-align: center; }
.reviews-score-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}
.reviews-score-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; display: block; margin: 8px 0 4px; }
.reviews-score-count { font-size: 0.85rem; color: var(--white-dim); }
.reviews-bars { flex: 1; min-width: 250px; max-width: 400px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 0.8rem; color: var(--white-dim); }
.review-bar { flex: 1; height: 8px; background: var(--black-border); border-radius: 4px; overflow: hidden; }
.review-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 4px; transition: width 0.6s var(--ease-out); }

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.review-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--duration-fast);
}
.review-card:hover { border-color: var(--gold-muted); }
.review-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-card-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.review-card-name { font-weight: 600; color: var(--white); font-size: 0.92rem; }
.review-card-event { font-size: 0.75rem; color: var(--gold); margin-top: 2px; }
.review-card-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.review-card-text { font-size: 0.9rem; color: var(--white-muted); line-height: 1.6; }
.review-card-date { font-size: 0.75rem; color: var(--gray); margin-top: 12px; }
.review-card.new-review { border-color: var(--gold-muted); animation: reviewPulse 2s var(--ease-out); }
@keyframes reviewPulse {
    0% { box-shadow: 0 0 0 0 rgba(212,168,83,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212,168,83,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,168,83,0); }
}

.reviews-load-more { text-align: center; margin-bottom: 48px; }
.reviews-load-btn {
    padding: 12px 32px;
    border: 1px solid var(--black-border);
    color: var(--white-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-fast);
}
.reviews-load-btn:hover { border-color: var(--gold); color: var(--gold); }
.reviews-load-btn:disabled { opacity: 0.4; cursor: default; }

.review-form-wrapper {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
}
.review-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.review-form-subtitle { font-size: 0.9rem; color: var(--white-dim); margin-bottom: 28px; }
.review-star-input { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.review-star-label { font-size: 0.9rem; color: var(--white-muted); }
.star-rating-input { display: flex; gap: 4px; }
.star-input {
    font-size: 1.6rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}
.star-input.active { color: var(--gold); }
.star-input:hover { transform: scale(1.2); }

/* ===== CONTACT ===== */
.contact { background: var(--black-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--white-muted); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--duration-fast);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option { background: var(--black-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all var(--duration-fast);
    width: fit-content;
    border: none;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212,168,83,0.3);
}
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }
.contact-info-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px;
    background: var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-info-label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 2px; }
.contact-info-value { color: var(--white); font-weight: 500; font-size: 0.95rem; text-decoration: none; }
a.contact-info-value:hover { color: var(--gold); }
.contact-quote {
    margin-top: 24px;
    padding: 28px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 3px solid var(--gold);
}
.contact-quote p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--white-soft);
    line-height: 1.7;
    margin-bottom: 12px;
}
.contact-quote span { font-size: 0.85rem; color: var(--gold); font-weight: 500; }
.contact-reassurance {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reassurance-item { font-size: 0.85rem; color: var(--white-muted); }

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.footer-desc { font-size: 0.85rem; color: var(--white-dim); line-height: 1.6; }
.footer-heading { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--white-dim); text-decoration: none; transition: color var(--duration-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span { font-size: 0.85rem; color: var(--white-dim); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--black-border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-back-top {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    transition: all var(--duration-fast);
}
.footer-back-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.slide-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.slide-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-in.visible, .slide-left.visible, .slide-right.visible { opacity: 1; transform: translate(0); }

.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.4s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.5s; }
.events-grid .event-card:nth-child(2) { transition-delay: 0.15s; }
.events-grid .event-card:nth-child(3) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(n+2) { transition-delay: calc((var(--n, 0)) * 0.05s); }
.gallery-grid .gallery-item:nth-child(2) { --n: 1; }
.gallery-grid .gallery-item:nth-child(3) { --n: 2; }
.gallery-grid .gallery-item:nth-child(4) { --n: 3; }
.gallery-grid .gallery-item:nth-child(5) { --n: 4; }
.gallery-grid .gallery-item:nth-child(6) { --n: 5; }
.gallery-grid .gallery-item:nth-child(7) { --n: 6; }
.gallery-grid .gallery-item:nth-child(8) { --n: 7; }
.gallery-grid .gallery-item:nth-child(9) { --n: 8; }
.gallery-grid .gallery-item:nth-child(10) { --n: 9; }
.gallery-grid .gallery-item:nth-child(11) { --n: 10; }
.gallery-grid .gallery-item:nth-child(12) { --n: 11; }
.gallery-grid .gallery-item:nth-child(13) { --n: 12; }
.gallery-grid .gallery-item:nth-child(14) { --n: 13; }
.gallery-grid .gallery-item:nth-child(15) { --n: 14; }
.gallery-grid .gallery-item:nth-child(16) { --n: 15; }
.gallery-grid .gallery-item:nth-child(17) { --n: 16; }
.gallery-grid .gallery-item:nth-child(18) { --n: 17; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .prestation-detail { grid-template-columns: 1fr; gap: 32px; }
    .prestation-detail.reverse .prestation-detail-image,
    .prestation-detail.reverse .prestation-detail-content { order: unset; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-grid .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
    .gallery-grid .gallery-item:nth-child(13) { grid-column: span 1; }
    .reviews-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(5,5,5,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--duration) var(--ease-out);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-link { font-size: 1.1rem; padding: 16px 0; width: 100%; border-bottom: 1px solid var(--black-border); }
    .nav-link::after { display: none; }
    .nav-link-cta { margin-top: 20px; text-align: center; display: block; width: 100%; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .intro-separator { display: none; }
    .intro-banner-content { gap: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-banner-content { flex-direction: column; text-align: center; }
    .hero-trust { flex-direction: column; gap: 6px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-grid .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
    .gallery-grid .gallery-item:nth-child(13) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .hero-scroll { bottom: 24px; }
    .reviews-summary { flex-direction: column; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .gallery-grid .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
    .about-experience-badge { width: 100px; height: 100px; bottom: -10px; right: -10px; }
    .badge-number { font-size: 1.6rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
}
