/* ============================================
   MOTTRA STUDIO — "Intensidad Elegante"
   Custom Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --crimson: #8A151B;
    --crimson-dark: #6B1015;
    --crimson-light: #A41D24;
    --black: #000000;
    --carbon: #1A1A1A;
    --carbon-light: #2A2A2A;
    --cream: #F8F8F8;
    --cream-dark: #EFEFEF;
    --white: #FFFFFF;
    --gray-text: #999999;
    --nav-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.15;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 2px;
}

/* --- Selection --- */
::selection {
    background: var(--crimson);
    color: var(--cream);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(138, 21, 27, 0.2);
}

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

.nav-logo img {
    height: 36px;
    width: auto;
    transition: opacity 0.3s;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    background: var(--crimson) !important;
    color: var(--cream) !important;
    padding: 8px 20px !important;
    border-radius: 6px;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    transition: background 0.3s, transform 0.2s !important;
}

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

.nav-cta:hover {
    background: var(--crimson-light) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu a:hover {
    color: var(--crimson);
}

/* Desktop breakpoint */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .hamburger {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(138, 21, 27, 0.55) 0%,
        rgba(138, 21, 27, 0.35) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

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

.hero-logo {
    width: 60px;
    height: auto;
    margin: 0 auto 32px;
    opacity: 0.9;
    filter: brightness(10);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title em {
    font-style: italic;
    color: var(--cream);
}

.hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 300;
    color: rgba(248, 248, 248, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    background: var(--crimson);
    color: var(--cream);
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hero-cta:hover {
    background: transparent;
    border-color: var(--crimson);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--crimson), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Reveal animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section {
        padding: 120px 40px;
    }
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.section-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================
   "QUÉ ES HOT PILATES" — BENEFITS CARDS
   ============================================ */
.benefits-wrapper {
    background: var(--carbon);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: var(--carbon-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 21, 27, 0.2);
    box-shadow: 0 12px 40px rgba(138, 21, 27, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 10px;
    font-weight: 400;
}

.benefit-card p {
    font-size: 0.82rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============================================
   "NOSOTRAS" — ABOUT SECTION
   ============================================ */
.about-wrapper {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.about-photo-frame {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.about-photo {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(40%);
    transition: filter 0.5s;
}

.about-photo:hover {
    filter: grayscale(0%);
}

.about-photo-frame::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--crimson);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

.about-text h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-text .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--crimson);
    font-size: 1rem;
    margin-top: 24px;
}

/* ============================================
   "PAQUETES" — PRICING CARDS
   ============================================ */
.pricing-wrapper {
    background: var(--carbon);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--carbon-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--crimson);
    box-shadow: 0 0 40px rgba(138, 21, 27, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crimson);
    color: var(--cream);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 0 0 6px 6px;
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 16px;
    margin-top: 8px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.pricing-price span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--gray-text);
    font-weight: 400;
}

.pricing-detail {
    font-size: 0.78rem;
    color: var(--gray-text);
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    font-size: 0.8rem;
    color: rgba(248, 248, 248, 0.6);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li svg {
    width: 14px;
    height: 14px;
    color: var(--crimson);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--cream);
    margin-top: auto;
}

.pricing-btn:hover {
    border-color: var(--crimson);
    color: var(--white);
    background: rgba(138, 21, 27, 0.1);
}

.pricing-card.featured .pricing-btn {
    background: var(--crimson);
    border-color: var(--crimson);
    color: var(--cream);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--crimson-light);
}

/* ============================================
   "RESERVAR" — BOOKING WIZARD
   ============================================ */
.booking-wrapper {
    background: var(--black);
}

.booking-container {
    margin-top: 48px;
}

/* Date Scroller */
.date-scroller {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.date-scroller::-webkit-scrollbar {
    display: none;
}

.date-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--carbon);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
}

.date-item:hover {
    border-color: rgba(138, 21, 27, 0.3);
}

.date-item.active {
    background: var(--crimson);
    border-color: var(--crimson);
}

.date-item .day-name {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 4px;
}

.date-item.active .day-name {
    color: rgba(248, 248, 248, 0.8);
}

.date-item .day-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
}

.date-item .month {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-top: 2px;
}

.date-item.active .month {
    color: rgba(248, 248, 248, 0.7);
}

/* Class List */
.class-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.class-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--carbon);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.class-card:hover {
    border-color: rgba(138, 21, 27, 0.3);
    transform: translateX(4px);
}

.class-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    min-width: 64px;
}

.class-time span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.class-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
}

.class-info {
    flex: 1;
}

.class-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}

.class-instructor {
    font-size: 0.72rem;
    color: var(--gray-text);
}

.class-spots {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.class-spots.available {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
}

.class-spots.limited {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.08);
}

.class-spots.full {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

/* ============================================
   BOOKING MODAL (Slide-over)
   ============================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background: var(--carbon);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-panel.open {
    transform: translateX(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    border-color: var(--crimson);
    background: rgba(138, 21, 27, 0.1);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-body {
    padding: 28px 24px;
    flex: 1;
}

.modal-class-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 20px;
}

.modal-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-detail-row svg {
    width: 18px;
    height: 18px;
    color: var(--crimson);
    flex-shrink: 0;
}

.modal-detail-row .label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    min-width: 80px;
}

.modal-detail-row .value {
    font-size: 0.88rem;
    color: var(--cream);
}

.modal-description {
    margin-top: 24px;
    padding: 20px;
    background: rgba(138, 21, 27, 0.06);
    border-radius: 10px;
    border-left: 3px solid var(--crimson);
}

.modal-description p {
    font-size: 0.82rem;
    color: rgba(248, 248, 248, 0.7);
    line-height: 1.7;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-confirm-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: var(--crimson);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-confirm-btn:hover {
    background: var(--crimson-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(138, 21, 27, 0.3);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--carbon);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 48px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-text);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--crimson);
    color: var(--crimson);
    background: rgba(138, 21, 27, 0.08);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(153, 153, 153, 0.5);
    letter-spacing: 0.05em;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-crimson { color: var(--crimson); }
.bg-carbon { background: var(--carbon); }
.bg-black { background: var(--black); }

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* Safe area padding for PWA */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(48px + env(safe-area-inset-bottom));
    }
    .modal-footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}
