/* ============================================
   MAIN STREET GROCERY — Premium Dark Luxury
   Terracotta + Sand Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #1A1410;
    --bg-secondary: #231C16;
    --bg-tertiary: #2C2218;
    --bg-card: #251E16;
    --bg-card-hover: #2E2418;

    --gold: #C8956C;
    --gold-light: #D4A574;
    --gold-dark: #B07848;
    --gold-muted: rgba(200, 149, 108, 0.15);
    --gold-glow: rgba(200, 149, 108, 0.25);

    --sand: #E8D5C0;
    --sand-light: #F0E4D4;
    --sand-muted: rgba(232, 213, 192, 0.08);

    --terracotta: #B85C3A;
    --terracotta-light: #D4734F;
    --terracotta-muted: rgba(184, 92, 58, 0.12);

    --text-primary: #F5EDE4;
    --text-secondary: #C4B49E;
    --text-muted: #8A7B6A;
    --text-inverse: #1A1410;

    --border: rgba(200, 149, 108, 0.12);
    --border-strong: rgba(200, 149, 108, 0.25);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 24px rgba(200, 149, 108, 0.2);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol, dl {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 600;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--text-inverse);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-fast);
}
.skip-link:focus {
    top: 16px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}
@media (min-width: 1200px) {
    .container { padding: 0 48px; }
}

/* --- Typography --- */
.text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--text-inverse);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 149, 108, 0.35);
}
.btn--gold:active { transform: translateY(0); }

.btn--outline {
    background: transparent;
    color: var(--sand);
    border: 1.5px solid var(--border-strong);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-muted);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-base);
}
.header.scrolled {
    background: rgba(26, 20, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 0.813rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 1001;
}
.logo-icon {
    color: var(--gold);
    flex-shrink: 0;
}
.logo-text {
    line-height: 1.3;
}
.logo--footer {
    color: var(--text-primary);
}

/* Navigation */
.nav { z-index: 1001; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}
.nav-link:hover {
    color: var(--gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}
.nav-toggle:hover { background: var(--sand-muted); }

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--sand);
    border-radius: 2px;
    transition: all var(--transition-fast);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}
.hamburger::before { top: 6px; }
.hamburger::after { top: -6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Nav */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: calc(var(--header-height) + 24px) 24px 32px;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-menu li:last-child .btn {
        margin-top: 16px;
        text-align: center;
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(26, 20, 16, 0.7) 0%,
            rgba(26, 20, 16, 0.5) 40%,
            rgba(26, 20, 16, 0.65) 70%,
            rgba(26, 20, 16, 0.95) 100%
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: var(--header-height);
    padding-bottom: 120px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gold-muted);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    color: var(--gold);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    z-index: 2;
}

.stat-card {
    background: rgba(37, 30, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-base);
    animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.stat-card:hover {
    border-color: var(--border-strong);
    background: rgba(46, 36, 24, 0.9);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.stat-card--1 { animation-delay: 0.1s; }
.stat-card--2 { animation-delay: 0.2s; }
.stat-card--3 { animation-delay: 0.3s; }
.stat-card--4 { animation-delay: 0.4s; }

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

.stat-icon {
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0.8;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.688rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
    animation: bobble 2s ease-in-out infinite;
}
.hero-scroll svg { color: var(--gold); opacity: 0.6; }

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

@media (max-width: 1100px) {
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 64px;
        width: 100%;
        max-width: 480px;
    }
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-card { padding: 18px 14px; }
    .stat-number { font-size: 1.25rem; }
}

/* --- Section Shared --- */
.section {
    padding: 100px 0;
}
@media (min-width: 768px) {
    .section { padding: 120px 0; }
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--gold-muted);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.063rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* --- Products --- */
.products {
    background: var(--bg-secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.product-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: rgba(26, 20, 16, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    color: var(--gold);
    font-size: 0.688rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-body {
    padding: 24px;
}
.product-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.product-desc {
    font-size: 0.938rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--bg-secondary);
    box-shadow: var(--shadow-md);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.about-content { max-width: 560px; }

.about-text {
    font-size: 1.063rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-text:last-of-type { margin-bottom: 32px; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}
.feature-item strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.063rem;
    margin-bottom: 2px;
}
.feature-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 64px;
    }
}

/* --- Testimonials --- */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
}
.testimonial-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.08;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-strong);
    flex-shrink: 0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-name {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
}

/* --- Visit --- */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.visit-info { max-width: 520px; }
.visit-desc {
    font-size: 1.063rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.75;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-item { }
.contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}
.contact-label svg { flex-shrink: 0; }
.contact-item dd {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.contact-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}
.contact-item a:hover { color: var(--gold); }

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.map-placeholder {
    aspect-ratio: 4/3;
}
.map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: saturate(0.6) brightness(0.85) contrast(1.1);
    transition: filter var(--transition-base);
}
.visit-map:hover iframe {
    filter: saturate(0.8) brightness(0.9) contrast(1.05);
}

@media (min-width: 900px) {
    .visit-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 64px;
    }
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-tagline {
    margin-top: 16px;
    font-size: 0.938rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.938rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact address {
    font-style: normal;
    font-size: 0.938rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.footer-contact a:hover { color: var(--gold); }

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

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--text-inverse);
    transform: translateY(-4px);
}

/* --- Cookie Banner --- */
.cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}
.cookie-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-strong);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -8px 48px rgba(0,0,0,0.5);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    flex: 1;
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="1"] { transition-delay: 0.1s; }
[data-animate="2"] { transition-delay: 0.2s; }
[data-animate="3"] { transition-delay: 0.3s; }
[data-animate="4"] { transition-delay: 0.4s; }

/* --- Reduced Motion --- */
@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; }
    [data-animate] {
        opacity: 1;
        transform: none;
    }
    .stat-card { animation: none; }
}

/* --- Selection --- */
::selection {
    background: var(--gold);
    color: var(--text-inverse);
}
