/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #0a0a0a;
    --primary-light: #141414;
    --primary-medium: #1a1a1a;
    --secondary: #f5f0e0;
    --secondary-dark: #e8e0c8;
    --accent: #d4af37;
    --accent-light: #e6c84d;
    --accent-dark: #b8941e;
    --accent-glow: rgba(212, 175, 55, 0.15);
    --accent-glow-strong: rgba(212, 175, 55, 0.3);
    --white: #ffffff;
    --cream: #faf8f0;
    --text-primary: #f5f0e0;
    --text-secondary: rgba(245, 240, 224, 0.7);
    --text-dark: #1a1a1a;
    --text-dark-secondary: #4a4a3a;
    --error: #c0392b;
    --success: #27ae60;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Josefin Sans', 'Trebuchet MS', sans-serif;

    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 24px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;
    --transition-decorative: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-strong: 0 0 40px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-diamond {
    margin-bottom: 24px;
}

.diamond-shape {
    width: 40px;
    height: 40px;
    background: var(--accent);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: preloaderPulse 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
    50% { transform: rotate(45deg) scale(1.2); opacity: 0.7; }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 20px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-light);
    border-top: 1px solid var(--accent);
    z-index: 9999;
    padding: 20px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    animation: cookieSlideUp 0.5s ease forwards;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text h3 {
    font-family: var(--font-display);
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.cookie-consent-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.cookie-consent-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    position: relative;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--primary);
    box-shadow: var(--shadow-gold-strong);
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-gold .btn-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--primary);
    border-style: solid;
    opacity: 0.3;
}

.btn-gold .btn-corner-tl { top: 3px; left: 3px; border-width: 1px 0 0 1px; }
.btn-gold .btn-corner-tr { top: 3px; right: 3px; border-width: 1px 1px 0 0; }
.btn-gold .btn-corner-bl { bottom: 3px; left: 3px; border-width: 0 0 1px 1px; }
.btn-gold .btn-corner-br { bottom: 3px; right: 3px; border-width: 0 1px 1px 0; }

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 44px;
    font-size: 0.95rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-deco-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary);
}

.logo-diamond {
    width: 16px;
    height: 16px;
    background: var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.logo-accent {
    color: var(--accent);
    font-weight: 400;
    font-size: 0.85em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 8px 14px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link-cta {
    color: var(--primary);
    background: var(--accent);
    padding: 8px 20px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    color: var(--primary);
    background: var(--accent-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        );
    z-index: 1;
}

.hero-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(212, 175, 55, 0.04) 5deg,
        transparent 10deg,
        transparent 20deg,
        rgba(212, 175, 55, 0.04) 25deg,
        transparent 30deg,
        transparent 40deg,
        rgba(212, 175, 55, 0.04) 45deg,
        transparent 50deg,
        transparent 60deg,
        rgba(212, 175, 55, 0.04) 65deg,
        transparent 70deg,
        transparent 80deg,
        rgba(212, 175, 55, 0.04) 85deg,
        transparent 90deg,
        transparent 100deg,
        rgba(212, 175, 55, 0.04) 105deg,
        transparent 110deg,
        transparent 120deg,
        rgba(212, 175, 55, 0.04) 125deg,
        transparent 130deg,
        transparent 140deg,
        rgba(212, 175, 55, 0.04) 145deg,
        transparent 150deg,
        transparent 160deg,
        rgba(212, 175, 55, 0.04) 165deg,
        transparent 170deg,
        transparent 180deg,
        rgba(212, 175, 55, 0.04) 185deg,
        transparent 190deg,
        transparent 200deg,
        rgba(212, 175, 55, 0.04) 205deg,
        transparent 210deg,
        transparent 220deg,
        rgba(212, 175, 55, 0.04) 225deg,
        transparent 230deg,
        transparent 240deg,
        rgba(212, 175, 55, 0.04) 245deg,
        transparent 250deg,
        transparent 260deg,
        rgba(212, 175, 55, 0.04) 265deg,
        transparent 270deg,
        transparent 280deg,
        rgba(212, 175, 55, 0.04) 285deg,
        transparent 290deg,
        transparent 300deg,
        rgba(212, 175, 55, 0.04) 305deg,
        transparent 310deg,
        transparent 320deg,
        rgba(212, 175, 55, 0.04) 325deg,
        transparent 330deg,
        transparent 340deg,
        rgba(212, 175, 55, 0.04) 345deg,
        transparent 350deg,
        transparent 360deg
    );
    border-radius: 50%;
    z-index: 1;
    animation: sunburstRotate 120s linear infinite;
}

@keyframes sunburstRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.9));
    z-index: 2;
}

.hero-deco-left,
.hero-deco-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-deco-left { left: 40px; }
.hero-deco-right { right: 40px; }

.deco-vertical-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.deco-diamond-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.deco-diamond-sm {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--accent);
    font-weight: 400;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0;
}

.title-line-1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--secondary);
    letter-spacing: 0.15em;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.title-line-2 {
    font-size: clamp(3rem, 9vw, 7rem);
    color: var(--accent);
    letter-spacing: 0.2em;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.title-line-3 {
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    color: var(--secondary);
    letter-spacing: 0.25em;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.divider-wing {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.divider-wing:last-child {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.divider-diamond {
    width: 10px;
    height: 10px;
    background: var(--accent);
    transform: rotate(45deg);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

.hero-game-icon {
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.7s forwards;
}

.icon-frame {
    position: relative;
    display: inline-block;
    padding: 4px;
}

.icon-frame img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: block;
}

.icon-frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--accent);
    border-style: solid;
}

.icon-frame-tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.icon-frame-tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; }
.icon-frame-bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; }
.icon-frame-br { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.4; height: 25px; }
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    opacity: 0.6;
}

.hero-chevrons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4px;
    z-index: 4;
    padding-bottom: 8px;
}

.chevron {
    width: 20px;
    height: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

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

/* ============================================
   SECTION HEADERS & DECORATIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0;
}

.ornament-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
}

.section-deco-top,
.section-deco-bottom {
    display: flex;
    justify-content: center;
}

.deco-zigzag {
    width: 200px;
    height: 12px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        var(--accent) 8px,
        var(--accent) 9px,
        transparent 9px,
        transparent 17px
    );
    opacity: 0.3;
    clip-path: polygon(0% 100%, 5% 0%, 10% 100%, 15% 0%, 20% 100%, 25% 0%, 30% 100%, 35% 0%, 40% 100%, 45% 0%, 50% 100%, 55% 0%, 60% 100%, 65% 0%, 70% 100%, 75% 0%, 80% 100%, 85% 0%, 90% 100%, 95% 0%, 100% 100%);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    position: relative;
    padding-left: 24px;
    margin-bottom: 32px;
}

.text-block-deco {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.about-text-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.about-text-block p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.8;
}

.about-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.badge-icon-frame {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.about-badge span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.about-image {
    position: relative;
}

.image-deco-frame {
    position: relative;
    padding: 12px;
}

.image-deco-frame img {
    width: 100%;
    display: block;
}

.frame-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--accent);
    border-style: solid;
    z-index: 2;
}

.frame-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.frame-line {
    position: absolute;
    background: rgba(212, 175, 55, 0.2);
}

.frame-line-top { top: 0; left: 24px; right: 24px; height: 1px; }
.frame-line-bottom { bottom: 0; left: 24px; right: 24px; height: 1px; }
.frame-line-left { left: 0; top: 24px; bottom: 24px; width: 1px; }
.frame-line-right { right: 0; top: 24px; bottom: 24px; width: 1px; }

.image-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.caption-line {
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}

.caption-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary-light);
}

.gallery-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(212, 175, 55, 0.02) 40px,
        rgba(212, 175, 55, 0.02) 41px
    );
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item {
    cursor: pointer;
    transition: transform var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item-large {
    grid-column: 1 / -1;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
}

.gallery-frame img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-frame img {
    transform: scale(1.05);
}

.gallery-frame-deco {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--accent);
    border-style: solid;
    z-index: 2;
    transition: all var(--transition-base);
}

.gallery-frame-deco-tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.gallery-frame-deco-tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.gallery-frame-deco-bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.gallery-frame-deco-br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.gallery-item:hover .gallery-frame-deco-tl { top: 4px; left: 4px; }
.gallery-item:hover .gallery-frame-deco-tr { top: 4px; right: 4px; }
.gallery-item:hover .gallery-frame-deco-bl { bottom: 4px; left: 4px; }
.gallery-item:hover .gallery-frame-deco-br { bottom: 4px; right: 4px; }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    color: var(--accent);
}

.gallery-overlay-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
}

.gallery-caption {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 10px;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--accent);
    padding: 12px;
    transition: all var(--transition-fast);
    z-index: 2;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-light);
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    padding: 40px 28px;
    background: var(--primary-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.feature-card.revealed:hover {
    transform: translateY(-4px);
}

.feature-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-card-border {
    opacity: 1;
}

.feature-card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--accent);
    border-style: solid;
    opacity: 0.3;
}

.feature-card-corner-tl { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.feature-card-corner-tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.feature-card-corner-bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }
.feature-card-corner-br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
    color: var(--accent);
    transition: all var(--transition-base);
}

.feature-icon-frame svg {
    transform: rotate(-45deg);
}

.feature-card:hover .feature-icon-frame {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary-light);
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(212, 175, 55, 0.02) 40px,
        rgba(212, 175, 55, 0.02) 41px
    );
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.5);
}

.stat-deco-top,
.stat-deco-bottom {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 16px;
    opacity: 0.5;
}

.stat-deco-bottom {
    margin: 16px auto 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Social Proof / Testimonials */
.social-proof {
    margin-bottom: 40px;
}

.social-proof-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.proof-diamond {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
}

.social-proof-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 180px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 8px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-line {
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent);
    background: transparent;
    transform: rotate(45deg);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--accent);
}

/* Live Activity */
.live-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
    max-width: 400px;
    margin: 0 auto;
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: #27ae60;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
}

.live-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.live-text strong {
    color: var(--accent);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 12px;
    transition: border-color var(--transition-base);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--primary-light);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-align: left;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.faq-question:hover {
    background: var(--primary-medium);
}

.faq-q-icon {
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
}

.faq-q-text {
    flex: 1;
}

.faq-toggle {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.toggle-line {
    position: absolute;
    background: var(--accent);
    transition: all var(--transition-base);
}

.toggle-h {
    width: 16px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.toggle-v {
    width: 1px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .toggle-v {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary-light);
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    position: relative;
    padding: 36px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.5);
}

.info-card-deco {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.contact-info-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.detail-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.detail-text a,
.detail-text span {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.detail-text a:hover {
    color: var(--accent);
}

/* Contact Form */
.form-deco-frame {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.5);
}

.form-frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--accent);
    border-style: solid;
}

.form-frame-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.form-frame-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.form-frame-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.form-frame-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(245, 240, 224, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.input-wrapper input::placeholder {
    color: rgba(245, 240, 224, 0.3);
}

.input-wrapper input:focus {
    border-color: var(--accent);
    background: rgba(245, 240, 224, 0.08);
    box-shadow: 0 0 0 1px var(--accent);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.input-wrapper input:focus + .input-line {
    width: 100%;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 4px;
    min-height: 1.2em;
    font-family: var(--font-sans);
}

.form-checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-custom svg {
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom svg {
    opacity: 1;
}

.checkbox-text a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Success / Error Messages */
.form-success,
.form-error-msg {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--success);
    margin-bottom: 16px;
}

.error-icon {
    color: var(--error);
    margin-bottom: 16px;
}

.form-success h3,
.form-error-msg h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.form-success p,
.form-error-msg p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.trust-icon {
    color: var(--accent);
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--primary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 20px;
}

.footer-deco-top {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-links span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-links svg {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-bottom: 24px;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(245, 240, 224, 0.4);
    margin-bottom: 4px;
}

.footer-age {
    font-size: 0.8rem;
    color: rgba(245, 240, 224, 0.4);
}

.footer-deco-bottom {
    padding: 12px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.deco-chevrons-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.chevron-sm {
    width: 12px;
    height: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all var(--transition-base);
    border: none;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-gold-strong);
    transform: translateY(-3px);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 100vh;
}

.legal-hero {
    padding: 60px 0;
    text-align: center;
    background: var(--primary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.legal-hero p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-content {
    background: var(--cream);
    color: var(--text-dark);
    padding: 60px 0;
}

.legal-content .container {
    max-width: 880px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-dark);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 12px 24px;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-deco-left,
    .hero-deco-right {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 36px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
    }

    .form-deco-frame {
        padding: 24px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-badges {
        flex-direction: column;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   SCROLL REVEAL UTILITY
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-consent,
    .preloader,
    .back-to-top,
    .hero-bg-pattern,
    .hero-sunburst,
    .hero-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
