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

:root {
    --color-blue: #003366;
    --color-blue-dark: #00264d;
    --color-blue-deeper: #001a33;
    --color-blue-light: #004080;
    --color-silver: #f0f2f5;
    --color-silver-dark: #e0e3e8;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6b6b;
    --color-gold: #c9a84c;
    --color-gold-hover: #d4b85c;
    --color-gold-light: rgba(201, 168, 76, 0.15);
    --color-border: rgba(0, 51, 102, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-silver);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover), var(--color-gold));
    background-size: 200% 100%;
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.5), 0 0 20px rgba(201, 168, 76, 0.2);
    animation: scrollBarShimmer 2s linear infinite;
}

@keyframes scrollBarShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Section Dividers - Wave Line */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    color: var(--color-gold);
}

.wave-divider {
    width: 200px;
    height: 20px;
    animation: wavePulse 4s ease-in-out infinite;
}

@keyframes wavePulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(0, 38, 77, 0.95) 0%, rgba(0, 26, 51, 0.85) 100%);
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    filter: none;
    height: 36px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
}

.navbar.scrolled .logo-text {
    color: var(--color-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-blue);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-cta {
    background: var(--color-gold) !important;
    color: var(--color-blue-dark) !important;
    padding: 10px 24px;
    border-radius: 3px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-gold-hover) !important;
    color: var(--color-blue-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--color-text);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.75) 0%, rgba(0, 38, 77, 0.6) 40%, rgba(0, 51, 102, 0.7) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: flickerFloat 6s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.6), 0 0 12px rgba(201, 168, 76, 0.3);
}

.particle:nth-child(1) { left: 8%; top: 20%; width: 3px; height: 3px; animation-delay: 0s; animation-duration: 5s; }
.particle:nth-child(2) { left: 22%; top: 55%; width: 2px; height: 2px; animation-delay: 0.8s; animation-duration: 6.5s; }
.particle:nth-child(3) { left: 40%; top: 15%; width: 4px; height: 4px; animation-delay: 1.6s; animation-duration: 5.5s; }
.particle:nth-child(4) { left: 55%; top: 45%; width: 2px; height: 2px; animation-delay: 2.4s; animation-duration: 7s; }
.particle:nth-child(5) { left: 72%; top: 25%; width: 3px; height: 3px; animation-delay: 0.4s; animation-duration: 6s; }
.particle:nth-child(6) { left: 85%; top: 60%; width: 2px; height: 2px; animation-delay: 3.2s; animation-duration: 5.8s; }
.particle:nth-child(7) { left: 15%; top: 75%; width: 3px; height: 3px; animation-delay: 1.2s; animation-duration: 6.2s; }
.particle:nth-child(8) { left: 35%; top: 85%; width: 2px; height: 2px; animation-delay: 2s; animation-duration: 7.2s; }
.particle:nth-child(9) { left: 60%; top: 70%; width: 4px; height: 4px; animation-delay: 0.6s; animation-duration: 5.3s; }
.particle:nth-child(10) { left: 78%; top: 80%; width: 2px; height: 2px; animation-delay: 3.8s; animation-duration: 6.8s; }
.particle:nth-child(11) { left: 48%; top: 35%; width: 3px; height: 3px; animation-delay: 1.4s; animation-duration: 5.7s; }
.particle:nth-child(12) { left: 92%; top: 40%; width: 2px; height: 2px; animation-delay: 2.8s; animation-duration: 6.4s; }
.particle:nth-child(13) { left: 5%; top: 50%; width: 3px; height: 3px; animation-delay: 0.2s; animation-duration: 7.5s; }
.particle:nth-child(14) { left: 30%; top: 30%; width: 2px; height: 2px; animation-delay: 4.2s; animation-duration: 5.9s; }
.particle:nth-child(15) { left: 68%; top: 10%; width: 3px; height: 3px; animation-delay: 1.8s; animation-duration: 6.6s; }
.particle:nth-child(16) { left: 50%; top: 90%; width: 2px; height: 2px; animation-delay: 3.5s; animation-duration: 7.8s; }

@keyframes flickerFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.7; }
    15% { opacity: 0.2; }
    20% { opacity: 0.8; }
    25% { opacity: 0.3; }
    30% { opacity: 0.6; }
    50% { opacity: 0.5; transform: translateY(-40px) scale(0.9); }
    70% { opacity: 0.7; }
    75% { opacity: 0.2; }
    80% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-80px) scale(1); }
}

.hero-content {
    text-align: center;
    max-width: 850px;
    padding: 0 24px;
    position: relative;
    z-index: 4;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 24px;
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 28px;
    color: var(--color-white);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.85;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-blue-dark);
}

.btn-primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.78rem;
}

/* Section Particles */
.section-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle-sm {
    position: absolute;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: flickerFloatSm 5s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(201, 168, 76, 0.4);
}

.particle-sm:nth-child(1) { left: 12%; top: 30%; width: 2px; height: 2px; animation-delay: 0s; }
.particle-sm:nth-child(2) { left: 45%; top: 60%; width: 3px; height: 3px; animation-delay: 1.5s; }
.particle-sm:nth-child(3) { left: 78%; top: 25%; width: 2px; height: 2px; animation-delay: 3s; }
.particle-sm:nth-child(4) { left: 30%; top: 80%; width: 2px; height: 2px; animation-delay: 0.8s; }
.particle-sm:nth-child(5) { left: 65%; top: 70%; width: 3px; height: 3px; animation-delay: 2.2s; }
.particle-sm:nth-child(6) { left: 90%; top: 50%; width: 2px; height: 2px; animation-delay: 4s; }

@keyframes flickerFloatSm {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.5; }
    15% { opacity: 0.15; }
    20% { opacity: 0.6; }
    25% { opacity: 0.2; }
    30% { opacity: 0.45; }
    50% { opacity: 0.35; transform: translateY(-25px) scale(0.8); }
    70% { opacity: 0.5; }
    75% { opacity: 0.15; }
    80% { opacity: 0.4; }
    90% { opacity: 0.25; }
    100% { opacity: 0; transform: translateY(-50px) scale(1); }
}

/* Stats Section - Horizontal Bar */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--color-blue-deeper) 0%, var(--color-blue-dark) 50%, var(--color-blue) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 T60 30' stroke='%23c9a84c' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
    position: relative;
}

.section-subtitle {
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-text);
    line-height: 1.15;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 18px auto 0;
    animation: goldLinePulse 3s ease-in-out infinite;
}

@keyframes goldLinePulse {
    0%, 100% { box-shadow: 0 0 4px rgba(201, 168, 76, 0.2); width: 50px; }
    50% { box-shadow: 0 0 15px rgba(201, 168, 76, 0.5), 0 0 30px rgba(201, 168, 76, 0.2); width: 65px; }
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
}

/* Collections Section - Asymmetric Grid */
.collections-section {
    padding: 110px 0;
    background: var(--color-silver);
}

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

.collection-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.collection-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.collection-card .card-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, var(--color-silver) 0%, var(--color-silver-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.collection-card.featured .card-image {
    min-height: 580px;
}

.collection-card .card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 26, 51, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.collection-card:hover .card-image::before {
    opacity: 1;
}

.collection-card .card-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 0;
}

.collection-card:hover .card-image img {
    transform: scale(1.08) translateY(-8px);
}

.card-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .card-info-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-info-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 6px;
}

.card-info-overlay .ref {
    color: var(--color-gold);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.card-info-overlay .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.15s;
}

.collection-card:hover .card-info-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Video Viewer Section */
.viewer-section {
    padding: 110px 0;
    background: var(--color-white);
    position: relative;
}

.viewer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.video-player-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.video-player-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-blue), var(--color-gold));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.video-player-wrapper:hover::before {
    opacity: 0.5;
}

.video-player-wrapper video {
    width: 100%;
    max-height: 650px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-silver-dark);
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.video-title {
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.watch-selector {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 28px 4px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue) var(--color-silver-dark);
}

.watch-selector::-webkit-scrollbar {
    height: 5px;
}

.watch-selector::-webkit-scrollbar-track {
    background: var(--color-silver-dark);
    border-radius: 3px;
}

.watch-selector::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 3px;
}

.watch-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 12px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
    position: relative;
}

.watch-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.4s ease;
}

.watch-btn:hover::after {
    width: 60%;
}

.watch-btn img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
}

.watch-btn span:not(.coming-soon) {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    line-height: 1.3;
}

.watch-btn:hover {
    border-color: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.1);
}

.watch-btn.active {
    border-color: var(--color-blue);
    background: rgba(0, 51, 102, 0.04);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.12);
}

.watch-btn.active::after {
    width: 70%;
}

.watch-btn.active img {
    box-shadow: 0 0 15px rgba(0, 51, 102, 0.15);
}

.watch-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.watch-btn.disabled:hover {
    border-color: var(--color-border);
    transform: none;
    box-shadow: none;
}

.watch-btn.disabled::after {
    display: none;
}

.watch-btn.disabled img {
    filter: grayscale(0.6);
}

.coming-soon {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--color-white);
    font-size: 0.58rem !important;
    padding: 3px 7px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.4 !important;
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-blue);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.88rem;
    z-index: 5000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.25);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Heritage Section - Parallax Background */
.heritage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.heritage-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.heritage-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.heritage-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.88) 0%, rgba(0, 38, 77, 0.82) 100%);
}

.heritage-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.heritage-content .section-subtitle {
    color: var(--color-gold);
}

.heritage-content .section-title {
    color: var(--color-white);
}

.heritage-content .section-title::after {
    background: var(--color-gold);
}

.heritage-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 22px;
    font-weight: 300;
}

.heritage-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature svg {
    color: var(--color-gold);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

/* Features Section - 2x2 Alternating */
.features-section {
    padding: 110px 0;
    background: var(--color-silver);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(201, 168, 76, 0.03) 45%, rgba(201, 168, 76, 0.06) 50%, rgba(201, 168, 76, 0.03) 55%, transparent 70%);
    animation: goldShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes goldShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    border-radius: 10px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card.dark {
    background: linear-gradient(135deg, var(--color-blue-deeper) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card.light {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card.dark:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.feature-card.light:hover {
    border-color: rgba(201, 168, 76, 0.4);
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.08;
    line-height: 1;
}

.feature-card.dark .feature-number {
    color: var(--color-gold);
}

.feature-card.light .feature-number {
    color: var(--color-blue);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card.dark .feature-icon {
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.feature-card.light .feature-icon {
    color: var(--color-blue);
    background: rgba(0, 51, 102, 0.06);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-card.dark:hover .feature-icon {
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.2);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.feature-card.dark h3 {
    color: var(--color-white);
}

.feature-card.light h3 {
    color: var(--color-text);
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 300;
}

.feature-card.dark p {
    color: rgba(255, 255, 255, 0.65);
}

.feature-card.light p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-blue-deeper) 0%, var(--color-blue-dark) 50%, var(--color-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 T60 30' stroke='%23c9a84c' stroke-width='0.5' fill='none' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-quote {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -30px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 18px;
    color: var(--color-white);
    font-weight: 700;
}

.cta-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 18px auto 0;
    animation: goldLinePulse 3s ease-in-out infinite;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
}

.cta-section .btn-primary {
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

/* Footer */
.footer {
    padding: 70px 0 30px;
    background: var(--color-blue-deeper);
    color: var(--color-white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-hover), var(--color-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: var(--color-gold);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 0.92rem;
    font-weight: 300;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .collection-card.featured .card-image {
        min-height: 400px;
    }
    
    .heritage-content {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 28px 24px;
        gap: 22px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        color: var(--color-text) !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .collection-card.featured {
        grid-column: span 1;
    }
    
    .collection-card.featured .card-image {
        min-height: 350px;
    }
    
    .collection-card .card-image {
        min-height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .video-player-wrapper video {
        max-height: 300px;
    }
    
    .watch-btn {
        min-width: 100px;
    }
    
    .watch-btn img {
        width: 70px;
        height: 70px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-quote {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .card-info-overlay {
        padding: 20px 16px;
    }
    
    .card-info-overlay h3 {
        font-size: 1rem;
    }
}
