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

:root {
    --gold: #d8ad45;
    --gold-soft: #f7dc99;
    --gold-dark: #9f741e;
    --ink: #030303;
    --panel: rgba(9, 9, 9, 0.84);
    --panel-solid: #0c0c0d;
    --line: rgba(216, 173, 69, 0.45);
    --line-soft: rgba(255, 255, 255, 0.11);
    --text: #f8f5ee;
    --muted: rgba(248, 245, 238, 0.72);
    --dim: rgba(248, 245, 238, 0.5);
    --success: #83d44c;
    --danger: #ff776d;
    --display: "Cormorant Garamond", Georgia, serif;
    --body: "Outfit", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--body);
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.34), #020202 42rem),
        radial-gradient(circle at 78% 8%, rgba(216, 173, 69, 0.13), transparent 28rem),
        #020202;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.36) 100%),
        url("../assets/images/blossom-hero.png") top right 10vw / min(520px, 50vw) auto no-repeat;
    opacity: 0.72;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(216, 173, 69, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 173, 69, 0.025) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, .btn {
    border-radius: 999px;
}
[hidden] { display: none !important; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(216, 173, 69, 0.18);
    backdrop-filter: blur(18px);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}

.nav__partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
}

.nav__partner--right {
    justify-content: flex-end;
}

.nav__partner-logo {
    display: block;
    width: auto;
    height: clamp(34px, 4vw, 48px);
    object-fit: contain;
}

.nav__partner-logo--dminds {
    height: clamp(42px, 5vw, 58px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 154px;
}

.brand__logo {
    display: block;
    width: auto;
    height: clamp(44px, 5vw, 60px);
    object-fit: contain;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav__links a { color: rgba(255, 255, 255, 0.78); }
.nav__links a:hover { color: var(--gold-soft); }

.nav__actions, .hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__secondary-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__press-mobile {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: linear-gradient(135deg, #f3ce67, #b68325);
    color: #090806;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(216, 173, 69, 0.18);
}

.btn--outline {
    background: rgba(0, 0, 0, 0.52);
    color: var(--gold-soft);
}

.btn--small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
}

.btn--press {
    background: linear-gradient(135deg, #f8e08a 0%, #d8ad45 38%, #9f741e 100%);
    border-color: rgba(247, 220, 153, 0.85);
    color: #120d04;
    box-shadow: 0 10px 28px rgba(216, 173, 69, 0.22);
    letter-spacing: 0.08em;
}

.btn--press:hover {
    box-shadow: 0 18px 40px rgba(216, 173, 69, 0.32);
    border-color: var(--gold-soft);
}

.nav__press-link {
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.nav__press-link:hover,
.nav__press-link:focus-visible {
    color: var(--gold-soft);
    outline: none;
}

.ambassadors-page::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(2, 2, 2, 0.96)),
        url("../assets/images/blossom-hero.png") top right 8vw / min(560px, 52vw) auto no-repeat;
    opacity: 0.5;
}

.ambassadors-shell {
    padding-top: clamp(30px, 6vw, 72px);
    padding-bottom: clamp(48px, 8vw, 96px);
}

.ambassadors-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ambassadors-back:hover { color: #fff; }

.ambassadors-hero {
    max-width: 700px;
    margin: clamp(42px, 8vw, 92px) auto clamp(30px, 5vw, 56px);
    text-align: center;
}

.ambassadors-logo {
    display: block;
    width: min(260px, 72vw);
    margin: 0 auto 30px;
}

.ambassadors-hero h1 {
    margin: 10px 0 12px;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(46px, 7vw, 76px);
    font-weight: 600;
    line-height: 0.92;
}

.ambassadors-hero p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
}

.ambassador-benefits {
    max-width: 900px;
    margin: clamp(30px, 5vw, 56px) auto clamp(30px, 5vw, 56px);
    padding: clamp(22px, 4vw, 34px);
    border: 2px solid rgba(216, 173, 69, 0.68);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(216, 173, 69, 0.16), rgba(10, 10, 10, 0.88));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), 0 0 34px rgba(216, 173, 69, 0.1);
    text-align: center;
}

.ambassador-benefits__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ambassador-benefits h2 {
    margin: 0 0 8px;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(34px, 4.5vw, 46px);
    font-weight: 700;
}

.ambassador-benefits__instruction {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 710px;
    margin: 18px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(216, 173, 69, 0.48);
    border-radius: 13px;
    background: rgba(216, 173, 69, 0.12);
    color: var(--text);
    line-height: 1.55;
    text-align: left;
}

.ambassador-benefits__instruction i {
    flex: 0 0 auto;
    color: var(--gold-soft);
    font-size: 25px;
}

.ambassador-benefits__instruction strong {
    color: var(--gold-soft);
}

.ambassador-benefits__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.ambassador-benefits__list div {
    display: grid;
    gap: 9px;
    padding: 17px;
    border: 1px solid rgba(216, 173, 69, 0.48);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.42);
}

.ambassador-benefits__list strong {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: #17120a;
    font-size: 18px;
    letter-spacing: 0.08em;
}

.ambassador-benefits__list span {
    color: var(--text);
    font-size: 13px;
    line-height: 1.45;
}

.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.2vw, 28px);
}

.ambassador-card {
    overflow: hidden;
    border: 1px solid rgba(216, 173, 69, 0.42);
    border-radius: 18px;
    background: var(--panel-solid);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.ambassador-card img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ambassador-card:hover img { transform: scale(1.03); }

.ambassador-card h2 {
    margin: 0;
    padding: 17px 18px 12px;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(25px, 2.4vw, 33px);
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.ambassador-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 18px 20px;
    padding: 11px 14px;
    border: 1px solid rgba(216, 173, 69, 0.58);
    border-radius: 999px;
    background: rgba(216, 173, 69, 0.1);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ambassador-instagram:hover {
    background: var(--gold);
    color: #17120a;
    transform: translateY(-2px);
}

.ambassador-instagram i { font-size: 17px; }

.ambassador-code {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0 18px 20px;
    text-align: center;
}

.ambassador-code span {
    color: var(--dim);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ambassador-code strong {
    display: inline-block;
    justify-self: center;
    padding: 8px 12px;
    border: 1px solid rgba(216, 173, 69, 0.58);
    border-radius: 999px;
    background: rgba(216, 173, 69, 0.12);
}

.nav__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(216, 173, 69, 0.42);
    background: rgba(0, 0, 0, 0.42);
    color: var(--gold-soft);
    cursor: pointer;
}

.nav__menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: background 0.22s ease;
}

.site-menu.is-open {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.68);
}

.site-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, calc(100vw - 34px));
    height: 100%;
    padding: 22px;
    border-left: 1px solid rgba(216, 173, 69, 0.35);
    background: rgba(7, 7, 7, 0.96);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.42);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

.site-menu.is-open .site-menu__panel {
    transform: translateX(0);
}

.site-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(216, 173, 69, 0.2);
}

.site-menu__head strong {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-menu__close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.site-menu__links {
    display: grid;
    gap: 10px;
    padding-top: 20px;
}

.site-menu__links a,
.site-menu__links button {
    display: flex;
    align-items: center;
    min-height: 52px;
    width: 100%;
    padding: 0 2px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.84);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.site-menu__links a:hover,
.site-menu__links button:hover {
    color: var(--gold-soft);
}

.site-menu__ticket {
    justify-content: center;
    margin-top: 10px;
    border: 1px solid var(--line) !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #f3ce67, #b68325) !important;
    color: #090806 !important;
    text-align: center;
}

.hero {
    min-height: 640px;
    display: grid;
    align-items: center;
    padding: 78px 0 52px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 64px;
}

.hero__grid > * { min-width: 0; }

.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.hero__title-logo {
    display: block;
    width: min(660px, 100%);
    height: auto;
    margin: 18px 0 0;
    object-fit: contain;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(14px);
    filter: blur(8px);
    animation: logoLetterReveal 1.35s cubic-bezier(0.2, 0.74, 0.18, 1) 0.18s forwards;
}

.hero__copy {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--text);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.35;
    opacity: 0;
    animation: fadeUp 0.85s ease 0.7s forwards;
}

.hero__pills {
    display: grid;
    grid-template-columns: repeat(4, minmax(116px, 1fr));
    gap: 20px 16px;
    max-width: 720px;
    margin: 38px 0 34px;
}

.pill {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 8px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.64s ease forwards;
}

.pill i,
.pill__icon {
    color: var(--gold);
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(216, 173, 69, 0.28));
    transition: transform 0.22s ease, color 0.22s ease, filter 0.22s ease;
}

.pill i {
    background: linear-gradient(135deg, #fff2b8 0%, #f2cb55 22%, #b9821c 48%, #f7d96f 76%, #9f6c16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 0 8px rgba(216, 173, 69, 0.32))
        drop-shadow(0 1px 0 rgba(255, 242, 184, 0.35));
}

.pill__icon--fashion {
    width: 34px;
    height: 52px;
    margin-top: -7px;
    margin-bottom: -1px;
}

.pill:hover i,
.pill:hover .pill__icon {
    color: var(--gold-soft);
    filter: drop-shadow(0 0 14px rgba(247, 220, 153, 0.42));
    transform: translateY(-4px) scale(1.08) rotate(-4deg);
}

.pill:hover i {
    filter:
        drop-shadow(0 0 14px rgba(247, 220, 153, 0.5))
        drop-shadow(0 1px 0 rgba(255, 242, 184, 0.5));
}

.pill:nth-child(1) { animation-delay: 0.9s; }
.pill:nth-child(2) { animation-delay: 0.98s; }
.pill:nth-child(3) { animation-delay: 1.06s; }
.pill:nth-child(4) { animation-delay: 1.14s; }
.pill:nth-child(5) { animation-delay: 1.22s; }
.pill:nth-child(6) { animation-delay: 1.3s; }
.pill:nth-child(7) { animation-delay: 1.38s; }
.pill:nth-child(8) { animation-delay: 1.46s; }

.event-card, .card {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.event-card {
    padding: 34px;
    opacity: 0;
    animation: fadeUp 0.85s ease 0.58s forwards;
}

.event-card__row {
    display: grid;
    grid-template-columns: 32px auto;
    gap: 16px;
    padding: 13px 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.event-card i { color: var(--gold); font-size: 23px; }
.event-card small { display: block; color: var(--muted); font-size: 13px; }

.event-card__location {
    position: relative;
    display: inline-grid;
    gap: 4px;
    width: max-content;
    max-width: 100%;
}

.event-card__location strong {
    color: #fff;
    font-size: 19px;
    line-height: 1.15;
}

.venue-more {
    width: max-content;
    max-width: 100%;
    margin-top: 8px;
}

.venue-more__trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid rgba(216, 173, 69, 0.45);
    border-radius: 999px;
    background: rgba(216, 173, 69, 0.10);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.venue-more__trigger:hover,
.venue-more__trigger:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(247, 220, 153, 0.7);
    background: rgba(216, 173, 69, 0.18);
}

.venue-more__trigger i {
    color: var(--gold-soft);
    font-size: 16px;
}

.venue-modal {
    position: fixed;
    inset: 0;
    z-index: 114;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
}

.venue-modal.is-open { display: grid; }

.venue-modal__dialog {
    width: min(1080px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border: 1px solid rgba(216, 173, 69, 0.48);
    background: #050505;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.78);
}

.venue-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(216, 173, 69, 0.22);
    background: #060606;
}

.venue-modal__head strong {
    color: var(--gold-soft);
    font-size: 13px;
    text-transform: uppercase;
}

.venue-modal__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.venue-slider {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 128px);
    min-height: 520px;
    overflow: hidden;
    background: #070707;
}

.venue-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.45s ease, transform 0.8s ease;
}

.venue-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.venue-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(247, 220, 153, 0.7);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.venue-slider__arrow:hover,
.venue-slider__arrow:focus-visible {
    border-color: var(--gold-soft);
    background: rgba(216, 173, 69, 0.28);
    transform: translateY(-50%) scale(1.06);
}

.venue-slider__arrow--prev { left: 22px; }

.venue-slider__arrow--next { right: 22px; }

.venue-slider__dots {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.venue-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.venue-slider__dot:hover,
.venue-slider__dot:focus-visible,
.venue-slider__dot.is-active {
    border-color: var(--gold-soft);
    background: var(--gold-soft);
    transform: scale(1.22);
}

.event-card__quote {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(216, 173, 69, 0.35);
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: 29px;
    font-style: italic;
    text-align: center;
    line-height: 1.1;
}

section {
    padding: 58px 0;
    border-top: 1px solid rgba(216, 173, 69, 0.16);
}

.section-head {
    margin-bottom: 28px;
    text-align: center;
}

.section-head h2 {
    margin: 6px 0 8px;
    font-family: var(--display);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 500;
}

.section-head p {
    margin: 0 auto;
    max-width: 660px;
    color: var(--muted);
}

.section-head--compact {
    margin-top: 34px;
    margin-bottom: 20px;
}

.section-head--compact h2 {
    font-size: clamp(30px, 4vw, 44px);
}

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

.organization-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}

.organization-card__photo {
    position: relative;
    min-height: 100%;
    background: #070707;
}

.organization-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organization-card__photo--logo {
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 30%, rgba(216, 173, 69, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
        #080808;
}

.organization-card__photo--logo img {
    width: min(220px, 82%);
    height: auto;
    object-fit: contain;
}

.organization-card__body {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 28px;
}

.organization-card__tag {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.organization-card h3 {
    margin: 8px 0 10px;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(31px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.02;
}

.organization-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.organization-card__company {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(216, 173, 69, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.organization-more {
    display: grid;
    place-items: center;
    align-self: center;
    min-width: 120px;
}

.organization-more__button {
    width: 110px;
    height: 110px;
    display: inline-grid;
    place-items: center;
    gap: 6px;
    border: 1px solid rgba(216, 173, 69, 0.56);
    border-radius: 0;
    background: rgba(216, 173, 69, 0.1);
    color: var(--gold-soft);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.organization-more__button i {
    font-size: 24px;
}

.organization-more__button:hover,
.organization-more__button:focus-visible {
    transform: translateY(-3px);
    background: rgba(216, 173, 69, 0.16);
    box-shadow: 0 18px 34px rgba(216, 173, 69, 0.12);
    outline: none;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.profile-card {
    position: relative;
    min-width: 0;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.35) 45%, #070707 100%),
        radial-gradient(circle at 50% 18%, rgba(216, 173, 69, 0.2), transparent 34%),
        #131313;
}

.profile-card::before {
    content: attr(data-initials);
    position: absolute;
    inset: 30px 0 auto;
    color: rgba(247, 220, 153, 0.12);
    font-family: var(--display);
    font-size: 92px;
    text-align: center;
}

.profile-card > * { position: relative; z-index: 1; }

.profile-card__type {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.staff-panel {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(216, 173, 69, 0.28);
    background: rgba(9, 9, 9, 0.74);
}

.staff-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(210px, 0.8fr) minmax(210px, 0.8fr);
    gap: 14px;
    margin-top: 14px;
}

.staff-group {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    overflow: visible;
}

.staff-group h3 {
    flex: 0 0 auto;
    margin: 0;
    color: var(--gold-soft);
    font-size: 14px;
    text-transform: uppercase;
}

.staff-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    flex: 0 1 auto;
    min-width: 0;
}

.staff-list--photo {
    flex: 0 1 auto;
}

.staff-list a,
.staff-list span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 32px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.24);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.staff-list a:hover {
    color: var(--gold-soft);
}

.staff-list a:not(:last-child)::after,
.staff-list span:not(:last-child)::after {
    content: none;
}

.staff-list small {
    color: var(--gold-soft);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.profile-card h3 {
    margin: 8px 0 6px;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
}

.profile-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.video-trigger {
    width: 100%;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.ticket-ambassadors-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto 28px;
    padding: 22px 24px;
    border: 1px solid rgba(216, 173, 69, 0.5);
    border-radius: 16px;
    background: linear-gradient(110deg, rgba(216, 173, 69, 0.16), rgba(8, 8, 8, 0.76));
}

.ticket-ambassadors-cta .eyebrow {
    display: block;
    margin-bottom: 5px;
}

.ticket-ambassadors-cta strong {
    display: block;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 600;
}

.ticket-ambassadors-cta p {
    max-width: 620px;
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.ticket-card {
    min-height: 210px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ticket-card:hover,
.ticket-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(247, 220, 153, 0.8);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
    outline: none;
}

.ticket-card i {
    width: 62px;
    height: 62px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 16px;
}

.ticket-card h3 {
    margin: 0 0 12px;
    color: var(--gold-soft);
    font-size: 18px;
    text-transform: uppercase;
}

.ticket-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.ticket-card strong {
    display: block;
    margin-top: 18px;
    color: var(--gold-soft);
    font-size: 32px;
}

.ticket-card__was {
    display: block;
    margin-top: 12px;
    color: var(--dim);
    font-size: 14px;
    text-decoration: line-through;
}

.ticket-card__note {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
    padding: 6px 10px;
    border: 1px solid rgba(216, 173, 69, 0.35);
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.ticket-card__sponsor {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 16px 12px;
    border: 1px solid rgba(247, 220, 153, 0.38);
    background: rgba(216, 173, 69, 0.08);
}

.ticket-card__sponsor span {
    color: var(--gold-soft);
    font-size: 7px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.ticket-card__sponsor img {
    display: block;
    width: min(330px, 100%);
    max-height: 145px;
    object-fit: contain;
}

.ticket-card__includes {
    display: grid;
    gap: 5px;
    margin: 14px 0 0;
    padding: 12px;
    border: 1px solid rgba(216, 173, 69, 0.2);
    background: rgba(216, 173, 69, 0.05);
    color: rgba(248, 245, 238, 0.76);
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
}

.ticket-card__includes span {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.ticket-card__includes span::before {
    content: "";
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(216, 173, 69, 0.45);
}

.ticket-card__includes--plus span::before {
    content: "+";
    background: none;
    box-shadow: none;
    width: auto;
    height: auto;
    border-radius: 0;
    margin-top: 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.ticket-card__includes-heading {
    margin-top: 5px;
    color: var(--gold-soft);
    font-weight: 700;
    text-transform: uppercase;
}

.ticket-card__includes-heading::before {
    display: none;
}

.ticket-card__minimum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 10px auto 0;
    padding: 5px 10px;
    border: 1px solid rgba(216, 173, 69, 0.28);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(216, 173, 69, 0.04);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ticket-card .ticket-card__minimum i {
    display: inline;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    color: var(--gold);
    font-size: 11px;
}

.group-requirement {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid rgba(216, 173, 69, 0.55);
    color: var(--gold-soft);
    background: rgba(216, 173, 69, 0.09);
    font-size: 14px;
    font-weight: 800;
}

.group-requirement i { margin-right: 7px; }

.ticket-open-cta {
    display: flex;
    justify-content: center;
    margin: 22px 0 0;
}

.buy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.ticket-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
}

.ticket-modal.is-open { display: grid; }

.ticket-modal__dialog {
    width: min(1080px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border: 1px solid var(--line);
    background: #080808;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.76);
}

.ticket-modal__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-soft);
    background: #080808;
}

.ticket-modal__head strong {
    color: var(--gold-soft);
    font-size: 14px;
    text-transform: uppercase;
}

.ticket-modal__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.ticket-modal .buy-grid {
    padding: 20px;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 112;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
}

.story-modal.is-open { display: grid; }

.story-modal__dialog {
    width: min(900px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border: 1px solid var(--line);
    background: #080808;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.76);
}

.story-modal__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-soft);
    background: #080808;
}

.story-modal__head strong {
    color: var(--gold-soft);
    font-size: 14px;
    text-transform: uppercase;
}

.story-modal__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.story-modal__body {
    padding: 26px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.story-modal__body h3 {
    margin: 0 0 14px;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.02;
}

.story-modal__body h4 {
    margin: 24px 0 8px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.story-modal__body p {
    margin: 0 0 14px;
}

.story-modal__goals {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding: 18px;
    border: 1px solid rgba(216, 173, 69, 0.2);
    background: rgba(216, 173, 69, 0.06);
    color: var(--gold-soft);
    font-weight: 700;
}

.card { padding: 24px; }

.card h3 {
    margin: 0 0 18px;
    color: var(--gold-soft);
    font-size: 15px;
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field-note {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.voucher-status {
    min-height: 18px;
    font-size: 12px;
    font-weight: 700;
}

.voucher-status.is-valid { color: var(--success); }
.voucher-status.is-invalid { color: var(--danger); }

label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

label span { color: var(--danger); }

input, textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.38);
    color: var(--text);
    outline: none;
}

textarea {
    min-height: 96px;
    resize: vertical;
}

input:focus, textarea:focus { border-color: var(--gold); }

.press-page::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 100%),
        url("../assets/images/blossom-hero.png") top right 8vw / min(520px, 54vw) auto no-repeat;
}

.press-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 42px 20px;
}

.press-card {
    width: min(780px, 100%);
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.94);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.press-card__head {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-bottom: 28px;
    text-align: center;
}

.press-card__logo {
    width: min(280px, 82vw);
    height: auto;
}

.press-card h1 {
    margin: 0;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 500;
    line-height: 0.95;
}

.press-section {
    display: grid;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--line-soft);
}

.press-section h2 {
    margin: 0;
    color: var(--gold-soft);
    font-size: 13px;
    text-transform: uppercase;
}

.press-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.check-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.34);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.check-option input {
    width: 16px;
    height: 16px;
    min-height: 0;
    padding: 0;
    accent-color: var(--gold);
}

.check-option b {
    color: var(--danger);
}

.check-option--privacy {
    width: 100%;
    align-items: flex-start;
    line-height: 1.45;
}

.press-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.press-status {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.press-status p {
    margin: 0;
}

.press-status p + p {
    margin-top: 6px;
}

.press-status--success {
    border-color: rgba(131, 212, 76, 0.45);
    background: rgba(131, 212, 76, 0.12);
}

.press-status--error {
    border-color: rgba(255, 119, 109, 0.48);
    background: rgba(255, 119, 109, 0.1);
}

.press-modal {
    position: fixed;
    inset: 0;
    z-index: 230;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
}

.press-modal.is-open {
    display: grid;
}

.press-modal__dialog {
    width: min(760px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.97);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.press-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.press-modal__head strong {
    display: block;
    margin-top: 6px;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 500;
    line-height: 1;
}

.press-modal__close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.press-modal__lead {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.press-modal__form .form-grid {
    gap: 12px;
}

.press-modal__form input {
    min-height: 42px;
}

.press-modal__form .press-submit {
    width: 100%;
    margin-top: 6px;
}

.press-modal__status {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
    line-height: 1.5;
}

.press-modal__status.is-success {
    border-color: rgba(131, 212, 76, 0.45);
    background: rgba(131, 212, 76, 0.12);
    color: var(--success);
}

.press-modal__status.is-error {
    border-color: rgba(255, 119, 109, 0.48);
    background: rgba(255, 119, 109, 0.12);
    color: var(--danger);
}

.stepper {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
}

.stepper button {
    min-height: 46px;
    border: 0;
    background: rgba(216, 173, 69, 0.12);
    color: var(--gold-soft);
    cursor: pointer;
    font-weight: 800;
}

.stepper input {
    border: 0;
    text-align: center;
    min-height: 46px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 14px;
}

.summary-row strong { color: #fff; }
.summary-row.discount strong { color: var(--success); }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    padding-top: 22px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.summary-total strong {
    color: var(--gold-soft);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1;
}

.payment-options {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.payment-option input {
    width: 17px;
    min-height: 17px;
    accent-color: var(--gold);
}

.payment-option b {
    margin-left: auto;
    color: var(--gold-soft);
    font-size: 12px;
    text-transform: uppercase;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.payment-method:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.payment-method:has(input:checked) {
    border-color: var(--gold);
    background: rgba(214, 178, 99, 0.07);
}

.payment-method input {
    width: 17px;
    min-height: 17px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.payment-method span {
    font-size: 13px;
    line-height: 1.45;
    color: var(--dim);
}

.payment-method span b {
    color: var(--text);
    font-size: 14px;
}

.notice {
    margin-top: 16px;
    color: var(--dim);
    font-size: 13px;
    line-height: 1.5;
}

/* Aviso de proteção de dados junto dos formulários (art. 13.º do RGPD). */
.notice--privacy {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(214, 178, 99, .28);
    border-radius: 10px;
    background: rgba(214, 178, 99, .06);
    font-size: 12.5px;
}

.notice--privacy strong {
    color: var(--gold);
}

.footer__note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--dim);
    line-height: 1.5;
}

.footer__legal {
    margin-top: 14px;
    font-size: 13px;
}

.footer__legal a {
    color: var(--gold);
}

.footer__note a { color: var(--gold-soft); text-decoration: none; }
.footer__note a:hover { text-decoration: underline; }

.footer__socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 16px 0;
}

.footer__socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-soft);
    font-weight: 700;
}

.footer__socials a:hover {
    color: #fff;
}

.footer__admin {
    margin-top: 18px;
    opacity: 0.45;
    font-size: 12px;
}

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

.footer__admin a:hover {
    opacity: 1;
    text-decoration: underline;
}

.status {
    display: none;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(131, 212, 76, 0.38);
    color: #dfffd0;
    background: rgba(131, 212, 76, 0.08);
    line-height: 1.5;
}

.status.is-error {
    border-color: rgba(255, 119, 109, 0.4);
    color: #ffd7d4;
    background: rgba(255, 119, 109, 0.08);
}

.booking-feedback {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.booking-feedback.is-open { display: grid; }

.booking-feedback__dialog {
    position: relative;
    width: min(470px, 100%);
    padding: 34px 28px 28px;
    border: 1px solid rgba(131, 212, 76, 0.45);
    background: #0b0b0b;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.booking-feedback.is-error .booking-feedback__dialog { border-color: rgba(255, 119, 109, 0.55); }

.booking-feedback__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    font-size: 21px;
    cursor: pointer;
}

.booking-feedback__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #0a0a0a;
    background: #83d44c;
    font-size: 25px;
}

.booking-feedback.is-error .booking-feedback__icon { background: #ff776d; }
.booking-feedback__dialog > strong { display: block; color: #fff; font-size: 22px; }
.booking-feedback__message { margin: 13px 0 22px; color: #ddd5ca; line-height: 1.65; }
.booking-feedback__message strong { color: #fff; }
.booking-feedback__dialog .btn { min-width: 130px; }

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.program-item {
    padding: 18px;
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.program-item time {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
}

.program-item h3 {
    margin: 9px 0 6px;
    font-size: 17px;
}

.program-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.program-item .program-item__prize {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(216, 173, 69, 0.42);
    background: rgba(216, 173, 69, 0.1);
    color: var(--gold-soft);
    font-weight: 700;
}

.program-item__prize strong {
    color: var(--gold);
}

.program-note {
    display: grid;
    gap: 18px;
    margin: 22px auto 0;
    padding: 24px;
    border: 1px solid rgba(216, 173, 69, 0.28);
    background: rgba(216, 173, 69, 0.07);
}

.program-note__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(216, 173, 69, 0.18);
    padding-bottom: 16px;
}

.program-note__label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.program-note h3 {
    margin: 6px 0 0;
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
}

.program-note__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    color: var(--gold);
    font-size: 22px;
}

.program-note__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.program-note__item {
    display: grid;
    gap: 8px;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(216, 173, 69, 0.18);
    background: rgba(0, 0, 0, 0.28);
}

.program-note__item i {
    color: var(--gold);
    font-size: 20px;
}

.program-note__item strong {
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
}

.program-note__item span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.program-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.sponsor-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: rgba(216, 173, 69, 0.18);
    overflow: visible;
}

.sponsor-strip--official {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sponsor-lines {
    display: grid;
    gap: 1px;
}

.sponsor-lines .sponsor-strip--official {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sponsor-strip--food {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sponsor-slot {
    position: relative;
    min-height: 116px;
    display: grid;
    place-items: center;
    padding: 16px;
    border: 0;
    background: #050505;
    color: #fff;
    text-align: center;
    font-family: var(--display);
    font-size: 26px;
    cursor: pointer;
    transition: none;
}

.sponsor-slot--clone { display: none; }

.sponsor-slot small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-family: var(--body);
    font-size: 10px;
    text-transform: uppercase;
}

.sponsor-slot i {
    display: block;
    margin: 8px auto 0;
    color: var(--gold);
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
}

.sponsor-slot__logo {
    max-width: min(160px, 78%);
    max-height: 58px;
    object-fit: contain;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.sponsor-slot__caption {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.sponsor-slot--text {
    gap: 4px;
    line-height: 1.05;
}

.sponsor-slot--text span {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.sponsor-slot--available {
    min-height: 104px;
    border: 1px dashed rgba(247, 220, 153, 0.34);
    background:
        linear-gradient(145deg, rgba(216, 173, 69, 0.08), rgba(5, 5, 5, 0.95)),
        #050505;
    color: var(--gold-soft);
    font-family: var(--body);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    cursor: pointer;
}

.sponsor-slot--available span {
    max-width: 120px;
}

.sponsor-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(12px);
}

.sponsor-contact-modal.is-open,
.sponsor-contact-modal:target,
.sponsor-contact-modal[aria-hidden="false"] {
    display: grid;
}

.sponsor-contact-modal__dialog {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(440px, 100%);
    padding: 38px 26px 30px;
    border: 1px solid rgba(247, 220, 153, 0.72);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(216, 173, 69, 0.16), rgba(6, 6, 6, 0.98)),
        #080808;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
    text-align: center;
}

.sponsor-contact-modal__dialog > i {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(247, 220, 153, 0.45);
    border-radius: 50%;
    color: var(--gold-soft);
    font-size: 20px;
}

.sponsor-contact-modal__dialog strong {
    color: var(--gold-soft);
    font-family: var(--display);
    font-size: clamp(32px, 5vw, 46px);
    line-height: 0.95;
}

.sponsor-contact-modal__dialog p {
    max-width: 320px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.sponsor-contact-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(247, 220, 153, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: var(--light);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.sponsor-contact-modal__email {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sponsor-strip--food .sponsor-slot {
    min-height: 86px;
    padding: 10px;
}

.sponsor-strip--food .sponsor-slot__logo {
    max-width: min(126px, 74%);
    max-height: 44px;
}

.sponsor-strip--food .sponsor-slot__logo--coxinha {
    max-width: min(142px, 80%);
    max-height: 54px;
}

.sponsor-strip--food .sponsor-slot__caption {
    font-size: 9px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
}

.video-modal.is-open { display: grid; }

.video-modal__dialog {
    width: min(900px, 100%);
    border: 1px solid var(--line);
    background: #080808;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.video-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-soft);
}

.video-modal__head strong {
    color: var(--gold-soft);
    font-size: 14px;
    text-transform: uppercase;
}

.video-modal__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.video-modal__frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
    background: #000;
}

.video-modal__empty {
    min-height: 360px;
    display: none;
    place-items: center;
    padding: 40px;
    color: var(--muted);
    text-align: center;
}

.video-modal__empty i {
    display: block;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 40px;
}

.hero .eyebrow,
.hero__actions {
    opacity: 0;
    animation: fadeUp 0.72s ease forwards;
}

.hero .eyebrow { animation-delay: 0.05s; }
.hero__actions { animation-delay: 1.56s; }

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
    transition: opacity 0.72s ease, transform 0.72s ease, filter 0.72s ease;
    will-change: opacity, transform, filter;
}

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

.ticket-card.reveal-on-scroll.is-visible:hover {
    transform: translateY(-3px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes logoLetterReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: translateY(14px);
        filter: blur(8px);
    }
    62% {
        opacity: 1;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .hero__title-logo,
    .hero__copy,
    .hero .eyebrow,
    .hero__actions,
    .pill,
    .event-card,
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
    }
}

.footer {
    padding: 38px 0;
    border-top: 1px solid rgba(216, 173, 69, 0.18);
    color: var(--dim);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 960px) {
    .nav__links { display: none; }
    .nav__menu-toggle { display: inline-flex; }
    .staff-grid { grid-template-columns: 1fr; }
    .hero__grid, .buy-grid { grid-template-columns: 1fr; }
    .organization-grid { grid-template-columns: 1fr; }
    .organization-more { order: 2; min-width: 0; }
    .organization-more__button { width: 100%; height: auto; min-height: 58px; display: inline-flex; justify-content: center; }
    .organization-card:first-child { order: 1; }
    .organization-card:last-child { order: 3; }
    .event-card { max-width: 460px; }
    .ticket-grid, .program-grid, .details-grid { grid-template-columns: repeat(2, 1fr); }
    .program-note__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sponsor-strip,
    .sponsor-strip--official,
    .sponsor-lines .sponsor-strip--official,
    .sponsor-strip--food {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .nav__actions .btn--outline { display: none; }
    .nav__partner { min-width: 58px; }
    .ambassador-benefits__list { grid-template-columns: 1fr; }
}

@media (min-width: 800px) and (max-width: 1000px) {
    .hero__actions {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .hero__secondary-actions {
        display: contents;
    }

    .hero__actions .btn {
        min-height: 42px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: 11px;
        gap: 7px;
    }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .nav__inner { min-height: 70px; }
    .brand { min-width: 0; }
    .brand__logo { height: 40px; }
    .nav__actions { display: none; }
    .nav__partner { min-width: 50px; }
    .nav__partner-logo { height: 34px; }
    .nav__partner-logo--dminds { height: 40px; }
    .hero { min-height: auto; padding-top: 48px; }
    .hero__title-logo { width: min(330px, 100%); }
    .hero__copy { max-width: min(330px, 100%); }
    .section-head h2 { max-width: 330px; margin-right: auto; margin-left: auto; font-size: 36px; line-height: 1.02; }
    .section-head p { max-width: 330px; }
    .hero__actions { align-items: stretch; flex-direction: column; width: 100%; margin: 0 auto; }
    .hero__secondary-actions { align-items: stretch; flex-direction: column; }
    .hero__press-mobile { display: inline-flex; }
    .ambassadors-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .ticket-ambassadors-cta { align-items: stretch; flex-direction: column; padding: 20px; }
    .ticket-ambassadors-cta .btn { width: 100%; }
    .hero__pills, .ticket-grid, .program-grid, .details-grid, .form-grid { grid-template-columns: 1fr; }
    .sponsor-strip,
    .sponsor-strip--official,
    .sponsor-lines .sponsor-strip--official,
    .sponsor-strip--food {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .program-note { padding: 18px; }
    .program-note__header { align-items: flex-start; }
    .program-note__items { grid-template-columns: 1fr; }
    .hero__pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .details-grid { grid-template-columns: minmax(0, 1fr); width: 100%; }
    .organization-card { grid-template-columns: 1fr; }
    .organization-card__photo { min-height: 320px; }
    .organization-card__body { padding: 22px; }
    .staff-grid { grid-template-columns: 1fr; }
    .staff-group {
        align-items: flex-start;
        flex-direction: column;
        overflow-x: visible;
    }
    .staff-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
        max-width: 100%;
    }
    .staff-list--photo {
        flex-wrap: nowrap;
    }
    .staff-list a:not(:last-child)::after,
    .staff-list span:not(:last-child)::after {
        content: none;
    }
    .venue-more { width: max-content; max-width: 100%; }
    .venue-more__trigger { width: auto; justify-content: center; }
    .venue-modal { padding: 16px; }
    .venue-modal__dialog { max-height: calc(100vh - 32px); }
    .venue-slider { min-height: 0; max-height: none; aspect-ratio: 4 / 5; }
    .venue-slider__arrow { width: 40px; height: 40px; }
    .venue-slider__arrow--prev { left: 12px; }
    .venue-slider__arrow--next { right: 12px; }
    .venue-slider__dots { bottom: 14px; }
    .video-trigger { min-width: 0; max-width: 100%; }
    .event-card { padding: 20px; }
    .card { padding: 18px; }
    .sponsor-slot { min-height: 132px; }
    .sponsor-slot__logo { max-height: 82px !important; }
}

@media (max-width: 380px) {
    .nav__inner { gap: 10px; }
    .nav__partner { min-width: 44px; }
    .brand__logo { height: 34px; }
    .nav__partner-logo { height: 30px; }
    .nav__partner-logo--dminds { height: 34px; }
    .hero__pills { grid-template-columns: 1fr; }
}
