/* =============================================================================
   UNCODED — Sintaxa Culorii · Aquatec Evolution
   Static landing page styles
   Strategy: mobile-first base, then desktop refinement at >=1024px.
   Fonts:    Antonio + Manrope (titles), Mulish (body), DM Mono (accents).
   ============================================================================= */

:root {
    --red:#E1251B;
    --red-deep:#B81B12;
    --ink:#0B0B0C;
    --ink-2:#1A1A1C;
    --paper:#FFFFFF;
    --paper-2:#F4F2EE;
    --paper-3:#E9E6E0;
    --line:#E2DED7;
    --muted:#6B6864;
    --gold:#E8B046;
    --teal:#2DBFAE;

    --max-w: 1280px;
    --gutter: 24px;
    --header-h: 64px;

    --font-display: "Antonio", "Manrope", system-ui, sans-serif;
    --font-head: "Manrope", system-ui, sans-serif;
    --font-body: "Mulish", "Manrope", system-ui, sans-serif;
    --font-mono: "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* anchor offset under sticky header */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* skip link */
.skip-link {
    position: absolute; top: -40px; left: 12px; background: var(--ink); color: #fff;
    padding: 8px 14px; z-index: 100; font-family: var(--font-mono); font-size: 12px;
    letter-spacing: .15em; text-transform: uppercase;
}
.skip-link:focus { top: 12px; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 64px 0; }
.section-paper { background: var(--paper-2); }
.section-ink { background: var(--ink); color: #fff; }

/* ---------- typography utility ---------- */
.h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(34px, 7vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
}
.section-ink .h2, .final h2 { color: #fff; }

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
}
.section-eyebrow--gold { color: var(--gold); }

.body-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #2a2925;
}
.body-text p { margin: 0 0 18px; }
.body-text strong { color: var(--ink); font-weight: 700; }
.body-text .accent { color: var(--red); }

/* ============================================================================
   HEADER (sticky on every viewport)
   ============================================================================ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
            backdrop-filter: saturate(180%) blur(8px);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.logo-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .5px;
    font-family: var(--font-head);
}
.logo-word {
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 14px;
    color: var(--ink);
    white-space: nowrap;
}
.logo-word__accent { color: var(--red); margin-left: 6px; font-weight: 600; }

/* desktop nav */
.nav {
    display: none;
    gap: 22px;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: #3a3a3a;
    text-transform: uppercase;
}
.nav a { padding: 8px 0; transition: color .2s; }
.nav a:hover, .nav a:focus-visible { color: var(--red); }

/* desktop CTA pills */
.top-cta { display: none; gap: 8px; align-items: center; }
.pill {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 3px;
    border: 1px solid var(--line);
    color: #333;
    background: #fff;
    text-transform: uppercase;
    transition: background .2s, color .2s, border-color .2s;
}
.pill.red { background: var(--red); color: #fff; border-color: var(--red); }
.pill.red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.pill.outline:hover { border-color: #333; }

/* hamburger (mobile) */
.hamburger {
    width: 44px; height: 44px;
    display: inline-grid;
    place-items: center;
    margin-right: -8px;
    border-radius: 4px;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    margin: 3px 0;
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
}
.topbar.is-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.topbar.is-open .hamburger span:nth-child(2) { opacity: 0; }
.topbar.is-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile slide-down panel */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 0;
        padding: 8px var(--gutter) 16px;
        max-height: calc(100dvh - var(--header-h));
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform .3s ease, opacity .25s ease;
        box-shadow: 0 12px 24px -16px rgba(0,0,0,0.18);
    }
    .topbar.is-open .nav {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 13px;
    }
    .nav a:last-child { border-bottom: 0; }
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 560px;
}
.hero-left {
    padding: 56px var(--gutter) 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    z-index: 2;
}
.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    min-height: 320px;
    order: -1; /* image first on mobile, behind content visually */
}
.hero-right img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .85;
}
.hero-fade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 70%, rgba(11,11,12,1) 100%);
    z-index: 1;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: #C4C2BE;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px; height: 1px;
    background: #7a7672;
}

.display {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(44px, 11vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}
.display em { font-style: normal; color: #fff; display: block; }
.display .dash { display: inline-block; margin: 0 0.12em; color: #9a9591; font-weight: 300; }

.lede {
    font-family: var(--font-body);
    font-size: clamp(15px, 2.4vw, 19px);
    line-height: 1.55;
    color: #D8D5D0;
    max-width: 520px;
    margin-top: 24px;
    font-weight: 400;
}
.lede strong { color: #fff; font-weight: 700; }

.meta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    border-top: 1px solid #1e1d1c;
    border-bottom: 1px solid #1e1d1c;
    padding: 18px 0;
}
.meta-cell + .meta-cell { padding-top: 14px; border-top: 1px solid #1e1d1c; }
.meta-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: #7a7672;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.meta-val {
    font-family: var(--font-body);
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    line-height: 1.35;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}
.cta-row--center { justify-content: center; }
.cta-note {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: #9a9591;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 26px;
    border-radius: 2px;
    border: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.btn:hover, .btn:focus-visible { background: var(--red-deep); }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
    margin-top: 22px;
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); }

/* corner coordinate marks (decorative) */
.coord {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #6a6663;
    text-transform: uppercase;
    z-index: 3;
    display: none;
}
.coord--tl { top: 18px; left: var(--gutter); }
.coord--tr { top: 18px; right: var(--gutter); }
.coord--bl { bottom: 18px; left: var(--gutter); }
.coord--br { bottom: 18px; right: var(--gutter); }

/* ============================================================================
   TICKER
   ============================================================================ */
.ticker {
    display: none;
    overflow: hidden;
    border-top: 1px solid #1e1d1c;
    border-bottom: 1px solid #1e1d1c;
    background: #000;
    color: #fff;
}
.ticker-track {
    display: flex;
    gap: 36px;
    padding: 12px 0;
    white-space: nowrap;
    animation: tk 40s linear infinite;
    will-change: transform;
}
@keyframes tk {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker span {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}
.ticker span::after {
    content: "●";
    color: var(--red);
    font-size: 7px;
    margin-left: 36px;
    display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* ============================================================================
   INTRO / DESPRE
   ============================================================================ */
.intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
.intro-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    margin-top: 14px;
    max-width: 540px;
}
.pull-list { margin: 24px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pull-list li { display: flex; gap: 16px; align-items: baseline; font-size: 15px; line-height: 1.55; color: #3a3934; }
.pull-list .idx {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--red);
    min-width: 30px;
    flex: 0 0 auto;
}

/* ============================================================================
   PARTNERS
   ============================================================================ */
.partners {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.partners-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}
.partners-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    color: var(--muted);
    text-transform: uppercase;
    flex: 1 0 100%;
}
.partner {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 13px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.partner .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.partner--sw  .dot { background: #0E2A4F; }
.partner--ica .dot { background: #0a8a5b; }
.partner--cm  .dot { background: var(--gold); }
.partner-sub { color: var(--muted); font-weight: 500; letter-spacing: 0.1em; }

/* ============================================================================
   DECODE / PROVOCAREA
   ============================================================================ */
.decode { position: relative; overflow: hidden; padding: 96px 0; }
.decode-bg { position: absolute; inset: 0; opacity: .9; z-index: 0; }
.decode-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.02);
}
.decode-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(11,11,12,0) 0%, rgba(11,11,12,0.45) 35%, rgba(11,11,12,0.92) 75%),
        linear-gradient(180deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.7) 35%, rgba(11,11,12,0.65) 70%, rgba(11,11,12,0.85) 100%);
}
.decode-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
.decode .h2 { font-size: clamp(34px, 8vw, 76px); }
.decode .h2 .c1 { color: #FF6B3D; }
.decode .h2 .c2 { color: #46D9C2; }
.decode-text {
    color: #D8D5D0;
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 1.6;
    max-width: 540px;
    margin-top: 18px;
}
.decode-text strong { color: #fff; }

.challenge-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 28px;
    color: #fff;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    max-width: 460px;
}
.challenge-card .ck {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.challenge-card h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 4vw, 32px);
    letter-spacing: 0.01em;
    line-height: 1.04;
    margin: 0 0 14px;
    text-transform: uppercase;
}
.challenge-card p {
    color: #cfccc7;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 8px;
}

/* ============================================================================
   ATMOS / EXPERIENȚĂ
   ============================================================================ */
.atmos-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
}
.atmos-header-text {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5854;
    max-width: 540px;
}
.atmos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.atmos {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 28px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 16px 40px -24px rgba(0,0,0,0.55);
    transition: transform .35s ease, box-shadow .35s ease;
}
.atmos:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7);
}
.atmos--metal  { background: linear-gradient(170deg, #5a5d62 0%, #2a2c30 50%, #0c0d0f 100%); }
.atmos--jungle { background: linear-gradient(170deg, #5d7e54 0%, #2c4a2a 50%, #0a1a10 100%); }
.atmos--earth  { background: linear-gradient(170deg, #c87a45 0%, #7a3a1c 50%, #2a1208 100%); }
.atmos--water  { background: linear-gradient(170deg, #3a98a8 0%, #19606e 50%, #06212a 100%); }

.atmos::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.22), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.45), transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.atmos::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 6px;
    height: 38%;
    z-index: 2;
    pointer-events: none;
}
.atmos--metal::after  { background: linear-gradient(180deg, #C4C7CC, transparent); }
.atmos--jungle::after { background: linear-gradient(180deg, #9CC080, transparent); }
.atmos--earth::after  { background: linear-gradient(180deg, #F49A5B, transparent); }
.atmos--water::after  { background: linear-gradient(180deg, #5BD3E8, transparent); }

.atmos .bignum {
    position: absolute;
    left: -18px; bottom: -32px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(160px, 38vw, 320px);
    line-height: 0.78;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.07);
    pointer-events: none;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}
.atmos .num {
    position: absolute;
    top: 22px; left: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.26em;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    font-weight: 600;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.atmos .num-line { display: inline-block; width: 26px; height: 1px; background: rgba(255,255,255,0.9); }
.atmos .ch {
    position: absolute;
    top: 22px; right: 28px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.7);
    text-align: right;
    z-index: 3;
}
.atmos .swatch {
    position: absolute;
    top: 50px; right: 28px;
    width: 38px; height: 8px;
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}
.atmos .swatch--metal  { background: #C4C7CC; }
.atmos .swatch--jungle { background: #9CC080; }
.atmos .swatch--earth  { background: #F49A5B; }
.atmos .swatch--water  { background: #5BD3E8; }

.atmos h3 {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(44px, 9vw, 76px);
    line-height: 0.92;
    margin: 0 0 14px;
    letter-spacing: -0.005em;
    text-transform: uppercase;
}
.atmos p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 240px;
}
.atmos .loc {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.28);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ============================================================================
   PROGRAM
   ============================================================================ */
.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}
.program-side .program-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.program-side .h2 { font-size: clamp(32px, 6.5vw, 54px); }
.program-side p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}
.tl-item:first-child { border-top: 1px solid var(--ink); }
.tl-time {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--ink);
    line-height: 1;
}
.tl-time .ampm {
    display: block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-top: 8px;
    text-transform: uppercase;
}
.tl-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.tl-tag::before { content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.tl-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.4vw, 30px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
}
.tl-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #3a3934;
    max-width: 580px;
    margin: 0;
}
.tl-sub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}
.tl-sub-item {
    display: flex;
    gap: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
}
.tl-sub-item .si-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 0.18em;
    min-width: 24px;
    flex: 0 0 auto;
}
.tl-sub-item .si-name {
    font-family: var(--font-display);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}
.tl-sub-item .si-loc {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

/* ============================================================================
   LOCATION
   ============================================================================ */
.location-h2 { margin-bottom: 24px; }
.loc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}
.loc-map {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--paper-3);
    border: 1px solid var(--line);
    overflow: hidden;
    min-width: 0;
    width: 100%;
}
.loc-map iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
.loc-info {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loc-info h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 18px;
    line-height: 1;
}
.addr-row { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.addr-row .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.addr-row .row:last-child { border-bottom: none; padding-bottom: 0; }
.addr-row .k {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
}
.addr-row .v {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    line-height: 1.5;
}

/* ============================================================================
   FINAL / RSVP
   ============================================================================ */
.final {
    padding: 96px 0 110px;
    text-align: center;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.final-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.final-bg img {
    position: absolute;
    left: 50%; bottom: -2%;
    width: auto; height: 130%;
    transform: translateX(-50%);
    object-fit: contain;
    opacity: 0.55;
    mix-blend-mode: screen;
}
.final-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(11,11,12,0) 0%, rgba(11,11,12,0.0) 18%, rgba(11,11,12,0.6) 60%, rgba(11,11,12,0.92) 90%),
        linear-gradient(180deg, rgba(11,11,12,0.65) 0%, rgba(11,11,12,0.35) 35%, rgba(11,11,12,0.45) 70%, rgba(11,11,12,0.9) 100%);
}
.final::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 120%, rgba(232,176,70,0.22), transparent 55%),
        radial-gradient(ellipse at 50% -20%, rgba(70,217,194,0.10), transparent 50%);
    pointer-events: none;
}
.final-inner { position: relative; z-index: 2; }
.final .eyebrow { justify-content: center; display: inline-flex; color: #C4C2BE; }
.final .eyebrow::before { display: none; }
.final h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 11vw, 104px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 14px 0 18px;
    text-shadow: 0 0 60px rgba(0,0,0,0.55);
}
.final h2 .glow {
    background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--gold) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.final p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #cfccc7;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.55;
}
.final-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.final-meta .m { text-align: center; }
.final-meta .mk {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.24em;
    color: #9a9591;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.final-meta .mv {
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 26px);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
}

/* ============================================================================
   FOOTER STRIP
   ============================================================================ */
.strip {
    background: #fff;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}
.strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.strip-inner small {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ============================================================================
   RESPONSIVE — TABLET (>=768) AND DESKTOP (>=1024 and >=1280)
   Mobile-first: everything above is the small-screen baseline.
   ============================================================================ */

/* ---- Small-tablet ≥ 600px: small grid bumps that already help phones rotated landscape ---- */
@media (min-width: 600px) {
    .atmos-grid { grid-template-columns: repeat(2, 1fr); }
    .meta-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .meta-cell { padding-right: 16px; }
    .meta-cell + .meta-cell { padding-top: 0; padding-left: 16px; border-top: 0; border-left: 1px solid #1e1d1c; }
    .tl-sub { grid-template-columns: repeat(2, 1fr); }
    .tl-sub-item--full { grid-column: 1 / -1; }
    .final-meta { grid-template-columns: repeat(4, 1fr); gap: 24px 36px; }
    .ticker { display: flex; }
}

/* ---- Tablet ≥ 768 ---- */
@media (min-width: 768px) {
    :root { --gutter: 40px; --header-h: 72px; }

    .section { padding: 96px 0; }
    .decode  { padding: 120px 0; }
    .final   { padding: 130px 0 150px; }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: 640px;
    }
    .hero-right { min-height: 360px; }

    .intro {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 56px;
    }
    .atmos-header {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: end;
    }
    .program-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .loc-grid {
        grid-template-columns: 1.1fr 1fr;
        align-items: stretch;
    }
    .loc-grid > * { min-width: 0; }
    .loc-map { aspect-ratio: auto; min-height: 360px; height: 100%; }
    .loc-info { border-top: 1px solid var(--line); border-left: none; padding: 36px 32px; }
    .addr-row .row { grid-template-columns: 120px 1fr; gap: 18px; align-items: baseline; padding-bottom: 16px; }
    .decode-content {
        grid-template-columns: 1.2fr 0.9fr;
        gap: 40px;
    }
}

/* V7 hero coordinate correction: top is relative to the hero, not the viewport. */
@media (min-width: 1024px) {
    .coord--tl {
        top: 18px;
    }
}

/* V8 final cascade correction for desktop hero top-left coordinate. */
@media (min-width: 1024px) {
    .hero .coord--tl {
        top: 18px;
    }
}

/* ---- Desktop ≥ 1024 ---- */
@media (min-width: 1024px) {
    :root { --gutter: 48px; --header-h: 88px; }

    .nav { display: inline-flex; }
    .top-cta { display: inline-flex; }
    .hamburger { display: none; }

    .topbar-inner { gap: 24px; }
    .logo-word { font-size: 16px; }
    .logo-mark { width: 40px; height: 40px; font-size: 14px; }

    .section { padding: 110px 0; }
    .decode  { padding: 140px 0; }
    .final   { padding: 150px 0 170px; }

    .hero-grid {
        grid-template-columns: 1.05fr 1fr;
        min-height: 720px;
    }
    .hero-left {
        padding: 72px var(--gutter) 56px;
        justify-content: space-between;
    }
    .hero-right {
        order: 0;
        min-height: auto;
    }
    .hero-right img { object-position: left center; opacity: 1; }
    .hero-fade {
        background: linear-gradient(90deg, var(--ink) 0%, rgba(0,0,0,0.55) 18%, rgba(0,0,0,0) 50%);
    }

    .coord { display: block; }

    .intro {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 80px;
    }
    .atmos-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .atmos { min-height: 560px; padding: 32px; }
    .atmos .num  { top: 26px; left: 32px; }
    .atmos .ch   { top: 26px; right: 32px; }
    .atmos .swatch { top: 54px; right: 32px; width: 42px; height: 10px; }

    .program-grid {
        grid-template-columns: 320px 1fr;
        gap: 64px;
    }
    .program-side { position: sticky; top: calc(var(--header-h) + 32px); }
    .tl-item {
        grid-template-columns: 140px 1fr;
        gap: 36px;
        padding: 36px 0;
    }

    .decode-content { grid-template-columns: 1.2fr 1fr; gap: 64px; }

    .loc-grid { grid-template-columns: 1.1fr 1fr; }
    .loc-info { padding: 56px 48px; }
    .loc-map { min-height: 480px; }

    .final-meta { grid-template-columns: repeat(4, auto); gap: 64px; justify-content: center; }
}

/* ---- Wide ≥ 1280 ---- */
@media (min-width: 1280px) {
    :root { --gutter: 56px; }
    .hero-left { padding: 88px var(--gutter) 64px; }
    .h2 { font-size: 64px; }
    .display { font-size: 104px; }
}

/* ---- Tighter mobile (<480) ---- */
@media (max-width: 479px) {
    .ticker { display: none; }
    .partners-inner { gap: 14px; }
    .partner { font-size: 12px; letter-spacing: 0.12em; }
    .atmos { padding: 24px; min-height: 420px; }
    .atmos h3 { font-size: clamp(40px, 14vw, 56px); }
    .atmos .bignum { font-size: clamp(140px, 50vw, 220px); left: -10px; bottom: -22px; }
    .challenge-card { padding: 22px; }
    .strip-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
    .top-cta { display: none; }
}

/* ---- Print ---- */
@media print {
    .topbar, .ticker, .hero-fade, .decode-bg, .final-bg, .strip, .skip-link { display: none !important; }
    body { color: #000; background: #fff; }
    .section, .final, .decode { padding: 24px 0; }
}

/* ============================================================================
   V2 FIXES — 2026-05-26
   User review pass: black header/logo, Mulish hero, Romanian ticker,
   Elementor-like partner strip, RAL cards, sticky program, centered location,
   RSVP countdown + form, legal footer.
   ============================================================================ */

/* 1. Black sticky header + white logo */
.topbar,
.topbar--dark {
    background: #000;
    border-bottom-color: rgba(255,255,255,0.12);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
            backdrop-filter: saturate(180%) blur(8px);
}
.logo-img {
    width: min(180px, 54vw);
    height: auto;
    max-height: 42px;
    object-fit: contain;
}
.topbar .nav { color: rgba(255,255,255,0.82); }
.topbar .nav a:hover,
.topbar .nav a:focus-visible { color: #fff; }
.topbar .hamburger span { background: #fff; }
.topbar .pill.red {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
@media (max-width: 1023px) {
    .topbar .nav {
        background: #000;
        border-bottom-color: rgba(255,255,255,0.12);
        box-shadow: 0 18px 28px -20px rgba(0,0,0,0.9);
    }
    .topbar .nav a {
        color: rgba(255,255,255,0.9);
        border-bottom-color: rgba(255,255,255,0.12);
    }
}

/* 2. Hero display headline should use Mulish */
.display {
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: -0.065em;
}
.display .dash { letter-spacing: -0.02em; }

/* 4. Partner strip mirrors provided Elementor HTML */
.partners {
    padding: 40px 0;
}
.partners-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    font-family: var(--font-head);
}
.partners-label {
    flex: 0 1 auto;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    color: var(--muted);
    text-transform: uppercase;
}
.partner {
    font-size: 15px;
    letter-spacing: 0.16em;
    gap: 10px;
}

/* 5. Experienta: match the RAL card implementation from section-3.txt */
#experienta {
    background: #0B0B0C;
    color: #fff;
}
#experienta .h2 { color: #fff; }
#experienta .section-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--red);
}
#experienta .section-eyebrow::before { display: none; }
.atmos-header-text { color: #efefef; }
.ae-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.ae-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 32px;
    font-family: var(--font-body);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 60px -30px rgba(0,0,0,0.6);
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
    will-change: transform;
}
.ae-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.28), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.45), transparent 60%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.ae-card::after {
    content: "";
    position: absolute;
    top: -35%;
    left: -85%;
    width: 55%;
    height: 170%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
    transform: rotate(18deg);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    transition: left 0.75s ease, opacity 0.35s ease;
}
.ae-card:hover {
    transform: translateY(-12px) scale(1.025);
    box-shadow: 0 34px 80px rgba(0,0,0,0.3);
    filter: contrast(1.05) saturate(1.08);
}
.ae-card:hover::before {
    opacity: 1;
    transform: scale(1.08);
}
.ae-card:hover::after {
    left: 125%;
    opacity: 1;
}
.ae-card-number,
.ae-card-accent,
.ae-card-top-left,
.ae-card-top-right,
.ae-card-swatch,
.ae-card-title,
.ae-card-text,
.ae-card-footer {
    position: relative;
    z-index: 3;
}
.ae-card-number {
    position: absolute;
    left: -22px;
    bottom: -44px;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 300px;
    line-height: 0.78;
    letter-spacing: -0.06em;
    color: rgba(255,255,255,0.07);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 2;
    transition: transform 0.45s ease, color 0.45s ease;
}
.ae-card:hover .ae-card-number {
    transform: translateX(10px) translateY(-8px) scale(1.04);
    color: rgba(255,255,255,0.1);
}
.ae-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 38%;
    z-index: 3;
    transition: height 0.45s ease, box-shadow 0.45s ease;
}
.ae-card:hover .ae-card-accent {
    height: 54%;
    box-shadow: 0 0 28px rgba(255,255,255,0.22);
}
.ae-card-top-left {
    position: absolute;
    top: 26px;
    left: 32px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    font-weight: 700;
}
.ae-card-top-left span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,0.9);
    vertical-align: middle;
    margin-right: 10px;
    transition: width 0.45s ease;
}
.ae-card:hover .ae-card-top-left span { width: 42px; }
.ae-card-top-right {
    position: absolute;
    top: 26px;
    right: 32px;
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.7);
}
.ae-card-swatch {
    position: absolute;
    top: 54px;
    right: 32px;
    width: 42px;
    height: 10px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
    transition: width 0.45s ease, box-shadow 0.45s ease;
}
.ae-card:hover .ae-card-swatch {
    width: 58px;
    box-shadow: 0 0 18px rgba(255,255,255,0.35);
}
.ae-card-title {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 58px;
    line-height: 0.95;
    margin: 0 0 16px;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: #fff;
    transition: transform 0.45s ease;
}
.ae-card:hover .ae-card-title { transform: translateY(-8px); }
.ae-card-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 240px;
    transition: transform 0.45s ease, color 0.45s ease;
}
.ae-card:hover .ae-card-text {
    transform: translateY(-5px);
    color: rgba(255,255,255,0.96);
}
.ae-card-footer {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.28);
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    transition: transform 0.45s ease, border-color 0.45s ease, color 0.45s ease;
}
.ae-card:hover .ae-card-footer {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.98);
}
.ae-card-metal { background: linear-gradient(170deg,#5a5d62 0%,#2a2c30 50%,#0c0d0f 100%); }
.ae-card-jungle { background: linear-gradient(170deg,#5d7e54 0%,#2c4a2a 50%,#0a1a10 100%); }
.ae-card-earth { background: linear-gradient(170deg,#c87a45 0%,#7a3a1c 50%,#2a1208 100%); }
.ae-card-water { background: linear-gradient(170deg,#3a98a8 0%,#19606e 50%,#06212a 100%); }
.ae-metal-accent { background: linear-gradient(180deg,#C4C7CC,transparent); }
.ae-jungle-accent { background: linear-gradient(180deg,#9CC080,transparent); }
.ae-earth-accent { background: linear-gradient(180deg,#F49A5B,transparent); }
.ae-water-accent { background: linear-gradient(180deg,#5BD3E8,transparent); }
.ae-metal-swatch { background: #C4C7CC; }
.ae-jungle-swatch { background: #9CC080; }
.ae-earth-swatch { background: #F49A5B; }
.ae-water-swatch { background: #5BD3E8; }

/* 6. Program sticky column */
@media (min-width: 1024px) {
    .program-grid { align-items: start; }
    .program-side {
        position: sticky;
        top: calc(var(--header-h) + 50px);
        align-self: start;
        height: max-content;
        z-index: 2;
    }
    .program-side-inner { max-width: 320px; }
}

/* 7. Center the location heading and its label */
.location-wrap { text-align: center; }
.location-eyebrow { justify-content: center; }
.location-h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.loc-grid { text-align: left; }

/* 9. Legal footer from footer.txt */
.strip {
    background: #050505;
    color: #cfcfcf;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.strip-inner {
    display: block;
    text-align: center;
}
.strip-inner p {
    margin: 0 auto;
    max-width: 980px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.65;
    color: #cfcfcf;
}
.strip-inner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 10. RSVP background, timer, form */
.final {
    min-height: 860px;
    padding: 128px 0 120px;
}
.final-bg img {
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: auto;
    transform: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.78;
    mix-blend-mode: screen;
}
.final-bg::after {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(11,11,12,0.05) 0%, rgba(11,11,12,0.35) 35%, rgba(11,11,12,0.88) 78%),
        linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.58) 48%, rgba(0,0,0,0.92) 100%);
}
.final-inner {
    max-width: 980px;
}
.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin: 36px auto 32px;
}
.cd-cell {
    background: rgba(0,0,0,0.46);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 18px 12px 16px;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
}
.cd-num {
    font-family: var(--font-display);
    font-size: clamp(30px, 6vw, 54px);
    line-height: 1;
    color: #fff;
}
.cd-label {
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #9a9591;
}
.rsvp-form {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px;
    background: rgba(0,0,0,0.54);
    border: 1px solid rgba(255,255,255,0.16);
    text-align: left;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}
.rsvp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.rsvp-field {
    display: block;
}
.rsvp-label {
    display: block;
    margin-bottom: 7px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b9b5ae;
}
.rsvp-field input,
.rsvp-field select,
.rsvp-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 0;
    padding: 13px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}
.rsvp-field select option {
    background: #111;
    color: #fff;
}
.rsvp-field input::placeholder,
.rsvp-field textarea::placeholder { color: rgba(255,255,255,0.42); }
.rsvp-field input:focus,
.rsvp-field select:focus,
.rsvp-field textarea:focus {
    border-color: rgba(225,37,27,0.9);
    box-shadow: 0 0 0 3px rgba(225,37,27,0.15);
}
.rsvp-field--full { grid-column: 1 / -1; }
.rsvp-gdpr {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 16px;
    color: #d6d3ce;
    font-size: 13px;
    line-height: 1.5;
}
.rsvp-gdpr input { margin-top: 4px; }
.rsvp-gdpr a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.rsvp-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.rsvp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
}
.rsvp-feedback {
    min-height: 22px;
    color: #d6d3ce;
    font-size: 14px;
}
.rsvp-feedback.is-ok { color: #9CC080; }
.rsvp-feedback.is-error { color: #ff9a8f; }
.final-meta { margin-top: 44px; }

@media (min-width: 700px) {
    .rsvp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 1024px) {
    .ae-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .ae-cards-grid { grid-template-columns: 1fr; }
    .ae-card {
        min-height: 460px;
        padding: 26px;
    }
    .ae-card-title { font-size: 46px; }
    .ae-card-number { font-size: 230px; }
    .partners-inner {
        justify-content: flex-start;
        gap: 18px 24px;
    }
    .partners-label { flex: 1 0 100%; }
    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .rsvp-form { padding: 22px; }
    .final { padding: 96px 0 86px; }
}

/* ============================================================================
   V3 POLISH — 2026-05-26
   Larger logo, unified Mulish display typography, hero placement and mobile form.
   ============================================================================ */

/* 1. Bigger logo that still fits sticky header */
.logo-img {
    width: min(340px, 62vw);
    max-height: 66px;
}
.topbar-inner { min-height: var(--header-h); }
.topbar .pill--website {
    border-color: rgba(255,255,255,0.28);
    background: transparent;
    color: rgba(255,255,255,0.92);
}
.topbar .pill--website:hover {
    border-color: #fff;
    color: #fff;
}

/* 2 / 4 / 6 / 8 / 12. Use the hero display family across titles and label-like text */
.h2,
.display,
.final h2,
.challenge-card h4,
.tl-time,
.tl-title,
.tl-sub-item .si-name,
.final-meta .mv,
.program-title,
.ae-card-title,
.ae-card-number {
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: -0.055em;
}
.h2 {
    font-size: clamp(42px, 7.8vw, 78px);
    line-height: 0.92;
}
.section-eyebrow,
.challenge-card .ck,
.program-side .program-label,
.tl-tag,
.tl-time .ampm,
.meta-label,
.cd-label,
.rsvp-label,
.final-meta .mk {
    font-family: var(--font-body);
    font-weight: 900;
}
.section-eyebrow,
.challenge-card .ck,
.program-side .program-label {
    letter-spacing: 0.16em;
}

/* 3. Move hero copy right on desktop while keeping the image dominant */
@media (min-width: 1024px) {
    .hero-left {
        padding-left: clamp(92px, 8vw, 132px);
        padding-right: 44px;
    }
    .display {
        font-size: clamp(86px, 7.6vw, 118px);
        max-width: 670px;
    }
}
@media (min-width: 1280px) {
    .hero-left { padding-left: 112px; }
    .display { font-size: 116px; }
}

/* Mobile hero: let the text sit over the lower part of the image instead of below it */
@media (max-width: 767px) {
    :root { --header-h: 72px; }
    .topbar-inner { height: var(--header-h); }
    .logo-img {
        width: min(250px, 68vw);
        max-height: 54px;
    }
    .hero-grid {
        display: block;
        position: relative;
        min-height: 820px;
    }
    .hero-right {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 0;
        height: 520px;
        order: 0;
        z-index: 0;
    }
    .hero-right img {
        opacity: 0.98;
        object-position: 68% center;
    }
    .hero-fade {
        background:
            linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 42%, rgba(11,11,12,0.98) 86%, #0B0B0C 100%),
            linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 52%, rgba(0,0,0,0.12) 100%);
    }
    .hero-left {
        min-height: 820px;
        padding-top: 250px;
        padding-bottom: 48px;
        justify-content: flex-start;
    }
    .display {
        font-size: clamp(58px, 17vw, 78px);
        line-height: 0.93;
    }
}

/* 5. Mobile partners: centered, one per line */
@media (max-width: 767px) {
    .partners {
        padding: 34px 0;
    }
    .partners-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 14px;
    }
    .partners-label,
    .partner {
        width: 100%;
        justify-content: center;
    }
}

/* 6. Mobile experience eyebrow smaller */
@media (max-width: 767px) {
    #experienta .section-eyebrow {
        font-size: 10.5px;
        letter-spacing: 0.12em;
        line-height: 1.45;
        max-width: 100%;
    }
}

/* 7. Program mobile title layout */
.program-title span { display: inline-block; }
@media (max-width: 767px) {
    .program-side {
        text-align: center;
    }
    .program-side .program-label {
        font-size: 11px;
    }
    .program-title {
        font-size: clamp(44px, 13vw, 62px);
        line-height: 0.94;
    }
    .program-side p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* 9. Removed persons/notes leaves a balanced two-column form on desktop */
@media (min-width: 700px) {
    .rsvp-form {
        max-width: 720px;
    }
}

/* 10. Mobile final meta: compact 2x2 badges */
@media (max-width: 767px) {
    .final-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 28px;
        padding-top: 24px;
    }
    .final-meta .m {
        padding: 12px 8px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(0,0,0,0.26);
    }
    .final-meta .mk {
        font-size: 9px;
        letter-spacing: 0.16em;
    }
    .final-meta .mv {
        font-size: 18px;
        line-height: 1.05;
        letter-spacing: -0.025em;
    }
}

/* ============================================================================
   V4 TYPOGRAPHY BALANCE — 2026-05-26
   One coherent scale: hero is the only oversized poster title; sections breathe.
   ============================================================================ */

:root {
    --type-display: clamp(72px, 7.2vw, 112px);
    --type-section: clamp(38px, 4.7vw, 60px);
    --type-section-small: clamp(34px, 4vw, 52px);
    --type-kicker: clamp(10px, 0.78vw, 12px);
    --type-label: 11px;
    --tracking-tight: -0.045em;
    --tracking-label: 0.16em;
}

/* Requested larger logo crop: source image has internal padding, so height stays sane. */
.logo-img {
    width: min(340px, 62vw);
    max-height: 120px;
}

/* Keep the hero poster scale, but restore hierarchy below it. */
.display {
    font-family: var(--font-body);
    font-size: var(--type-display);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.06em;
}
.h2,
.section-ink .h2,
#experienta .h2,
.location-h2,
.program-title {
    font-family: var(--font-body);
    font-size: var(--type-section) !important;
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: var(--tracking-tight);
}
.intro .h2,
.decode-copy .h2,
.atmos-header .h2 {
    max-width: 760px;
}
.program-side .h2,
.program-title {
    font-size: var(--type-section-small) !important;
}
.location-h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.final h2 {
    font-family: var(--font-body);
    font-size: clamp(42px, 5.8vw, 72px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.05em;
}

/* Kicker/label text should feel technical, not visually louder than headings. */
.eyebrow,
.section-eyebrow,
#experienta .section-eyebrow,
.challenge-card .ck,
.program-side .program-label,
.tl-tag,
.meta-label,
.cd-label,
.rsvp-label,
.final-meta .mk,
.partners-label,
.addr-row .k {
    font-family: var(--font-body);
    font-size: var(--type-kicker);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: var(--tracking-label);
}
.section-eyebrow {
    margin-bottom: 20px;
}

/* Timeline and card headings: strong enough to scan, lighter than the hero. */
.tl-time {
    font-family: var(--font-body);
    font-size: clamp(25px, 2.6vw, 34px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.035em;
}
.tl-time .ampm,
.tl-tag {
    font-weight: 800;
    letter-spacing: 0.14em;
}
.tl-title,
.tl-sub-item .si-name,
.challenge-card h4,
.loc-info h3 {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.03em;
}
.tl-title {
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.08;
}
.tl-sub-item .si-name {
    font-size: 15px;
    line-height: 1.1;
}
.challenge-card h4 {
    font-size: clamp(30px, 3.4vw, 44px);
}
.partner {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.12em;
}
.final-meta .mv {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    }
    .hero-left {
        padding-left: clamp(220px, 25vw, 375px);
        padding-right: 36px;
    }
    .hero-right {
        order: 0;
        min-height: 0;
        margin-left: -450px;
    }
    .hero-right img {
        object-position: center center;
    }
    .hero-fade {
        background:
            linear-gradient(90deg, var(--ink) 0%, rgba(0,0,0,0.86) 20%, rgba(0,0,0,0.24) 55%, rgba(0,0,0,0) 100%),
            linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11,11,12,0.18) 100%);
    }
}
@media (min-width: 1280px) {
    .hero-left {
        padding-left: 375px;
    }
}

@media (max-width: 767px) {
    :root {
        --type-display: clamp(52px, 15.8vw, 68px);
        --type-section: clamp(34px, 10.5vw, 44px);
        --type-section-small: clamp(33px, 10vw, 42px);
        --type-kicker: 10px;
    }
    .logo-img {
        width: min(250px, 68vw);
        max-height: 120px;
    }
    .hero-left {
        padding-top: 235px;
    }
    .display {
        line-height: 0.92;
    }
    .h2,
    .section-ink .h2,
    #experienta .h2,
    .location-h2,
    .program-title {
        line-height: 0.98;
    }
    .location-h2 {
        max-width: 360px;
    }
    .section-eyebrow,
    #experienta .section-eyebrow {
        letter-spacing: 0.11em;
    }
    .tl-title {
        font-size: 21px;
    }
    .tl-time {
        font-size: 27px;
    }
}

/* ============================================================================
   V5 VISUAL POLISH — 2026-05-26
   Header order, hero coordinates, section proximity, mobile cards and RSVP art.
   ============================================================================ */

.coord--tr { display: none !important; }
.location-h2 span { white-space: nowrap; }
.final-meta {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
}
.final-bg img {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    transform: none;
    object-fit: cover;
    object-position: center center;
    opacity: 0.86;
}

@media (min-width: 1024px) {
    .coord--tl,
    .coord--bl {
        left: clamp(220px, 25vw, 375px);
    }
    .coord--tl { top: calc(var(--header-h) + 18px); }
    .coord--bl { bottom: 28px; }
    #provocarea {
        padding-bottom: 92px;
    }
    #experienta {
        margin-top: -40px;
        padding-top: 72px;
    }
}

@media (min-width: 1280px) {
    .coord--tl,
    .coord--bl {
        left: 375px;
    }
}

@media (max-width: 767px) {
    .hero-right img {
        object-position: center top;
    }
    .hero-left {
        padding-top: 205px;
        min-height: 760px;
    }
    .hero-grid {
        min-height: 760px;
    }
    .hero-right {
        height: 500px;
    }
    #provocarea {
        padding-bottom: 58px;
    }
    #experienta {
        margin-top: -34px;
        padding-top: 66px;
    }
    .ae-card {
        transform: translateY(-6px);
        box-shadow: 0 30px 74px rgba(0,0,0,0.34);
        filter: contrast(1.04) saturate(1.08);
    }
    .ae-card::before {
        opacity: 1;
        transform: scale(1.04);
    }
    .ae-card::after {
        left: 112%;
        opacity: 0.55;
    }
    .ae-card .ae-card-accent {
        height: 54%;
        box-shadow: 0 0 24px rgba(255,255,255,0.18);
    }
    .ae-card .ae-card-number {
        transform: translateX(8px) translateY(-6px) scale(1.03);
        color: rgba(255,255,255,0.1);
    }
    .location-h2 {
        max-width: 345px;
        font-size: clamp(31px, 9.4vw, 39px) !important;
    }
    .final-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .final-bg img {
        object-position: center center;
        opacity: 0.86;
    }
}

/* ============================================================================
   V6 DESKTOP FOOTER IMAGE CONTINUATION — 2026-05-26
   Let the RSVP image continue visually through the footer on desktop.
   ============================================================================ */

@media (min-width: 768px) {
    .final-bg img { object-position: center center; }
    .strip {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        background: #090806;
        border-top-color: rgba(255,255,255,0.14);
    }
    .strip::before {
        content: "";
        position: absolute;
        inset: -520px 0 -40px;
        z-index: -2;
        background: url("../img/landing-6.jpg") center center / cover no-repeat;
        opacity: 0.88;
        filter: saturate(1.08);
    }
    .strip::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background:
            radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.28) 70%, rgba(0,0,0,0.46) 100%),
            linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.42));
    }
    .strip-inner {
        position: relative;
        z-index: 1;
    }
}

/* V8 final cascade correction for desktop hero top-left coordinate. */
@media (min-width: 1024px) {
    .hero .coord--tl {
        top: 18px;
    }
}

/* V9 footer art update: landing-6 is the centered RSVP/footer artwork. */
@media (min-width: 768px) {
    .strip a,
    .strip p {
        color: rgba(255,255,255,0.92);
        text-shadow: 0 1px 18px rgba(0,0,0,0.9);
    }
}

/* V10 stop the footer experiments: solid black footer again. */
.strip {
    background: #000 !important;
    border-top-color: rgba(255,255,255,0.10) !important;
}
.strip::before,
.strip::after {
    display: none !important;
}
.strip p,
.strip a {
    color: rgba(255,255,255,0.78);
    text-shadow: none !important;
}

/* V11 RSVP headline: give the two lines more breathing room. */
.final h2 .glow {
    display: inline-block;
    margin-top: 0.18em;
}
