/*
 * MILLIONER CASINO - DESIGN SYSTEM
 * Opulent neo-luxury: deep espresso-black, champagne gold, ivory.
 * Single fixed dark theme (no theme switcher per brief).
 * Fonts: Playfair Display (headlines) + Manrope (body).
 */

:root {
    --background: #12100C;
    --foreground: #F2EAD8;
    --card: #1B1712;
    --card-foreground: #F2EAD8;
    --popover: #201A14;
    --popover-foreground: #F2EAD8;
    --primary: #D9A83F;
    --primary-foreground: #12100C;
    --secondary: #5C1F2E;
    --secondary-foreground: #F2EAD8;
    --muted: #2A231B;
    --muted-foreground: #B9A98C;
    --accent: #F0CE7A;
    --accent-foreground: #16110B;
    --destructive: #C2413B;
    --destructive-foreground: #FFF4F2;
    --border: #5C4825;
    --input: #221B14;
    --ring: #D9A83F;

    /* Typography */
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Manrope", "Segoe UI", Arial, sans-serif;

    /* Gold accents */
    --gold-gradient: linear-gradient(120deg, #F0CE7A 0%, #D9A83F 45%, #B98427 100%);
    --gold-hairline: rgba(217, 168, 63, 0.38);
    --gold-hairline-soft: rgba(217, 168, 63, 0.18);

    /* Layout */
    --container: 1280px;
    --text-col: 720px;
    --header-h: 64px;
    --section-pad: 64px;

    /* Motion */
    --ease-lux: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE - Document & typography
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(1100px 500px at 85% -100px, rgba(217, 168, 63, 0.07), transparent 60%),
        radial-gradient(900px 420px at 10% 110%, rgba(217, 168, 63, 0.05), transparent 60%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--foreground);
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(1.875rem, calc(1.1rem + 3.4vw), 3.25rem); /* 30px -> 52px */
}

h2 {
    font-size: clamp(1.625rem, calc(1.15rem + 2vw), 2.375rem); /* 26px -> 38px */
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, calc(1.05rem + 0.9vw), 1.625rem); /* 20px -> 26px */
    font-weight: 500;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Italic accent words inside headings render in gradient gold */
h1 em, h2 em, h3 em,
.hero__title em,
.cta-banner__title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    margin: 0 0 24px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 250ms var(--ease-lux);
}

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

ul, ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: var(--foreground);
}

/* ============================================
   LAYOUT - Container, text columns, sections
   .container   - max-width 1280px centered
   .text-col    - 720px reading column
   .section     - standard vertical rhythm
   .section--alt - lifted charcoal-cocoa background
   ============================================ */

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

.text-col {
    max-width: var(--text-col);
}

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

.section--alt {
    background-color: var(--card);
}

.section__head {
    max-width: var(--text-col);
    margin-bottom: 40px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section__lead {
    color: var(--muted-foreground);
    font-size: 17px;
}

.gold-divider {
    width: 72px;
    height: 2px;
    border: 0;
    background: var(--gold-gradient);
    margin: 0 0 32px;
}

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

/* ============================================
   BUTTONS - Gold-filled and ghost styles
   .btn        - base, 48px min touch target
   .btn--lg    - 56px primary CTA height
   .btn--gold  - gold fill with shimmer sweep on hover
   .btn--ghost - hairline gold outline
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 250ms var(--ease-lux), box-shadow 250ms var(--ease-lux),
                background-color 250ms var(--ease-lux), color 250ms var(--ease-lux);
}

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

.btn--gold {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: 0 6px 24px rgba(217, 168, 63, 0.25);
}

.btn--gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 600ms var(--ease-lux);
    pointer-events: none;
}

.btn--gold:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(217, 168, 63, 0.4);
}

.btn--gold:hover::after {
    left: 130%;
}

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--gold-hairline);
}

.btn--ghost:hover {
    color: var(--accent);
    border-color: var(--primary);
    background: rgba(217, 168, 63, 0.08);
}

/* ============================================
   HEADER - Sticky blurred glass bar
   .site-header    - fixed top bar, z-index 1000
   .menu-toggle    - hamburger (mobile only), z-index 1001
   .primary-nav    - inline on desktop, fixed drawer on mobile
   .header-actions - Login / Registrieren (desktop only; the mobile
                     drawer and hero provide the same CTAs, so the
                     buttons are hidden on small screens to keep the
                     header inside the viewport)
   NOTE: backdrop-filter only applies at desktop widths so the
   fixed mobile drawer is never trapped in a containing block.
   ============================================ */

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 1100;
    padding: 10px 18px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    border-radius: 4px;
    transition: top 200ms var(--ease-lux);
}

.skip-link:focus {
    top: 8px;
    color: var(--primary-foreground);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(18, 16, 12, 0.94);
    border-bottom: 1px solid var(--gold-hairline-soft);
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 44px;
    margin-right: auto;
    color: var(--foreground);
}

.site-brand__mark {
    display: inline-flex;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-brand__text em {
    font-style: italic;
    font-weight: 500;
}

/* Hamburger toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--gold-hairline);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 300ms var(--ease-lux), opacity 200ms var(--ease-lux);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile drawer: hidden by default, fixed full-height panel when open */
.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--background);
    background-image: radial-gradient(700px 300px at 50% 0%, rgba(217, 168, 63, 0.08), transparent 70%);
    overflow-y: auto;
    padding: 24px 20px 48px;
    border-top: 1px solid var(--gold-hairline-soft);
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--gold-hairline-soft);
    border-radius: 4px;
}

.primary-nav__link:hover {
    color: var(--accent);
    background: rgba(217, 168, 63, 0.07);
}

.primary-nav__drawer-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Desktop-only header buttons: hidden on mobile so the bar never
   overflows the viewport (drawer + hero provide the same CTAs) */
.header-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.header-actions .btn {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 15px;
}

/* Desktop: inline nav, blurred glass header, visible header actions */
@media (min-width: 1024px) {
    :root {
        --header-h: 76px;
    }

    .site-header {
        background-color: rgba(18, 16, 12, 0.82);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .menu-toggle {
        display: none;
    }

    .primary-nav {
        display: flex;
        align-items: center;
        margin-left: 24px;
    }

    .primary-nav__list {
        flex-direction: row;
        gap: 4px;
    }

    .primary-nav__link {
        min-height: 44px;
        padding: 0 14px;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 0;
    }

    .primary-nav__drawer-actions {
        display: none;
    }

    .header-actions {
        display: flex;
        margin-left: auto;
    }

    .site-brand {
        margin-right: 0;
    }

    .header-actions__login {
        display: inline-flex;
    }
}

/* ============================================
   HERO - Full-bleed banners with model imagery
   .hero        - relative container, clipped overflow
   .hero__media - absolute cover image + gradient overlay
   .hero__glow  - radial candlelight glow with 20s drift
   ============================================ */

.hero {
    position: relative;
    overflow: clip;
    display: flex;
    align-items: center;
    min-height: 480px;
    padding: 96px 0 72px;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 16, 12, 0.62) 0%, rgba(18, 16, 12, 0.78) 55%, var(--background) 100%);
}

.hero__glow {
    position: absolute;
    z-index: -1;
    width: 720px;
    height: 720px;
    max-width: 140vw;
    top: -220px;
    left: 50%;
    margin-left: -360px;
    background: radial-gradient(circle, rgba(217, 168, 63, 0.22) 0%, rgba(217, 168, 63, 0.06) 45%, transparent 70%);
    pointer-events: none;
    animation: glow-drift 20s ease-in-out infinite alternate;
}

.hero__content {
    max-width: 780px;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: clamp(1rem, calc(0.9rem + 0.5vw), 1.2rem);
    color: var(--muted-foreground);
    max-width: 620px;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__trust {
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 600px;
        padding: 140px 0 110px;
    }
}

@keyframes glow-drift {
    0%   { transform: translate3d(-4%, -2%, 0) scale(1); }
    50%  { transform: translate3d(3%, 3%, 0) scale(1.06); }
    100% { transform: translate3d(-2%, 1%, 0) scale(0.98); }
}

/* ============================================
   INFO CARD GRID - Jewelry-box framed cards
   .info-card-grid - 1col mobile, 2col @640px, 3col @900px
   .info-card      - double gold hairline frame, hover lift
   ============================================ */

.info-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.info-card {
    position: relative;
    min-width: 0;
    background-color: #0E0C09;
    border: 1px solid var(--gold-hairline);
    padding: 24px;
    transition: transform 250ms var(--ease-lux), box-shadow 250ms var(--ease-lux);
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gold-hairline-soft);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 32px rgba(217, 168, 63, 0.14);
}

.info-card__image {
    width: 100%;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid var(--gold-hairline-soft);
}

.info-card__title {
    margin-bottom: 12px;
}

.info-card__text {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 0;
}

.info-card__link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    font-size: 15px;
}

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

@media (min-width: 900px) {
    .info-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .info-card {
        padding: 40px;
    }
}

/* ============================================
   STAT BLOCK - Gradient gold highlight metrics
   .stat-grid / .stat-item - count-up via script.js
   ============================================ */

.stat-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    background-color: var(--card);
    border: 1px solid var(--gold-hairline-soft);
    padding: 32px 24px;
}

.stat-item {
    text-align: center;
    min-width: 0;
}

.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, calc(1.6rem + 2.6vw), 3rem); /* up to 48px */
    font-weight: 700;
    line-height: 1.1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-item__label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.stat-item__note {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 48px 40px;
    }
}

/* ============================================
   FAQ ACCORDION - Native details, JS height animation
   .faq__item    - hairline divider, lifted bg when open
   .faq__icon    - gold plus, rotates 45deg when open
   ============================================ */

.faq {
    max-width: var(--text-col);
}

.faq__item {
    border-bottom: 1px solid var(--gold-hairline-soft);
    margin-bottom: 0;
}

.faq__item + .faq__item {
    margin-top: 24px;
}

.faq__item[open] {
    background-color: var(--card);
    border: 1px solid var(--gold-hairline-soft);
    border-radius: 6px;
    padding-bottom: 4px;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 14px 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

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

.faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gold-hairline);
    border-radius: 50%;
    transition: transform 300ms var(--ease-lux);
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.faq__icon::before {
    width: 12px;
    height: 2px;
}

.faq__icon::after {
    width: 2px;
    height: 12px;
}

.faq__item[open] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    overflow: hidden;
    transition: height 300ms var(--ease-lux);
}

.faq__answer-inner {
    padding: 4px 12px 20px;
}

.faq__answer-inner p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Touch devices: grow the toggle to the 44px minimum tap target */
@media (pointer: coarse) {
    .faq__icon {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   CTA BANNER - Full-bleed conversion section
   .cta-banner - radial golden glow, centered content
   ============================================ */

.cta-banner {
    position: relative;
    overflow: clip;
    padding: var(--section-pad) 20px;
    text-align: center;
    background-color: #0D0B08;
    border-top: 1px solid var(--gold-hairline-soft);
    border-bottom: 1px solid var(--gold-hairline-soft);
}

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 760px;
    height: 760px;
    max-width: 160vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(217, 168, 63, 0.2) 0%, rgba(217, 168, 63, 0.05) 45%, transparent 70%);
    pointer-events: none;
    animation: glow-drift 20s ease-in-out infinite alternate;
}

.cta-banner__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner__title {
    margin-bottom: 16px;
}

.cta-banner__subtitle {
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.cta-banner__micro {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   SPLIT LAYOUT - Text + media side by side
   .split - 1col mobile, 2col desktop
   ============================================ */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.split__media {
    position: relative;
    border: 1px solid var(--gold-hairline);
    padding: 6px;
}

.split__media img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.split__media--bare {
    border: 0;
    padding: 0;
}

.split__media--bare img {
    animation: idle-sway 6s ease-in-out infinite;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

    .split--reverse .split__media {
        order: 2;
    }
}

@keyframes idle-sway {
    0%, 100% { transform: rotate(-1.4deg) translateY(0); }
    50%      { transform: rotate(1.4deg) translateY(-8px); }
}

/* ============================================
   BADGES & RIBBONS - Jackpot and exclusive labels
   ============================================ */

.badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-foreground);
    background-color: var(--secondary);
    border: 1px solid rgba(240, 206, 122, 0.35);
    border-radius: 3px;
}

.badge--gold {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    border: 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    color: var(--foreground);
    font-weight: 800;
    font-size: 15px;
}

/* ============================================
   TLDR BOX & CALLOUT - Engagement patterns
   .tldr-box - key takeaways near page top
   .callout  - inline attention block (tip/warning/note)
   ============================================ */

.tldr-box {
    background-color: var(--card);
    border: 1px solid var(--gold-hairline);
    padding: 28px 24px;
    margin-bottom: 40px;
}

.tldr-box__title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--accent);
}

.tldr-box ul {
    margin: 0;
    padding-left: 20px;
}

.tldr-box li {
    color: var(--muted-foreground);
    font-size: 16px;
}

.callout {
    border-left: 3px solid var(--primary);
    background: rgba(217, 168, 63, 0.07);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 0 6px 6px 0;
}

.callout p {
    margin-bottom: 8px;
    color: var(--foreground);
}

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

.callout--warning {
    border-left-color: var(--destructive);
    background: rgba(194, 65, 59, 0.08);
}

/* ============================================
   PULL QUOTE - Oversized italic quotation
   ============================================ */

.pull-quote {
    position: relative;
    margin: 48px 0;
    padding: 16px 0 16px 56px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.375rem, calc(1.1rem + 1.2vw), 1.75rem); /* up to 28px */
    line-height: 1.4;
    color: var(--foreground);
}

.pull-quote::before {
    content: "\201C";
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 84px;
    font-style: normal;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pull-quote cite {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   TESTIMONIALS - Social proof cards
   ============================================ */

.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.testimonial-card {
    position: relative;
    min-width: 0;
    background-color: var(--card);
    border: 1px solid var(--gold-hairline-soft);
    padding: 32px 24px 24px;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 18px;
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-card__quote {
    position: relative;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold-hairline);
    flex-shrink: 0;
}

.testimonial-card__name {
    display: block;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   TRUST ROW & PAYMENT CHIPS - Muted logo strips
   ============================================ */

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 0;
}

.payment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    border: 1px solid var(--gold-hairline-soft);
    border-radius: 4px;
    background-color: var(--card);
    margin-bottom: 0;
}

/* ============================================
   COMPARISON TABLE - Recommended column highlight
   ============================================ */

.table-wrapper {
    margin: 32px 0;
    border: 1px solid var(--gold-hairline-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 560px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gold-hairline-soft);
}

.comparison-table thead th {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent);
    background-color: var(--card);
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table .is-recommended {
    background: rgba(217, 168, 63, 0.09);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table thead .is-recommended {
    border-top: 2px solid var(--primary);
}

.comparison-table tbody tr:last-child .is-recommended {
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   VIP TIER LADDER - Scroll-snap carousel / grid
   .tier-carousel - horizontal snap on mobile
   ============================================ */

.tier-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    /* Right-edge fade signals that more cards are scrollable */
    -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 98%);
    mask-image: linear-gradient(to right, #000 82%, transparent 98%);
}

.tier-card {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: start;
    background-color: var(--card);
    border: 1px solid var(--gold-hairline);
    padding: 28px 24px;
    position: relative;
}

.tier-card::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gold-hairline-soft);
    pointer-events: none;
}

.tier-card__level {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tier-card__bar {
    height: 6px;
    margin: 16px 0;
    background: var(--muted);
    border-radius: 3px;
    overflow: hidden;
}

.tier-card__bar-fill {
    display: block;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.tier-card__perk {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 6px;
}

.tier-card__perk strong {
    color: var(--accent);
}

@media (min-width: 900px) {
    .tier-carousel {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .tier-card {
        flex: none;
        max-width: none;
    }
}

/* ============================================
   SITEMAP PAGE LIST - Neutral utility list
   ============================================ */

.page-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-list__item {
    border: 1px solid var(--gold-hairline-soft);
    background-color: var(--card);
    padding: 24px;
}

.page-list__link {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--foreground);
}

.page-list__link:hover {
    color: var(--accent);
}

.page-list__desc {
    margin: 10px 0 0;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER - Four-column dark lounge footer
   ============================================ */

.site-footer {
    background-color: #0C0A07;
    border-top: 1px solid var(--gold-hairline-soft);
    padding: 56px 0 0;
    margin-top: 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.site-footer__heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 18px;
}

.site-footer__tagline {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 14px 0 20px;
}

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

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 10px;
}

.site-footer__links a {
    color: var(--muted-foreground);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}

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

.site-footer__legal {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 14px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 0 28px;
    border-top: 1px solid var(--gold-hairline-soft);
    font-size: 14px;
    color: var(--muted-foreground);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom__sitemap {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* Center the stacked payment chip rows so the final row balances */
@media (max-width: 639px) {
    .site-footer .payment-list {
        justify-content: center;
    }
}

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

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   SCROLL ANIMATIONS - Fade-in slide-up reveals
   .animate-on-scroll -> .is-visible (script.js)
   Respects prefers-reduced-motion.
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms var(--ease-lux), transform 600ms var(--ease-lux);
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__glow,
    .cta-banner__glow,
    .split__media--bare img {
        animation: none;
    }

    .btn--gold::after {
        display: none;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.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;
}

.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
