/*
 * CASINA CASINO - Design System
 * Corrida-theater aesthetic: dark oxblood, crimson, molten gold
 * Fonts: Cinzel (display) + Manrope (body)
 * Single fixed dark theme - no toggle
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #120B0E;
    --foreground: #F5EDE3;
    --card: #1E1318;
    --card-foreground: #F5EDE3;
    --popover: #170F13;
    --popover-foreground: #F5EDE3;
    --primary: #e93f55;
    --primary-foreground: #1A0E10;
    --secondary: #2A1B21;
    --secondary-foreground: #F5EDE3;
    --muted: #241820;
    --muted-foreground: #B8A6A0;
    --accent: #F2B134;
    --accent-foreground: #1A0E10;
    --destructive: #e93f55;
    --destructive-foreground: #1A0E10;
    --border: #4A3230;
    --input: #1A1014;
    --ring: #F2B134;

    /* Spacing scale (8px base grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 56px;
    --space-2xl: 96px;

    /* Container */
    --container-max: 1200px;
    --prose-max: 720px;

    /* Header */
    --header-height: 60px;

    /* Transitions */
    --t-fast: 200ms ease;
    --t-med: 400ms ease;
    --t-slow: 600ms ease-out;
}

.dark {
    --background: #120B0E;
    --foreground: #F5EDE3;
    --card: #1E1318;
    --card-foreground: #F5EDE3;
    --popover: #170F13;
    --popover-foreground: #F5EDE3;
    --primary: #e93f55;
    --primary-foreground: #1A0E10;
    --secondary: #2A1B21;
    --secondary-foreground: #F5EDE3;
    --muted: #241820;
    --muted-foreground: #B8A6A0;
    --accent: #F2B134;
    --accent-foreground: #1A0E10;
    --destructive: #e93f55;
    --destructive-foreground: #1A0E10;
    --border: #4A3230;
    --input: #1A1014;
    --ring: #F2B134;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--t-fast);
}

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

ul, ol {
    list-style: none;
}

p, li, td, th {
    overflow-wrap: break-word;
}

section {
    overflow: clip;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   Cinzel for display headings, Manrope for body
   ============================================ */
h1, h2, h3, h4 {
    font-family: "Cinzel", serif;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--foreground);
}

h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--accent) 0%, #E8C84A 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
}

h2 {
    font-size: 26px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

h4 {
    font-size: 19px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0;
}

p {
    margin-bottom: var(--space-md);
}

strong {
    color: var(--foreground);
    font-weight: 600;
}

@media (min-width: 1024px) {
    body { font-size: 17px; }
    h1 { font-size: 48px; }
    h2 { font-size: 34px; }
    h3 { font-size: 24px; }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

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

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

@media (min-width: 1024px) {
    .section { padding: var(--space-2xl) 0; }
}

.text-muted { color: var(--muted-foreground); }
.text-gold { color: var(--accent); }
.text-crimson { color: var(--primary); }
.text-center { text-align: center; }

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

/* ============================================
   SECTION TITLE - Neon underline sweep
   ============================================ */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width var(--t-slow);
}

.section-title.is-visible::after {
    width: 100%;
}

/* Centered variant for CTA */
.cta-banner .section-title {
    display: block;
    text-align: center;
}
.cta-banner .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}
.cta-banner .section-title.is-visible::after {
    width: 80px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--t-fast);
    min-height: 48px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-gold:hover {
    box-shadow: 0 0 24px rgba(232, 56, 79, 0.35);
    transform: scale(1.02);
    color: var(--accent-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg {
    min-height: 56px;
    padding: 16px 36px;
    font-size: 17px;
}

/* ============================================
   HEADER & NAVIGATION
   Sticky, semi-transparent with blur on desktop
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 11, 14, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-bull {
    color: var(--accent);
    flex-shrink: 0;
}

.site-brand__text {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.04em;
}

/* Primary nav - hidden on mobile, shown on desktop */
.primary-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-list a {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--t-fast);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--t-fast);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-cta .btn {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 14px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--t-fast), opacity var(--t-fast);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop nav */
@media (min-width: 992px) {
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE MENU DRAWER
   Fixed full-screen panel below header
   ============================================ */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    overflow-y: auto;
    gap: var(--space-md);
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.primary-nav.is-open .nav-list li {
    border-bottom: 1px solid var(--border);
}

.primary-nav.is-open .nav-list a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: var(--space-sm) 0;
    font-size: 18px;
}

.primary-nav.is-open .nav-list a::after {
    display: none;
}

.primary-nav.is-open .nav-cta {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.primary-nav.is-open .nav-cta .btn {
    min-height: 52px;
    width: 100%;
    font-size: 16px;
}

/* Disable backdrop-filter on mobile to avoid containing block trap */
@media (max-width: 991px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--background);
    }
}

/* ============================================
   HERO SECTION
   Full-bleed with layered composition
   ============================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 65% 40%, rgba(74, 50, 48, 0.5), transparent 65%),
                radial-gradient(ellipse at 20% 80%, rgba(232, 56, 79, 0.08), transparent 50%),
                var(--background);
    padding: var(--space-xl) 0;
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: var(--prose-max);
}

.hero-visual {
    position: relative;
    order: -1;
}

.hero-model-img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

@media (min-width: 992px) {
    .hero-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-2xl);
    }
    .hero-visual {
        order: 0;
    }
    .hero-model-img {
        max-height: 88vh;
    }
}

/* ============================================
   STAT HIGHLIGHT
   Large quotable figures with count-up
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-sm);
}

.stat-number {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(232, 56, 79, 0.3);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (min-width: 768px) {
    .stat-highlight {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    .stat-number { font-size: 48px; }
}

@media (min-width: 1024px) {
    .stat-highlight {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: var(--space-lg) 0;
    }
    .stat-item {
        flex: 1 1 0;
        position: relative;
        padding: 0 var(--space-md);
        min-width: 0;
    }
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        bottom: 15%;
        width: 1px;
        background: var(--border);
    }
    .stat-number { font-size: 56px; }
}

/* ============================================
   INFO CARD GRID
   Staggered cards with filigree borders
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: var(--space-md);
    min-width: 0;
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    opacity: 0;
}

.info-card.is-visible {
    animation: cardEnter var(--t-slow) ease-out forwards;
    animation-delay: var(--stagger, 0ms);
}

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

.info-card.is-visible:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.card-title {
    font-size: 20px;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.card-amount {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.card-text {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: var(--space-sm);
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--t-fast);
}

.card-link:hover {
    color: var(--accent);
}

/* Two-column grid on tablet */
@media (min-width: 768px) {
    .info-card-grid--2col {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-card-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Three-column grid on desktop with stagger */
@media (min-width: 1024px) {
    .info-card-grid--3col {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        align-items: start;
    }
    .info-card-grid--3col .info-card:nth-child(3n+2) {
        margin-top: var(--space-sm);
    }
    .info-card-grid--3col .info-card:nth-child(3n+3) {
        margin-top: 32px;
    }
    .info-card-grid--2col {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* ============================================
   FAQ ACCORDION
   Bordered rows with gold plus icon
   ============================================ */
.faq-section {
    max-width: var(--prose-max);
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: var(--space-xs);
    overflow: hidden;
    transition: border-color var(--t-fast);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    min-height: 48px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform var(--t-fast), opacity var(--t-fast);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   Full-width conversion band with filigree
   ============================================ */
.cta-banner {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(42, 27, 33, 0.6), transparent 70%),
                var(--background);
    padding: var(--space-xl) var(--space-sm);
    text-align: center;
}

.cta-filigree-top,
.cta-filigree-bottom {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.cta-filigree-top { top: 0; }
.cta-filigree-bottom { bottom: 0; }

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 26px;
    margin-bottom: var(--space-sm);
}

.cta-subtext {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: var(--space-md);
}

.cta-micro-copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--space-2xl) var(--space-sm);
    }
    .cta-headline {
        font-size: 34px;
    }
}

/* ============================================
   FOOTER
   Four-column layout with brand, links, payments, compliance
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) var(--space-sm) var(--space-md);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.footer-col {
    min-width: 0;
}

.site-brand--footer {
    margin-bottom: var(--space-sm);
}

.site-brand--footer .site-brand__text {
    font-size: 18px;
}

.footer-license {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.footer-heading {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    text-decoration: none;
    transition: color var(--t-fast);
}

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

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.payment-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.compliance-strip {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.compliance-text {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: var(--space-lg);
    }
}

/* ============================================
   PROSE - Long-form SEO content
   ============================================ */
.prose {
    max-width: var(--prose-max);
    margin: 0 auto;
}

.prose p {
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(232, 56, 79, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--t-fast);
}

.prose a:hover {
    text-decoration-color: var(--primary);
    color: var(--accent);
}

.prose ul {
    list-style: disc;
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.prose ol {
    list-style: decimal;
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.prose li {
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.summary-box-title {
    font-family: "Cinzel", serif;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

/* Callout / highlight box */
.callout-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.callout-box p {
    margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
    font-family: "Cinzel", serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--accent);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: var(--space-md) 0;
}

@media (min-width: 1024px) {
    .pull-quote { font-size: 28px; }
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--muted-foreground);
    white-space: nowrap;
}

/* Payment strip */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
}

.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
}

.deposit-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    min-width: 480px;
}

.deposit-table th,
.deposit-table td,
.comparison-table th,
.comparison-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--foreground);
}

.deposit-table th,
.comparison-table th {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: var(--foreground);
    background: var(--secondary);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.deposit-table tr:last-child td,
.comparison-table tr:last-child td {
    border-bottom: none;
}

.deposit-table tbody tr,
.comparison-table tbody tr {
    transition: background var(--t-fast);
}

.deposit-table tbody tr:hover,
.comparison-table tbody tr:hover {
    background: rgba(242, 177, 52, 0.04);
}

.deposit-table .amount-cell,
.comparison-table .amount-cell {
    font-family: "Cinzel", serif;
    font-weight: 600;
    color: var(--accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Scroll-triggered fade-in slide-up */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--t-slow), transform var(--t-slow);
    transition-delay: var(--stagger, 0ms);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Matador Wheel slow rotation */
.matador-wheel {
    animation: matadorSpin 20s linear infinite;
}

@keyframes matadorSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* No-JS fallback: show everything */
.no-js .animate-on-scroll,
.no-js .info-card {
    opacity: 1;
    transform: none;
}

.no-js .section-title::after {
    width: 100%;
}

.no-js .cta-banner .section-title::after {
    width: 80px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-on-scroll,
    .info-card {
        opacity: 1 !important;
        transform: none !important;
    }
    .matador-wheel {
        animation: none !important;
    }
    .section-title::after {
        width: 100% !important;
    }
    .cta-banner .section-title::after {
        width: 80px !important;
    }
}

/* ============================================
   MISC
   ============================================ */
.filigree-frame {
    border: 1px solid rgba(242, 177, 52, 0.25);
    border-radius: 4px;
}

.divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: var(--space-lg) 0;
    opacity: 0.4;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.badge--crimson {
    color: var(--primary);
    border-color: rgba(232, 56, 79, 0.3);
}

/* ============================================
   HOMEPAGE EXTRAS
   ============================================ */

/* Gold traje-de-luces filigree frame around hero model */
.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(242, 177, 52, 0.35);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* Micro-copy under hero CTA group */
.hero .cta-micro-copy {
    margin-top: var(--space-sm);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Centered section titles (trust strip, cta) */
.text-center .section-title::after,
.section-title[style*="text-align:center"]::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Summary box list styling */
.summary-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.summary-box li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--muted-foreground);
}

.summary-box li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 13px;
    top: 3px;
}

.summary-box li strong {
    color: var(--foreground);
}

/* ============================================
   SITEMAP PAGE - Ordered page list
   ============================================ */
.sitemap-list {
    list-style: none;
    counter-reset: sitemap;
    margin: 0 0 var(--space-lg);
    padding: 0;
}

.sitemap-item {
    counter-increment: sitemap;
    position: relative;
    padding: var(--space-md) 0 var(--space-md) 56px;
    border-bottom: 1px solid var(--border);
}

.sitemap-item:last-child {
    border-bottom: none;
}

.sitemap-item::before {
    content: counter(sitemap, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: var(--space-md);
    font-family: "Cinzel", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(232, 56, 79, 0.3);
    line-height: 1.2;
}

.sitemap-link {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: var(--space-xs);
    transition: color var(--t-fast);
}

.sitemap-link:hover {
    color: var(--accent);
}

.sitemap-desc {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: 0;
}
