
        :root {
            /* Paleta "noir burgundy + or antiguo" — distinta del magenta del original */
            --bg-main: #faf7f4;
            --bg-surface: #ffffff;
            --bg-surface-elevated: #f3ece7;
            --bg-deep: #2a0c16;
            --primary: #8a1538;
            --primary-hover: #6e0f2c;
            --primary-glow: rgba(138, 21, 56, 0.14);
            --accent: #b08400;
            --accent-glow: rgba(176, 132, 0, 0.12);
            --text-main: #20131a;
            --text-muted: #6c5a61;
            --border-color: #e7d9d6;
            --border-glow: rgba(138, 21, 56, 0.10);
            --hair-line: #d8c5bf;

            --max-width: 1180px;
            --radius-xs: 4px;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-pill: 999px;

            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.25rem;
            --space-xl: 3.75rem;

            --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-display: "Cormorant Garamond", "Marcellus", "Didot", Georgia, var(--font-fallback);
            --font-sans: "Manrope", "Work Sans", "Segoe UI", var(--font-fallback);
        }

        @media (max-width: 768px) {
            :root {
                --space-md: 1rem;
                --space-lg: 1.5rem;
                --space-xl: 2.5rem;
            }
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-main);
            background-image:
                radial-gradient(1200px 480px at 88% -8%, rgba(176,132,0,0.06), transparent 60%),
                radial-gradient(900px 400px at -8% 4%, rgba(138,21,56,0.05), transparent 60%);
            color: var(--text-main);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .2s ease, border-color .2s ease, transform .2s ease;
        }
        a:hover { color: var(--primary-hover); text-decoration: underline; text-underline-offset: 3px; }

        img { max-width: 100%; height: auto; display: block; }

        /* Utility Components */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 22px;
            font-family: var(--font-sans);
            font-size: clamp(0.82rem, 3.4vw, 0.94rem);
            font-weight: 700;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid transparent;
            text-decoration: none;
        }
        .btn:hover { text-decoration: none; }

        .btn--cta {
            background: linear-gradient(135deg, var(--primary), #b0163f);
            color: #fff;
            box-shadow: 0 6px 18px var(--primary-glow);
        }
        .btn--cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(138, 21, 56, 0.32);
            background: linear-gradient(135deg, var(--primary-hover), #560a22);
            color: #fff;
        }

        .btn--gold {
            background: linear-gradient(135deg, var(--accent), #d4a416);
            color: #2a0c16;
            box-shadow: 0 6px 18px var(--accent-glow);
        }
        .btn--gold:hover {
            transform: translateY(-2px);
            color: #2a0c16;
            box-shadow: 0 10px 26px rgba(176, 132, 0, 0.28);
        }

        .btn--outline {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--hair-line);
        }
        .btn--outline:hover {
            border-color: var(--primary);
            background: rgba(138, 21, 56, 0.05);
            color: var(--primary);
        }

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

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 5vw, 2.4rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: var(--space-xs);
            color: var(--text-main);
            letter-spacing: -0.015em;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 56px;
            height: 3px;
            margin: 10px auto 0;
            border-radius: var(--radius-pill);
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto var(--space-md) auto;
            font-size: clamp(0.9rem, 3vw, 1.05rem);
        }

        /* Skip link */
        .skip-to-content {
            position: absolute;
            left: -9999px; top: auto;
            width: 1px; height: 1px;
            overflow: hidden; z-index: -999;
        }
        .skip-to-content:focus {
            position: fixed;
            top: 16px; left: 16px;
            width: auto; height: auto;
            background: var(--primary); color: #fff;
            padding: 10px 18px;
            border-radius: var(--radius-pill);
            z-index: 10000;
        }

        /* HEADER — banda oscura */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: linear-gradient(180deg, #2a0c16, #360d1e);
            color: #f6ece9;
            border-bottom: 2px solid var(--accent);
        }
        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            padding: 0 var(--space-sm);
        }
        .brand {
            font-family: var(--font-display);
            font-size: clamp(1.15rem, 4.5vw, 1.7rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.01em;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-right: var(--space-sm);
        }
        .brand span { color: var(--accent); font-style: italic; }
        .header-actions { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }
        .header-cta { padding: 7px 16px; font-size: 0.78rem; }

        /* Hamburger */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 26px; height: 18px;
            background: transparent; border: none; cursor: pointer; padding: 0;
            z-index: 1001;
        }
        .nav-toggle span {
            width: 100%; height: 2px;
            background-color: #f6ece9;
            transition: all 0.3s ease;
        }
        @media (max-width: 1024px) {
            .nav-toggle { display: flex; }
            .header-cta { display: none; }
        }

        /* STRICT NAVIGATION RULE — sibling to header */
        .site-nav {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
        }
        .site-nav ul {
            list-style: none;
            display: flex;
            gap: var(--space-md);
            max-width: var(--max-width);
            margin: 0 auto;
            padding: var(--space-sm);
            overflow-x: auto;
            scrollbar-width: none;
        }
        .site-nav ul::-webkit-scrollbar { display: none; }
        .site-nav ul li { white-space: nowrap; }
        .site-nav ul li a {
            font-size: 0.86rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        .site-nav ul li a:hover {
            color: var(--primary);
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        @media (max-width: 1024px) {
            .site-nav { display: none; width: 100%; }
            .site-nav--open { display: block; }
            .site-nav ul { flex-direction: column; gap: 0; padding: 0; }
            .site-nav ul li { border-bottom: 1px solid var(--border-color); }
            .site-nav ul li a { display: block; padding: var(--space-sm) var(--space-md); width: 100%; }
        }

        /* SEARCH WIDGET */
        .search-container {
            background: var(--bg-surface-elevated);
            border-bottom: 1px solid var(--border-color);
            padding: var(--space-sm) 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs);
            max-width: 820px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1; min-width: 200px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-main);
            font-size: 0.95rem;
            font-family: inherit;
        }
        .search-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
        .search-select {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-muted);
            font-size: 0.95rem;
            font-family: inherit;
            cursor: pointer;
            min-width: 160px;
        }
        .search-select:focus { outline: none; border-color: var(--primary); }
        .search-btn {
            background: var(--primary); color: #fff; border: none;
            padding: 12px 26px; border-radius: var(--radius-sm);
            font-weight: 700; text-transform: uppercase;
            font-family: inherit; cursor: pointer;
            transition: background 0.2s;
        }
        .search-btn:hover { background: var(--primary-hover); }

        /* HERO — banda burgundy con figure */
        .hero {
            position: relative;
            padding: clamp(2rem, 7vw, 4.5rem) 0;
            background:
                linear-gradient(135deg, rgba(42,12,22,0.94), rgba(54,13,30,0.88)),
                radial-gradient(circle at 80% 20%, rgba(176,132,0,0.25), transparent 60%);
            color: #f6ece9;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
            gap: var(--space-lg);
            align-items: center;
        }
        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: minmax(0, 1fr); text-align: center; }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(176,132,0,0.14);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 5px 14px;
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: var(--space-sm);
            letter-spacing: 0.12em;
        }
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.1rem, 6.2vw, 4rem);
            font-weight: 800;
            line-height: 1.05;
            color: #fff;
            margin-bottom: var(--space-sm);
        }
        .hero-title span {
            color: var(--accent);
            font-style: italic;
        }
        .hero-desc {
            font-size: clamp(0.95rem, 3vw, 1.12rem);
            color: #e7d4cf;
            margin-bottom: var(--space-md);
            max-width: 560px;
        }
        @media (max-width: 768px) { .hero-desc { margin-left: auto; margin-right: auto; } }
        .hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
        @media (max-width: 768px) { .hero-actions { justify-content: center; } }

        .hero-figure {
            margin: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 14px 44px rgba(0,0,0,0.35);
            border: 3px solid rgba(246,236,233,0.12);
            background: rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) { .hero-figure { order: -1; } }
        .hero-figure img { width: 100%; height: auto; max-height: 460px; object-fit: cover; }
        .hero-figcaption {
            padding: 10px 14px;
            font-size: 0.75rem;
            color: #e7d4cf;
            background: rgba(42,12,22,0.55);
            border-top: 1px solid rgba(246,236,233,0.10);
        }

        /* TRUST / STATS strip */
        .stats-strip {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-sm);
            text-align: center;
        }
        .stat-num {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* CATEGORIES — grid numerado */
        .categories-section {
            background-color: var(--bg-main);
            padding: var(--space-xl) 0;
            border-bottom: 1px solid var(--border-color);
        }
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: var(--space-sm);
            counter-reset: cat;
        }
        @media (max-width: 480px) {
            .categories-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
        }
        .category-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            transition: all 0.2s ease;
            overflow: hidden;
            counter-increment: cat;
        }
        .category-card::before {
            content: counter(cat, decimal-leading-zero);
            flex-shrink: 0;
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            min-width: 28px;
        }
        .category-card::after {
            content: "";
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 3px;
            background: var(--primary);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.25s ease;
        }
        .category-card:hover {
            border-color: var(--primary);
            box-shadow: 0 6px 18px var(--border-glow);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .category-card:hover::after { transform: scaleY(1); }
        .category-card h3 {
            font-size: 0.88rem;
            text-transform: capitalize;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.2;
        }
        .category-card small {
            display: block;
            font-size: 0.72rem;
            color: var(--primary);
            font-weight: 600;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        /* PROFILE CARDS GRID — microdata */
        .girls-section {
            padding: var(--space-xl) 0;
            border-bottom: 1px solid var(--border-color);
        }
        .girls-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: var(--space-md);
        }
        @media (max-width: 480px) { .girls-grid { grid-template-columns: minmax(0, 1fr); } }

        .girl-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
        }
        .girl-card:hover {
            transform: translateY(-5px);
            border-color: rgba(138, 21, 56, 0.45);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06), 0 0 22px var(--border-glow);
        }
        .girl-card-media {
            aspect-ratio: 4/5;
            position: relative;
            overflow: hidden;
            background-color: var(--bg-surface-elevated);
        }
        .girl-card-media img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }
        .girl-card:hover .girl-card-media img { transform: scale(1.06); }
        .girl-card-badge {
            position: absolute; top: 10px; left: 10px;
            background: var(--primary); color: #fff;
            padding: 4px 11px; border-radius: var(--radius-pill);
            font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.04em;
            z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        }
        .girl-card-status {
            position: absolute; top: 10px; right: 10px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
            color: #118c4f;
            padding: 3px 9px; border-radius: var(--radius-pill);
            font-size: 0.64rem; font-weight: 700;
            display: inline-flex; align-items: center; gap: 5px;
            z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .status-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background-color: #118c4f; box-shadow: 0 0 8px #118c4f;
        }
        .girl-card-meta {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(42,12,22,0.95) 0%, rgba(42,12,22,0.65) 55%, rgba(42,12,22,0) 100%);
            padding: var(--space-md) var(--space-sm) var(--space-sm);
            z-index: 2;
        }
        .girl-card-title {
            font-family: var(--font-display);
            font-size: 1.3rem; font-weight: 700;
            color: #fff; margin-bottom: 2px;
        }
        .girl-card-parameters {
            font-size: 0.76rem; color: #e7d4cf; font-weight: 600;
        }
        .girl-card-footer {
            padding: var(--space-sm);
            background: var(--bg-surface);
            display: flex; justify-content: space-between; align-items: center;
            border-top: 1px solid var(--border-color);
        }
        .girl-price { font-size: 0.95rem; font-weight: 800; color: var(--primary); }
        .girl-price span { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); }
        .girl-rating { font-size: 0.72rem; color: var(--accent); font-weight: 700; margin-top: 2px; }

        /* MAIN & ARTICLE LAYOUT */
        .layout-container {
            display: grid;
            grid-template-columns: minmax(0, 2.6fr) minmax(0, 1.4fr);
            gap: var(--space-lg);
            padding: var(--space-xl) var(--space-sm);
        }
        @media (max-width: 1024px) {
            .layout-container { grid-template-columns: minmax(0, 1fr); }
        }

        /* BREADCRUMBS */
        .breadcrumbs { grid-column: 1 / -1; margin-bottom: -0.8rem; }
        .breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
        .breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 8px; color: var(--hair-line); }
        .breadcrumbs li[aria-current="page"] { color: var(--text-main); font-weight: 600; }
        .breadcrumbs a:hover { color: var(--primary); }

        .main-content { min-width: 0; }

        article {
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 22px rgba(0,0,0,0.015);
        }
        @media (max-width: 768px) { article { padding: var(--space-md); } }

        article img, article video, article iframe, article svg {
            max-width: 100%; height: auto;
            border-radius: var(--radius-md);
            margin: var(--space-md) auto;
            display: block;
        }
        article h1, article h2, article h3, article h4 {
            font-family: var(--font-display);
            color: var(--text-main);
            margin-top: var(--space-md);
            margin-bottom: var(--space-xs);
            line-height: 1.2;
        }
        article h1 { font-size: clamp(1.5rem, 4vw, 2.3rem); }
        article h2 { font-size: clamp(1.25rem, 3.5vw, 1.8rem); }
        article h2::before { content: "◆ "; color: var(--accent); font-size: 0.7em; }
        article h3 { font-size: clamp(1.05rem, 3vw, 1.35rem); }
        article p { margin-bottom: var(--space-sm); color: var(--text-muted); line-height: 1.75; }
        article ul, article ol { margin-bottom: var(--space-sm); padding-left: var(--space-md); color: var(--text-muted); }
        article li { margin-bottom: 6px; }
        article strong { color: var(--text-main); }
        article a { font-weight: 600; }
        article blockquote {
            border-left: 3px solid var(--accent);
            padding: var(--space-xs) var(--space-sm);
            margin: var(--space-sm) 0;
            color: var(--text-muted);
            background: var(--bg-surface-elevated);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
        }
        article table { display: block; overflow-x: auto; max-width: 100%; border-collapse: collapse; margin: var(--space-md) 0; }
        article table th, article table td { padding: 10px 14px; border: 1px solid var(--border-color); font-size: 0.85rem; text-align: left; }
        article table th { background-color: var(--bg-surface-elevated); color: var(--text-main); font-weight: 700; }
        article pre { overflow-x: auto; max-width: 100%; background: var(--bg-surface-elevated); padding: var(--space-sm); border-radius: var(--radius-sm); border: 1px solid var(--border-color); margin: var(--space-md) 0; }
        article code { font-family: monospace; word-break: break-word; background: var(--bg-surface-elevated); padding: 2px 5px; border-radius: 4px; font-size: 0.9em; }

        /* SIDEBAR / ASIDE */
        .sidebar { min-width: 0; }
        .sidebar-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            margin-bottom: var(--space-md);
            box-shadow: 0 4px 16px rgba(0,0,0,0.015);
        }
        .sidebar-sticky-wrap { position: sticky; top: 90px; }
        .sidebar-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            margin-bottom: var(--space-sm);
            color: var(--text-main);
            border-left: 3px solid var(--accent);
            padding-left: 12px;
        }
        .sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .sidebar-links a { font-size: 0.86rem; color: var(--text-muted); display: block; padding: 6px 0; border-bottom: 1px solid var(--border-color); }
        .sidebar-links a:hover { color: var(--primary); padding-left: 4px; }

        /* COUNTRY SELECTOR */
        .country-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: var(--space-sm);
        }
        .country-btn {
            display: flex; align-items: center; gap: 8px;
            padding: 10px 12px;
            background: var(--bg-surface-elevated);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-size: 0.84rem; font-weight: 700; color: var(--text-main);
            transition: all 0.2s ease;
        }
        .country-btn:hover {
            border-color: var(--primary);
            background: var(--bg-surface);
            box-shadow: 0 4px 12px rgba(138, 21, 56, 0.06);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .country-flag { font-size: 1.2rem; line-height: 1; }

        /* FAQ details */
        .faq details {
            background: var(--bg-surface-elevated);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 0;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq summary {
            cursor: pointer;
            font-weight: 700;
            color: var(--text-main);
            padding: 12px 14px;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
        }
        .faq summary::-webkit-details-marker { display: none; }
        .faq summary::before {
            content: "+";
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 800;
            line-height: 1;
        }
        .faq details[open] summary::before { content: "−"; }
        .faq details p { padding: 0 14px 14px; color: var(--text-muted); margin: 0; }

        /* FOOTER */
        .site-footer {
            background-color: var(--bg-deep);
            color: #d8c5bf;
            padding: var(--space-xl) 0 var(--space-md) 0;
            font-size: 0.86rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }
        .footer-col h4 {
            font-family: var(--font-display);
            color: #fff;
            font-size: 1.05rem;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .footer-col h4::after {
            content: ""; display: block; width: 32px; height: 2px;
            margin-top: 6px; background: var(--accent);
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .footer-col ul a { color: #d8c5bf; }
        .footer-col ul a:hover { color: var(--accent); }
        .footer-brand {
            font-family: var(--font-display);
            font-size: 1.5rem; font-weight: 800;
            color: #fff; margin-bottom: var(--space-xs);
        }
        .footer-brand span { color: var(--accent); font-style: italic; }
        .footer-bottom {
            border-top: 1px solid rgba(246,236,233,0.12);
            padding-top: var(--space-md);
            display: flex; flex-wrap: wrap;
            justify-content: space-between; align-items: center;
            gap: var(--space-sm);
        }
        .footer-copy { font-size: 0.8rem; color: #b7a39e; }
        .age-disclaimer {
            background: rgba(0,0,0,0.18);
            border: 1px solid rgba(176,132,0,0.4);
            padding: var(--space-sm);
            border-radius: var(--radius-sm);
            font-size: 0.76rem;
            margin-top: var(--space-md);
            line-height: 1.55;
            color: #d8c5bf;
        }

        /* STICKY MOBILE BAR */
        .sticky-bar {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: rgba(250, 247, 244, 0.97);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-color);
            padding: 10px var(--space-sm);
            display: none;
            justify-content: space-between; align-items: center;
            z-index: 999; gap: var(--space-sm);
            box-shadow: 0 -4px 15px rgba(0,0,0,0.04);
        }
        @media (max-width: 768px) {
            .sticky-bar { display: flex; }
            body { padding-bottom: 72px; }
        }
        .sticky-bar-info { min-width: 0; }
        .sticky-bar-title {
            font-size: 0.85rem; font-weight: 800; color: var(--text-main);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .sticky-bar-sub { font-size: 0.7rem; color: var(--primary); font-weight: 700; }

        /* engine safety: menu must never be trapped in sticky/fixed */
        .site-nav,.site-nav *{position:static !important}
    

html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
body{ overflow-x:hidden; }
img,video,iframe,svg{ max-width:100%; height:auto; }
main,article,section,aside,header,nav,footer{ min-width:0; }
@media (max-width:768px){
  [class*="layout"],[class*="container"],[class*="grid"],[class*="content"],[class*="wrapper"],[class*="main"],[class*="row"]{ min-width:0; }
  pre,table{ min-width:0; max-width:100%; }
  pre{ overflow-x:auto; }
  table{ display:block; overflow-x:auto; }
  code,kbd,samp{ word-break:break-word; }
  [class*="ticker"]{ overflow:hidden; }
  [class*="ticker"] *{ min-width:0; }
}
