/* --- Design Tokens --- */
:root {
    /* Light Mode Colors - Red, Black & White Theme */
    --color-bg: #F7F1E3;
    /* Warm cream */
    --color-bg-alt: #EDE5D3;
    /* Slightly deeper cream */
    --color-bg-dark: #0A0A0A;
    /* Noir */
    --color-surface: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #7A7A7A;

    /* RED - Primary Brand Color (replaces GOLD) */
    --color-red: #CC0000;
    --color-red-hover: #A30000;
    --color-red-light: #FFE6E6;
    --color-red-pale: rgba(204, 0, 0, 0.15);
    --color-red-dark: #8B0000;

    /* Borders & Dividers */
    --color-border: #D3C9B4;
    --color-border-light: #E3DDD0;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Lato', 'Segoe UI', sans-serif;

    /* Spacing & Sizes */
    --header-height: 84px;
    --max-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    /* Shadows - RED shadow */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 8px 24px rgba(204, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 180ms ease;
    --transition-smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Dark Mode Overrides --- */
.dark {
    --color-bg: #0A0A0A;
    --color-bg-alt: #141414;
    --color-surface: #1A1A1A;
    --color-text: #F7F1E3;
    --color-text-secondary: #BFB8A8;
    --color-text-muted: #8C8678;

    /* Red in dark mode - brighter */
    --color-red: #E60000;
    --color-red-hover: #FF1A1A;
    --color-red-light: #2A0000;
    --color-red-pale: rgba(230, 0, 0, 0.12);
    --color-red-dark: #B30000;

    --color-border: #2E2A23;
    --color-border-light: #3A352E;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-red: 0 8px 24px rgba(230, 0, 0, 0.30);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 1.2rem;
    line-height: 1.6;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    background: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF;
    /* was #0A0A0A */
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-ui);
    text-decoration: none;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--color-red);
    /* was --color-gold */
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--color-red);
    /* was --color-gold */
    outline-offset: 3px;
}

::selection {
    background: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF;
    /* was #0A0A0A */
}

/* ============================================================
   HEADER (Fixed, premium glass effect)
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247, 241, 227, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    height: var(--header-height);
}

.dark .header {
    background: rgba(10, 10, 10, 0.88);
    border-bottom-color: var(--color-border);
}

.header--scrolled {
    background: rgba(247, 241, 227, 0.96);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-red);
    /* was --color-gold */
}

.dark .header--scrolled {
    background: rgba(10, 10, 10, 0.96);
    border-bottom-color: var(--color-red);
    /* was --color-gold */
}

.header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    z-index: 1001;
}

.header__logo-icon img {
    display: flex;
    width: 44px;
    height: 44px;
    color: var(--color-red);
    /* was --color-gold */
}

.header__logo-text {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-red);
    /* was --color-gold */
    line-height: 1.2;
}

.header__logo-sub {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.header__nav-link {
    display: inline-block;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--color-red);
    /* was --color-gold */
    background: var(--color-red-pale);
    /* was --color-gold-pale */
}

.header__nav-link--qr {
    border: 1.5px solid var(--color-red);
    /* was --color-gold */
    border-radius: 8px;
    color: var(--color-red);
    /* was --color-gold */
}

.header__nav-link--cta {
    background: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF !important;
    /* was #0A0A0A */
    font-weight: 700;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
}

.header__nav-link--cta:hover {
    background: var(--color-red-hover);
    /* was --color-gold-hover */
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
    /* was --shadow-gold */
}

/* Theme toggle */
.theme-toggle {
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    margin-left: 0.25rem;
}

.theme-toggle:hover {
    border-color: var(--color-red);
    /* was --color-gold */
    color: var(--color-red);
    /* was --color-gold */
}

.theme-toggle__icon {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s, transform 0.3s;
}

.theme-toggle__icon--light {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.theme-toggle__icon--dark {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.dark .theme-toggle__icon--light {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.dark .theme-toggle__icon--dark {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Mobile menu toggle */
.header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
}

.header__menu-icon {
    width: 28px;
    height: 28px;
}

.header__menu-icon--close {
    display: none;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon--open {
    display: none;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon--close {
    display: block;
}

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    overflow-y: scroll;
    padding-top: 20%;
    line-height: 1;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-nav--open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__list {
    list-style: none;
    text-align: center;
}

.mobile-nav__link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
    color: var(--color-red);
    /* was --color-gold */
    background: var(--color-red-pale);
    /* was --color-gold-pale */
}

.mobile-nav__link--qr {
    border: 1.5px solid var(--color-red);
    /* was --color-gold */
    color: var(--color-red);
    /* was --color-gold */
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-nav__link--cta {
    background: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF !important;
    /* was #0A0A0A */
    margin-top: 0.5rem;
    border-radius: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    animation: hero-zoom 12s infinite alternate;
}

.dark .hero__bg-img {
    filter: brightness(0.35) saturate(0.8);
}

@keyframes hero-zoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent 60%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__overline {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-red-light);
    /* was --color-gold-light */
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title-accent {
    color: var(--color-red);
    /* was --color-gold */
}

.hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section {
    padding: 5rem 1.5rem;
}

.section__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__overline {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-red);
    /* was --color-gold */
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section__title--light {
    color: var(--color-text);
}

/* Divider - RED */
.divider {
    width: 70px;
    height: 2px;
    background: var(--color-red);
    /* was --color-gold */
    margin: 0 auto 1.5rem;
}

.section--cream {
    background: var(--color-bg);
}

.section--light {
    background: var(--color-bg-alt);
}

.section--dark {
    background: var(--color-bg-dark);
    color: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    background: transparent;
}

.btn--primary {
    background: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF;
    /* was #0A0A0A */
    border-color: var(--color-red);
    /* was --color-gold */
}

.btn--primary:hover {
    background: var(--color-red-hover);
    /* was --color-gold-hover */
    border-color: var(--color-red-hover);
    /* was --color-gold-hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    /* was --shadow-gold */
}

.btn--outline {
    border-color: var(--color-red);
    /* was --color-gold */
    color: var(--color-red);
    /* was --color-gold */
}

.btn--outline:hover {
    background: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF;
    /* was #0A0A0A */
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.about__image-wrap:hover .about__image {
    transform: scale(1.03);
}

.about__accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: var(--color-red);
    /* was --color-gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    /* was #0A0A0A */
    box-shadow: var(--shadow-red);
    /* was --shadow-gold */
}

.about__accent svg {
    width: 40px;
    height: 40px;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about__text {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.about__stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-red);
    /* was --color-gold */
    font-weight: 700;
    display: block;
}

.about__stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card__icon {
    width: 44px;
    height: 44px;
    color: var(--color-red);
    /* was --color-gold */
    margin-bottom: 1.2rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.service-card__desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* ============================================================
   GALLERY (Images & Videos)
   ============================================================ */
.gallery__controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.gallery__filter-btn {
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.gallery__filter-btn--active,
.gallery__filter-btn:hover {
    background: var(--color-red);
    /* was --color-gold */
    border-color: var(--color-red);
    /* was --color-gold */
    color: #FFFFFF;
    /* was #0A0A0A */
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    background: var(--color-bg-alt);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

.gallery__item:hover {
    transform: scale(1.02);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery__item:hover .gallery__play-btn {
    opacity: 1;
}

.gallery__play-btn svg {
    width: 3.5rem;
    height: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.gallery__item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   LIGHTBOX GALLERY
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.lightbox.visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-media {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.lightbox-media img,
.lightbox-media video,
.lightbox-media iframe {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    padding: 12px 0 0;
    text-align: center;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2.2rem;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 16px;
}
.lightbox-next {
    right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        padding: 6px 8px;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { font-size: 2.2rem; right: 12px; top: 6px; }
    .lightbox-content { max-width: 98vw; max-height: 96vh; }
}

/* ============================================================
   VIP BENEFITS
   ============================================================ */
.vip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.vip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-red);
    /* was --color-gold */
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: transform var(--transition-smooth);
}

.vip-card:hover {
    transform: translateY(-8px);
}

.vip-card__icon {
    width: 48px;
    height: 48px;
    color: var(--color-red);
    /* was --color-gold */
    margin-bottom: 1.2rem;
}

.vip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-red);
    /* was --color-gold */
}

.vip-card p {
    color: var(--color-text-secondary);
}

.vip__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.event-card__date {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-red);
    /* was --color-gold */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--color-text-secondary);
}

/* ============================================================
   SAFETY & SECURITY
   ============================================================ */
.safety__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.safety-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

.safety-card:hover {
    transform: translateY(-4px);
}

.safety-card svg {
    width: 44px;
    height: 44px;
    color: var(--color-red);
    /* was --color-gold */
    margin-bottom: 1rem;
}

.safety-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.safety-card p {
    color: var(--color-text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-muted);
    padding: 4rem 1.5rem 2rem;
    font-family: var(--font-ui);
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer__brand-name {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    color: var(--color-red);
    /* was --color-gold */
    margin-bottom: 0.5rem;
}

.footer__brand p {
    color: #AAAAAA;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer__social-link {
    color: #888;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--color-red);
    /* was --color-gold */
}

.footer__social-link svg {
    width: 22px;
    height: 22px;
}

.footer__col h4 {
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__col a,
.footer__col li {
    color: #AAA;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer__col a:hover {
    color: var(--color-red);
    /* was --color-gold */
}

.footer__bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.footer__bottom a {
    color: #AAA;
    text-decoration: none;
}

.footer__bottom a:hover {
    color: var(--color-red);
    /* was --color-gold */
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .header__nav-list {
        display: none;
    }

    .header__menu-toggle {
        display: block;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }

    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .vip__grid {
        grid-template-columns: 1fr;
    }

    .footer__container {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about__accent {
        width: 70px;
        height: 70px;
        bottom: -10px;
        right: -10px;
    }

    .about__accent svg {
        width: 28px;
        height: 28px;
    }
}