/* ==========================================================================
   Wedding Thalambras - Main Stylesheet
   ========================================================================== */

/* CSS Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #F2F2F2;
    background-color: #0B0B0D;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
    overflow-x: hidden;
}

/* Design System - Colors
   ========================================================================== */

:root {
    /* Colors */
    --color-background: #0B0B0D;
    --color-surface: #141417;
    --color-primary-text: #F2F2F2;
    --color-secondary-text: #C9CBD1;
    --color-accent-gold: #D4AF37;
    --color-accent-rose: #E6B7C8;
    --color-border: rgba(242, 242, 242, 0.1);
    --color-overlay: rgba(11, 11, 13, 0.8);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Great Vibes', cursive;
    --font-luxury: 'Cormorant Garamond', 'Crimson Text', Georgia, serif;
    --font-modern: 'Montserrat', 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Layout */
    --container-max-width: 1280px;
    --container-padding: 1.5rem;
}

/* Loading Screen
   ========================================================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0D 0%, #141417 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader__content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loader__logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.loader__logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    animation: logoGlow 2s ease-in-out infinite alternate;
    filter: brightness(1.1) contrast(1.2);
}

.loader__progress {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 140px;
    height: 140px;
}

.loader__circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader__circle-bg {
    opacity: 0.3;
}

.loader__circle-progress {
    stroke-dasharray: 339.292; /* 2 * π * 54 */
    stroke-dashoffset: 339.292;
    animation: progressAnimation 3s ease-in-out forwards;
}

.loader__text {
    color: var(--color-primary-text);
}

.loader__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-accent-gold);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loader__subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-secondary-text);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

@keyframes logoGlow {
    from {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
        background: rgba(255, 255, 255, 0.95);
    }
    to {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.7), 0 0 60px rgba(212, 175, 55, 0.4);
        background: rgba(255, 255, 255, 1);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 339.292;
    }
    to {
        stroke-dashoffset: 0;
    }
    --grid-gap: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary-text);
    margin-bottom: var(--spacing-md);
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    font-family: var(--font-luxury);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    font-family: var(--font-luxury);
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-modern);
    letter-spacing: 0.02em;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-modern);
}

/* Luxury Heading Variants */
.heading-luxury {
    font-family: var(--font-luxury);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
}

.heading-script {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--color-accent-gold);
    letter-spacing: 0.02em;
}

.heading-modern {
    font-family: var(--font-modern);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary-text);
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.5;
}

.text-small {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-script {
    font-family: var(--font-script);
    color: var(--color-accent-gold);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.text-luxury {
    font-family: var(--font-luxury);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.text-modern {
    font-family: var(--font-modern);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.text-elegant {
    font-family: var(--font-heading);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.01em;
}

.text-sophisticated {
    font-family: var(--font-luxury);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

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

.text-primary {
    color: var(--color-primary-text);
}

.text-secondary {
    color: var(--color-secondary-text);
}

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

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

/* Layout & Grid
   ========================================================================== */

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

.grid {
    display: grid;
    gap: var(--grid-gap);
}

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

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

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

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.flex-wrap {
    flex-wrap: wrap;
}

/* Sections
   ========================================================================== */

.section {
    padding: var(--spacing-3xl) 0;
}

.section--small {
    padding: var(--spacing-2xl) 0;
}

.section--large {
    padding: var(--spacing-4xl) 0;
}

/* Main content spacing to account for fixed header */
.main {
    padding-top: 80px; /* Account for fixed header height */
}

.page-header {
    padding-top: 120px; /* Extra padding for page headers */
    padding-bottom: var(--spacing-3xl);
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section__title {
    margin-bottom: var(--spacing-md);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--color-secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

.section__cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-modern);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.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;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: 0;
}

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

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background-color: var(--color-accent-gold);
    color: var(--color-background);
    border-color: var(--color-accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--color-accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--color-accent-gold);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary-text);
    border-color: var(--color-primary-text);
    box-shadow: 0 4px 15px rgba(242, 242, 242, 0.1);
}

.btn--secondary:hover {
    background-color: var(--color-primary-text);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 242, 242, 0.2);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn--outline:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Luxury Button Variants */
.btn--luxury {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #B8860B 100%);
    color: var(--color-background);
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    font-family: var(--font-luxury);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.btn--luxury:hover {
    background: linear-gradient(135deg, #B8860B 0%, var(--color-accent-gold) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.btn--elegant {
    background: rgba(242, 242, 242, 0.05);
    color: var(--color-primary-text);
    border: 1px solid rgba(242, 242, 242, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-family: var(--font-luxury);
    font-style: italic;
    letter-spacing: 0.05em;
}

.btn--elegant:hover {
    background: rgba(242, 242, 242, 0.1);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn--small {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

/* Links
   ========================================================================== */

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

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

.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: width var(--transition-normal);
}

.link-underline:hover::after {
    width: 100%;
}

/* Images
   ========================================================================== */

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

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Logo
   ========================================================================== */

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--color-primary-text);
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.logo__flourish {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-gold), transparent);
    border-radius: 1px;
}

/* Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-normal);
    padding: var(--spacing-md) 0;
}

.header.scrolled {
    background-color: rgba(11, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
}

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

.header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }
    
    .header__toggle {
        display: none;
    }
}

.nav__list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link--active {
    color: var(--color-accent-gold);
}

/* Mobile Navigation Toggle
   ========================================================================== */

.header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-text);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay
   ========================================================================== */

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-background);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay__content {
    text-align: center;
}

.nav-overlay__list {
    list-style: none;
    margin-bottom: var(--spacing-2xl);
}

.nav-overlay__list li {
    margin-bottom: var(--spacing-lg);
}

.nav-overlay__link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary-text);
    transition: all var(--transition-normal);
}

.nav-overlay__link:hover {
    color: var(--color-accent-gold);
    transform: scale(1.05);
}

/* Hero Section
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__video,
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 13, 0.7) 0%,
        rgba(11, 11, 13, 0.3) 50%,
        rgba(11, 11, 13, 0.7) 100%
    );
    z-index: -1;
}

.hero__content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero__title {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary-text);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Animations
   ========================================================================== */

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes luxuryGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease-out forwards;
}

.luxury-glow {
    animation: luxuryGlow 3s ease-in-out infinite;
}

.gentle-float {
    animation: gentleFloat 4s ease-in-out infinite;
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Interactive Element Animations */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hover-scale {
    transition: transform var(--transition-normal);
}

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

.hover-glow {
    transition: box-shadow var(--transition-normal), filter var(--transition-normal);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.hover-blur {
    transition: filter var(--transition-normal);
}

.hover-blur:hover {
    filter: blur(2px);
}

/* Card Animations */
.card {
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Image Hover Effects */
.image-hover {
    overflow: hidden;
    position: relative;
}

.image-hover img {
    transition: transform var(--transition-slow), filter var(--transition-normal);
}

.image-hover:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 11, 13, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-hover:hover .image-overlay {
    opacity: 1;
}

/* Text Animations */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
    transition: left 0.8s ease;
}

.text-reveal:hover::after {
    left: 100%;
}

/* Luxury Dividers */
.divider-luxury {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
    margin: var(--spacing-lg) auto;
    position: relative;
}

.divider-luxury::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-accent-gold);
    background: var(--color-background);
    padding: 0 0.5rem;
    font-size: 0.75rem;
}

/* Utility Classes
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* Responsive Design
   ========================================================================== */

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section__header {
        margin-bottom: var(--spacing-2xl);
    }
}

/* Focus Styles for Accessibility
   ========================================================================== */

:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 4px;
}

/* Print Styles
   ========================================================================== */

@media print {
    .header,
    .nav-overlay,
    .hero__video {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }
}

/* ==========================================================================
   Luxury Theme Overrides
   ========================================================================== */

:root {
    --color-background: #050506;
    --color-surface: #0b0b10;
    --color-surface-alt: #11111a;
    --color-primary-text: #f6f4ec;
    --color-secondary-text: #b5b7c6;
    --color-accent-gold: #d9bc7a;
    --color-accent-rose: #cfa6b7;
    --color-border: rgba(255, 255, 255, 0.07);
    --color-border-strong: rgba(217, 188, 122, 0.45);
    --header-offset: clamp(5.5rem, 7vw, 6.5rem);
    --container-max-width: 1320px;
    --spacing-3xl: 7rem;
    --spacing-4xl: 9rem;
    --shadow-sm: 0 12px 24px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 22px 45px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 32px 70px rgba(0, 0, 0, 0.58);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

body {
    background-color: var(--color-background);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(217, 188, 122, 0.08), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(134, 118, 86, 0.1), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(111, 104, 87, 0.08), transparent 55%);
    color: var(--color-primary-text);
    letter-spacing: 0.01em;
}

main,
.main {
    padding-top: var(--header-offset);
}

.section {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0;
}

.section::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0.6;
}

.section:last-of-type::after,
.section.section--no-divider::after {
    display: none;
}

.section--tight {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.section__header {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(3rem, 7vw, 4.5rem);
}

.section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(217, 188, 122, 0.4);
    background: rgba(217, 188, 122, 0.08);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
}

.section__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-primary-text);
}

.section__subtitle {
    color: var(--color-secondary-text);
    font-size: 1.125rem;
    line-height: 1.7;
}

.section__cta {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.section.section--tinted {
    background: radial-gradient(circle at center, rgba(217, 188, 122, 0.04), transparent 70%);
}

.logo__text {
    font-size: 1.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.logo__flourish {
    background: linear-gradient(90deg, rgba(217, 188, 122, 0.9), transparent);
}

.header {
    padding: clamp(1rem, 2vw, 1.75rem) 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, background var(--transition-normal), border-color var(--transition-normal);
}

.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(217, 188, 122, 0.08), transparent, rgba(217, 188, 122, 0.08));
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(6, 6, 9, 0.88);
    border-bottom-color: rgba(217, 188, 122, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.header.scrolled::after {
    opacity: 1;
}

.header__content {
    gap: clamp(1.5rem, 4vw, 3rem);
}

.header__cta {
    display: none;
}

@media (min-width: 1024px) {
    .header__cta {
        display: flex;
        align-items: center;
    }
}

.nav__list {
    gap: clamp(1.5rem, 3vw, 2.75rem);
}

.nav__link {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--color-secondary-text);
}

.nav__link::after {
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 188, 122, 0), rgba(217, 188, 122, 0.8), rgba(217, 188, 122, 0));
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link--active {
    color: var(--color-primary-text);
}

.nav__link--active::after {
    background: linear-gradient(90deg, rgba(217, 188, 122, 0.1), rgba(217, 188, 122, 0.9), rgba(217, 188, 122, 0.1));
}

.btn {
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    border-width: 1px;
    letter-spacing: 0.16em;
    overflow: hidden;
    backdrop-filter: none;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    opacity: 0;
}

.btn:hover::before {
    left: -20%;
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, rgba(217, 188, 122, 0.95), rgba(165, 130, 65, 0.95));
    color: #050505;
    border-color: rgba(217, 188, 122, 0.8);
    box-shadow: 0 10px 45px rgba(217, 188, 122, 0.35);
}

.btn--primary:hover {
    box-shadow: 0 18px 55px rgba(217, 188, 122, 0.45);
    transform: translateY(-1px);
}

.btn--outline {
    border-color: rgba(217, 188, 122, 0.5);
    color: var(--color-primary-text);
    background: transparent;
}

.btn--outline:hover {
    border-color: rgba(217, 188, 122, 0.9);
    box-shadow: 0 18px 40px rgba(217, 188, 122, 0.18);
}

.btn--compact {
    padding: 0.65rem 1.6rem;
    font-size: 0.72rem;
}

.btn--ghost {
    border-color: rgba(217, 188, 122, 0.35);
    color: var(--color-secondary-text);
    background: rgba(217, 188, 122, 0.06);
}

.btn--ghost:hover {
    color: var(--color-primary-text);
    border-color: rgba(217, 188, 122, 0.65);
    background: rgba(217, 188, 122, 0.12);
}

.btn--large {
    padding: 1rem 2.8rem;
    font-size: 0.82rem;
}

.hero {
    min-height: 720px;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5, 5, 6, 0.85) 10%, rgba(5, 5, 6, 0.65) 45%, rgba(5, 5, 6, 0.9) 90%);
    z-index: 1;
}

.hero__background {
    filter: saturate(0.85);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero__text {
    max-width: 880px;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.4rem);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(217, 188, 122, 0.35);
    background: rgba(217, 188, 122, 0.1);
}

.hero__badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
}

.hero__title-main {
    font-size: clamp(3.25rem, 7vw, 4.75rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero__title-sub {
    font-family: var(--font-modern);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.72);
}

.hero__subtitle {
    margin: 0;
    font-size: 1.2rem;
    color: rgba(245, 242, 236, 0.7);
    max-width: 640px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.8rem;
}

.hero__stat {
    position: relative;
    padding-top: 1.25rem;
}

.hero__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 188, 122, 0.8), transparent);
}

.hero__stat-number {
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--color-primary-text);
}

.hero__stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.55);
}

.hero__cta {
    justify-content: flex-start;
}

.hero__note {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.48);
}

@media (max-width: 1024px) {
    .hero__content {
        text-align: center;
    }
    .hero__text {
        margin: 0 auto;
    }
    .hero__cta {
        justify-content: center;
    }
    .hero__note {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero__stats {
        grid-template-columns: 1fr;
    }
    .hero__title-main {
        font-size: clamp(2.8rem, 10vw, 3.4rem);
    }
    .hero__title-sub {
        letter-spacing: 0.18em;
    }
    .hero__badge-text {
        letter-spacing: 0.18em;
    }
}

.value-stack {
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.9) 0%, rgba(8, 8, 12, 0.6) 100%);
}

.value-stack__content {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.value-stack__title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-family: var(--font-heading);
    color: var(--color-primary-text);
}

.value-stack__subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(245, 242, 236, 0.62);
    font-size: 1.05rem;
    line-height: 1.8;
}

.badge {
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    border: 1px solid rgba(217, 188, 122, 0.18);
    background: rgba(12, 12, 18, 0.92);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

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

.badge__text {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-secondary-text);
}

.about-teaser {
    display: flex;
    align-items: center;
}

.about-teaser__content {
    gap: clamp(2rem, 5vw, 4rem);
}

.about-teaser__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-teaser__description {
    color: rgba(245, 242, 236, 0.65);
    font-size: 1.05rem;
    line-height: 1.8;
}

.premium-cta {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: radial-gradient(circle at 20% 20%, rgba(217, 188, 122, 0.12), transparent 65%),
        linear-gradient(180deg, rgba(8, 8, 12, 0.95), rgba(5, 5, 7, 0.92));
    border: 1px solid rgba(217, 188, 122, 0.18);
    border-radius: 32px;
    margin: clamp(4rem, 8vw, 7rem) var(--container-padding);
}

.premium-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(120deg, rgba(217, 188, 122, 0.25), rgba(217, 188, 122, 0));
    opacity: 0.35;
}

.premium-cta__content {
    position: relative;
    z-index: 2;
    gap: clamp(2rem, 4vw, 3rem);
}

.premium-cta__badge {
    border-radius: 999px;
    border: 1px solid rgba(217, 188, 122, 0.3);
    background: rgba(217, 188, 122, 0.08);
}

.premium-cta__title-main {
    font-size: clamp(2.75rem, 5vw, 3.5rem);
}

.premium-cta__title-sub {
    font-family: var(--font-modern);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.72);
}

.premium-cta__subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(245, 242, 236, 0.68);
}

.premium-cta__stats {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    justify-content: center;
}

.premium-cta__stat {
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(217, 188, 122, 0.18);
    background: rgba(12, 12, 18, 0.85);
    min-width: 220px;
}

.premium-cta__stat-number {
    font-size: 1.5rem;
    font-weight: 500;
}

.premium-cta__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-header {
    padding-top: clamp(9rem, 12vw, 11rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.92) 0%, rgba(5, 5, 7, 0.9) 100%);
    border-bottom: 1px solid rgba(217, 188, 122, 0.14);
}

.page-header__content {
    max-width: 820px;
    text-align: center;
}

.page-header__title {
    font-size: clamp(2.65rem, 5vw, 3.75rem);
    margin-bottom: 1.5rem;
}

.page-header__subtitle {
    color: rgba(245, 242, 236, 0.68);
    font-size: 1.15rem;
    line-height: 1.8;
}

.footer {
    border-top: 1px solid rgba(217, 188, 122, 0.12);
    background: linear-gradient(180deg, rgba(6, 6, 9, 0.95), rgba(4, 4, 6, 0.98));
}

.footer__tagline {
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.52);
}

.footer__description {
    color: rgba(245, 242, 236, 0.56);
    line-height: 1.8;
}

.footer__links .footer__link:hover {
    color: var(--color-accent-gold);
}

.nav-overlay {
    background: rgba(5, 5, 7, 0.95);
}

.nav-overlay__link {
    font-size: clamp(1.75rem, 6vw, 3rem);
    letter-spacing: 0.18em;
}

.nav-overlay__cta {
    margin-top: 2rem;
}

.nav-overlay__cta .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .hero__stats {
        grid-template-columns: 1fr 1fr;
    }
    .premium-cta {
        margin: clamp(3rem, 6vw, 4rem) 1.25rem;
        border-radius: 24px;
    }
    .premium-cta__stats {
        flex-direction: column;
        align-items: stretch;
    }
    .premium-cta__stat {
        width: 100%;
    }
}

/* Responsive Design for Loader */
@media (max-width: 768px) {
    .loader__logo-image {
        width: 100px;
        height: 100px;
    }
    
    .loader__progress {
        width: 120px;
        height: 120px;
        top: -10px;
        left: -10px;
    }
    
    .loader__title {
        font-size: 1.5rem;
    }
    
    .loader__subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .loader__logo-image {
        width: 80px;
        height: 80px;
    }
    
    .loader__progress {
        width: 100px;
        height: 100px;
    }
    
    .loader__title {
        font-size: 1.25rem;
    }
    
    .loader__subtitle {
        font-size: 0.75rem;
    }
}/* Head
er Logo Styles
   ========================================================================== */

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo__image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-normal);
}

/* Responsive header logo */
@media (max-width: 768px) {
    .logo__image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo__image {
        height: 35px;
    }
}/
* Footer Logo Styles
   ========================================================================== */

.footer__logo {
    margin-bottom: var(--spacing-md);
}

.footer__logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity var(--transition-normal);
}

.footer__logo-image:hover {
    opacity: 1;
}

/* Responsive footer logo */
@media (max-width: 768px) {
    .footer__logo-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer__logo-image {
        height: 45px;
    }
}/
* Combined Header Logo Styles (Image + Text)
   ========================================================================== */

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.02);
}

.logo__image {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    transition: all var(--transition-normal);
}

.logo__text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary-text);
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition: color var(--transition-normal);
}

.logo__flourish {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-gold), transparent);
    margin-top: 2px;
    transition: width var(--transition-normal);
}

.logo:hover .logo__text {
    color: var(--color-accent-gold);
}

.logo:hover .logo__flourish {
    width: 60px;
}

/* Responsive combined logo */
@media (max-width: 768px) {
    .logo__image {
        height: 40px;
        width: 40px;
    }
    
    .logo__text {
        font-size: 1.25rem;
    }
    
    .logo__flourish {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: var(--spacing-xs);
    }
    
    .logo__image {
        height: 35px;
        width: 35px;
    }
    
    .logo__text {
        font-size: 1.1rem;
    }
    
    .logo__flourish {
        width: 25px;
    }
}/
* Header Logo Side by Side Layout
   ========================================================================== */

.header__logo {
    display: flex;
    align-items: center;
    height: 60px; /* Consistent header height */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition-normal);
    height: 100%;
}

.logo:hover {
    transform: scale(1.02);
}

.logo__image {
    height: 45px;
    width: 45px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.logo__text-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary-text);
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color var(--transition-normal);
    white-space: nowrap;
}

.logo__flourish {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-gold), transparent);
    transition: width var(--transition-normal);
    flex-shrink: 0;
}

.logo:hover .logo__text {
    color: var(--color-accent-gold);
}

.logo:hover .logo__flourish {
    width: 45px;
}

/* Ensure header elements are same height */
.header__nav,
.header__cta,
.header__toggle {
    height: 60px;
    display: flex;
    align-items: center;
}

.nav__list {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav__link {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.btn--compact {
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

/* Scrolling Gallery Styles */
.scrolling-gallery {
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(6, 6, 9, 0.95), rgba(12, 12, 18, 0.98));
    position: relative;
}

.scrolling-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(217, 188, 122, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.scroll-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: max-content;
}

.scroll-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.scroll-row:last-child {
    margin-bottom: 0;
}

.scroll-row--rtl {
    animation: scrollRightToLeft 120s linear infinite;
}

.scroll-row--ltr {
    animation: scrollLeftToRight 120s linear infinite;
}

.scroll-image {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-normal);
    border: 2px solid rgba(217, 188, 122, 0.1);
}

.scroll-image:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    border-color: rgba(217, 188, 122, 0.3);
}

/* Scrolling Animations */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Pause animation on hover */
.scrolling-gallery:hover .scroll-row {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .scroll-image {
        width: 240px;
        height: 170px;
    }
    
    .scroll-row {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .scroll-image {
        width: 200px;
        height: 140px;
    }
    
    .scroll-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .scrolling-gallery {
        padding: 1.5rem 0;
    }
    
    .scroll-row--rtl,
    .scroll-row--ltr {
        animation-duration: 90s;
    }
}

@media (max-width: 480px) {
    .scroll-image {
        width: 160px;
        height: 120px;
    }
    
    .scroll-row {
        gap: 0.8rem;
    }
    
    .scroll-row--rtl,
    .scroll-row--ltr {
        animation-duration: 70s;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header__logo {
        height: 50px;
    }
    
    .header__nav,
    .header__cta,
    .header__toggle {
        height: 50px;
    }
    
    .logo__image {
        height: 35px;
        width: 35px;
    }
    
    .logo__text {
        font-size: 1.2rem;
    }
    
    .logo__flourish {
        width: 25px;
    }
    
    .logo:hover .logo__flourish {
        width: 35px;
    }
    
    .btn--compact {
        height: 40px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header__logo {
        height: 45px;
    }
    
    .header__nav,
    .header__cta,
    .header__toggle {
        height: 45px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo__image {
        height: 30px;
        width: 30px;
    }
    
    .logo__text {
        font-size: 1rem;
    }
    
    .logo__flourish {
        width: 20px;
    }
    
    .logo:hover .logo__flourish {
        width: 30px;
    }
    
    .btn--compact {
        height: 35px;
        font-size: 0.8rem;
    }
}