/* ============================================
   ИВЕЙН 2011 - Premium Catering Website
   Custom Styles + Animation System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1714;
    --bg-tertiary: #2a2520;
    --bg-card: #1e1b18;
    --accent-gold: #c8a96e;
    --accent-gold-light: #d4bc8a;
    --accent-brown: #8b6914;
    --accent-warm: #a0845c;
    --text-primary: #f5f0e8;
    --text-secondary: #a09888;
    --text-muted: #6e6259;
    --border-subtle: rgba(200, 169, 110, 0.15);
    --border-gold: rgba(200, 169, 110, 0.4);
    --overlay-dark: rgba(13, 13, 13, 0.6);
    --overlay-darker: rgba(13, 13, 13, 0.75);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Raleway', 'Segoe UI', Tahoma, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-width: min(90%, 1400px);
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 4rem;
    --gap-xl: 6rem;

    /* Animation */
    --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-slow: 1.5s;
    --duration-medium: 0.8s;
    --duration-fast: 0.4s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1920px) {
    html { font-size: 18px; }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.04em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    letter-spacing: 0.03em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h4 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 300;
}

p {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

.text-accent {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--accent-gold);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

/* --- Container --- */
.container {
    width: var(--container-width);
    margin: 0 auto;
}

.container-narrow {
    width: min(80%, 900px);
    margin: 0 auto;
}

/* --- Sections --- */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-primary);
}

.section-warm {
    background-color: var(--bg-secondary);
}

.section-rich {
    background-color: var(--bg-tertiary);
}

/* ============================================
   ANIMATION SYSTEM
   ============================================ */

/* Fade up reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-luxury),
                transform var(--duration-slow) var(--ease-luxury);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.25s; }
.stagger > *:nth-child(3) { transition-delay: 0.4s; }
.stagger > *:nth-child(4) { transition-delay: 0.55s; }
.stagger > *:nth-child(5) { transition-delay: 0.7s; }
.stagger > *:nth-child(6) { transition-delay: 0.85s; }

/* Text lift from below mask */
.lift-text {
    overflow: hidden;
    display: block;
}

.lift-text > * {
    display: block;
    transform: translateY(110%);
    transition: transform var(--duration-slow) var(--ease-luxury);
}

.lift-text.is-visible > * {
    transform: translateY(0%);
}

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--duration-slow) var(--ease-luxury),
                transform var(--duration-slow) var(--ease-luxury);
}

.scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Fade in */
.fade-in {
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-luxury);
}

.fade-in.is-visible {
    opacity: 1;
}

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity var(--duration-slow) var(--ease-luxury),
                transform var(--duration-slow) var(--ease-luxury);
}

.slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity var(--duration-slow) var(--ease-luxury),
                transform var(--duration-slow) var(--ease-luxury);
}

.slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax image */
.parallax-img {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ============================================
   NAVIGATION / HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background-color var(--duration-medium) var(--ease-smooth),
                padding var(--duration-medium) var(--ease-smooth),
                backdrop-filter var(--duration-medium) var(--ease-smooth);
}

.header.scrolled {
    background-color: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.header-logo img {
    height: 60px;
    width: auto;
    transition: height var(--duration-medium) var(--ease-smooth);
}

.header.scrolled .header-logo img {
    height: 45px;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width var(--duration-medium) var(--ease-luxury);
}

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

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

.nav-cta {
    padding: 0.65rem 1.8rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold) !important;
    transition: all var(--duration-fast) var(--ease-smooth) !important;
}

.nav-cta:hover {
    background: var(--accent-gold) !important;
    color: var(--bg-primary) !important;
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-smooth);
    transform-origin: center;
}

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

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

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

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right var(--duration-medium) var(--ease-luxury);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

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

@media (max-width: 968px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */

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

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

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s var(--ease-smooth);
}

.hero.loaded .hero-bg img,
.hero.loaded .hero-bg video {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.4) 0%,
        rgba(13, 13, 13, 0.2) 40%,
        rgba(13, 13, 13, 0.5) 70%,
        rgba(13, 13, 13, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-logo {
    width: 120px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: scale(0.8);
    animation: heroLogoIn 1.5s var(--ease-luxury) 0.3s forwards;
}

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(110%);
    animation: liftIn 1.5s var(--ease-luxury) forwards;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.6s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.85s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 1.1s; }

@keyframes liftIn {
    to { transform: translateY(0%); }
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-style: italic;
    color: var(--accent-gold-light);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-luxury) 1.4s forwards;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-luxury) 1.7s forwards;
    transition: all var(--duration-fast) var(--ease-smooth);
    cursor: pointer;
    background: transparent;
}

.hero-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-luxury) 2.2s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: scrollDown 2s var(--ease-smooth) infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ============================================
   USP / FEATURES SECTION
   ============================================ */

.usp-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.usp-header {
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-md);
}

@media (max-width: 968px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.usp-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transition: all var(--duration-medium) var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: scaleX(0);
    transition: transform var(--duration-medium) var(--ease-luxury);
}

.usp-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-tertiary);
    transform: translateY(-4px);
}

.usp-card:hover::before {
    transform: scaleX(1);
}

.usp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: all var(--duration-medium) var(--ease-luxury);
}

.usp-card:hover .usp-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.usp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.usp-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT PREVIEW / INTRO SECTION
   ============================================ */

.intro-section {
    position: relative;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

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

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-luxury);
}

.intro-image:hover img {
    transform: scale(1.03);
}

.intro-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.intro-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    padding: 0.8rem 1.5rem;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-gold);
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

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

.intro-text p {
    margin-bottom: 1.2rem;
}

.intro-stats {
    display: flex;
    gap: var(--gap-lg);
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--bg-primary);
}

.services-header {
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

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

.service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    group: true;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-luxury);
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(13, 13, 13, 0.7) 60%,
        rgba(13, 13, 13, 0.95) 100%
    );
    transition: background var(--duration-medium) var(--ease-smooth);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.2) 0%,
        rgba(13, 13, 13, 0.6) 40%,
        rgba(13, 13, 13, 0.95) 100%
    );
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

.service-card-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(200, 169, 110, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.service-card:hover h3 {
    color: var(--accent-gold);
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-medium) var(--ease-luxury);
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-medium) var(--ease-luxury) 0.1s;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */

.gallery-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--gap-lg);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 8px;
}

.gallery-masonry .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-masonry .gallery-item:nth-child(4) {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-masonry .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-masonry .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-luxury);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0);
    transition: background var(--duration-medium) var(--ease-smooth);
}

.gallery-item:hover::after {
    background: rgba(13, 13, 13, 0.3);
}

.gallery-item-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 400;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-medium) var(--ease-luxury);
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: var(--gap-lg);
}

/* ============================================
   EVENTS TYPES SECTION
   ============================================ */

.events-section {
    background: var(--bg-primary);
    position: relative;
}

.events-scroll {
    display: flex;
    gap: var(--gap-md);
    overflow-x: auto;
    padding: 0 5%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.events-scroll::-webkit-scrollbar {
    display: none;
}

.event-type-card {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    scroll-snap-align: start;
    cursor: pointer;
}

@media (max-width: 768px) {
    .event-type-card {
        flex: 0 0 260px;
        height: 350px;
    }
}

.event-type-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-luxury);
}

.event-type-card:hover .event-type-card-bg {
    transform: scale(1.08);
}

.event-type-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(13, 13, 13, 0.85) 100%
    );
}

.event-type-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

.event-type-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.event-type-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   EXPERIENCE / SHOWCASE SECTION
   ============================================ */

.experience-section {
    position: relative;
    overflow: hidden;
}

.experience-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

@media (max-width: 768px) {
    .experience-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.experience-image {
    position: relative;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.experience-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem);
    background: var(--bg-tertiary);
}

.experience-text h2 {
    margin-bottom: 1.5rem;
}

.experience-text p {
    margin-bottom: 1rem;
}

.experience-list {
    list-style: none;
    margin-top: 1.5rem;
}

.experience-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.experience-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */

.cta-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .cta-bg {
        background-attachment: scroll;
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-brown));
    color: var(--bg-primary);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3);
    color: var(--bg-primary);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* ============================================
   MENU PREVIEW SECTION
   ============================================ */

.menu-section {
    background: var(--bg-secondary);
}

.menu-header {
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--gap-lg);
}

.menu-tag {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: all var(--duration-fast) var(--ease-smooth);
    cursor: pointer;
}

.menu-tag:hover,
.menu-tag.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(200, 169, 110, 0.1);
}

.menu-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

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

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

.menu-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-luxury);
}

.menu-item:hover img {
    transform: scale(1.06);
}

.menu-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
    z-index: 2;
}

.menu-item-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* ============================================
   TRUST / PARTNERS
   ============================================ */

.trust-section {
    background: var(--bg-primary);
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-lg);
    flex-wrap: wrap;
    margin-top: var(--gap-lg);
}

.trust-logos span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.trust-logos span:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border-subtle);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--gap-xl) 0 var(--gap-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--gap-lg);
    margin-bottom: var(--gap-lg);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--gap-md);
    }
}

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

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--gap-md);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 580px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(200, 169, 110, 0.1);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Separator */
.separator {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 1.5rem auto;
}

/* Loading screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* Horizontal line decoration */
.deco-line {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.deco-line::before,
.deco-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.deco-line span {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--accent-gold);
}
