/* =============================================================================
 * Panther Backers — Modern Vibrant CSS (inspired by thursday.social)
 * University alumni golf tournament: playful, modern, vibrant aesthetic
 * Prefix: pb-  |  Fonts: Playfair Display (headings) + Inter (body)
 * Theme: LIGHT  |  Brand: PVAMU Purple #582c83 + Gold #eaaa00
 * ============================================================================= */

/* =============================================================================
 * Google Fonts
 * ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================================================
 * Design Tokens
 * ============================================================================= */
:root {
    --pb-purple: #582c83;
    --pb-purple-light: #7444a0;
    --pb-purple-dark: #3e1f5e;
    --pb-gold: #eaaa00;
    --pb-gold-light: #f5c133;
    --pb-gray: #808285;
    --pb-white: #ffffff;
    --pb-bg: #fafafa;
    --pb-bg-alt: #f5f1f9;
    --pb-bg-warm: #fef9ee;
    --pb-bg-purple: #582c83;
    --pb-card: #ffffff;
    --pb-border: #e5e0eb;
    --pb-text: #1a1a2e;
    --pb-text-muted: #808285;
    --pb-text-on-purple: #ffffff;
    --pb-text-on-gold: #1a1a2e;
    --pb-radius: 16px;
    --pb-radius-lg: 24px;
    --pb-shadow-card: 0 2px 12px rgba(88, 44, 131, 0.06);
    --pb-shadow-hover: 0 12px 32px rgba(88, 44, 131, 0.12);
    --pb-font-heading: 'Playfair Display', Georgia, serif;
    --pb-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =============================================================================
 * Reset & Base
 * ============================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--pb-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pb-text);
    background: var(--pb-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--pb-purple);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--pb-purple-light);
}

strong {
    color: var(--pb-text);
    font-weight: 600;
}

/* =============================================================================
 * Container
 * ============================================================================= */
.pb-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================================================
 * Navigation Bar
 * ============================================================================= */
.pb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pb-border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.pb-nav.pb-nav-scrolled {
    box-shadow: 0 2px 12px rgba(74, 14, 120, 0.08);
}

.pb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.pb-nav-logo {
    font-family: var(--pb-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--pb-purple);
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 1;
}

.pb-nav-logo:hover {
    color: var(--pb-purple-dark);
}

.pb-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pb-nav-links a {
    font-family: var(--pb-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--pb-text);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.pb-nav-links a:hover {
    color: var(--pb-purple);
}

.pb-nav-links a.pb-active {
    color: var(--pb-purple);
    border-bottom-color: var(--pb-gold);
}

.pb-nav-cta {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--pb-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border: none;
    border-radius: 99px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-nav-cta:hover {
    background: var(--pb-gold-light);
    color: var(--pb-text-on-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

/* Hamburger Toggle */
.pb-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.pb-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pb-text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* =============================================================================
 * Scroll Reveal
 * ============================================================================= */
.pb-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pb-reveal.pb-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
 * CTA Buttons
 * ============================================================================= */
.pb-btn-primary {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pb-text-on-purple);
    background: var(--pb-purple);
    border: 2px solid var(--pb-purple);
    border-radius: var(--pb-radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pb-btn-primary:hover {
    background: var(--pb-purple-light);
    border-color: var(--pb-purple-light);
    color: var(--pb-text-on-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74, 14, 120, 0.3);
}

.pb-btn-gold {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border: 2px solid var(--pb-gold);
    border-radius: var(--pb-radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pb-btn-gold:hover {
    background: var(--pb-gold-light);
    border-color: var(--pb-gold-light);
    color: var(--pb-text-on-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.pb-btn-outline {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pb-purple);
    background: transparent;
    border: 2px solid var(--pb-purple);
    border-radius: var(--pb-radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pb-btn-outline:hover {
    background: var(--pb-purple);
    color: var(--pb-text-on-purple);
    transform: translateY(-3px);
}

.pb-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pb-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* =============================================================================
 * Hero — Full-Height (Home Page)
 * ============================================================================= */
.pb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--pb-purple);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pb-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pb-text-on-purple);
    max-width: 700px;
    padding: 40px 24px;
    animation: pb-fadeInUp 0.8s ease-out;
}

.pb-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--pb-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
    margin-bottom: 24px;
}

.pb-hero h1 {
    font-family: var(--pb-font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--pb-white);
    margin-bottom: 16px;
}

.pb-hero-subtitle {
    font-family: var(--pb-font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 8px;
}

.pb-hero-dedication {
    font-family: var(--pb-font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--pb-gold);
    margin-bottom: 24px;
}

/* Hero — Inner Page (About, Event, etc.) */
.pb-hero-page {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(74, 14, 120, 0.85), rgba(53, 10, 90, 0.9)),
        var(--pb-bg);
    background-size: cover;
    background-position: center;
}

.pb-hero-page .pb-hero-content {
    animation: none;
}

.pb-hero-page h1 {
    font-family: var(--pb-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--pb-white);
    margin-bottom: 12px;
}

/* =============================================================================
 * Countdown Timer
 * ============================================================================= */
.pb-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.pb-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pb-radius);
    padding: 16px 20px 12px;
    min-width: 80px;
    backdrop-filter: blur(4px);
}

.pb-countdown-number {
    font-family: var(--pb-font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--pb-white);
    line-height: 1;
}

.pb-countdown-label {
    font-family: var(--pb-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.pb-countdown-sep {
    font-family: var(--pb-font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-top: -16px;
}

/* =============================================================================
 * Scroll Cue
 * ============================================================================= */
.pb-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
}

.pb-scroll-cue span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--pb-white);
    border-bottom: 2px solid var(--pb-white);
    transform: rotate(45deg);
    animation: pb-bounce 2s infinite;
    opacity: 0.7;
}

/* =============================================================================
 * Trust Strip
 * ============================================================================= */
.pb-trust-strip {
    background: var(--pb-purple);
    padding: 20px 0;
}

.pb-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pb-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pb-text-on-purple);
}

.pb-trust-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    flex-shrink: 0;
}

.pb-trust-item svg {
    flex-shrink: 0;
    color: var(--pb-gold);
}

/* =============================================================================
 * Section Layout
 * ============================================================================= */
.pb-section {
    padding: 100px 0;
    background: var(--pb-white);
}

.pb-section-alt {
    padding: 100px 0;
    background: var(--pb-bg-alt);
}

.pb-section-warm {
    padding: 100px 0;
    background: var(--pb-bg-warm);
}

.pb-section-purple {
    padding: 100px 0;
    background: var(--pb-bg-purple);
    color: var(--pb-text-on-purple);
}

.pb-section-title {
    font-family: var(--pb-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--pb-text);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pb-section-subtitle {
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--pb-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.pb-section-purple .pb-section-title {
    color: var(--pb-white);
}

.pb-section-purple .pb-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================================================
 * Cards
 * ============================================================================= */
.pb-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 32px;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-card:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pb-purple), var(--pb-purple-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--pb-white);
}

.pb-card h3 {
    font-family: var(--pb-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pb-text);
    margin-bottom: 8px;
}

.pb-card p {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--pb-text-muted);
    line-height: 1.6;
}

/* =============================================================================
 * Stats Row
 * ============================================================================= */
.pb-stats-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    padding: 48px 0;
}

.pb-stat {
    flex: 1 1 0;
    text-align: center;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 28px 16px;
    box-shadow: var(--pb-shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 0;
}

.pb-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-stat-number {
    font-family: var(--pb-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pb-purple);
    line-height: 1;
    margin-bottom: 8px;
}

.pb-stat-label {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pb-text-muted);
}

/* Stats on purple background */
.pb-section-purple .pb-stat-number {
    color: var(--pb-gold);
}

.pb-section-purple .pb-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================================================
 * Grid Layouts
 * ============================================================================= */
.pb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.pb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =============================================================================
 * Sponsorship Tier Cards
 * ============================================================================= */
.pb-tier-card {
    position: relative;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-tier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-tier-card--featured {
    border: 2px solid var(--pb-gold);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
}

.pb-tier-card--featured:hover {
    border-color: var(--pb-gold-light);
    box-shadow: 0 8px 28px rgba(212, 160, 23, 0.25);
}

.pb-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-family: var(--pb-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
    white-space: nowrap;
}

.pb-tier-name {
    font-family: var(--pb-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 8px;
}

.pb-tier-price {
    font-family: var(--pb-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pb-purple);
    line-height: 1;
    margin: 12px 0;
}

.pb-tier-price small {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--pb-text-muted);
}

.pb-tier-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    text-align: left;
}

.pb-tier-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--pb-border);
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.pb-tier-features li:last-child {
    border-bottom: none;
}

.pb-tier-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--pb-gold);
    font-weight: 700;
}

/* =============================================================================
 * Testimonials
 * ============================================================================= */
.pb-testimonial {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-left: 4px solid var(--pb-gold);
    border-radius: 0 var(--pb-radius) var(--pb-radius) 0;
    padding: 24px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pb-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74, 14, 120, 0.06);
}

.pb-testimonial blockquote {
    font-family: var(--pb-font-heading);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--pb-text);
    line-height: 1.6;
    margin: 0;
}

.pb-testimonial cite {
    display: block;
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--pb-text-muted);
    margin-top: 12px;
}

/* =============================================================================
 * FAQ Accordion
 * ============================================================================= */
.pb-faq {
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pb-faq:hover {
    border-color: var(--pb-purple-light);
}

.pb-faq summary {
    padding: 20px 24px;
    font-family: var(--pb-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pb-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.pb-faq summary::-webkit-details-marker {
    display: none;
}

.pb-faq summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pb-purple);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}

.pb-faq[open] summary::after {
    content: "\2212";
}

.pb-faq[open] summary {
    border-bottom: 1px solid var(--pb-border);
    background: var(--pb-bg-alt);
}

.pb-faq .pb-faq-answer {
    padding: 20px 24px;
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    line-height: 1.6;
}

/* =============================================================================
 * Leadership Cards
 * ============================================================================= */
.pb-leader-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    box-shadow: var(--pb-shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pb-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pb-gold);
    margin: 0 auto 16px;
}

/* Placeholder when no photo is available */
.pb-leader-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--pb-gold);
    margin: 0 auto 16px;
    background: var(--pb-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pb-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pb-white);
}

.pb-leader-name {
    font-family: var(--pb-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pb-text);
    margin-bottom: 4px;
}

.pb-leader-title {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--pb-text-muted);
}

/* =============================================================================
 * Schedule / Timeline
 * ============================================================================= */
.pb-timeline {
    position: relative;
    padding-left: 32px;
}

.pb-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--pb-gold);
}

.pb-timeline-item {
    position: relative;
    margin-bottom: 24px;
    padding-left: 24px;
}

.pb-timeline-item:last-child {
    margin-bottom: 0;
}

.pb-timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pb-purple);
    border: 3px solid var(--pb-gold);
}

.pb-timeline-time {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pb-purple);
    margin-bottom: 4px;
}

.pb-timeline-desc {
    font-family: var(--pb-font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--pb-text);
    line-height: 1.5;
}

/* =============================================================================
 * Venue Card
 * ============================================================================= */
.pb-venue-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    overflow: hidden;
    box-shadow: var(--pb-shadow-card);
    padding: 32px;
    text-align: center;
}

.pb-venue-map {
    width: 100%;
    height: 250px;
    background: var(--pb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pb-text-muted);
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
}

.pb-venue-info {
    padding: 24px;
}

.pb-venue-name {
    font-family: var(--pb-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pb-text);
    margin-bottom: 8px;
}

.pb-venue-address {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* =============================================================================
 * Included Checklist
 * ============================================================================= */
.pb-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 32px;
}

.pb-checklist li {
    padding: 10px 0 10px 28px;
    position: relative;
    break-inside: avoid;
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    line-height: 1.5;
}

.pb-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--pb-gold);
    font-weight: 700;
}

/* =============================================================================
 * Footer
 * ============================================================================= */
.pb-footer {
    background: var(--pb-purple-dark);
    padding: 72px 0 28px;
    color: var(--pb-text-on-purple);
}

.pb-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.pb-footer-col h4 {
    font-family: var(--pb-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pb-gold);
    margin-bottom: 16px;
}

.pb-footer-col p,
.pb-footer-col a {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-decoration: none;
}

.pb-footer-col a:hover {
    color: var(--pb-gold);
}

.pb-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pb-footer-col ul li {
    margin-bottom: 8px;
}

.pb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
}

.pb-footer-bottom p {
    font-family: var(--pb-font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================================================
 * Narrative / About Content
 * ============================================================================= */
.pb-narrative {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.pb-narrative p {
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    color: var(--pb-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pb-lead {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: var(--pb-text) !important;
    font-weight: 400;
    margin-bottom: 28px !important;
}

.pb-callout {
    font-family: var(--pb-font-heading);
    font-size: 1.15rem !important;
    font-weight: 700;
    color: var(--pb-purple) !important;
    margin-top: 32px !important;
    padding: 28px;
    border-left: 3px solid var(--pb-gold);
    background: var(--pb-bg-alt);
    border-radius: 0 var(--pb-radius) var(--pb-radius) 0;
    text-align: left;
}

/* =============================================================================
 * CTA Banner (Mid-page)
 * ============================================================================= */
.pb-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pb-purple) 0%, var(--pb-purple-dark) 100%);
    text-align: center;
}

.pb-cta-banner h2 {
    font-family: var(--pb-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--pb-white);
    margin-bottom: 12px;
}

.pb-cta-banner p {
    font-family: var(--pb-font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================================
 * Mission Card
 * ============================================================================= */
.pb-mission-card {
    max-width: 760px;
    margin: 48px auto 0;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 48px 40px;
}

.pb-mission-card h3 {
    font-family: var(--pb-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pb-text);
    margin-bottom: 4px;
}

.pb-mission-tag {
    font-family: var(--pb-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pb-gold);
    margin-bottom: 20px;
}

.pb-mission-card > p {
    font-family: var(--pb-font-body);
    font-size: 1rem;
    color: var(--pb-text);
    line-height: 1.75;
    margin-bottom: 28px;
}

.pb-mission-bullets {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}

.pb-mission-bullet {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pb-mission-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pb-border);
    border-radius: 50%;
    color: var(--pb-purple);
}

.pb-mission-bullet p {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    line-height: 1.65;
}

/* =============================================================================
 * Impact Grid
 * ============================================================================= */
.pb-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pb-impact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 28px;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    transition: border-color 0.3s, transform 0.3s;
}

.pb-impact-item:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-2px);
}

.pb-impact-icon {
    flex-shrink: 0;
    color: var(--pb-gold);
}

.pb-impact-item p {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    line-height: 1.65;
}

/* =============================================================================
 * Who This Is For
 * ============================================================================= */
.pb-who-grid {
    max-width: 600px;
    margin: 48px auto 0;
    text-align: center;
}

.pb-who-title {
    font-family: var(--pb-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 24px;
}

.pb-who-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.pb-who-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    transition: border-color 0.2s;
}

.pb-who-item:hover {
    border-color: var(--pb-purple-light);
}

.pb-who-item svg {
    flex-shrink: 0;
    color: var(--pb-purple);
}

.pb-who-item span {
    font-family: var(--pb-font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--pb-text);
}

/* =============================================================================
 * Sponsor Grid (detailed sponsorship cards)
 * ============================================================================= */
.pb-sponsor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 0;
}

.pb-sponsor-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s, transform 0.3s;
}

.pb-sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 14, 120, 0.08);
}

.pb-sponsor-card--gold { border-color: var(--pb-gold); }
.pb-sponsor-card--silver { border-color: #aaaaaa; }
.pb-sponsor-card--bronze { border-color: #cd7f32; }
.pb-sponsor-card--supporter { border-color: var(--pb-purple-light); }

.pb-sponsor-tier-badge {
    font-family: var(--pb-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-text-muted);
}

.pb-sponsor-card--gold .pb-sponsor-tier-badge { color: var(--pb-gold); }
.pb-sponsor-card--silver .pb-sponsor-tier-badge { color: #999999; }
.pb-sponsor-card--bronze .pb-sponsor-tier-badge { color: #cd7f32; }
.pb-sponsor-card--supporter .pb-sponsor-tier-badge { color: var(--pb-purple-light); }

.pb-sponsor-amount {
    font-family: var(--pb-font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--pb-purple);
    line-height: 1;
}

.pb-sponsor-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.pb-sponsor-perks li {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.pb-sponsor-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--pb-purple-light);
    border-radius: 50%;
}

/* =============================================================================
 * Sponsor CTA (placeholder for sponsors section)
 * ============================================================================= */
.pb-sponsor-cta {
    text-align: center;
    padding: 56px 32px;
    background: var(--pb-card);
    border: 2px dashed var(--pb-border);
    border-radius: var(--pb-radius);
}

.pb-sponsor-cta p {
    font-family: var(--pb-font-body);
    font-size: 1.1rem;
    color: var(--pb-text);
    margin-bottom: 24px;
}

/* =============================================================================
 * Transformation Grid (Before / After)
 * ============================================================================= */
.pb-transform-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 800px;
    margin: 48px auto 0;
}

.pb-transform-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 32px 28px;
}

.pb-transform-card--after {
    border-color: var(--pb-purple);
    background: linear-gradient(180deg, rgba(74, 14, 120, 0.04) 0%, var(--pb-card) 40%);
}

.pb-transform-label {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pb-text-muted);
    margin-bottom: 20px;
}

.pb-transform-card--after .pb-transform-label {
    color: var(--pb-purple);
}

.pb-transform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pb-transform-list li {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    line-height: 1.55;
    padding-left: 24px;
    position: relative;
}

.pb-transform-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--pb-border);
    border-radius: 50%;
}

.pb-transform-card--after .pb-transform-list li::before {
    border-color: var(--pb-purple);
    background: var(--pb-purple-light);
}

.pb-transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pb-gold);
}

/* =============================================================================
 * Pain Grid
 * ============================================================================= */
.pb-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.pb-pain-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    transition: border-color 0.3s, transform 0.3s;
}

.pb-pain-item:hover {
    border-color: #cc3333;
    transform: translateY(-2px);
}

.pb-pain-icon {
    color: #cc3333;
    margin-bottom: 12px;
}

.pb-pain-item p {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pb-text);
    line-height: 1.5;
}

/* =============================================================================
 * Access List (included items)
 * ============================================================================= */
.pb-access-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    text-align: left;
    display: inline-block;
}

.pb-access-list li {
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    color: var(--pb-text);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.pb-access-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--pb-gold);
    border-radius: 50%;
}

/* =============================================================================
 * VIP Card
 * ============================================================================= */
.pb-vip-card {
    max-width: 640px;
    margin: 48px auto 0;
    background: linear-gradient(180deg, rgba(212, 160, 23, 0.06) 0%, var(--pb-card) 40%);
    border: 2px solid var(--pb-gold);
    border-radius: var(--pb-radius);
    padding: 48px 40px;
    text-align: center;
}

.pb-vip-badge {
    display: inline-block;
    padding: 6px 24px;
    font-family: var(--pb-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
    margin-bottom: 32px;
}

.pb-vip-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 32px;
}

.pb-vip-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pb-font-body);
    font-size: 1rem;
    color: var(--pb-text);
    font-weight: 500;
}

.pb-vip-perk svg {
    flex-shrink: 0;
    color: var(--pb-gold);
}

/* =============================================================================
 * Steps (How It Works)
 * ============================================================================= */
.pb-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pb-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    transition: border-color 0.3s, transform 0.3s;
}

.pb-step:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-2px);
}

.pb-step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pb-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pb-purple);
    border: 2px solid var(--pb-gold);
    border-radius: 50%;
}

.pb-step h3 {
    font-family: var(--pb-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pb-text);
    margin-bottom: 12px;
}

.pb-step p {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    line-height: 1.6;
}

/* =============================================================================
 * Ticket / Pricing Cards
 * ============================================================================= */
.pb-ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pb-ticket-card {
    position: relative;
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 40px 24px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s, transform 0.3s;
}

.pb-ticket-card:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 14, 120, 0.08);
}

.pb-ticket-card--featured {
    border-color: var(--pb-gold);
    background: linear-gradient(180deg, rgba(212, 160, 23, 0.06) 0%, var(--pb-card) 40%);
}

.pb-ticket-card--featured:hover {
    border-color: var(--pb-gold-light);
}

.pb-ticket-best-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-family: var(--pb-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
    white-space: nowrap;
}

.pb-ticket-icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pb-gold);
    border: 1px solid var(--pb-border);
    border-radius: 50%;
}

.pb-ticket-amount {
    font-family: var(--pb-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pb-purple);
    line-height: 1;
}

.pb-ticket-label {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pb-gold);
}

.pb-ticket-desc {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.pb-pricing-note {
    text-align: center;
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    margin-top: 32px;
}

.pb-pricing-note a {
    color: var(--pb-purple);
    text-decoration: underline;
}

/* =============================================================================
 * Testimonial Grid (multiple testimonials in grid)
 * ============================================================================= */
.pb-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0;
}

/* =============================================================================
 * Utility Classes
 * ============================================================================= */
.pb-text-center {
    text-align: center;
}

.pb-text-gold {
    color: var(--pb-gold);
}

.pb-text-purple {
    color: var(--pb-purple);
}

.pb-mt-sm {
    margin-top: 16px;
}

.pb-mt-md {
    margin-top: 32px;
}

.pb-mt-lg {
    margin-top: 48px;
}

.pb-mb-md {
    margin-bottom: 32px;
}

/* =============================================================================
 * Animations
 * ============================================================================= */
@keyframes pb-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

@keyframes pb-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================================================
 * Body offset for fixed nav
 * ============================================================================= */
body {
    padding-top: 72px;
}

/* =============================================================================
 * Social Media Icons (footer)
 * ============================================================================= */
.pb-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.pb-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.pb-social-icons a:hover {
    background: var(--pb-gold);
    color: var(--pb-text-on-gold);
    transform: translateY(-2px);
}

.pb-social-icons svg {
    width: 20px;
    height: 20px;
}

/* =============================================================================
 * Missing class definitions (gap-fill for HTML/CSS sync)
 * ============================================================================= */

/* Badge (short hero) */
.pb-badge {
    display: inline-block;
    padding: 6px 20px;
    font-family: var(--pb-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
    margin-bottom: 16px;
}

/* Button base + variants */
.pb-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--pb-radius);
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s, color 0.3s;
    border: 2px solid transparent;
}

.pb-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.pb-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.pb-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.pb-btn-outline-white:hover {
    background: #fff;
    color: var(--pb-purple);
}

.pb-btn-purple {
    background: var(--pb-purple);
    color: #fff;
}

.pb-btn-purple:hover {
    background: var(--pb-purple-light);
    transform: translateY(-2px);
}

.pb-btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero overlay + title + details + ctas */
.pb-hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}

.pb-hero-title {
    font-family: var(--pb-font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pb-hero-details {
    font-family: var(--pb-font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 12px;
}

.pb-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Hero page (short) */
.pb-hero-page {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(74,14,120,0.88), rgba(53,10,90,0.95));
    padding: 100px 24px;
}

.pb-hero-page h1 {
    font-family: var(--pb-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pb-hero-page .pb-hero-subtitle {
    color: rgba(255,255,255,0.85);
}

.pb-hero-page .pb-badge {
    margin-bottom: 16px;
}

/* Trust list (variant of trust-items) */
.pb-trust-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Screen reader only */
.pb-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;
}

/* Mission block (about preview on home) */
.pb-mission {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pb-mission-body {
    max-width: 720px;
    margin: 0 auto;
}

.pb-mission-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pb-text);
    margin-bottom: 16px;
}

.pb-mission-text {
    max-width: 720px;
    margin: 0 auto 24px;
}

.pb-mission-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pb-text);
    margin-bottom: 16px;
}

.pb-mission-context {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pb-text-muted);
    font-style: italic;
    max-width: 720px;
    margin: 24px auto 0;
}

/* Divider */
.pb-divider {
    border: 0;
    height: 1px;
    background: var(--pb-border);
    max-width: 200px;
    margin: 32px auto;
}

/* Quote block */
.pb-quote {
    border-left: 4px solid var(--pb-gold);
    margin: 24px auto;
    padding: 16px 24px;
    max-width: 560px;
}

.pb-quote p {
    font-family: var(--pb-font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--pb-purple);
    line-height: 1.5;
}

/* Arrow link */
.pb-link-arrow {
    display: inline-block;
    font-family: var(--pb-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pb-purple);
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.2s;
}

.pb-link-arrow:hover {
    color: var(--pb-gold);
}

/* Section link (centered) */
.pb-section-link {
    text-align: center;
    margin-top: 32px;
}

/* Section intro (about page) */
.pb-section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pb-text);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 32px;
}

/* Story content */
.pb-story-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pb-text);
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Sponsor preview cards (home page) */
.pb-sponsor-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-sponsor-card:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-sponsor-featured {
    border: 2px solid var(--pb-gold);
    box-shadow: 0 4px 20px rgba(212,160,23,0.15);
}

.pb-sponsor-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-family: var(--pb-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
}

.pb-sponsor-tier {
    font-family: var(--pb-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 8px;
}

.pb-sponsor-price {
    font-family: var(--pb-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 12px;
    display: block;
}

.pb-sponsor-desc {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Testimonial cards (home page) */
.pb-testimonial-card {
    background: var(--pb-card);
    border-left: 4px solid var(--pb-gold);
    border-radius: 0 var(--pb-radius) var(--pb-radius) 0;
    padding: 28px 32px;
    margin: 0;
    box-shadow: var(--pb-shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pb-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-testimonial-text {
    font-family: var(--pb-font-heading);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pb-text);
    margin-bottom: 12px;
}

.pb-testimonial-author {
    display: block;
    margin-top: 12px;
}

.pb-testimonial-name {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    color: var(--pb-text-muted);
    font-weight: 500;
}

/* CTA section content */
.pb-cta-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.pb-cta-title {
    font-family: var(--pb-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.pb-cta-text {
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pb-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pb-cta-banner {
    text-align: center;
}

/* Leader card gap-fill */
.pb-leader-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pb-purple), var(--pb-purple-light));
}

.pb-leader-initials {
    font-family: var(--pb-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.pb-leader-brief {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    line-height: 1.5;
    margin-top: 8px;
}

/* Sports columns (about page) */
.pb-sports-col {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 32px;
    box-shadow: var(--pb-shadow-card);
}

.pb-sports-heading {
    font-family: var(--pb-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 16px;
}

.pb-sports-list {
    list-style: none;
    padding: 0;
}

.pb-sports-list li {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px solid var(--pb-border);
}

.pb-sports-list li:last-child {
    border-bottom: none;
}

.pb-sports-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--pb-gold);
    border-radius: 50%;
}

/* Impact section */
.pb-impact-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.pb-impact-stat {
    text-align: center;
    margin-top: 24px;
}

.pb-impact-number {
    display: block;
    font-family: var(--pb-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pb-gold);
    line-height: 1;
}

.pb-impact-label {
    display: block;
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Card (event detail cards) */
.pb-card-centered {
    max-width: 600px;
    margin: 0 auto;
}

.pb-card-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.pb-card-detail svg {
    flex-shrink: 0;
    color: var(--pb-purple);
    margin-top: 2px;
}

.pb-card-desc {
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    line-height: 1.5;
    margin-top: 16px;
}

.pb-card-address {
    font-size: 0.95rem;
    color: var(--pb-text);
}

.pb-card-phone {
    font-size: 0.95rem;
    color: var(--pb-text-muted);
}

.pb-card-host {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pb-purple);
}

/* Timeline (event page schedule) */
.pb-timeline-event {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
}

.pb-timeline-marker {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--pb-purple);
    border-radius: var(--pb-radius);
    margin-bottom: 8px;
}

/* Prize cards */
.pb-prize-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-prize-card:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-prize-featured {
    border: 2px solid var(--pb-gold);
    box-shadow: 0 4px 20px rgba(212,160,23,0.15);
}

.pb-prize-place {
    font-family: var(--pb-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 8px;
}

.pb-price-amount {
    font-family: var(--pb-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pb-purple);
    display: block;
}

.pb-price-unit {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    color: var(--pb-text-muted);
}

/* Registration cards */
.pb-grid-narrow {
    max-width: 700px;
    margin: 32px auto 0;
}

.pb-reg-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-reg-card:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-reg-featured {
    border: 2px solid var(--pb-gold);
    box-shadow: 0 4px 20px rgba(212,160,23,0.15);
}

.pb-reg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-family: var(--pb-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pb-text-on-gold);
    background: var(--pb-gold);
    border-radius: var(--pb-radius);
}

.pb-reg-tier {
    font-family: var(--pb-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 8px;
}

.pb-reg-price {
    font-family: var(--pb-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 16px;
}

.pb-reg-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pb-reg-features li {
    font-family: var(--pb-font-body);
    font-size: 0.95rem;
    color: var(--pb-text);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid var(--pb-border);
}

.pb-reg-features li:last-child {
    border-bottom: none;
}

.pb-reg-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pb-gold);
    font-weight: 700;
}

.pb-registration-contact {
    text-align: center;
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    margin-top: 24px;
}

.pb-registration-contact a {
    color: var(--pb-purple);
}

/* Sponsorship tier cards (event page) */
.pb-sponsor-tier-group {
    margin-bottom: 32px;
}

.pb-sponsor-tier-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--pb-shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pb-sponsor-tier-card:hover {
    border-color: var(--pb-purple-light);
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-hover);
}

.pb-sponsor-tier-featured {
    border: 2px solid var(--pb-gold);
    box-shadow: 0 4px 20px rgba(212,160,23,0.15);
}

.pb-sponsor-tier-entry {
    border-style: dashed;
}

.pb-sponsor-tier-name {
    font-family: var(--pb-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 8px;
}

.pb-sponsor-tier-price {
    font-family: var(--pb-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pb-purple);
    display: block;
    margin-bottom: 16px;
}

.pb-sponsor-tier-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pb-sponsor-tier-features li {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: var(--pb-text);
    padding: 6px 0 6px 22px;
    position: relative;
}

.pb-sponsor-tier-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pb-gold);
    font-weight: 700;
}

/* Checklist items (event page variant) */
.pb-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pb-font-body);
    font-size: 1rem;
    color: var(--pb-text);
    padding: 10px 0;
    break-inside: avoid;
}

.pb-checklist-item svg {
    flex-shrink: 0;
    color: var(--pb-gold);
}

/* Suppress CSS ::before checkmark when SVG icon is present */
.pb-checklist .pb-checklist-item::before {
    display: none;
}

/* FAQ list wrapper */
.pb-faq-list {
    max-width: 720px;
    margin: 0 auto;
}

/* Venue card (event page) */
.pb-venue-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pb-purple), var(--pb-purple-light));
    border-radius: 50%;
    color: #fff;
    margin: 0 auto 16px;
}

.pb-venue-note {
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    font-style: italic;
}

.pb-venue-contact {
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    margin-top: 12px;
}

.pb-venue-contact a {
    color: var(--pb-purple);
}

/* Meet & Greet host photo block */
.pb-meetgreet-host {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.pb-meetgreet-host .pb-leader-photo {
    width: 100px;
    height: 100px;
}

/* Registration deadline banner */
.pb-deadline-banner {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-family: var(--pb-font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--pb-radius);
    margin-bottom: 12px;
    animation: pb-pulse 2s ease-in-out infinite;
}

.pb-deadline-wrap {
    text-align: center;
    margin-bottom: 32px;
}

@keyframes pb-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(231, 76, 60, 0); }
}

/* =============================================================================
 * Payment Modal
 * ============================================================================= */
.pb-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.pb-modal-overlay.pb-modal-active {
    display: flex;
}

.pb-modal {
    background: var(--pb-white);
    border-radius: var(--pb-radius-lg);
    max-width: 560px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    animation: pb-modal-in 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes pb-modal-in {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.pb-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--pb-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.pb-modal-close:hover {
    color: var(--pb-text);
}

.pb-modal-title {
    font-family: var(--pb-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pb-purple);
    margin-bottom: 8px;
    text-align: center;
}

.pb-modal-tier {
    font-family: var(--pb-font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pb-gold);
    text-align: center;
    margin-bottom: 16px;
}

.pb-modal-desc {
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

.pb-payment-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.pb-payment-card {
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    padding: 20px;
    text-align: center;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pb-payment-card:hover {
    border-color: var(--pb-purple);
    box-shadow: 0 4px 16px rgba(88, 44, 131, 0.08);
}

.pb-payment-card h3 {
    font-family: var(--pb-font-heading);
    font-size: 1.15rem;
    color: var(--pb-purple);
    margin-bottom: 6px;
}

.pb-payment-detail {
    font-size: 0.85rem;
    color: var(--pb-text-muted);
    margin-bottom: 6px;
}

.pb-payment-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pb-text);
    line-height: 1.5;
}

.pb-qr-code {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pb-modal-contact {
    text-align: center;
    font-size: 0.85rem;
    color: var(--pb-text-muted);
}

/* Note block */
.pb-note {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    text-align: center;
    font-style: italic;
    margin-top: 16px;
}

/* =============================================================================
 * Gallery — Jony Ive: reduction, space, material honesty
 * ============================================================================= */

/* Grid */
.pb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Item */
.pb-gallery-item {
    position: relative;
    border-radius: var(--pb-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--pb-shadow-card);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pb-gallery-item:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: var(--pb-shadow-hover);
}

.pb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pb-gallery-item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.pb-gallery-item--featured img {
    aspect-ratio: 1 / 1;
}

.pb-gallery-item:hover img {
    transform: scale(1.04);
}

/* Caption overlay */
.pb-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pb-gallery-item:hover .pb-gallery-caption {
    opacity: 1;
}

.pb-gallery-caption span {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pb-white);
    line-height: 1.4;
}

/* Admin delete button */
.pb-gallery-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--pb-white);
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pb-gallery-item:hover .pb-gallery-delete {
    opacity: 1;
}

.pb-gallery-delete:hover {
    background: rgba(200, 30, 30, 0.8);
}

/* Admin add card — upload zone */
.pb-gallery-add {
    border-radius: var(--pb-radius);
    border: 2px dashed var(--pb-border);
    background: var(--pb-bg-alt);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    min-height: 160px;
    aspect-ratio: 4 / 3;
}

.pb-gallery-add:hover,
.pb-gallery-add.pb-dragover {
    border-color: var(--pb-purple-light);
    background: rgba(88, 44, 131, 0.04);
}

.pb-gallery-add-icon {
    width: 36px;
    height: 36px;
    color: var(--pb-purple-light);
    opacity: 0.5;
    margin-bottom: 8px;
}

.pb-gallery-add-text {
    font-family: var(--pb-font-body);
    font-size: 0.8rem;
    color: var(--pb-text-muted);
}

/* Admin inline form */
.pb-gallery-form {
    grid-column: 1 / -1;
    background: var(--pb-bg-alt);
    border-radius: var(--pb-radius);
    padding: 24px;
    display: none;
}

.pb-gallery-form.pb-active {
    display: block;
}

.pb-gallery-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.pb-gallery-form-row:last-child {
    margin-bottom: 0;
}

.pb-gallery-input {
    flex: 1;
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    padding: 10px 14px;
    border: 1px solid var(--pb-border);
    border-radius: 8px;
    background: var(--pb-white);
    color: var(--pb-text);
    outline: none;
    transition: border-color 0.2s;
}

.pb-gallery-input:focus {
    border-color: var(--pb-purple-light);
}

.pb-gallery-input::placeholder {
    color: var(--pb-text-muted);
}

.pb-gallery-btn {
    font-family: var(--pb-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.pb-gallery-btn:active {
    transform: scale(0.97);
}

.pb-gallery-btn--add {
    background: var(--pb-purple);
    color: var(--pb-white);
}

.pb-gallery-btn--add:hover {
    background: var(--pb-purple-light);
}

.pb-gallery-btn--cancel {
    background: transparent;
    color: var(--pb-text-muted);
}

.pb-gallery-btn--cancel:hover {
    color: var(--pb-text);
}

/* File upload hidden input */
.pb-gallery-file {
    display: none;
}

/* Empty state */
.pb-gallery-empty {
    text-align: center;
    padding: 80px 32px;
    background: var(--pb-bg-alt);
    border-radius: var(--pb-radius-lg);
    border: 1px dashed var(--pb-border);
}

.pb-gallery-empty-icon {
    width: 48px;
    height: 48px;
    color: var(--pb-purple-light);
    margin: 0 auto 20px;
    display: block;
    opacity: 0.5;
}

.pb-gallery-empty-title {
    font-family: var(--pb-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pb-text);
    margin-bottom: 8px;
}

.pb-gallery-empty-hint {
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: var(--pb-text-muted);
}

/* Lightbox */
.pb-gallery-lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 24px;
    color: var(--pb-white);
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pb-gallery-lb-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pb-gallery-lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    animation: pb-modal-in 0.3s ease;
}

.pb-gallery-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: var(--pb-white);
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.pb-gallery-lb-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.pb-gallery-lb-prev {
    left: 20px;
}

.pb-gallery-lb-next {
    right: 20px;
}

.pb-gallery-lb-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--pb-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--pb-radius);
    max-width: 80%;
    text-align: center;
    z-index: 2001;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =============================================================================
 * RESPONSIVE — Tablet (max-width: 900px)
 * ============================================================================= */
@media (max-width: 900px) {
    /* Navigation: hamburger mode */
    .pb-nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--pb-white);
        border-bottom: 1px solid var(--pb-border);
        padding: 16px 24px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(74, 14, 120, 0.1);
    }

    .pb-nav-links li {
        width: 100%;
    }

    .pb-nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--pb-border);
    }

    .pb-nav-links a.pb-active {
        border-bottom-color: var(--pb-gold);
    }

    .pb-nav-links.pb-nav-open {
        display: flex;
    }

    .pb-nav-toggle {
        display: flex;
    }

    /* Hamburger animation for open state */
    .pb-nav-toggle.pb-nav-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .pb-nav-toggle.pb-nav-active span:nth-child(2) {
        opacity: 0;
    }

    .pb-nav-toggle.pb-nav-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Grids */
    .pb-grid-2,
    .pb-grid-3 {
        grid-template-columns: 1fr;
    }

    .pb-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Steps */
    .pb-steps-row {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Tickets */
    .pb-ticket-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Sponsor grid */
    .pb-sponsor-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Impact grid */
    .pb-impact-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Transform grid */
    .pb-transform-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .pb-transform-arrow {
        transform: rotate(90deg);
    }

    /* Testimonial grid */
    .pb-testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Stats row */
    .pb-stats-row {
        gap: 32px;
    }

    /* Checklist */
    .pb-checklist {
        columns: 1;
    }

    /* Footer */
    .pb-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Section padding */
    .pb-section,
    .pb-section-alt,
    .pb-section-warm,
    .pb-section-purple {
        padding: 72px 0;
    }

    /* Mission card */
    .pb-mission-card {
        padding: 36px 24px;
    }

    /* VIP card */
    .pb-vip-card {
        padding: 36px 24px;
    }

    /* Pain grid */
    .pb-pain-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Gallery */
    .pb-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================================================
 * RESPONSIVE — Mobile (max-width: 600px)
 * ============================================================================= */
@media (max-width: 600px) {
    /* Section padding */
    .pb-section,
    .pb-section-alt,
    .pb-section-warm,
    .pb-section-purple {
        padding: 48px 0;
    }

    /* Container */
    .pb-container {
        padding: 0 16px;
    }

    /* Hero — disable parallax on mobile (iOS doesn't support background-attachment: fixed) */
    .pb-hero {
        background-attachment: scroll;
    }

    .pb-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .pb-hero-subtitle {
        font-size: 1rem;
    }

    .pb-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pb-hero-buttons .pb-btn-primary,
    .pb-hero-buttons .pb-btn-gold,
    .pb-hero-buttons .pb-btn-outline {
        width: 100%;
        max-width: 320px;
    }

    /* Trust strip */
    .pb-trust-items {
        flex-direction: column;
        gap: 12px;
    }

    /* Section titles */
    .pb-section-title {
        font-size: 1.6rem;
    }

    /* Buttons */
    .pb-btn-primary,
    .pb-btn-gold,
    .pb-btn-outline {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* Stats row */
    .pb-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pb-stat {
        flex: 1 1 40%;
    }

    /* Grid-4 */
    .pb-grid-4 {
        grid-template-columns: 1fr;
    }

    /* Countdown */
    .pb-countdown {
        gap: 16px;
    }

    .pb-countdown-number {
        font-size: 2rem;
    }

    .pb-countdown-sep {
        font-size: 1.5rem;
    }

    /* Ticket pricing */
    .pb-ticket-amount {
        font-size: 2.5rem;
    }

    /* Sponsor amounts */
    .pb-sponsor-amount {
        font-size: 2.2rem;
    }

    .pb-sponsor-card {
        padding: 32px 20px;
    }

    /* Impact items */
    .pb-impact-item {
        padding: 20px;
    }

    /* Mission card */
    .pb-mission-card {
        padding: 28px 16px;
    }

    /* VIP card */
    .pb-vip-card {
        padding: 28px 16px;
    }

    /* Who items */
    .pb-who-item {
        padding: 12px 16px;
    }

    /* Pain grid */
    .pb-pain-grid {
        grid-template-columns: 1fr;
    }

    /* Callout */
    .pb-callout {
        font-size: 1rem !important;
        padding: 20px;
    }

    /* Footer */
    .pb-footer-grid {
        text-align: center;
    }

    /* CTA banner */
    .pb-cta-banner {
        padding: 48px 0;
    }

    /* Venue card */
    .pb-venue-info {
        padding: 20px;
    }

    /* Testimonial grid */
    .pb-testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Leader photo */
    .pb-leader-photo,
    .pb-leader-photo-placeholder {
        width: 100px;
        height: 100px;
    }

    /* Gallery */
    .pb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pb-gallery-item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .pb-gallery-item--featured img {
        aspect-ratio: 16 / 9;
    }

    .pb-gallery-caption {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

    .pb-gallery-delete {
        opacity: 1;
    }

    .pb-gallery-lb-nav {
        width: 40px;
        height: 40px;
    }

    .pb-gallery-lb-prev { left: 12px; }
    .pb-gallery-lb-next { right: 12px; }

    .pb-gallery-form-row {
        flex-direction: column;
    }

    .pb-gallery-empty {
        padding: 48px 20px;
    }
}

@media (max-width: 480px) {
    .pb-gallery-grid {
        grid-template-columns: 1fr;
    }

    .pb-gallery-item--featured {
        grid-column: span 1;
    }
}
