/* ==========================================================================
   MontessoriMUN — About / The Grand Act / Sponsors + shared site navbar
   Rebuilt from zero. Brand: Green #006f3b | Gold #b8965b | Grey #5a5a5a
   No diagonals anywhere — horizontal rules only, per brand direction.
   ========================================================================== */

:root{
    --mms-green: #006f3b;
    --mms-green-dark: #00432b;
    --mms-gold: #b8965b;
    --mms-grey: #5a5a5a;
    --mms-black: #000000;
    --mms-white: #ffffff;
    --mms-cream: rgb(229,235,194);
    --mms-cream-soft: rgba(229,235,194,0.35);
    --mms-paper: #f8f7f2;
    --ease-pop: cubic-bezier(.34,1.56,.64,1);
}

::selection{ background: rgb(229,235,194); color: var(--mms-green-dark); }
::-moz-selection{ background: rgb(229,235,194); color: var(--mms-green-dark); }

h1,h2,h3,h4,h5{ font-family:'Montserrat'; font-weight: 800; }
p, a, span, li{ font-family:'Montserrat'; }

/* ==========================================================================
   SITE NAVBAR — fully custom, works at every breakpoint
   ========================================================================== */
.site-nav{
    background: var(--mms-green);
    position: sticky;
    top: 0;
    z-index: 200;
}
.nav-inner{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    position: relative;
}

/* brand lockup */
.brand-lockup{
    display:flex;
    align-items:center;
    gap: 14px;
    text-decoration:none;
}
.brand-logo{
    height: 54px;
    width: 54px;
    object-fit: contain;
    flex-shrink: 0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-title{
    font-weight: 800;
    color: var(--mms-white);
    font-size: 19px;
    letter-spacing: .3px;
    white-space: nowrap;
}
.brand-year{
    font-weight: 700;
    color: var(--mms-gold);
    font-size: 12px;
    letter-spacing: 3px;
    border-top: 2px solid var(--mms-gold);
    padding-top: 3px;
    margin-top: 3px;
    width: fit-content;
}

/* nav links */
.nav-menu{
    display:flex;
    align-items:center;
    gap: 6px;
    margin-right: 34px;
}
.nav-link{
    display:flex;
    align-items:center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration:none;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .4px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background .25s ease, color .25s ease;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active{
    background: rgba(255,255,255,0.12);
    color: var(--mms-gold);
}
.nav-icon{ width:18px; height:18px; flex-shrink:0; display:flex; }
.nav-icon svg{ width:100%; height:100%; fill:none; stroke: currentColor; stroke-width:1.8; }

/* hamburger */
.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor:pointer;
    padding: 0;
    position: relative;
    z-index: 210;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.nav-toggle span{
    display:block;
    height: 2px;
    width: 26px;
    background: var(--mms-white);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* horizontal brand divider — green + gold, no diagonals */
.nav-divider{
    height: 6px;
    width: 100%;
    background: var(--mms-green-dark);
    border-top: 3px solid var(--mms-gold);
}

@media (max-width: 900px){
    .nav-inner{ padding: 12px 22px; }
    .brand-title{ font-size: 16px; }
    .brand-logo{ height:44px; width:44px; }
    .nav-toggle{ display:flex; }
    .nav-menu{
        margin-right: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--mms-green-dark);
        z-index: 205;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    }
    .nav-menu.is-open{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
    }
    .nav-link{
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

/* ==========================================================================
   GENERIC LAYOUT HELPERS
   ========================================================================== */
.container-narrow{ max-width: 1080px; margin: 0 auto; padding: 0 45px; }
section{ position: relative; }

.eyebrow{
    font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; font-size: 12px; color: var(--mms-gold);
    text-align: center; display:block; margin-bottom: 10px;
}
.section-title{
    font-weight: 800; color: var(--mms-green); font-size: 32px;
    text-align: center; margin: 0 0 8px 0;
}
.section-sub{
    font-style: italic; color: var(--mms-grey); text-align: center;
    max-width: 620px; margin: 0 auto 40px auto; font-size: 15px;
}
.underline-swipe{
    width: 70px; height: 4px; margin: 0 auto 45px auto; border-radius: 3px;
    background: var(--mms-gold);
}

/* horizontal section divider — green band + gold hairline, no diagonals */
.h-divider{
    height: 10px;
    width: 100%;
    background: var(--mms-green);
    border-bottom: 3px solid var(--mms-gold);
}

/* ---------- hero ---------- */
.hero-spotlight{
    background:
        radial-gradient(circle at 50% -10%, rgba(184,150,91,0.30) 0%, rgba(184,150,91,0) 45%),
        var(--mms-green);
    padding: 80px 45px 64px 45px;
    text-align: center;
    position: relative;
}
.hero-eyebrow{
    font-weight:700; letter-spacing:4px; text-transform: uppercase;
    color: var(--mms-cream); font-size: 12px; margin-bottom: 14px;
}
.hero-spotlight h1{
    color: var(--mms-white); font-size: 46px; margin: 0 0 12px 0;
}
.hero-spotlight p{
    font-style: italic; color: var(--mms-cream); font-size: 17px;
    max-width: 560px; margin: 0 auto;
}

/* ---------- scroll-down prompt (About hero -> Meet the Team) ---------- */
.scroll-prompt{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 12px 26px;
    border-radius: 30px;
    background: var(--mms-gold);
    color: var(--mms-white);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: .4px;
    text-decoration: none;
    transition: transform .3s var(--ease-pop), background .3s ease;
}
.scroll-prompt:hover{ transform: translateY(3px); background: var(--mms-green-dark); }
.scroll-prompt svg{
    width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.4;
    animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* offsets the sticky navbar so the anchor jump doesn't hide the heading underneath it */
#meet-the-team{ scroll-margin-top: 100px; }

/* ==========================================================================
   ZIGZAG CARD LAYOUT — About page (compact, with hover reveal effects)
   ========================================================================== */
.zigzag-wrap{ max-width: 980px; margin: 0 auto; padding: 0 45px; display:flex; flex-direction:column; gap: 22px; }
.zigzag-row{
    display:flex;
    align-items:center;
    gap: 30px;
    background: var(--mms-white);
    border: 1px solid #eee7d6;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: box-shadow .35s ease, transform .35s var(--ease-pop);
}
.zigzag-row:hover{ box-shadow: 0 14px 28px rgba(0,111,59,0.12); transform: translateY(-3px); }
.zigzag-row.reverse{ flex-direction: row-reverse; }

.zigzag-tag{
    display:inline-block;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mms-gold);
    border-bottom: 2px solid var(--mms-gold);
    padding-bottom: 3px;
    margin-bottom: 10px;
}

.zigzag-visual{
    flex: 0 0 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--mms-paper);
    border: 2px solid var(--mms-gold);
    display:flex; align-items:center; justify-content:center;
    position: relative;
    overflow: visible;
    transition: transform .4s var(--ease-pop), border-color .4s ease;
}
.zigzag-row:hover .zigzag-visual{ transform: scale(1.06); border-color: var(--mms-green); }
.zigzag-visual svg{ width:46px; height:46px; stroke: var(--mms-green); fill:none; stroke-width:1.5; transition: stroke .35s ease, transform .35s ease; position: relative; z-index:2; }
.zigzag-row:hover .zigzag-visual svg{ stroke: var(--mms-gold); }

/* base icon fades when a reveal-logo image is present, so the logo can "pop" over it */
.zigzag-visual .reveal-logo{
    position:absolute; inset: 14px;
    width: auto; height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(.25) rotate(-16deg);
    transition: all .55s var(--ease-pop);
    z-index: 3;
}
.zigzag-row:hover .zigzag-visual .reveal-logo{ opacity: 1; transform: scale(1) rotate(0deg); }
.zigzag-row:hover .zigzag-visual svg.fade-on-reveal{ opacity: 0; transform: scale(.7); }

/* floating pop emojis on hover — pure CSS, no JS */
.pop-emoji{
    position:absolute;
    bottom: 50%;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 4;
}
.zigzag-row:hover .pop-emoji{ animation: popFloat 1.3s ease forwards; }
.pop-emoji.e1{ left: 4%;  animation-delay: 0s; }
.pop-emoji.e2{ left: 44%; animation-delay: .15s; }
.pop-emoji.e3{ left: 80%; animation-delay: .3s; }
@keyframes popFloat{
    0%   { opacity: 0; transform: translateY(0) scale(.4) rotate(0deg); }
    25%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-64px) scale(1.25) rotate(18deg); }
}

.zigzag-content{ flex: 1; }
.zigzag-content h3{
    color: var(--mms-green); font-size: 19px; margin: 0 0 8px 0;
}
.zigzag-content p{
    color: var(--mms-grey); font-size: 13.5px; line-height: 1.8; margin: 0;
}
.zigzag-content strong{ color: var(--mms-green); }

@media (max-width: 760px){
    .zigzag-row, .zigzag-row.reverse{ flex-direction: column; text-align:center; }
    .zigzag-visual{ margin: 0 auto; }
}

/* ---------- quote banner (replaces the old mid-page divider) ---------- */
.quote-banner{
    background: var(--mms-green);
    border-top: 4px solid var(--mms-gold);
    border-bottom: 4px solid var(--mms-gold);
    padding: 50px 40px;
    text-align: center;
}
.quote-banner p{
    color: var(--mms-white);
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- stat chips ---------- */
.stat-chips{
    display:flex; flex-wrap:wrap; justify-content:center; gap: 20px;
    margin: 44px auto 0 auto; max-width: 900px;
}
.stat-chip{
    display:flex; align-items:center; gap: 14px;
    background: var(--mms-green); border-radius: 12px;
    padding: 12px 26px 12px 14px;
    border-bottom: 3px solid var(--mms-gold);
    transition: transform .3s var(--ease-pop);
}
.stat-chip:hover{ transform: translateY(-4px); background: var(--mms-gold); }
.stat-chip-icon{
    width: 38px; height:38px; border-radius:50%;
    background: rgba(255,255,255,0.15);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.stat-chip-icon svg{ width:19px; height:19px; stroke: var(--mms-white); fill:none; stroke-width:1.8; }
.stat-chip span{ font-weight:700; color: var(--mms-white); font-size: 13px; line-height: 1.35; }

/* ==========================================================================
   MEET THE TEAM — big flip cards
   ========================================================================== */
.team-block{ margin-top: 60px; }
.team-block-label{
    display:flex; align-items:center; justify-content:center; gap: 16px; margin: 0 0 40px 0;
}
.team-block-label span{
    font-weight: 700; color: var(--mms-grey); font-size: 16px;
    text-transform: uppercase; letter-spacing: 2px;
}
.team-block-label::before, .team-block-label::after{
    content:''; height:3px; width: 70px; background: var(--mms-gold);
}

.team-flip-grid{
    display:flex; flex-wrap: wrap; justify-content:center; gap: 44px; margin-bottom: 20px;
}
.flip-card{ width: 380px; height: 560px; perspective: 1600px; }
.flip-card-inner{
    position: relative; width:100%; height:100%; text-align:center;
    transition: transform .8s var(--ease-pop); transform-style: preserve-3d; cursor:pointer;
}
.flip-card:hover .flip-card-inner, .flip-card.is-flipped .flip-card-inner{ transform: rotateY(180deg); }
.flip-card-front, .flip-card-back{
    position:absolute; inset:0; -webkit-backface-visibility:hidden; backface-visibility:hidden;
    border-radius: 20px; display:flex; flex-direction:column; padding: 36px 32px;
}
.flip-card-front{
    align-items: center; justify-content: flex-start; padding-top: 50px;
    background: var(--mms-white); border: 2px solid #eee7d6; border-bottom: 6px solid var(--mms-gold);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.photo-placeholder-round{
    width: 190px; height: 190px; border-radius: 50%;
    background: var(--mms-paper); border: 3px solid var(--mms-gold);
    display:flex; align-items:center; justify-content:center;
    color: var(--mms-grey); font-size: 14px; text-align:center; padding: 8px; margin-bottom: 24px;
    overflow: hidden;
}

.photo-placeholder-round img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}
.photo-fallback{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}
.flip-card-front h4{ color: var(--mms-green); font-size: 22px; margin:0 0 6px 0; }
.flip-card-front p{
    color: var(--mms-gold); font-size: 13.5px; font-weight:700; text-transform:uppercase;
    letter-spacing: .6px; margin:0;
}
.flip-hint{ margin-top: 18px; font-size: 11.5px; color: #b9b9b9; font-style: italic; }
.creator-badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--mms-paper);
    border: 1px solid var(--mms-gold);
    color: var(--mms-green);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.creator-badge svg{ width: 12px; height: 12px; stroke: var(--mms-gold); fill: none; stroke-width: 2; }

/* ---- back: top-aligned, scrollable, comfortable to actually read ---- */
.flip-card-back{
    align-items: stretch; justify-content: flex-start; text-align: left;
    padding: 30px 26px 24px 30px;
    background: var(--mms-green); color: var(--mms-white);
    transform: rotateY(180deg); border-bottom: 6px solid var(--mms-gold);
    box-shadow: 0 14px 30px rgba(0,111,59,0.28);
}
.flip-back-header{
    display:flex; align-items:center; gap: 10px; margin-bottom: 12px; flex-shrink: 0;
}
.flip-back-header .quote-mark{
    font-family: Georgia, serif; font-size: 32px; color: var(--mms-gold); line-height: 1;
}
.flip-back-role{
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--mms-cream); font-weight: 700;
}
.flip-back-scroll{
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--mms-gold) rgba(255,255,255,0.1);
}
.flip-back-scroll::-webkit-scrollbar{ width: 5px; }
.flip-back-scroll::-webkit-scrollbar-track{ background: rgba(255,255,255,0.08); border-radius: 10px; }
.flip-back-scroll::-webkit-scrollbar-thumb{ background: var(--mms-gold); border-radius: 10px; }
.flip-back-scroll p{
    font-style: italic; font-size: 13px; line-height: 1.8; color: var(--mms-cream);
    margin: 0 0 12px 0; white-space: pre-line;
}
.flip-back-scroll p:last-child{ margin-bottom: 0; }

/* ==========================================================================
   THE GRAND ACT
   ========================================================================== */
.act-story{ padding: 70px 45px 30px 45px; max-width: 820px; margin: 0 auto; }
.act-story p{ color: var(--mms-grey); font-size: 15.5px; line-height: 2; margin-bottom: 24px; text-align: left; }
.act-story p:first-of-type::first-letter{
    font-family: Georgia, serif; font-size: 58px; color: var(--mms-gold);
    float: left; line-height: 0.8; padding-right: 10px; padding-top: 6px;
}

.pillars{
    display:flex; flex-wrap:wrap; justify-content:center; gap: 26px;
    padding: 10px 45px 70px 45px; max-width: 1080px; margin: 0 auto;
}
.pillar{
    flex: 1 1 260px; max-width: 300px; text-align:center; background: var(--mms-white);
    border-radius: 16px; padding: 40px 26px 34px 26px; border: 1px solid #eee7d6;
    border-bottom: 4px solid var(--mms-gold); overflow: hidden; position: relative;
    transition: transform .4s var(--ease-pop), box-shadow .4s ease;
}
.pillar:hover{ transform: translateY(-8px); box-shadow: 0 18px 34px rgba(0,111,59,0.16); }
.pillar-icon{
    width: 56px; height: 56px; margin: 0 auto 4px auto; opacity: 0;
    transform: scale(.3) translateY(14px); transition: all .55s var(--ease-pop);
}
.pillar:hover .pillar-icon{ opacity: 1; transform: scale(1) translateY(0); margin-bottom: 16px; }
.pillar-icon svg{ width:100%; height:100%; stroke: var(--mms-green); fill:none; stroke-width:1.5; }
.pillar h4{ color: var(--mms-green); font-size:18px; margin: 0 0 10px 0; transition: margin .4s ease; }
.pillar p{
    color: var(--mms-grey); font-size: 13.5px; line-height:1.8; margin:0;
    max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .5s ease .1s;
}
.pillar:hover p{ max-height: 140px; opacity: 1; }

.pull-quote{
    background: var(--mms-cream-soft); border-left: 5px solid var(--mms-gold);
    max-width: 780px; margin: 10px auto 70px auto; padding: 34px 40px; border-radius: 4px;
}
.pull-quote p{
    font-style: italic; font-weight: 700; color: var(--mms-green-dark);
    font-size: 20px; line-height: 1.6; margin: 0; text-align: center;
}

/* ==========================================================================
   SPONSORS PAGE
   ========================================================================== */
.narrative-block{
    max-width: 820px; margin: 0 auto; color: var(--mms-grey);
    font-size: 15px; line-height: 1.95; text-align: left;
}
.narrative-block p{ margin-bottom: 20px; }
.narrative-block p:last-child{ margin-bottom: 0; }
.narrative-block strong{ color: var(--mms-green); }

.benefit-grid{
    display:flex; flex-wrap:wrap; justify-content:center; gap: 26px;
    max-width: 1080px; margin: 0 auto 20px auto; padding: 0 45px;
}
.benefit-card{
    flex: 1 1 230px; max-width: 250px; text-align:center; padding: 34px 22px;
    border-radius: 16px; background: var(--mms-white); border: 1px solid #eee7d6;
    border-bottom: 4px solid var(--mms-green);
    transition: transform .4s var(--ease-pop), box-shadow .4s ease;
}
.benefit-card:hover{ transform: translateY(-8px); box-shadow: 0 16px 30px rgba(0,111,59,0.14); }
.benefit-icon-circle{
    width: 56px; height:56px; border-radius: 50%; margin: 0 auto 16px auto;
    background: var(--mms-green); display:flex; align-items:center; justify-content:center;
    transition: background .4s ease;
}
.benefit-card:hover .benefit-icon-circle{ background: var(--mms-gold); }
.benefit-icon-circle svg{ width:26px; height:26px; stroke: var(--mms-white); fill:none; stroke-width:1.8; }
.benefit-card h4{ color: var(--mms-green); font-size: 15.5px; margin: 0 0 10px 0; }
.benefit-card p{ color: var(--mms-grey); font-size: 12.5px; line-height: 1.75; margin: 0; }

.package-type-heading{ text-align:center; margin: 70px 0 36px 0; }
.package-type-heading h3{ color: var(--mms-green); font-size: 23px; margin: 0 0 6px 0; }
.package-type-heading p{ font-style: italic; color: var(--mms-grey); font-size: 13.5px; margin:0; }

.tier-card-grid{
    display:flex; flex-wrap:wrap; justify-content:center; align-items: stretch;
    gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 45px;
}
.tier-card{
    flex: 1 1 210px; max-width: 250px; background: var(--mms-white); border-radius: 16px;
    border: 2px solid #eee7d6; border-bottom: 5px solid var(--mms-gold);
    padding: 30px 22px; text-align:center; display:flex; flex-direction:column;
    transition: transform .4s var(--ease-pop), box-shadow .4s ease;
}
.tier-card:hover{ transform: translateY(-8px); box-shadow: 0 18px 34px rgba(0,111,59,0.15); }
.tier-card.tier-platinum{ border-bottom-color: var(--mms-green); }
.tier-card.tier-silver{ border-bottom-color: var(--mms-grey); }
.tier-card.tier-bronze{ border-bottom-color: var(--mms-gold); }
.tier-card.tier-aims{ border-bottom-color: #4f8f6d; }
.tier-card.tier-promo{ border-bottom-color: #cbb083; }

.tier-icon{ width: 44px; height:44px; margin: 0 auto 14px auto; transition: transform .4s var(--ease-pop); }
.tier-card:hover .tier-icon{ transform: scale(1.12); }
.tier-icon svg{ width:100%; height:100%; fill:none; stroke-width:1.6; }
.tier-platinum .tier-icon svg{ stroke: var(--mms-green); }
.tier-silver .tier-icon svg{ stroke: var(--mms-grey); }
.tier-bronze .tier-icon svg{ stroke: var(--mms-gold); }
.tier-aims .tier-icon svg{ stroke: #4f8f6d; }
.tier-promo .tier-icon svg{ stroke: #cbb083; }

.tier-card h4{ font-weight:800; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 4px 0; }
.tier-platinum h4{ color: var(--mms-green); }
.tier-silver h4{ color: var(--mms-grey); }
.tier-bronze h4{ color: var(--mms-gold); }
.tier-aims h4{ color: #4f8f6d; }
.tier-promo h4{ color: #cbb083; }

.tier-price{ font-weight:700; color: var(--mms-black); font-size: 13px; margin-bottom: 18px; }
.tier-features{ list-style:none; padding:0; margin: 0 0 4px 0; text-align:left; flex-grow:1; }
.tier-features li{
    font-size: 12px; color: var(--mms-grey); line-height: 1.7;
    padding-left: 20px; position: relative; margin-bottom: 6px;
}
.tier-features li::before{ content:'\2713'; position:absolute; left:0; top:0; color: var(--mms-green); font-weight:bold; }
.tier-note{
    text-align:center; font-style: italic; color: var(--mms-grey);
    font-size: 12px; max-width: 640px; margin: 22px auto 0 auto;
}

/* sponsor logo wall */
.sponsor-slots{ display:flex; flex-wrap:wrap; justify-content:center; gap: 24px; }
.sponsor-slot{
    width: 230px; height: 120px; border-radius: 10px; background: var(--mms-paper);
    border: 2px dashed var(--mms-gold);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 8px;
    color: var(--mms-grey); font-size: 12.5px; text-align:center;
    transition: transform .3s var(--ease-pop), background .3s ease;
}
.sponsor-slot:hover{ transform: translateY(-4px); background: var(--mms-white); }
.sponsor-slot .slot-icon{ width: 28px; height:28px; opacity: .6; }
.sponsor-slot .slot-icon svg{ width:100%; height:100%; stroke: var(--mms-green); fill:none; stroke-width:1.5; }
.sponsor-slot.is-featured{
    width: 280px;
    height: 150px;
    border-width: 3px;
}
.sponsor-slot.is-featured .slot-icon{ width: 36px; height:36px; }

/* contact / info card */
.contact-pass{
    max-width: 480px; margin: 0 auto 80px auto; background: var(--mms-green);
    border-radius: 16px; border-bottom: 5px solid var(--mms-gold);
    padding: 32px 34px; color: var(--mms-white); box-shadow: 0 18px 40px rgba(0,111,59,0.2);
}
.contact-pass-row{ display:flex; align-items:flex-start; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-pass-row:last-child{ border-bottom:none; }
.contact-pass-icon{
    width: 30px; height:30px; flex-shrink:0; border: 1.5px solid var(--mms-gold);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.contact-pass-icon svg{ width:15px; height:15px; stroke: var(--mms-gold); fill:none; stroke-width:1.8; }
.contact-pass-row div p{ margin:0; }
.contact-pass-row .c-name{ font-weight:700; font-size: 14.5px; }
.contact-pass-row .c-role{ font-style: italic; color: var(--mms-cream); font-size: 12px; }
.contact-pass-row .c-detail{ font-size: 13px; color: var(--mms-white); }

/* buttons */
.btn-grand{
    display:inline-flex; align-items:center; gap: 10px; font-weight:700; font-size: 14px;
    color: var(--mms-green-dark); background: var(--mms-white); padding: 14px 32px;
    border-radius: 8px; border-bottom: 3px solid var(--mms-gold);
    text-decoration:none; transition: transform .3s var(--ease-pop), background .3s ease, color .3s ease;
}
.btn-grand svg{ width:16px; height:16px; stroke: currentColor; fill:none; stroke-width:2; }
.btn-grand:hover{ transform: translateY(-3px); background: var(--mms-gold); color: var(--mms-white); }

.btn-outline{
    display:inline-block; font-weight:700; font-size: 14px; color: var(--mms-green);
    border: 2px solid var(--mms-green); padding: 12px 30px; border-radius: 8px;
    text-decoration:none; transition: all .3s ease;
}
.btn-outline:hover{ background: var(--mms-green); color: var(--mms-white); }
.cta-center{ text-align:center; margin-top: 10px; }

.download-row{ display:flex; flex-wrap:wrap; justify-content:center; gap: 18px; margin-top: 26px; }
.schedule-download-row{ display:flex; justify-content:center; margin-top: 26px; }

/* ---------- home page: countdown frame + sponsor preview strip ---------- */
.countdown-frame{
    display:inline-flex;
    gap: 18px;
    margin-top: 26px;
    padding: 22px 30px;
    border: 2px solid var(--mms-gold);
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
}
.home-hero .eyebrow-pill{
    display:inline-flex;
    align-items:center;
    background: var(--mms-gold);
    color: var(--mms-white);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 10px 22px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.home-hero h1{ color: var(--mms-white); font-size: 42px; margin: 0 0 4px 0; }
.home-hero h3{ color: var(--mms-cream); font-weight: 700; letter-spacing: 3px; font-size: 16px; margin: 0 0 6px 0; }
.hero-spotlight.home-hero{ padding-bottom: 34px; }

.countdown-finished{
    margin-top: 26px;
    padding: 22px 34px;
    border: 2px solid var(--mms-gold);
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    color: var(--mms-cream);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .3px;
    max-width: 520px;
}

.sponsor-preview{ padding: 30px 45px 70px 45px; text-align:center; }
.sponsor-preview .sponsor-slots{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.sponsor-preview .sponsor-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 100%;
}
.sponsor-preview-cta{ margin-top: 26px; }

/* ==========================================================================
   SCHEDULE PAGE — stacked day cards
   ========================================================================== */
.schedule-wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 45px 90px 45px;
    display:flex;
    flex-direction: column;
    gap: 44px;
}
.day-card{
    background: var(--mms-white);
    border: 1px solid #eee7d6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
    transition: box-shadow .35s ease, transform .35s var(--ease-pop);
}
.day-card:hover{ box-shadow: 0 16px 34px rgba(0,111,59,0.12); transform: translateY(-3px); }

.day-card-header{
    display:flex;
    align-items:center;
    gap: 14px;
    background: var(--mms-gold);
    padding: 18px 28px;
}
.day-card-header .day-icon{ width:26px; height:26px; flex-shrink:0; }
.day-card-header .day-icon svg{ width:100%; height:100%; stroke: var(--mms-white); fill:none; stroke-width:1.8; }
.day-card-header h3{
    color: var(--mms-white);
    font-size: 19px;
    letter-spacing: .5px;
    margin: 0;
}
.day-card-header span{
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    font-style: italic;
    margin-left: auto;
}

/* ---------- committee groups ---------- */
.groups-grid{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    max-width: 780px;
    margin: 0 auto 70px auto;
    padding: 0 45px;
}
.group-card{
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--mms-white);
    border: 1px solid #eee7d6;
    border-radius: 16px;
    padding: 28px 30px;
}
.group-card.group-a{ border-top: 5px solid var(--mms-green); }
.group-card.group-b{ border-top: 5px solid var(--mms-gold); }
.group-card h3{
    font-size: 17px;
    margin: 0 0 16px 0;
}
.group-card.group-a h3{ color: var(--mms-green); }
.group-card.group-b h3{ color: var(--mms-gold); }
.group-list{ list-style:none; margin:0; padding:0; }
.group-list li{
    display:flex;
    align-items:center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #f2ede0;
    font-size: 14px;
    color: var(--mms-grey);
}
.group-list li:last-child{ border-bottom: none; }
.group-list .num{
    width: 22px; height:22px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size: 11px; font-weight:700; color: var(--mms-white); flex-shrink:0;
}
.group-a .num{ background: var(--mms-green); }
.group-b .num{ background: var(--mms-gold); }

/* ---------- group tab buttons ---------- */
.schedule-tabs{
    display:flex;
    justify-content:center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 auto 50px auto;
    padding: 0 45px;
}
.schedule-tab-btn{
    font-family:'Montserrat';
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .4px;
    padding: 16px 38px;
    border-radius: 40px;
    border: 2px solid var(--mms-green);
    background: var(--mms-white);
    color: var(--mms-green);
    cursor: pointer;
    transition: all .3s ease;
}
.schedule-tab-btn:hover{ background: var(--mms-paper); }
.schedule-tab-btn.is-active{
    background: var(--mms-green);
    color: var(--mms-white);
    box-shadow: 0 10px 24px rgba(0,111,59,0.25);
}

.schedule-group-panel{ display:none; }
.schedule-group-panel.is-active{ display:block; }

/* ---------- big, clearly separated, zebra-striped rows ---------- */
.day-card-body{ padding: 0; }
.schedule-event{
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 30px;
    font-size: 15.5px;
}
.schedule-event:nth-child(odd){ background: var(--mms-white); }
.schedule-event:nth-child(even){ background: var(--mms-paper); }
.schedule-event .event-name{
    font-weight: 800;
    color: var(--mms-green);
    font-size: 16px;
}
.schedule-event .event-time{
    color: var(--mms-grey);
    font-size: 14.5px;
    font-weight: 700;
    background: rgba(184,150,91,0.15);
    padding: 6px 16px;
    border-radius: 20px;
}

@media (max-width: 560px){
    .schedule-tab-btn{ flex: 1 1 auto; padding: 14px 20px; font-size: 13.5px; }
    .schedule-event{ padding: 16px 20px; }
    .schedule-event .event-name{ font-size: 14.5px; }
    .schedule-event .event-time{ font-size: 13px; }
}


/* ==========================================================================
   COMMITTEES PAGE
   ========================================================================== */
.committee-grid{
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 45px 40px 45px;
}
.committee-card{
    width: 220px;
    background: var(--mms-white);
    border: 1px solid #eee7d6;
    border-bottom: 4px solid var(--mms-gold);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    text-align:center;
    transition: transform .35s var(--ease-pop), box-shadow .35s ease, border-bottom-color .35s ease;
}
.committee-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,111,59,0.14);
    border-bottom-color: var(--mms-green);
}
.committee-card img{
    width: 100%;
    height: 170px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--mms-paper);
    padding: 20px;
    box-sizing: border-box;
}
.committee-card h3{
    color: var(--mms-green);
    font-size: 20px;
    letter-spacing: .5px;
    margin: 0;
    padding: 14px 10px;
}

.committee-detail{
    max-width: 820px;
    margin: 0 auto;
    padding: 0 45px 90px 45px;
}
.committee-back{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--mms-green);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 26px;
}
.committee-back svg{ width:16px; height:16px; stroke: currentColor; fill:none; stroke-width:2.2; }
.committee-back:hover{ color: var(--mms-gold); }
.committee-detail-card{
    background: var(--mms-white);
    border: 1px solid #eee7d6;
    border-top: 6px solid var(--mms-green);
    border-radius: 14px;
    padding: 44px 46px;
}
.committee-detail-card h1{
    color: var(--mms-green);
    font-size: 27px;
    margin: 0 0 18px 0;
}
.committee-detail-card p{
    color: var(--mms-grey);
    font-size: 14.5px;
    line-height: 1.9;
    margin: 0 0 34px 0;
}

/* ---------- topic briefs, inline in the committee detail view ---------- */
.committee-topics h3{
    color: var(--mms-green);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 18px 0;
    padding-top: 24px;
    border-top: 1px solid #eee7d6;
}
.topic-row{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 18px;
    background: var(--mms-paper);
    border: 1px solid #eee7d6;
    border-left: 4px solid var(--mms-gold);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 14px;
}
.topic-row:last-child{ margin-bottom: 0; }
.topic-info h4{
    color: var(--mms-green);
    font-size: 16px;
    margin: 0 0 3px 0;
}
.topic-info p{
    color: var(--mms-grey);
    font-size: 14.5px;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}
.topic-download{
    display:inline-flex;
    align-items:center;
    gap: 7px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--mms-green);
    text-decoration:none;
    border: 2px solid var(--mms-green);
    padding: 9px 20px;
    border-radius: 30px;
    flex-shrink: 0;
    transition: all .3s ease;
}
.topic-download svg{ width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; }
.topic-download:hover{ background: var(--mms-green); color: var(--mms-white); }

@media (max-width: 600px){
    .committee-detail-card{ padding: 30px 24px; }
    .topic-row{ flex-wrap: wrap; }
    .topic-download{ margin-left: auto; }
}

/* ---------- Special Committee: confidential circus reveal ---------- */
@font-face{
    font-family: 'CircusFreakshow';
    src: url('/static/font/circus-freakshow/Carnevalee-Freakshow.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
#special-committee-view{
    text-align: center;
    padding: 30px 10px 20px 10px;
}
.committee-detail-card #special-committee-view h1.special-title-circus{
    font-family: 'CircusFreakshow', 'Montserrat', cursive !important;
    color: var(--mms-green);
    font-size: 52px;
    letter-spacing: 1.5px;
    margin: 0 0 50px 0;
}
.committee-detail-card #special-committee-view p.special-confidential{
    font-family: 'CircusFreakshow', 'Montserrat', cursive !important;
    color: #d80000;
    font-size: 130px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: normal;
    margin: 0;
}
@media (max-width: 600px){
    .committee-detail-card #special-committee-view h1.special-title-circus{ font-size: 34px; margin-bottom: 32px; }
    .committee-detail-card #special-committee-view p.special-confidential{ font-size: 62px; }
}


/* ---------- responsive ---------- */
@media (max-width: 768px){
    .container-narrow{ padding: 0 24px; }
    .hero-spotlight{ padding: 60px 24px 46px 24px; }
    .hero-spotlight h1{ font-size: 30px; }
    .hero-spotlight p{ font-size: 15px; padding: 0 6px; }
    .section-title{ font-size: 24px; }

    /* home page hero */
    .home-hero h1{ font-size: 28px; }
    .home-hero h3{ font-size: 13px; letter-spacing: 2px; }
    .countdown-frame{
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 16px 18px;
        width: 100%;
        box-sizing: border-box;
    }
    .time-block{ width: 68px !important; height: 68px !important; padding: 6px !important; }
    .time-block span{ font-size: 26px !important; }

    .stat-chips{ gap: 12px; }
    .stat-chip{ padding: 10px 18px 10px 12px; }

    /* about page zigzag */
    .zigzag-wrap{ padding: 0 22px; gap: 18px; }
    .zigzag-row{ padding: 26px 20px; gap: 20px; }
    .zigzag-content h3{ font-size: 18px; }
    .zigzag-content p{ font-size: 13.5px; }

    .team-flip-grid{ gap: 26px; }
    .flip-card{ width: 100%; max-width: 340px; height: 500px; }

    .quote-banner{ padding: 34px 22px; }
    .quote-banner p{ font-size: 17px; }

    .act-story{ padding: 45px 22px 10px 22px; }
    .act-story p{ font-size: 14.5px; }
    .proscenium{ padding: 0 22px; }
    .proscenium-inner{ padding: 30px 22px; }

    .pillars, .cast-grid, .benefit-grid, .tier-card-grid{ padding-left: 22px; padding-right: 22px; gap: 16px; }

    .sponsor-slots{ gap: 14px; }
    .sponsor-slot{ width: 100%; max-width: 260px; }

    .contact-pass{ margin-left: 22px; margin-right: 22px; padding: 26px 22px; }
    .download-row{ flex-direction: column; align-items: center; }

    .day-card-photo{ min-height: 220px; }

    .committee-grid{ padding: 0 22px 30px 22px; gap: 16px; }
    .committee-card{ width: 45%; min-width: 140px; }
    .committee-detail{ padding: 0 22px 60px 22px; }
    .committee-detail-card{ padding: 26px 20px; }
}

@media (max-width: 420px){
    .hero-spotlight h1{ font-size: 25px; }
    .brand-title{ font-size: 14px; }
    .brand-logo{ height: 38px; width: 38px; }
    .time-block{ width: 58px !important; height: 58px !important; }
    .time-block span{ font-size: 22px !important; }
    .committee-card{ width: 100%; }
}
