/* ============================================================
SOLRESOL - v15
Fixes: foto PC visible, menú hamburguesa móvil funcional,
foto móvil no se sale de pantalla, logo grande, marquee corregido
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background-color: #FDF6E3;
    color: #475569;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: none;
    min-width: 320px;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-sm {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================================
NAVBAR
============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 130px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    height: 100px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo-img {
    height: 120px;
    width: auto;
    transition: height 0.3s ease;
    max-width: 100%;
}

#navbar.scrolled #logo-img {
    height: 90px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #061C36;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 4px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #C9A84C;
}

/* ============================================================
HAMBURGER
============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px 8px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: #061C36;
    transition: all 0.3s ease;
    border-radius: 2px;
    pointer-events: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ============================================================
MOBILE MENU OVERLAY
============================================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-link {
    color: #061C36;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px 24px;
    transition: color 0.25s ease;
}

.mobile-menu-link:hover {
    color: #C9A84C;
}

/* ============================================================
HERO
============================================================ */
#hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #061C36;
    padding-top: 130px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    background-image: url(img/about-texture.jpg);
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-subtitle {
    display: block;
    font-family: "JetBrains Mono", monospace;
    color: #C9A84C;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #FDF6E3;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
    word-break: break-word;
}

.hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: #94A3B8;
    line-height: 1.65;
    margin-top: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C9A84C;
    color: #061C36;
    border-radius: 9999px;
    border: none;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    font-family: "Inter", system-ui, sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    text-decoration: none;
    margin-top: 40px;
}

.btn-primary:hover {
    background-color: #D4B76A;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-75%);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 36px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #C9A84C, transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

/* ============================================================
SECTIONS
============================================================ */
.section-cream {
    background-color: #FDF6E3;
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow-x: hidden;
}

.section-navy {
    background-color: #061C36;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: block;
    font-family: "JetBrains Mono", monospace;
    color: #C9A84C;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-label-gold {
    display: block;
    font-family: "JetBrains Mono", monospace;
    color: #D4B76A;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #1E293B;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-top: 8px;
}

.section-navy .section-header h2 {
    color: #FDF6E3;
}

/* ============================================================
SERVICIOS
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 28, 54, 0.08);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #061C36;
    border: 1px solid #0D3B66;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #1E293B;
    letter-spacing: 0.01em;
    line-height: 1.3;
    font-family: "Inter", system-ui, sans-serif;
}

.service-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 8px;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
CTA BANNER
============================================================ */
.cta-banner {
    background-color: #ffffff;
    padding: clamp(4rem, 8vw, 6rem) 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    text-align: center;
}

.cta-banner h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #1E293B;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: clamp(0.9375rem, 1.2vw, 1.1rem);
    color: #475569;
    line-height: 1.65;
    margin-bottom: 32px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #061C36;
    color: #FDF6E3;
    border-radius: 9999px;
    border: none;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    font-family: "Inter", system-ui, sans-serif;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #0A2A4E;
    transform: translateY(-2px);
}

/* ============================================================
FILOSOFÍA
============================================================ */
.philosophy-text {
    font-size: clamp(0.9375rem, 1.2vw, 1.1rem);
    color: #94A3B8;
    line-height: 1.65;
    margin-top: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 40px;
}

.philosophy-card {
    flex: 1;
    text-align: center;
}

.philosophy-number {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 2rem;
    color: #C9A84C;
    opacity: 0.4;
    line-height: 1;
}

.philosophy-card h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #FDF6E3;
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin-top: 8px;
    font-family: "Inter", system-ui, sans-serif;
}

.philosophy-card p {
    font-size: 0.8125rem;
    color: #94A3B8;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 8px;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
NOSOTROS — Foto
============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: start;
    max-width: 100%;
}

.about-photo-wrapper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.juana-photo-wrapper-v2 {
    width: 80%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 28, 54, 0.15);
    background-color: #e8e4dc;
    border: 2px solid #E2E8F0;
    position: relative;
}

.juana-photo-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0 auto;
}

.juana-fallback-v2 {
    padding: 48px 32px;
    text-align: center;
    color: #94A3B8;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.about-text {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    letter-spacing: 0.005em;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
MARQUEE - CORREGIDO
============================================================ */
.marquee-section {
    margin-top: 8px;
}

.marquee-label {
    font-size: 0.75rem;
    color: #94A3B8;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    font-family: "Inter", system-ui, sans-serif;
}

.marquee-wrapper {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    padding: 16px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    align-items: center;
    animation: marquee-scroll 60s linear infinite !important;
    width: max-content;
}

.marquee span {
    padding: 0 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #94A3B8;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    cursor: default;
    font-family: "JetBrains Mono", monospace;
}

.marquee span:hover {
    color: #C9A84C;
    opacity: 1;
}

/* Team cards */
.team-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
}

.team-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1E293B;
    letter-spacing: 0.01em;
    line-height: 1.3;
    font-family: "Inter", system-ui, sans-serif;
}

.team-role {
    font-size: 0.75rem;
    color: #94A3B8;
    letter-spacing: 0.02em;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
TARIFAS
============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
}

.pricing-price {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 400;
    color: #061C36;
    line-height: 1;
}

.pricing-header p {
    font-size: 0.9375rem;
    color: #94A3B8;
    margin-top: 8px;
    font-family: "Inter", system-ui, sans-serif;
}

.pricing-divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 20px 0;
}

.pricing-features {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #475569;
    line-height: 2;
    font-family: "Inter", system-ui, sans-serif;
}

.pricing-features li span {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #C9A84C;
    margin-top: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-block;
    margin-top: 28px;
    padding: 10px 24px;
    border: 1px solid #061C36;
    color: #061C36;
    border-radius: 9999px;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: "Inter", system-ui, sans-serif;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #061C36;
    color: #ffffff;
}

.pricing-note {
    text-align: center;
    font-size: 0.75rem;
    color: #94A3B8;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 28px;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
CONTACTO
============================================================ */
.contact-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #FDF6E3;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-top: 8px;
}

.contact-info > p {
    font-size: clamp(0.9375rem, 1.2vw, 1.1rem);
    color: #94A3B8;
    line-height: 1.65;
    margin-top: 20px;
    font-family: "Inter", system-ui, sans-serif;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    font-size: 0.875rem;
    color: #FDF6E3;
    line-height: 1.6;
    font-family: "Inter", system-ui, sans-serif;
}

.contact-email {
    font-size: 0.875rem;
    color: #C9A84C;
    line-height: 1.6;
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #0A2A4E;
    border-radius: 12px;
    padding: 36px;
    border: 1px solid #0D3B66;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8125rem;
    color: #94A3B8;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    display: block;
    font-family: "Inter", system-ui, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 48px;
    background-color: #061C36;
    border: 1px solid #0D3B66;
    border-radius: 6px;
    color: #FDF6E3;
    padding: 0 16px;
    font-size: 0.9375rem;
    font-family: "Inter", system-ui, sans-serif;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group textarea {
    height: auto;
    min-height: 100px;
    padding: 16px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #C9A84C;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.btn-submit {
    width: 100%;
    height: 48px;
    background-color: #C9A84C;
    color: #061C36;
    font-size: clamp(0.9375rem, 1.3vw, 1.1rem);
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: "Inter", system-ui, sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
}

.btn-submit:hover {
    background-color: #D4B76A;
    transform: translateY(-1px);
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 360px;
    background-color: #0A2A4E;
    border-radius: 12px;
    padding: 36px;
    border: 1px solid #0D3B66;
}

.form-success svg {
    margin-bottom: 20px;
}

.form-success p {
    font-size: clamp(0.9375rem, 1.2vw, 1.1rem);
    color: #D4B76A;
    line-height: 1.65;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
FOOTER
============================================================ */
.footer {
    background-color: #061C36;
    border-top: 1px solid #0D3B66;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; gap: 24px; flex-wrap: nowrap;
}

.footer-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-inner p {
    font-size: 0.75rem;
    color: #94A3B8;
    letter-spacing: 0.02em;
    font-family: "Inter", system-ui, sans-serif;
}

/* ============================================================
ANIMATIONS - CORREGIDO
============================================================ */
@keyframes scroll-down {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-75%); }
}

/* ============================================================
MOBILE RESPONSIVE - CORREGIDO
============================================================ */
@media (max-width: 768px) {
    #navbar {
        height: 80px;
    }
    
    #navbar.scrolled {
        height: 70px;
    }
    
    .nav-inner {
        padding: 0 14px;
    }
    
    #logo-img {
        height: 70px;
    }
    
    #navbar.scrolled #logo-img {
        height: 60px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    #hero {
        padding-top: 80px;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-cream,
    .section-navy {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        flex-direction: column;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    /* Foto móvil: el wrapper limita el tamaño */
    .about-photo-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 0;
    }
    
    .juana-photo-wrapper-v2 {
        width: 80%;
        margin: 0 auto;
        max-height: 350px;
        overflow: hidden;
    }
    
    .juana-photo-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer-inner { flex-direction: row; flex-wrap: wrap; }
    
    /* MARQUEE MÓVIL - Velocidad más lenta */
    .marquee {
        animation-duration: 30s;
    }
}

/* Reduce motion - CORREGIDO */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    /* Marquee más lento para accesibilidad */
    .marquee {
        animation: marquee-scroll 80s linear infinite !important;
    }
}/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #061C36;
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner p { margin: 0; color: #E2E8F0; }
.cookie-banner a { color: #C9A84C; text-decoration: underline; }
.cookie-banner button {
  background: #C9A84C;
  color: #061C36;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
}
.cookie-banner button:hover { background: #b8983e; }
.cookie-banner .cookie-reject {
  background: transparent;
  color: #94A3B8;
  border: 1px solid #94A3B8;
}
.cookie-banner .cookie-reject:hover { color: #fff; border-color: #fff; }
.cookie-banner.hidden { display: none; }
/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 16px;
  margin-top: 0; white-space: nowrap;
  font-size: 0.75rem;
  color: #94A3B8;
}
.footer-legal a { color: #94A3B8; text-decoration: none; }
.footer-legal a:hover { color: #C9A84C; }
.footer-credits {
  margin-top: 0; white-space: nowrap;
  font-size: 0.6875rem;
  color: #64748B;
}
.footer-credits a { color: #64748B; text-decoration: none; }
.footer-credits a:hover { color: #C9A84C; }

