/* =========================================================================
   ofertiva.pro — base stylesheet
   Palette: medianoche ink + celeste (Argentine sky) + sol de mayo gold
   Type: Chivo (display) / Archivo (body) / Chivo Mono (data & labels)
   ========================================================================= */

:root {
    --ink-900: #060A13;
    --ink-800: #0B1120;
    --ink-750: #0E1526;
    --ink-700: #121C31;
    --ink-600: #1A2740;
    --line: rgba(255, 255, 255, .10);
    --line-strong: rgba(255, 255, 255, .18);

    --text: #E8EEF7;
    --muted: #97A6BF;
    --muted-dim: #71809A;

    --celeste: #56B8EA;
    --celeste-deep: #2A87C8;
    --celeste-soft: rgba(86, 184, 234, .14);

    --sol: #F3C24C;
    --sol-deep: #C99320;
    --sol-soft: rgba(243, 194, 76, .14);

    --alert: #F08A6C;

    --display: "Chivo", "Helvetica Neue", Arial, sans-serif;
    --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
    --mono: "Chivo Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

    --wrap: 1180px;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 18px 40px -24px rgba(0, 0, 0, .9);
}

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

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

body {
    margin: 0;
    background: var(--ink-800);
    color: var(--text);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--celeste); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .5em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

code {
    font-family: var(--mono);
    font-size: .88em;
    background: var(--ink-700);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: .1em .4em;
}

:focus-visible {
    outline: 3px solid var(--sol);
    outline-offset: 3px;
    border-radius: 3px;
}

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

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--sol); color: var(--ink-900);
    padding: 12px 18px; font-family: var(--mono); font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- shared bits ---------- */
.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--celeste);
    margin: 0 0 14px;
}

.age-chip {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--ink-900);
    background: var(--sol);
    border-radius: 3px;
    padding: 2px 6px;
    margin-right: 8px;
    vertical-align: baseline;
}
.age-chip--lg { font-size: 12px; padding: 3px 8px; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 1.2;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
    text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
    background: linear-gradient(180deg, var(--sol) 0%, var(--sol-deep) 100%);
    color: var(--ink-900);
    box-shadow: 0 12px 26px -14px rgba(243, 194, 76, .8);
}
.btn--primary:hover { box-shadow: 0 16px 32px -14px rgba(243, 194, 76, .95); }

.btn--outline {
    border-color: var(--line-strong);
    color: var(--text);
    background: transparent;
}
.btn--outline:hover { border-color: var(--celeste); color: var(--celeste); }

.btn--ghost {
    background: var(--celeste);
    color: var(--ink-900);
    border-color: var(--celeste);
}

.btn--lg { font-size: 17px; padding: 17px 34px; }
.btn--sm { font-size: 13px; padding: 9px 16px; }
.btn--block { width: 100%; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(6, 10, 19, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.topbar {
    background: var(--ink-700);
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar p { margin: 0; }
.topbar__age { color: var(--text); }

.header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--sol); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__text { font-family: var(--display); font-size: 20px; letter-spacing: -.03em; color: var(--text); }
.brand__text strong { font-weight: 900; }
.brand__text span { color: var(--muted-dim); font-weight: 400; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
    display: block;
    padding: 8px 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    border-radius: 6px;
}
.nav__link:hover { color: var(--text); background: var(--ink-700); text-decoration: none; }
.nav__link.is-current { color: var(--text); box-shadow: inset 0 -2px 0 var(--celeste); border-radius: 0; }

.lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
}
.lang__opt { color: var(--muted); padding: 0 3px; }
.lang__opt:hover { color: var(--text); text-decoration: none; }
.lang__opt.is-active { color: var(--sol); }
.lang__sep { color: var(--muted-dim); }

.nav-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    background: var(--ink-700);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 14px;
    cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 16px; height: 2px; background: currentColor; display: block; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
    content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after { top: 5px; }

/* =========================================================================
   HERO (home)
   ========================================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1000px 460px at 78% -10%, rgba(86, 184, 234, .20), transparent 62%),
        radial-gradient(700px 380px at 8% 110%, rgba(243, 194, 76, .10), transparent 60%),
        var(--ink-800);
    border-bottom: 1px solid var(--line);
}
.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    gap: 56px;
    align-items: center;
    padding-top: 92px;
    padding-bottom: 96px;
}
.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.3rem);
    margin-bottom: 22px;
    max-width: 14ch;
}
.hero__sub {
    font-size: clamp(1.06rem, 2vw, 1.32rem);
    color: var(--text);
    max-width: 54ch;
    margin-bottom: 14px;
}
.hero__text { color: var(--muted); max-width: 52ch; margin-bottom: 34px; }
.hero__actions { margin-bottom: 20px; }
.hero__age {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .06em;
    color: var(--muted);
    margin: 0;
}
.hero__age a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.hero__age a:hover { color: var(--celeste); }
.hero__sep { margin: 0 10px; color: var(--muted-dim); }

/* decorative stub */
.hero__stub { display: flex; justify-content: center; }
.stub {
    position: relative;
    width: 100%;
    max-width: 300px;
    background: linear-gradient(160deg, var(--ink-700), var(--ink-750));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 30px 26px 26px;
    transform: rotate(-3deg);
    box-shadow: var(--shadow);
}
.stub__label {
    font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
    text-transform: uppercase; color: var(--celeste); margin: 0 0 12px;
}
.stub__word {
    font-family: var(--display); font-weight: 900; font-size: 38px;
    letter-spacing: -.04em; color: var(--text); margin: 0 0 22px;
}
.stub__perf {
    position: relative;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 14px);
    margin: 0 -26px 22px;
}
.stub__perf::before, .stub__perf::after {
    content: ""; position: absolute; top: -9px; width: 18px; height: 18px;
    background: var(--ink-800); border-radius: 50%;
}
.stub__perf::before { left: -9px; }
.stub__perf::after { right: -9px; }
.stub__meta {
    font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
    color: var(--muted-dim); margin: 0 0 6px;
}

/* =========================================================================
   PAGE HEAD (inner pages)
   ========================================================================= */
.pagehead {
    background:
        radial-gradient(760px 320px at 12% -30%, rgba(86, 184, 234, .16), transparent 65%),
        var(--ink-750);
    border-bottom: 1px solid var(--line);
}
.pagehead__inner { padding-top: 64px; padding-bottom: 60px; max-width: 900px; }
.pagehead__title { font-size: clamp(2.05rem, 4.4vw, 3.15rem); margin-bottom: 18px; }
.pagehead__lead { color: var(--muted); font-size: 1.08rem; max-width: 68ch; margin: 0; }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: 76px 0; border-bottom: 1px solid var(--line); }
.section:last-of-type { border-bottom: 0; }
.section--alt { background: var(--ink-750); }
.section--tickets { padding-top: 60px; }
.section--panel { background: var(--ink-750); }

.section__title { font-size: clamp(1.5rem, 2.8vw, 2.05rem); margin-bottom: 16px; }
.section__lead { color: var(--muted); max-width: 74ch; margin-bottom: 34px; }
.section__note {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--muted);
}

/* =========================================================================
   TICKETS (bonus cards) — signature element
   ========================================================================= */
.tickets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }

.ticket {
    position: relative;
    background: linear-gradient(180deg, var(--ink-700) 0%, var(--ink-750) 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}
.ticket:hover { transform: translateY(-4px); border-color: rgba(243, 194, 76, .45); }
.ticket::before {
    content: "";
    position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, var(--sol), var(--celeste));
}

.ticket__top { padding: 30px 30px 26px; text-align: center; }
.ticket__badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--sol);
    background: var(--sol-soft);
    border: 1px solid rgba(243, 194, 76, .3);
    border-radius: 999px;
    padding: 5px 13px;
    margin: 0 0 16px;
}
.ticket__name { font-size: 1.32rem; margin-bottom: 20px; }
.ticket__amount { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ticket__amount-main {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(2.7rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.045em;
    color: var(--sol);
}
.ticket__amount-sub {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
}

.ticket__perf {
    position: relative;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 13px);
}
.ticket__perf::before, .ticket__perf::after {
    content: ""; position: absolute; top: -11px; width: 22px; height: 22px;
    background: var(--ink-800); border-radius: 50%;
    border: 1px solid var(--line-strong);
}
.ticket__perf::before { left: -12px; }
.ticket__perf::after { right: -12px; }
.section--alt .ticket__perf::before,
.section--alt .ticket__perf::after { background: var(--ink-750); }

.ticket__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.ticket__desc { color: var(--text); margin-bottom: 20px; }

.ticket__feats { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.ticket__feats li {
    position: relative;
    padding-left: 28px;
    font-size: 15.5px;
    color: var(--muted);
}
.ticket__feats li::before {
    content: "✓";
    position: absolute; left: 0; top: -1px;
    color: var(--celeste);
    font-family: var(--mono);
    font-weight: 700;
}

.ticket__terms {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted-dim);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 22px;
}
.ticket__terms-label {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.ticket__body .btn { margin-top: auto; }
.ticket__foot {
    margin: 14px 0 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--muted-dim);
    text-align: center;
}

/* ---------- notice ---------- */
.notice {
    margin: 32px 0 0;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--ink-700);
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}
.notice--warn { border-left: 3px solid var(--sol); }

/* =========================================================================
   TABLES
   ========================================================================= */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ctable {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 15px;
}
.ctable th, .ctable td {
    text-align: left;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.ctable thead th {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--text);
    border-bottom: 1px solid var(--line-strong);
    background: var(--ink-700);
}
.ctable tbody th {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    width: 22%;
    white-space: nowrap;
}
.ctable td { color: var(--muted); }
.ctable tbody tr:hover td, .ctable tbody tr:hover th { background: rgba(255, 255, 255, .025); }
.ctable tbody tr:last-child td, .ctable tbody tr:last-child th { border-bottom: 0; }

/* =========================================================================
   DEFINITION LIST
   ========================================================================= */
.deflist { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.deflist__item {
    background: var(--ink-750);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
}
.deflist dt {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text);
    margin-bottom: 8px;
}
.deflist dd { margin: 0; color: var(--muted); font-size: 15.5px; }
.section--alt .deflist__item { background: var(--ink-700); }

/* =========================================================================
   CARD GRID
   ========================================================================= */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
    background: var(--ink-750);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 26px 28px;
    transition: border-color .2s ease;
}
.card:hover { border-color: var(--line-strong); }
.card__title { font-size: 1.06rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.section--alt .card { background: var(--ink-700); }

/* =========================================================================
   CHECKLISTS
   ========================================================================= */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
    position: relative;
    padding-left: 32px;
    color: var(--muted);
    max-width: 88ch;
}
.checklist li strong { color: var(--text); }
.checklist li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    font-family: var(--mono);
    font-weight: 700;
    color: var(--celeste);
}
.checklist--x li::before { content: "✕"; color: var(--muted-dim); }
.checklist--alert li::before { content: "!"; color: var(--alert); }

/* =========================================================================
   PANELS & FORMS
   ========================================================================= */
.panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    background: var(--ink-700);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 40px;
}
.panel--form { display: block; max-width: 640px; padding: 36px; }
.panel__title { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-bottom: 12px; }
.panel__text { color: var(--muted); margin: 0; }

.form { display: grid; gap: 18px; }
.form--inline { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }

.field { display: grid; gap: 7px; }
.field label {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input, .field textarea {
    width: 100%;
    font-family: var(--body);
    font-size: 16px;
    color: var(--text);
    background: var(--ink-800);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--celeste);
    box-shadow: 0 0 0 3px var(--celeste-soft);
}
.form .btn { justify-self: start; }
.form--inline .btn { justify-self: stretch; height: 52px; }

.form__note { margin: 16px 0 0; font-size: 13.5px; color: var(--muted-dim); }
.form__note a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* JS success states */
.form-success {
    border: 1px solid rgba(86, 184, 234, .4);
    background: var(--celeste-soft);
    border-radius: var(--radius);
    padding: 26px 28px;
}
.form-success__title {
    font-family: var(--display);
    font-weight: 900;
    font-size: 1.18rem;
    color: var(--text);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-success__title::before {
    content: "✓";
    font-family: var(--mono);
    font-size: 14px;
    color: var(--ink-900);
    background: var(--celeste);
    border-radius: 50%;
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    flex: none;
}
.form-success__text { color: var(--muted); margin: 0; font-size: 15.5px; }
.form-success .btn { margin-top: 20px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { display: grid; gap: 12px; max-width: 900px; }
.faq__item {
    background: var(--ink-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-family: var(--mono);
    font-size: 20px;
    line-height: 1;
    color: var(--celeste);
    flex: none;
    transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { border-bottom: 1px solid var(--line); }
.faq__answer { padding: 18px 22px 20px; color: var(--muted); font-size: 15.5px; }
.faq__answer p { margin: 0; }
.section--alt .faq__item { background: var(--ink-800); }

/* =========================================================================
   RESPONSIBLE GAMBLING STRIP
   ========================================================================= */
.rg-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr);
    gap: 44px;
    align-items: center;
}
.rg-strip__text p { color: var(--muted); max-width: 62ch; }
.rg-strip__links { margin-top: 24px; }
.rg-strip__phone {
    background: var(--ink-700);
    border: 1px solid rgba(243, 194, 76, .3);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.rg-strip__phone-label {
    font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
    text-transform: uppercase; color: var(--sol); margin: 0 0 10px;
}
.rg-strip__phone-num { margin: 0 0 12px; }
.rg-strip__phone-num a {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(1.7rem, 3.4vw, 2.25rem);
    letter-spacing: -.03em;
    color: var(--text);
}
.rg-strip__phone-num a:hover { color: var(--sol); text-decoration: none; }
.rg-strip__phone-note { margin: 0; font-size: 13.5px; color: var(--muted-dim); }

/* =========================================================================
   SPLIT LAYOUT + ASIDE
   ========================================================================= */
.split { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.split--form { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
.split__main > .section__title { margin-top: 34px; }
.split__main > .section__title:first-child, .split__main > .eyebrow + .section__title { margin-top: 0; }
.split__main p { color: var(--muted); }
.split__main p strong { color: var(--text); }

.split__aside {
    background: var(--ink-750);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 130px;
}
.section--alt .split__aside { background: var(--ink-700); }
.aside__title { font-size: 1rem; margin: 26px 0 12px; }
.aside__title:first-child { margin-top: 0; }
.split__aside p { color: var(--muted); font-size: 15px; }
.aside__mail { font-family: var(--mono); font-size: 15px; margin-bottom: 4px; }
.aside__mail--alt { color: var(--muted-dim); }
.aside__note { font-size: 13.5px; color: var(--muted-dim); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 20px; }

.minidl { margin: 0; display: grid; gap: 0; }
.minidl > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}
.minidl > div:last-child { border-bottom: 0; }
.minidl dt {
    font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted-dim);
}
.minidl dd { margin: 0; font-size: 14.5px; color: var(--text); text-align: right; }

.inline-mail { font-size: 14.5px; color: var(--muted); margin-left: 10px; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    background: linear-gradient(120deg, var(--ink-700), var(--ink-750));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 38px 40px;
}
.cta-band p { color: var(--muted); margin: 0; max-width: 62ch; }
.cta-band .section__title { margin-bottom: 10px; }
.cta-band__action { flex: none; }

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.legal { max-width: 820px; }
.legal__updated {
    font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted-dim);
    border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 34px;
}
.legal__block { margin-bottom: 34px; }
.legal__block:last-child { margin-bottom: 0; }
.legal__block h2 { font-size: 1.22rem; margin-bottom: 12px; }
.legal__block p { color: var(--muted); }
.legal__block p strong { color: var(--text); }

/* =========================================================================
   404
   ========================================================================= */
.error {
    background:
        radial-gradient(800px 400px at 50% -20%, rgba(86, 184, 234, .18), transparent 65%),
        var(--ink-800);
}
.error__inner { padding: 110px 24px 120px; text-align: center; max-width: 760px; }
.error__code {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(5rem, 16vw, 9rem);
    line-height: .9;
    letter-spacing: -.06em;
    color: transparent;
    -webkit-text-stroke: 2px var(--sol);
    margin: 0 0 18px;
}
.error__title { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.error__text { color: var(--muted); margin-bottom: 32px; }
.error__actions { margin-bottom: 22px; }
.error__links { font-size: 14.5px; color: var(--muted-dim); margin: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink-900); border-top: 1px solid var(--line); }
.foot__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 44px;
    padding-top: 62px;
    padding-bottom: 46px;
}
.brand--foot { margin-bottom: 16px; }
.foot__blurb { color: var(--muted-dim); font-size: 14.5px; max-width: 42ch; margin: 0; }
.foot__title {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--celeste);
    margin: 0 0 16px;
}
.foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot__list a { color: var(--muted); font-size: 14.5px; }
.foot__list a:hover { color: var(--text); }
.foot__help { margin: 18px 0 0; font-size: 13.5px; color: var(--muted-dim); }
.foot__phone { font-family: var(--mono); font-weight: 700; color: var(--sol); display: block; margin-top: 6px; font-size: 16px; }

.foot__legal { border-top: 1px solid var(--line); padding-top: 26px; padding-bottom: 40px; }
.foot__disclaimer { font-size: 13px; line-height: 1.65; color: var(--muted-dim); max-width: 105ch; }
.foot__copy { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--muted-dim); margin: 0; }

/* =========================================================================
   COOKIE BAR
   ========================================================================= */
.cookiebar {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--ink-700);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 22px;
}
.cookiebar[hidden] { display: none; }
.cookiebar__text { margin: 0; font-size: 14px; color: var(--muted); }
.cookiebar__text a { color: var(--celeste); text-decoration: underline; text-underline-offset: 2px; }
.cookiebar .btn { flex: none; }

/* =========================================================================
   MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .btn:hover, .ticket:hover { transform: none; }
}
