/*
 * Independence Day Celebration — Page Styles
 * All rules are scoped under .ind-main to prevent any global side effects.
 * Breakpoints: 1920, 1600, 1440, 1400, 1280, 1024, 768, 375px
 *
 * @package Wilmette_events
 */

/* =========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================= */
.ind-main {
    --ind-navy:       #0d1b3e;
    --ind-navy-deep:  #0a1229;
    --ind-red:        #C8102E;
    --ind-red-light:  #e8213e;
    --ind-blue:       #2563EB;
    --ind-blue-light: #3b82f6;
    --ind-white:      #ffffff;
    --ind-light:      #f0f6ff;
    --ind-pink:       #fde8ec;
    --ind-pink-soft:  #fdf0f2;
    --ind-sunburst:   #d7eef8;
    --ind-gold:       #f59e0b;
    --ind-text-dark:  #1a1a2e;
    --ind-text-mid:   #374151;
    --ind-text-light: #6b7280;

    /* Spacing */
    --ind-outer-pad:  clamp(1.5rem, 7.5vw, 9rem);
    --ind-inner-pad:  clamp(1.25rem, 4vw, 5rem);

    /* Typography */
    --ind-font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;
    --ind-font-cursive: 'Dancing Script', 'Pacifico', cursive;

    /* Transitions */
    --ind-ease:       0.28s cubic-bezier(0.4, 0, 0.2, 1);

    font-family: var(--ind-font-sans);
}

/* =========================================================================
   Global Container / Resets (scoped)
   ========================================================================= */
.ind-main *,
.ind-main *::before,
.ind-main *::after {
    box-sizing: border-box;
}

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

.ind-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding-left: var(--ind-outer-pad);
    padding-right: var(--ind-outer-pad);
}

.ind-section {
    position: relative;
    overflow: hidden;
}

/* Shared script / cursive accent (matches sos-script-accent) */
.ind-main .sos-script-accent,
.ind-main .ind-cursive {
    font-family: var(--ind-font-cursive);
    font-style: italic;
    color: var(--ind-red);
    font-size: clamp(1.6rem, 2.4vw, 2.8rem);
    display: block;
    margin-top: 0.1em;
}

/* =========================================================================
   HERO BANNER SECTION
   ========================================================================= */
.ind-hero-section {
    position: relative;
    min-height: 100svh;
    background-color: var(--ind-navy);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 18, 41, 0.82) 0%,
        rgba(10, 18, 41, 0.55) 60%,
        rgba(10, 18, 41, 0.30) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.ind-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(7rem, 12vw, 14rem) var(--ind-outer-pad) clamp(4rem, 6vw, 8rem);
    display: flex;
    align-items: flex-start;
}

.ind-hero-content {
    max-width: 600px;
    color: var(--ind-white);
}

/* Logo */
.ind-hero-logo {
    margin-bottom: 1.5rem;
}

.ind-hero-logo-img {
    width: clamp(120px, 14vw, 200px);
    height: auto;
    object-fit: contain;
}

/* H1 */
.ind-hero-h1 {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 1rem;
    color: var(--ind-white);
}

.ind-hero-heading-plain {
    display: block;
}

.ind-hero-heading-cursive {
    display: block;
    font-family: var(--ind-font-cursive);
    font-style: italic;
    color: var(--ind-red-light);
    font-weight: 700;
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    line-height: 1.05;
    margin-top: 0.05em;
}

/* Description */
.ind-hero-description {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 1.25rem;
}

.ind-hero-description p {
    margin: 0 0 0.75rem;
}

.ind-hero-description ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}

.ind-hero-description li {
    margin-bottom: 0.3rem;
}

/* ── Event Bar ─────────────────────────────────────────────────────────── */
.ind-hero-event-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
}

.ind-bar-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.5rem) var(--ind-outer-pad);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 0;
}

.ind-bar-col:last-child {
    border-right: none;
}

.ind-bar-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
}

.ind-bar-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ind-bar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.ind-bar-value {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    font-weight: 700;
    color: var(--ind-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Wave Divider */
.ind-hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.ind-hero-wave-divider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================================================================
   JUMP NAVIGATION — scoped to ind-jump-nav
   ========================================================================= */
#ind-jump-nav {
    background: var(--ind-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 900;
    width: 100%;
}

#ind-jump-nav.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.ind-jump-nav-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 var(--ind-outer-pad);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ind-jump-nav-inner::-webkit-scrollbar {
    display: none;
}

.ind-jump-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    white-space: nowrap;
}

.ind-jump-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ind-text-mid);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color var(--ind-ease), border-color var(--ind-ease);
    white-space: nowrap;
    position: relative;
}

.ind-jump-nav-link:hover,
.ind-jump-nav-link:focus-visible {
    color: var(--ind-red);
    border-bottom-color: var(--ind-red);
    outline: none;
}

.ind-jump-nav-link:focus-visible {
    outline: 2px solid var(--ind-blue);
    outline-offset: -2px;
}

.ind-jump-nav-link.is-active {
    color: var(--ind-red);
    border-bottom-color: var(--ind-red);
}

/* =========================================================================
   EVENT OVERVIEW SECTION
   ========================================================================= */
.ind-event-overview-section {
    background: transparent;
}

.ind-event-block {
    background: var(--ind-light);
    position: relative;
}

.ind-event-block:nth-child(even) {
    background: var(--ind-pink-soft);
}

.ind-event-inner {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(3rem, 5vw, 6rem) var(--ind-outer-pad);
    align-items: start;
    position: relative;
}

/* ── Sticky Left Panel ─────────────────────────────────────────────────── */
.ind-sticky-left {
    position: sticky;
    top: calc(var(--wm-header-height, 80px) + 56px + 1rem); /* header + jump nav + buffer */
    padding-right: 2rem;
    align-self: start;
}

.ind-event-time-badge {
    display: inline-flex;
    flex-direction: column;
    background: var(--ind-navy);
    color: var(--ind-white);
    border-radius: 8px;
    padding: 0.6rem 1.1rem 0.5rem;
    margin-bottom: 1.25rem;
    min-width: 90px;
}

.ind-time-value {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.ind-time-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.ind-event-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--ind-text-dark);
    line-height: 1.2;
    margin: 0 0 0.4rem;
}

.ind-event-cursive {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: var(--ind-red);
}

.ind-event-desc {
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    color: var(--ind-text-mid);
    line-height: 1.7;
    margin-top: 1rem;
}

.ind-event-desc p { margin: 0 0 0.75rem; }

/* ── Right Scrolling Panel ─────────────────────────────────────────────── */
.ind-event-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ind-event-photo img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 320px;
}

/* Stats row */
.ind-event-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ind-stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ind-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 0.55rem 1rem;
    min-width: 0;
}

.ind-stat-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.ind-stat-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ind-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ind-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ind-stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ind-text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Alert */
.ind-event-alert {
    background: #fff8e1;
    border-left: 4px solid var(--ind-gold);
    border-radius: 0 8px 8px 0;
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
}

/* Buttons */
.ind-event-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ── Shared Buttons ─────────────────────────────────────────────────────── */
.ind-main .ind-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    text-decoration: none;
    transition: background var(--ind-ease), color var(--ind-ease), transform var(--ind-ease), box-shadow var(--ind-ease);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.ind-btn:focus-visible {
    outline: 3px solid var(--ind-blue);
    outline-offset: 2px;
}

.ind-btn--primary {
    background: var(--ind-red);
    color: var(--ind-white);
    border-color: var(--ind-red);
}

.ind-btn--primary:hover {
    background: var(--ind-red-light);
    border-color: var(--ind-red-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3);
}

.ind-btn--secondary {
    background: var(--ind-blue);
    color: var(--ind-white);
    border-color: var(--ind-blue);
}

.ind-btn--secondary:hover {
    background: var(--ind-blue-light);
    border-color: var(--ind-blue-light);
    transform: translateY(-1px);
}

.ind-btn--outline {
    background: transparent;
    color: var(--ind-red);
    border-color: var(--ind-red);
}

.ind-btn--outline:hover {
    background: var(--ind-red);
    color: var(--ind-white);
}

/* Map image */
.ind-event-map img {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Appreciation */
.ind-event-appreciation {
    padding: 1.25rem;
    background: var(--ind-white);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
}

.ind-appr-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ind-text-dark);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ind-appr-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.ind-appr-logo-item {
    max-width: 120px;
}

.ind-appr-logo-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* =========================================================================
   SPONSORS SECTION
   ========================================================================= */
.ind-sponsors-section {
    background: var(--ind-pink-soft);
    padding: clamp(3rem, 5vw, 6rem) 0;
}

.ind-sponsors-card-box {
    background: var(--ind-white);
    border: 2px solid var(--ind-red);
    border-radius: 20px;
    padding: clamp(2rem, 3vw, 3.5rem);
    overflow: hidden;
}

.ind-sponsors-header {
    margin-bottom: 2rem;
    text-align: center;
}

.ind-sponsors-h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.8rem);
    font-weight: 800;
    color: var(--ind-text-dark);
    margin: 0 0 0.3rem;
}

.ind-sponsors-cursive {
    margin: 0;
}

.ind-sponsors-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(2rem, 3vw, 4rem);
    align-items: start;
}

.ind-sponsors-photo-col img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    max-height: 420px;
}

.ind-sponsors-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ind-text-mid);
    margin: 0 0 1.75rem;
}

/* Benefits */
.ind-sponsors-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ind-benefit-item {
    text-align: center;
}

.ind-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ind-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.ind-benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ind-benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ind-text-dark);
    margin: 0 0 0.4rem;
}

.ind-benefit-desc {
    font-size: 0.83rem;
    color: var(--ind-text-light);
    line-height: 1.55;
    margin: 0;
}

/* CTA */
.ind-sponsors-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Sponsor logos */
.ind-logos-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ind-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ind-sponsors-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.ind-sponsor-logo-card {
    max-width: 120px;
}

.ind-sponsor-logo-card img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

/* Separator */
.ind-separator {
    width: 100%;
    line-height: 0;
    margin-top: 2rem;
}

.ind-separator img {
    width: 100%;
    height: auto;
}

/* =========================================================================
   MEMORIES / SLIDER SECTION
   ========================================================================= */
.ind-memories-section {
    background: var(--ind-pink);
    padding: clamp(3rem, 5vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.ind-memories-header {
    margin-bottom: 2.5rem;
}

.ind-memories-h2 {
    font-size: clamp(1.4rem, 2.2vw, 2.4rem);
    font-weight: 800;
    color: var(--ind-text-dark);
    margin: 0;
    line-height: 1.15;
}

.ind-memories-title-plain {
    display: block;
}

.ind-memories-cursive {
    display: block;
    font-size: clamp(1.3rem, 2vw, 2.2rem);
    margin-top: 0.1em;
    font-style: italic;
}

.ind-memories-subtitle {
    font-size: 0.95rem;
    color: var(--ind-text-mid);
    margin: 0.75rem 0 0;
}

.ind-memories-slider-fullwidth .moments-card-item,
.ind-memories-slider-fullwidth .ind-memory-card-item {
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
}

.ind-memories-slider-fullwidth .moments-card-item img,
.ind-memories-slider-fullwidth .ind-memory-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Confetti decorators */
.ind-confetti-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(circle, #C8102E 1.5px, transparent 1.5px),
        radial-gradient(circle, #2563EB 1.5px, transparent 1.5px),
        radial-gradient(circle, #f59e0b 1.5px, transparent 1.5px);
    background-size: 80px 80px, 120px 120px, 100px 100px;
    background-position: 15px 20px, 50px 60px, 80px 10px;
    opacity: 0.15;
    z-index: 0;
}

.ind-confetti-decor--bottom {
    top: auto;
    bottom: 0;
    height: 40%;
}

/* =========================================================================
   FAQ SECTION
   ========================================================================= */
.ind-faq-section {
    background: var(--ind-sunburst);
    padding: clamp(4rem, 6vw, 8rem) 0 clamp(3rem, 4vw, 5rem);
    position: relative;
    overflow: hidden;
}

/* Sunburst rays */
.ind-faq-sunburst {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: conic-gradient(
        from 0deg at 50% 0%,
        #d7eef8 0deg, #c6e4f4 5deg, #d7eef8 10deg,
        #c6e4f4 15deg, #d7eef8 20deg, #c6e4f4 25deg,
        #d7eef8 30deg, #c6e4f4 35deg, #d7eef8 40deg,
        #c6e4f4 45deg, #d7eef8 50deg, #c6e4f4 55deg,
        #d7eef8 60deg, #c6e4f4 65deg, #d7eef8 70deg,
        #c6e4f4 75deg, #d7eef8 80deg, #c6e4f4 85deg,
        #d7eef8 90deg, #c6e4f4 95deg, #d7eef8 100deg,
        #c6e4f4 105deg, #d7eef8 110deg, #c6e4f4 115deg,
        #d7eef8 120deg, #c6e4f4 125deg, #d7eef8 130deg,
        #c6e4f4 135deg, #d7eef8 140deg, #c6e4f4 145deg,
        #d7eef8 150deg, #c6e4f4 155deg, #d7eef8 160deg,
        #c6e4f4 165deg, #d7eef8 170deg, #c6e4f4 175deg,
        #d7eef8 180deg, #c6e4f4 185deg, #d7eef8 190deg,
        #c6e4f4 195deg, #d7eef8 200deg, #c6e4f4 205deg,
        #d7eef8 210deg, #c6e4f4 215deg, #d7eef8 220deg,
        #c6e4f4 225deg, #d7eef8 230deg, #c6e4f4 235deg,
        #d7eef8 240deg, #c6e4f4 245deg, #d7eef8 250deg,
        #c6e4f4 255deg, #d7eef8 260deg, #c6e4f4 265deg,
        #d7eef8 270deg, #c6e4f4 275deg, #d7eef8 280deg,
        #c6e4f4 285deg, #d7eef8 290deg, #c6e4f4 295deg,
        #d7eef8 300deg, #c6e4f4 305deg, #d7eef8 310deg,
        #c6e4f4 315deg, #d7eef8 320deg, #c6e4f4 325deg,
        #d7eef8 330deg, #c6e4f4 335deg, #d7eef8 340deg,
        #c6e4f4 345deg, #d7eef8 350deg, #c6e4f4 355deg,
        #d7eef8 360deg
    );
    opacity: 0.7;
}

.ind-faq-container {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.ind-faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ind-faq-h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--ind-text-dark);
    margin: 0 0 0.2rem;
}

.ind-faq-cursive {
    margin: 0.1em 0 0.5rem;
}

.ind-faq-subtitle {
    font-size: 0.95rem;
    color: var(--ind-text-mid);
    margin: 0.5rem 0 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion (reuses SoS structure) */
.ind-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ind-accordion-item {
    background: var(--ind-pink);
    border: 1px solid rgba(200, 16, 46, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow var(--ind-ease);
}

.ind-accordion-item.is-active {
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.12);
}

.ind-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ind-text-dark);
    cursor: pointer;
    text-align: left;
    transition: background var(--ind-ease);
    font-family: var(--ind-font-sans);
}

.ind-accordion-header:hover {
    background: rgba(200, 16, 46, 0.04);
}

.ind-accordion-header:focus-visible {
    outline: 2px solid var(--ind-blue);
    outline-offset: -2px;
}

.ind-accordion-header .accordion-icon {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ind-text-mid);
    flex-shrink: 0;
    transition: transform var(--ind-ease);
    width: 24px;
    text-align: center;
}

/* Animate open/close */
.ind-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.ind-accordion-item.is-active .ind-accordion-content {
    grid-template-rows: 1fr;
}

.ind-accordion-inner {
    overflow: hidden;
    padding: 0 1.4rem;
}

.ind-accordion-item.is-active .ind-accordion-inner {
    padding-bottom: 1.25rem;
}

.ind-accordion-inner p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ind-text-mid);
    margin: 0;
}

/* FAQ separator */
.ind-faq-separator {
    margin-top: 3rem;
}

/* =========================================================================
   FINAL SECTION
   ========================================================================= */
.ind-final-section {
    background: var(--ind-navy);
    color: var(--ind-white);
    padding: clamp(4rem, 6vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.ind-final-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.ind-final-wave-top img {
    width: 100%;
    height: auto;
}

.ind-final-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ind-final-logo-wrap {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.ind-final-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.ind-final-header {
    margin-bottom: 3rem;
}

.ind-final-h2 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 800;
    color: var(--ind-white);
    margin: 0 0 0.3rem;
}

.ind-final-cursive {
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    color: var(--ind-red-light);
    margin: 0;
}

.ind-final-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 1rem auto 0;
    max-width: 560px;
    line-height: 1.7;
}

/* CTA Cards */
.ind-final-ctas-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.ind-final-cta-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background var(--ind-ease), transform var(--ind-ease);
}

.ind-final-cta-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.ind-cta-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

.ind-cta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}

.ind-cta-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ind-white);
    line-height: 1.3;
}

.ind-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--ind-red);
    color: var(--ind-white);
    border-radius: 100px;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.5rem;
    width: fit-content;
    transition: background var(--ind-ease), transform var(--ind-ease);
}

.ind-cta-btn:hover {
    background: var(--ind-red-light);
    transform: translateY(-1px);
}

.ind-cta-btn:focus-visible {
    outline: 2px solid var(--ind-white);
    outline-offset: 2px;
}

/* =========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================= */

/* 1600px */
@media (max-width: 1600px) {
    .ind-event-inner {
        grid-template-columns: minmax(0, 380px) 1fr;
    }
}

/* 1440px */
@media (max-width: 1440px) {
    .ind-hero-content {
        max-width: 540px;
    }

    .ind-event-inner {
        grid-template-columns: minmax(0, 340px) 1fr;
        gap: 3rem;
    }
}

/* 1400px */
@media (max-width: 1400px) {
    .ind-sponsors-main-grid {
        gap: 2.5rem;
    }
}

/* 1280px */
@media (max-width: 1280px) {
    .ind-hero-h1 {
        font-size: clamp(2.2rem, 4vw, 3.8rem);
    }

    .ind-event-inner {
        grid-template-columns: minmax(0, 300px) 1fr;
        gap: 2.5rem;
    }

    .ind-sponsors-main-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    :root {
        --ind-outer-pad: clamp(1.5rem, 5vw, 4rem);
    }

    .ind-hero-section {
        min-height: 90svh;
    }

    .ind-bar-col {
        padding: 1rem 1.5rem;
    }

    .ind-hero-event-bar {
        flex-wrap: wrap;
    }

    .ind-bar-col {
        flex: 1 1 33.33%;
        min-width: 160px;
    }

    /* Stacked two-col event layout */
    .ind-event-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ind-sticky-left {
        position: static;
        padding-right: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .ind-sponsors-main-grid {
        grid-template-columns: 1fr;
    }

    .ind-sponsors-photo-col img {
        max-height: 280px;
    }

    .ind-final-ctas-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (max-width: 768px) {
    .ind-hero-content {
        max-width: 100%;
    }

    .ind-hero-container {
        padding-top: clamp(5rem, 10vw, 9rem);
    }

    .ind-hero-event-bar {
        flex-direction: column;
    }

    .ind-bar-col {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ind-bar-col:last-child {
        border-bottom: none;
    }

    .ind-jump-nav-link {
        padding: 0.85rem 1rem;
        font-size: 0.82rem;
    }

    .ind-event-stats-row {
        gap: 0.4rem;
    }

    .ind-stat-pill {
        padding: 0.45rem 0.75rem;
    }

    .ind-sponsors-benefits {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .ind-memories-slider-fullwidth .moments-card-item,
    .ind-memories-slider-fullwidth .ind-memory-card-item {
        height: 200px;
    }

    .ind-final-ctas-row {
        grid-template-columns: 1fr;
    }
}

/* 375px */
@media (max-width: 480px) {
    .ind-hero-h1 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .ind-hero-heading-cursive {
        font-size: clamp(2.1rem, 9vw, 2.8rem);
    }

    .ind-sponsors-card-box {
        padding: 1.25rem;
    }

    .ind-sponsors-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .ind-faq-h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .ind-accordion-header {
        padding: 1rem 1.1rem;
        font-size: 0.9rem;
    }

    .ind-final-cta-card {
        padding: 1.25rem;
    }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .ind-main *,
    .ind-main *::before,
    .ind-main *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Keep sticky behaviour but remove transitions */
    .ind-sticky-left {
        position: static;
    }

    /* Pause Swiper autoplay via JS hook class */
    .ind-memories-swiper-slider {
        --swiper-autoplay-disable: 1;
    }
}

/* =========================================================================
   PRINT
   ========================================================================= */
@media print {
    .ind-hero-section {
        background-color: var(--ind-navy) !important;
        min-height: auto;
    }

    .ind-hero-overlay,
    .ind-hero-wave-divider,
    .ind-faq-sunburst,
    .ind-confetti-decor,
    #ind-jump-nav {
        display: none !important;
    }

    .ind-sticky-left {
        position: static !important;
    }
}

/* =========================================================================
   VISIBLE FOCUS STYLES (WCAG 2.2 AA)
   ========================================================================= */
.ind-main a:focus-visible,
.ind-main button:focus-visible,
.ind-main [tabindex]:focus-visible {
    outline: 3px solid var(--ind-blue);
    outline-offset: 2px;
    border-radius: 4px;
}
