/* ===================== BLOCK A — mirrors your style.css ===================== */
:root {
    --gold: #ffc631;
    --gold-hover: #f2b71e;
    --dark-bg: #012169;
    --darker-bg: #012169;
    --light-bg: #fdfbf7;
    --glass-bg: rgba(1, 33, 105, 0.85);
    --border-gold: rgba(255, 198, 49, 0.25);
    --border-light: #dfe3ec;
    --serif-font: "Uni Neue", "Manrope", system-ui, sans-serif;
    --sans-font: "Manrope", system-ui, sans-serif;
    --text-muted: rgba(40, 30, 28, 0.55);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--sans-font);
    color: #281e1c;
    background: var(--light-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
h1,
h2,
h3,
h4 {
    font-family: var(--serif-font);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
    color: #012169;
}
p {
    margin: 0 0 24px;
}
p:last-child {
    margin-bottom: 0;
}
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 24px;
}
#header {
    position: fixed;
    inset: 0 0 auto;
    height: 84px;
    z-index: 997;
    display: flex;
    align-items: center;
    background: rgb(255 255 255 / 85%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.4s;
    background: var(--glass-bg);
    background: #fff;
}
#header.header-scrolled {
    background: var(--darker-bg);
    height: 68px;
    background: #fff;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.nav-menu > li {
    display: inline-flex;
    align-items: center;
    margin-left: 26px;
    height: 100%;
}
.nav-menu > li > a {
    font-family: var(--sans-font);
    font-size: 12.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(1 30 94);
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-menu > li > a:hover,
.nav-menu > li.menu-active > a {
    color: var(--gold);
}
.nav-menu > li.buy-tickets > a {
    border: 1px solid var(--gold);
    color: #000;
    border-radius: 8px;
    padding: 10px 20px;
    height: auto;
    line-height: 1;
    background: #ffc631;
}
.nav-menu > li.buy-tickets > a:hover {
    background: var(--gold);
    color: #012169;
}
#footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-gold);
    color: rgba(255, 255, 255, 0.68);
}
#footer .footer-top {
    padding: 70px 0 36px;
}
#footer .footer-top h4 {
    font-family: var(--serif-font);
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 22px;
}
#footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
#footer a {
    color: rgba(255, 255, 255, 0.68);
}
#footer a:hover {
    color: var(--gold);
}

/* ===================== BLOCK B — Pacific Bridge (new) ===================== */

/* --- Buttons --- */
.pb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans-font);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.35s;
}
.pb-btn:hover {
    background: var(--gold);
    color: #012169;
    box-shadow: 0 10px 28px rgba(255, 198, 49, 0.28);
}
.pb-btn--solid {
    background: var(--gold);
    color: #012169;
}
.pb-btn--solid:hover {
    background: var(--gold-hover);
    color: #012169;
}
.pb-btn--navy {
    border-color: #012169;
    color: #012169;
}
.pb-btn--navy:hover {
    background: #012169;
    color: #fff;
    box-shadow: 0 10px 28px rgba(1, 33, 105, 0.2);
}

/* --- Logo lockup --- */
.pb-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pb-lockup img {
    max-height: 65px;
    width: auto;
}
.pb-logo-reversed {
    /* filter:brightness(0) invert(1); */ /* opacity:.96; */
}
.pb-divider {
    width: 1px;
    height: 30px;
    background: var(--border-gold);
    flex: none;
}
.pb-eventname {
    font-family: var(--serif-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}
.pb-eventname em {
    font-style: normal;
    color: var(--gold);
    display: block;
    font-size: 9px;
    font-family: var(--sans-font);
    font-weight: 700;
    letter-spacing: 2.2px;
    margin-top: 3px;
}
#header.header-scrolled .pb-lockup img {
    max-height: 65px;
}
.pb-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: #012169;
    cursor: pointer;
}
.pb-nav-toggle-icon-close {
    display: none;
}
.pb-nav-toggle[aria-expanded="true"] .pb-nav-toggle-icon-open {
    display: none;
}
.pb-nav-toggle[aria-expanded="true"] .pb-nav-toggle-icon-close {
    display: block;
}

/* ============ SECTION SHELL — asymmetric, left-aligned, not centered ============ */
.pb-sec {
    padding: 110px 0;
}
.pb-sec--alt {
    background: #fff;
}
.pb-sec--navy {
    background: var(--dark-bg);
    color: #fff;
}
.pb-sec--navy h2,
.pb-sec--navy h3 {
    color: #fff;
}

/* Sticky label column + content column. This asymmetry is the main
   structural change from v2 — it replaces centered heads + card grids. */
.pb-split {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}
.pb-label {
    position: sticky;
    top: 120px;
}
.pb-eyebrow {
    font-family: var(--sans-font);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-hover);
    display: block;
    margin-bottom: 16px;
}
.pb-sec--navy .pb-eyebrow {
    color: var(--gold);
}
.pb-label h2 {
    font-family: var(--serif-font);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0 0 18px;
}
.pb-label .pb-rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
}
.pb-label p {
    margin-top: 18px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
}
.pb-sec--navy .pb-label p {
    color: rgba(255, 255, 255, 0.55);
}
.pb-lede {
    font-size: 19px;
    line-height: 1.7;
    color: #281e1c;
    margin-bottom: 44px;
    max-width: 62ch;
}
.pb-sec--navy .pb-lede {
    color: rgba(255, 255, 255, 0.78);
}

/* ============ HERO — asymmetric: statement left, data panel right ============ */
#intro {
    background: linear-gradient(165deg, #012169 0%, #011a52 100%);
    position: relative;
    overflow: hidden;
    padding: 150px 0 0;
}
.pb-hero-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}
.pb-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: end;
    padding-bottom: 90px;
}
.pb-kicker {
        display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif-font);
    font-size: clamp(17px,2.1vw,23px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: .5px;
    text-transform: none;
    color: var(--gold);
    margin-bottom: 28px;
    text-shadow: 0 2px 18px rgba(255,198,49,.35);
}
.pb-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--gold);
}
#intro h1 {
    font-family: var(--serif-font);
    font-size: 60px;
    line-height: 1.08;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 26px;
}
#intro h1 em {
    font-style: normal;
    color: var(--gold);
}
.pb-hero-sub {
    font-size: 18.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 46ch;
    margin: 0 0 38px;
}
.pb-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Flight-information panel — the hero's second focal point */
.pb-panel-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.pb-panel-head {
    background: var(--gold);
    color: #012169;
    padding: 14px 24px;
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}
.pb-panel-body {
    padding: 8px 24px 24px;
}
.pb-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pb-info-row:last-of-type {
    border-bottom: none;
}
.pb-info-row dt {
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.pb-info-row dd {
    margin: 0;
    font-family: var(--serif-font);
    font-size: 15.5px;
    font-weight: 600;
    color: #fff;
    text-align: right;
}
.pb-count {
    display: flex;
    gap: 10px;
    padding: 20px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 6px;
}
.pb-count div {
    flex: 1;
    text-align: center;
    background: rgba(255, 198, 49, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 12px 4px;
}
.pb-count b {
    display: block;
    font-family: var(--serif-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.pb-count span {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

/* ============ STATS BAND ============ */
.pb-stats {
        background: var(--gold);
    color: #012169;
    text-align: center;
    padding: 30px 24px;
}
.pb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.pb-stat {
    padding: 38px 30px;
    border-right: 1px solid rgba(1, 33, 105, 0.16);
}
.pb-stat:last-child {
    border-right: none;
}
.pb-stat b {
    display: block;
    font-family: var(--serif-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}
.pb-stat span {
    display: block;
    font-family: var(--sans-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-top: 12px;
    opacity: 0.72;
}

/* ============ CHAIN — horizontal connected flow, not four boxes ============ */
.pb-flow {
    position: relative;
    padding-top: 14px;
}
.pb-flow::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0 8px,
        transparent 8px 16px
    );
    opacity: 0.55;
}
.pb-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
}
.pb-node {
    text-align: left;
}
.pb-node .pb-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1.5px solid var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--serif-font);
    font-size: 17px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}
.pb-sec--alt .pb-node .pb-dot {
    background: #fff;
}
.pb-node h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.4px;
}
.pb-node .pb-role {
    font-family: var(--sans-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-hover);
    display: block;
    margin-bottom: 10px;
}
.pb-node p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ============ HOSTED BUYER — the headline offer, given real weight ============ */
.pb-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
}
.pb-offer-main {
    padding: 52px;
    background: rgba(255, 255, 255, 0.04);
}
.pb-offer-main h3 {
    font-size: 27px;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
}
.pb-offer-main > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}
.pb-check {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}
.pb-check li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}
.pb-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--gold);
}
.pb-check li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #012169;
    border-bottom: 2px solid #012169;
    transform: rotate(42deg);
}
.pb-check li b {
    display: block;
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}
.pb-offer-side {
    padding: 52px;
    background: rgba(1, 33, 105, 0.55);
    border-left: 1px solid var(--border-gold);
}
.pb-offer-side h4 {
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
}
.pb-terms {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}
.pb-terms li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}
.pb-terms li:last-child {
    border-bottom: none;
}
.pb-terms strong {
    color: #fff;
    display: block;
    font-family: var(--serif-font);
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 3px;
}

/* ============ ROUTES ============ */
.pb-route-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: center;
}
.pb-routes {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border-gold);
}
.pb-route {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 4px;
    border-bottom: 1px solid var(--border-gold);
    transition: padding-left 0.3s;
}
.pb-route:hover {
    padding-left: 12px;
}
.pb-code {
    font-family: var(--sans-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold);
    white-space: nowrap;
}
.pb-code i {
    font-style: normal;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 7px;
}
.pb-dest {
    font-family: var(--serif-font);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.4px;
}
.pb-dest small {
    display: block;
    font-family: var(--sans-font);
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}
.pb-tag {
    font-family: var(--sans-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
}
.pb-map {
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 26px;
}
.pb-note {
    font-family: var(--sans-font);
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
}
.pb-arc {
    stroke-dasharray: 5 5;
    animation: pbDrift 26s linear infinite;
}
@keyframes pbDrift {
    to {
        stroke-dashoffset: -200;
    }
}
.pb-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: pbPulse 3.2s ease-in-out infinite;
}
@keyframes pbPulse {
    0%,
    100% {
        opacity: 0.35;
        r: 9;
    }
    50% {
        opacity: 0;
        r: 19;
    }
}

/* ============ AUDIENCE — alternating editorial bands, no equal cards ============ */
.pb-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--border-light);
}
.pb-band:last-child {
    border-bottom: none;
}
.pb-band--flip .pb-band-media {
    order: -1;
}
.pb-band h3 {
    font-size: 26px;
    margin: 0 0 8px;
    letter-spacing: 0.4px;
}
.pb-band .pb-who {
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-hover);
    display: block;
    margin-bottom: 14px;
}
.pb-band ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
.pb-band li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 13px;
    font-size: 15.5px;
    line-height: 1.65;
}
.pb-band li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 2px;
    background: var(--gold);
}
.pb-band-media {
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: #fff;
    padding: 40px;
}
.pb-metric {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}
.pb-metric:last-child {
    border-bottom: none;
}
.pb-metric b {
    font-family: var(--serif-font);
    font-size: 34px;
    font-weight: 700;
    color: #012169;
    line-height: 1;
    min-width: 64px;
}
.pb-metric span {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============ AGENDA ============ */
.pb-glance {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.pb-glance-card {
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: #fff;
    padding: 32px;
    transition: all 0.35s;
}
.pb-glance-card:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 36px rgba(255, 198, 49, 0.1);
    transform: translateY(-4px);
}
.pb-glance-card b {
    display: block;
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-hover);
    margin-bottom: 12px;
}
.pb-glance-card h4 {
    font-family: var(--serif-font);
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 10px;
}
.pb-glance-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
}
.pb-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.pb-tab {
    font-family: var(--sans-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    padding: 16px 26px;
    cursor: pointer;
    transition: all 0.3s;
}
.pb-tab[aria-selected="true"] {
    border-bottom-color: var(--gold);
    color: #012169;
}
.pb-slot {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 32px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: start;
}
.pb-slot time {
    font-family: var(--sans-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-hover);
    padding-top: 4px;
}
.pb-slot h4 {
    font-family: var(--serif-font);
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: 0.3px;
}
.pb-slot h4 span {
    font-family: var(--sans-font);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text-muted);
}
.pb-slot p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
}
.pb-notice {
    border-left: 3px solid var(--gold);
    background: rgba(255, 198, 49, 0.09);
    padding: 22px 28px;
    margin-top: 36px;
    border-radius: 0 8px 8px 0;
}
.pb-notice b {
    display: block;
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--gold-hover);
    margin-bottom: 6px;
}
.pb-notice p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ============ VENUE ============ */
.pb-venue {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
}
.pb-venue-l {
    padding: 52px;
    background: rgba(255, 255, 255, 0.04);
}
.pb-venue-r {
    padding: 0;
    background: rgba(1, 33, 105, 0.55);
    border-left: 1px dashed var(--border-gold);
    min-height: 420px;
}
.pb-venue-r iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}
.pb-pin {
    width: 54px;
    height: 54px;
    margin: 0 auto 22px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.pb-pin::before {
    content: "";
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
}
.pb-venue-r h3 {
    font-size: 21px;
    margin-bottom: 12px;
}
.pb-venue-r p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    max-width: 32ch;
    margin: 0 auto;
}
.pb-facts {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}
.pb-facts li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.pb-facts li:last-child {
    border-bottom: none;
}
.pb-facts span:first-child {
    color: rgba(255, 255, 255, 0.45);
}
.pb-facts span:last-child {
    color: #fff;
    text-align: right;
}

/* ============ PARTNER ============ */
.pb-partner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.pb-partner-plate {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: #fff;
    padding: 60px 50px;
    text-align: center;
}
.pb-partner-plate img {
    max-height: 110px;
    width: auto;
    margin: 0 auto 22px;
}
.pb-partner-plate p {
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

/* ============ REGISTER ============ */
.pb-reg {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.pb-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 46px;
    box-shadow: 0 24px 60px rgba(1, 33, 105, 0.22);
}
.pb-form-card h3 {
    font-size: 22px;
    margin: 0 0 6px;
    color: #012169;
}
.pb-form-card > p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.pb-field {
    margin-bottom: 18px;
}
.pb-field label {
    display: block;
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.pb-field input,
.pb-field select,
.pb-field textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: var(--sans-font);
    font-size: 15px;
    color: #281e1c;
    transition: 0.3s;
}
.pb-field input:focus,
.pb-field select:focus,
.pb-field textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 198, 49, 0.16);
}
.pb-field textarea {
    min-height: 96px;
    resize: vertical;
}
.pb-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.pb-field-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.pb-field-header label {
    margin-bottom: 0;
}
.pb-guest-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
}
.pb-guest-row .pb-field {
    margin-bottom: 0;
}
.pb-guest-remove {
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: #c0392b;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.pb-guest-remove:hover {
    background: #fdeaea;
    border-color: #e0a0a0;
}
.pb-add-guest-btn {
    padding: 8px 16px;
    font-size: 10.5px;
    flex-shrink: 0;
}
.pb-ok {
    display: none;
    border-left: 3px solid var(--gold);
    background: rgba(255, 198, 49, 0.14);
    padding: 18px 22px;
    margin-bottom: 22px;
    font-size: 14.5px;
    color: #281e1c;
    border-radius: 0 8px 8px 0;
}
.pb-ok.show {
    display: block;
}
.pb-reg-side ul {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}
.pb-reg-side li {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}
.pb-reg-side li b {
    display: block;
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

/* ============ CONTACT + FOOTER ============ */
.pb-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.pb-contact-card {
    padding: 40px 36px;
    border-right: 1px solid var(--border-light);
    transition: background 0.3s;
}
.pb-contact-card:last-child {
    border-right: none;
}
.pb-contact-card:hover {
    background: rgba(255, 198, 49, 0.05);
}
.pb-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-hover);
    margin-bottom: 18px;
}
.pb-contact-card h4 {
    font-family: var(--sans-font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 12px;
}
.pb-contact-card p {
    font-family: var(--serif-font);
    font-size: 16px;
    font-weight: 500;
    color: #012169;
    margin: 0;
    line-height: 1.6;
}
.pb-contact-card a {
    color: #012169;
}
.pb-contact-card a:hover {
    color: var(--gold-hover);
}
.pb-foot-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr;
    gap: 56px;
}
.pb-foot-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pb-foot-grid li {
    margin-bottom: 10px;
    font-size: 14.5px;
}
.pb-foot-logo {
    max-height: 38px;
    width: auto;
    margin-bottom: 22px;
}
.pb-copy-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============ Sticky mobile CTA — standard on event sites ============ */
.pb-sticky {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-gold);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pb-sticky span {
    font-family: var(--sans-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.pb-sticky .pb-btn {
    padding: 12px 22px;
    font-size: 11px;
}

/* Text wordmark shown only if the logo file fails to load */
.pb-wordmark {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
    white-space: nowrap;
}
.pb-wordmark b {
    font-family: var(--serif-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #012169;
}
.pb-wordmark i {
    font-style: normal;
    font-family: var(--sans-font);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-hover);
    margin-top: 3px;
}
.pb-wordmark--rev b {
    color: #fff;
}
.pb-wordmark--rev i {
    color: var(--gold);
}
.pb-partner-plate .pb-wordmark {
    align-items: center;
    margin-bottom: 22px;
}
.pb-partner-plate .pb-wordmark b {
    font-size: 28px;
}
.pb-foot-logo + * {
    margin-top: 0;
}

/* ============ Responsive ============ */
/* Nav collapses earlier than the general content breakpoint below, since the
   header now has more links (Partner/Contact added) than the desktop nav's
   nowrap flex row can fit down to 991px. */
@media (max-width: 1150px) {
    .pb-nav-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--darker-bg);
        border-top: 1px solid var(--border-gold);
        height: auto;
        padding: 8px 24px 20px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu > li {
        margin: 0;
        height: auto;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-menu > li > a {
        height: auto;
        padding: 14px 0;
        color: #fff;
    }
    .nav-menu > li.buy-tickets > a {
        margin-top: 12px;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .pb-sec {
        padding: 76px 0;
    }
    .pb-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .pb-label {
        position: static;
    }
    .pb-label h2 {
        font-size: 28px;
    }
    #intro {
        padding-top: 120px;
    }
    #intro h1 {
        font-size: 38px;
    }
    .pb-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-bottom: 70px;
    }
    .pb-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pb-stat {
        border-bottom: 1px solid rgba(1, 33, 105, 0.16);
    }
    .pb-flow-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
    .pb-flow::before {
        display: none;
    }
    .pb-offer,
    .pb-route-grid,
    .pb-band,
    .pb-venue,
    .pb-partner,
    .pb-reg,
    .pb-glance,
    .pb-contact,
    .pb-guest-row,
    .pb-foot-grid {
        grid-template-columns: 1fr;
    }
    .pb-guest-remove {
        justify-self: end;
    }
    .pb-offer-side,
    .pb-venue-r {
        border-left: none;
        border-top: 1px solid var(--border-gold);
    }
    .pb-band--flip .pb-band-media {
        order: 0;
    }
    .pb-contact-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .pb-sticky {
        display: flex;
    }
    body {
        padding-bottom: 72px;
    }
    .pb-nav-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--darker-bg);
        border-top: 1px solid var(--border-gold);
        height: auto;
        padding: 8px 24px 20px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu > li {
        margin: 0;
        height: auto;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-menu > li > a {
        height: auto;
        padding: 14px 0;
        color: #fff;
    }
    .nav-menu > li.buy-tickets > a {
        margin-top: 12px;
        justify-content: center;
    }
}
@media (max-width: 574px) {
    #intro h1 {
        font-size: 30px;
    }
    .pb-stats-grid,
    .pb-flow-grid,
    .pb-row,
    .pb-glance {
        grid-template-columns: 1fr;
    }
    .pb-slot {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .pb-route {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .pb-tag {
        justify-self: start;
    }
    .pb-offer-main,
    .pb-offer-side,
    .pb-venue-l,
    .pb-form-card {
        padding: 32px 26px;
    }
    .pb-sticky span {
        display: none;
    }
    .pb-sticky {
        justify-content: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}
.pb-tagline {
    font-family: var(--serif-font);
    font-weight: 800;
    font-style: italic;
    color: #012169;
    letter-spacing: .5px;
    font-size: clamp(20px,5vw,44px);
    line-height: 1.2;
    margin: 0;
}