/* ==========================================================================
   MOMENT STUDIO - PARIS
   Design System: Editorial Dark Mode & Gold Accent
   ========================================================================== */

/* ─── VARIABLES & DESIGN TOKENS ─── */
:root {
    --bg-dark: #070707;
    --bg-card: #121212;
    --bg-input: #171717;
    
    --primary: #c5a059;       /* Or Champagne / Laiton chaud */
    --primary-light: #d8b87a;
    --primary-dark: #a5803e;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-gray: #999999;
    --text-muted: #555555;
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(197, 160, 89, 0.15);
    --border-gold-active: rgba(197, 160, 89, 0.45);
    
    --gradient-gold: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(180deg, #121212 0%, #0c0c0c 100%);
    --gradient-glow: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.9);
    --shadow-gold: 0 0 20px rgba(197, 160, 89, 0.2);
    
    --radius-sm: 2px; /* Coins très peu arrondis pour style brutaliste/éditorial couture */
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-round: 50%;
    
    --transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease;
    
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* ─── RESET & BASE STYLES ─── */
*, *::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-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

::selection {
    background: var(--primary);
    color: #000;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 300;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 1px;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 .gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    font-family: var(--font-title);
    font-style: italic;
    letter-spacing: 0.5px;
}

.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(80px, 12vw, 130px) 0;
    position: relative;
}

/* Slanted line cuts or borders for editorial layout */
.section-bordered::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 1px;
    background: var(--primary);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

/* ─── HEADER & NAVIGATION ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(7, 7, 7, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}
header.scrolled {
    padding: 14px 0;
    background: rgba(7, 7, 7, 0.97);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    padding: 6px 0;
}
.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 8px 22px !important;
    font-weight: 500 !important;
    transition: var(--transition) !important;
}
.nav-cta:hover {
    background: var(--primary);
    color: #000 !important;
    box-shadow: var(--shadow-gold) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--text-white);
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 50%),
                var(--bg-dark);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--text-white);
    font-size: clamp(3.2rem, 7vw, 5.2rem);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero h1 span {
    display: block;
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hero h1 .highlight {
    font-style: italic;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Vignette Layout */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-visual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition);
}
.hero-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.15) 0%, rgba(7, 7, 7, 0.75) 100%);
    z-index: 2;
    transition: var(--transition);
}
.hero-visual:hover .hero-visual-img {
    transform: scale(1.03);
}
.hero-visual-inner {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 3;
    background: rgba(7, 7, 7, 0.2);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}
.hero-visual-decor {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
    margin-bottom: 24px;
}
.hero-visual-inner h3 {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 6px;
}
.hero-visual-inner p {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
}
.hero-visual-location {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 4px 12px;
}

/* ─── PORTFOLIO FILTRABLE ─── */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}
.portfolio-filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.portfolio-filter-btn:hover, .portfolio-filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(197, 160, 89, 0.03);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.portfolio-item {
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.portfolio-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: var(--transition);
}
.portfolio-item::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.1) 30%, rgba(7, 7, 7, 0.9) 100%);
    opacity: 0.6;
    z-index: 1;
    transition: var(--transition);
}
.portfolio-item-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item-content h4 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 2px;
    font-weight: 400;
}
.portfolio-item-content p {
    font-size: 0.72rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.portfolio-item:hover {
    transform: scale(1.02);
    border-color: var(--border-gold-active);
    z-index: 2;
    box-shadow: var(--shadow-md), var(--shadow-gold);
}
.portfolio-item:hover::before {
    opacity: 0.85;
}
.portfolio-item:hover .portfolio-item-img {
    transform: scale(1.08);
}
.portfolio-item:hover .portfolio-item-content {
    transform: translateY(0);
    opacity: 1;
}
.portfolio-item.hidden {
    display: none !important;
}

/* ─── SERVICES GRID ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold-active);
    box-shadow: var(--shadow-sm);
}
.service-icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.service-icon-svg {
    stroke: var(--primary);
    transition: var(--transition);
    filter: drop-shadow(0 2px 5px rgba(197, 160, 89, 0.3));
}
.service-card:hover .service-icon-svg {
    transform: translateY(-2px) scale(1.05);
    stroke: var(--primary-light);
    filter: drop-shadow(0 4px 12px rgba(197, 160, 89, 0.6));
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}
.service-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── SIMULATEUR DE DEVIS ÉVÉNEMENTIEL ─── */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.calculator-inputs {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.calc-label {
    font-family: var(--font-title);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: var(--text-white);
    margin-bottom: 12px;
    display: block;
}

/* Core Services Toggle list */
.services-toggle-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.service-toggle-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}
.service-toggle-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.service-toggle-item.active {
    border-color: var(--primary);
    background: rgba(197, 160, 89, 0.02);
}
.toggle-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.toggle-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--text-gray);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.service-toggle-item.active .toggle-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}
.toggle-checkbox::after {
    content: '✓';
    color: #000;
    font-size: 0.65rem;
    font-weight: bold;
    opacity: 0;
}
.service-toggle-item.active .toggle-checkbox::after {
    opacity: 1;
}
.toggle-details h5 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
}
.toggle-details p {
    font-size: 0.75rem;
    color: var(--text-gray);
}
.toggle-price {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--primary);
}

/* Guest count Range slider */
.guest-slider-wrapper {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 30px;
}
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.slider-title h5 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
}
.slider-title p {
    font-size: 0.75rem;
    color: var(--text-gray);
}
.guests-badge {
    background: var(--primary);
    color: #000;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}
.slider-control {
    display: flex;
    align-items: center;
    gap: 16px;
}
.range-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--bg-card);
    outline: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-fast);
}
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Calculator Summary Box */
.calc-summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 110px;
}
.calc-summary-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}
.summary-line-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}
.summary-line-item.core {
    color: var(--text-white);
    font-weight: 500;
}
.summary-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}
.total-display-block {
    text-align: center;
    margin: 30px 0;
}
.total-price-val {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--primary);
}
.total-price-val span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-gray);
}
.calc-submit-btn {
    width: 100%;
}

/* ─── LIGHTBOX DRAWER (PROJECT DETAILS) ─── */
.lightbox-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; max-width: 500px;
    height: 100vh;
    background: rgba(18, 18, 18, 0.98);
    border-left: 1px solid var(--border-gold);
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
    padding: 50px 40px;
}
.drawer-image-container {
    width: 100%;
    aspect-ratio: 16/10;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-dark);
}
.drawer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.85);
}
.drawer-image-container:hover .drawer-img {
    transform: scale(1.03);
    filter: brightness(1);
}
.contact-icon-svg {
    stroke: var(--primary);
    transition: var(--transition-fast);
    display: block;
}
.contact-detail-item:hover .contact-icon-svg {
    stroke: var(--primary-light);
    transform: scale(1.05);
}
.lightbox-drawer.active {
    right: 0;
}
.drawer-close {
    position: absolute;
    top: 20px; left: 30px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}
.drawer-close:hover {
    color: var(--primary);
}
.drawer-header {
    margin-bottom: 30px;
    margin-top: 20px;
}
.drawer-header span {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.drawer-header h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-top: 4px;
}
.drawer-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 30px;
}
.meta-item h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.meta-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}
.drawer-desc h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
}
.drawer-desc p {
    font-size: 0.92rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}
.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.drawer-book-btn {
    width: 100%;
}

/* Blur overlay behind drawer */
.drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ─── FAQ INTERACTIVE ACCORDIONS ─── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.faq-item.active {
    border-color: var(--border-gold-active);
    box-shadow: var(--shadow-sm);
}
.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
}
.faq-trigger h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}
.faq-icon-box {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon-box::before, .faq-icon-box::after {
    content: '';
    position: absolute;
    background: var(--text-gray);
    transition: var(--transition-fast);
}
.faq-icon-box::before {
    width: 12px; height: 1px;
}
.faq-icon-box::after {
    width: 1px; height: 12px;
}
.faq-item.active .faq-icon-box::before {
    background: var(--primary);
}
.faq-item.active .faq-icon-box::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-content {
    padding: 0 30px 24px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── CONTACT & RESERVATION ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
}
.contact-info-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-icon-wrapper {
    width: 38px;
    height: 38px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
}
.contact-detail-text p {
    font-size: 0.88rem;
    color: var(--text-gray);
    font-weight: 300;
}

.consultation-badge {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-top: 30px;
    border-left: 2px solid var(--primary);
}
.consultation-badge h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 6px;
}
.consultation-badge p {
    font-size: 0.82rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Contact Form Right Panel */
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
}
.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 8px;
    display: block;
}
.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    background: var(--bg-card);
}
textarea.form-input {
    min-height: 125px;
    resize: vertical;
}
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
select.form-input option {
    background: var(--bg-card);
    color: var(--text-white);
}

/* Info badge prefill */
.form-prefill-badge {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--primary);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--primary-light);
    animation: fadeIn 0.3s ease;
}
.form-prefill-badge-close {
    margin-left: auto;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-gray);
}

/* ─── FOOTER ─── */
footer {
    background: #040404;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}
.footer-bottom strong {
    color: var(--primary);
    font-weight: 400;
}
.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-bottom a:hover {
    color: var(--text-white);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero h1 {
        margin: 0 auto 24px;
    }
    .hero p {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .calc-summary-box {
        position: static;
        top: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(7, 7, 7, 0.99);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .hero {
        padding-top: 100px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .calculator-inputs, .contact-info-panel, .contact-form-panel {
        padding: 24px 16px;
    }
    .lightbox-drawer {
        padding: 40px 20px;
    }
}
