/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #EAE7DC;
    --charcoal: #2C2C2C;
    --coral: #E07A5F;
    --teal: #2F4858;
    --teal-bright: #3d6a7f;
    --gold: #D4A574;
    --purple: #6B5B95;
    --light-gray: #F5F3EE;
    --orange-light: #F4A261;
    --blue-bright: #4A90A4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--charcoal);
    padding: 1rem 0;
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: top 0.3s ease;
}

.navbar.scrolled {
    top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 38px;
    width: auto;
}

.nav-logo span {
    color: var(--cream);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange-light) 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.4);
}

/* Hero Section */
.hero {
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 990px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    margin-bottom: 1.5rem;
}

.scroll-arrow {
    display: inline-block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--charcoal);
    border-radius: 20px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--charcoal);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 0;
        top: 10px;
    }
}

/* Section Headers */
.section-header {
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.coral-header h2 {
    color: var(--coral);
}

.coral-header h2::after {
    background: linear-gradient(90deg, var(--coral) 0%, var(--orange-light) 100%);
}

.teal-header h2 {
    color: var(--teal);
}

.teal-header h2::after {
    background: linear-gradient(90deg, var(--teal) 0%, var(--blue-bright) 100%);
}

.gold-header h2 {
    color: var(--gold);
}

.gold-header h2::after {
    background: linear-gradient(90deg, var(--gold) 0%, #e8c99e 100%);
}

.purple-header h2 {
    color: var(--purple);
}

.purple-header h2::after {
    background: linear-gradient(90deg, var(--purple) 0%, #8b7bb8 100%);
}

/* About Section */
.about {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--charcoal);
}

/* Events Section */
.events {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    column-gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

/* Featured Event Card */
.event-card-featured {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue-bright) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    grid-column: 1 / -1;
    position: relative;
    color: white;
}

.featured-badge {
    background: var(--coral);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-card-featured .event-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.event-card-featured h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.event-card-featured .event-date {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.event-card-featured .event-preview {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-card-featured .event-bonus {
    color: var(--gold);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-card-featured .event-host {
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card-featured .event-coming-soon {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    border: 2px dashed var(--gold);
    border-radius: 8px;
    display: inline-block;
}

.featured-event-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.event-card-featured .event-details-btn {
    background: white;
    color: var(--teal);
    font-size: 1.1rem;
    padding: 14px 40px;
}

.event-card-featured .event-details-btn:hover {
    background: var(--cream);
}

.event-register-btn {
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange-light) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.event-register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
}

/* Compact Event Cards */
.event-card-compact {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 3px solid transparent;
    width: 100%;
    max-width: 350px;
}

.event-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--teal);
}

.event-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.event-card-compact h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.event-date {
    color: var(--coral);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.event-frequency {
    color: var(--teal);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.event-details-btn {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue-bright) 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-details-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(47, 72, 88, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: white;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0 20px;
    transition: color 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue-bright) 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.modal-date {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.modal-body {
    padding: 2.5rem;
}

.event-schedule {
    margin-bottom: 2rem;
}

.event-schedule-day2 {
    border-top: 3px solid var(--coral);
    padding-top: 2rem;
}

.event-schedule-day2 h3 {
    color: var(--coral);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.schedule-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--teal);
}

.schedule-item h4 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.schedule-item .time {
    color: var(--coral);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.schedule-item p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.schedule-item .note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.event-description {
    line-height: 1.8;
}

.event-description p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.event-description h4 {
    color: var(--teal);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.event-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.event-description ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.event-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Schedule Section */
.schedule {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.schedule-card-header {
    background: linear-gradient(135deg, var(--purple) 0%, #8b7bb8 100%);
    padding: 1.5rem;
    text-align: center;
}

.schedule-card-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.schedule-card-body {
    padding: 2rem;
}

.schedule-time {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.schedule-card-body p {
    color: var(--charcoal);
    line-height: 1.8;
}

/* Connect Section */
.connect {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.connect-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.connect-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    text-align: center;
}

.connect-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: center;
}

.card-disclaimer {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.cta-button {
    display: block;
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange-light) 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 1.5rem auto;
    text-align: center;
    max-width: 250px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.4);
}

.enthusiast-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1.5rem;
    text-align: center;
}

.enthusiast-note a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.enthusiast-note a:hover {
    text-decoration: underline;
}

.discord-access {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
    border: 2px dashed var(--teal);
}

.discord-access p {
    margin: 0;
    color: var(--teal);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Past Events Section */
.past-events {
    padding-bottom: 60px;
    background-color: var(--cream);
}

.past-events-table {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.past-events-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--gold) 0%, #e8c99e 100%);
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    text-align: center;
}

.past-events-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
    text-align: center;
    transition: background-color 0.2s ease;
}

.past-events-row:last-child {
    border-bottom: none;
}

.past-events-row:hover {
    background-color: var(--light-gray);
}

.past-events-row .event-name {
    font-weight: 700;
    color: var(--teal);
}

.past-events-row span {
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* Our Story photo (About page) */
.story-photo {
    margin: 2.5rem auto 0;
    max-width: 760px;
}

.story-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
}

.story-photo figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.75rem;
}

/* Memory wall — event photos */
.memory-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.memory-card {
    background: white;
    padding: 12px 12px 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    transform: rotate(-1.5deg);
    transition: all 0.3s ease;
    margin: 0;
}

.memory-card:nth-child(even) {
    transform: rotate(1.5deg);
}

.memory-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    z-index: 2;
}

.memory-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.memory-card.memory-wide {
    grid-column: 1 / -1;
    transform: rotate(0.75deg);
}

.memory-card.memory-wide img {
    height: 380px;
}

.memory-card figcaption {
    text-align: center;
    font-size: 0.88rem;
    color: #555;
    padding-top: 0.75rem;
}

.memory-year {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 800;
    font-size: 0.72rem;
    border-radius: 999px;
    padding: 2px 10px;
    margin-right: 0.5rem;
    letter-spacing: 1px;
}

@media (max-width: 700px) {
    .memory-wall {
        grid-template-columns: 1fr;
    }

    .memory-card img {
        height: 200px;
    }

    .memory-card.memory-wide img {
        height: 240px;
    }
}

/* Testimonials Marquee */
.testimonials-marquee {
    margin-top: 2.5rem;
    overflow: hidden;
    padding: 1.5rem 0;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 60s linear infinite;
    flex-shrink: 0;
    align-items: stretch;
    padding-right: 2rem;
}

.testimonial-card {
    flex-shrink: 0;
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote {
    font-size: 0.85rem;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-name {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: auto;
}

.testimonial-name::before {
    content: "- ";
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.testimonials-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    color: var(--cream);
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.5rem;
}

.footer-links {
    text-align: center;
}

.footer-links p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.footer-links a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 2px solid rgba(234, 231, 220, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(234, 231, 220, 0.8);
}

.hosted-by a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
}

.hosted-by a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    .nav-logo span {
        font-size: 1.3rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .hero {
        padding: 70px 20px;
    }

    .hero-logo {
        max-width: 95%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .event-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .event-card-featured {
        padding: 2rem;
    }

    .event-card-featured h3 {
        font-size: 1.6rem;
    }

    .schedule-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .footer-logo {
        max-width: 280px;
    }

    .past-events-header,
    .past-events-row {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .past-events-header {
        font-size: 0.7rem;
    }

    .testimonial-card {
        width: 200px;
        padding: 1rem;
    }

    .testimonial-quote {
        font-size: 0.8rem;
    }

    .marquee-track {
        gap: 1.5rem;
    }
}

/* ============================================
   NEW COMPONENTS (2026 redesign)
   ============================================ */

/* Navbar: always visible on subpages, active link state */
.navbar.solid {
    top: 0;
}

.nav-links a.active {
    color: var(--coral);
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* Hero additions */
.hero-tagline {
    font-size: 1.35rem;
    color: var(--teal);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-cta,
.hero-cta-secondary {
    display: inline-block;
    margin: 0;
}

.hero-cta-secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.hero-cta-secondary:hover {
    background: var(--teal);
    color: white;
    box-shadow: 0 8px 25px rgba(47, 72, 88, 0.3);
}

/* Floating decorative shapes in hero */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    width: 44px;
    height: 44px;
    opacity: 0.13;
    animation: float 12s ease-in-out infinite;
}

.hero-shapes .shape svg {
    width: 100%;
    height: 100%;
}

.fs1 { top: 14%; left: 7%;  color: var(--coral);       animation-delay: 0s;    width: 48px; height: 48px; }
.fs2 { top: 62%; left: 11%; color: var(--teal);        animation-delay: -3s; }
.fs3 { top: 20%; right: 9%; color: var(--gold);        animation-delay: -6s;   width: 52px; height: 52px; }
.fs4 { top: 72%; right: 7%; color: var(--purple);      animation-delay: -9s;   width: 56px; height: 56px; }
.fs5 { top: 44%; right: 18%; color: var(--blue-bright); animation-delay: -4.5s; width: 38px; height: 38px; }
.fs6 { top: 38%; left: 16%; color: var(--gold);        animation-delay: -7.5s; width: 40px; height: 40px; }
.fs7 { top: 84%; left: 32%; color: var(--coral);       animation-delay: -1.5s; width: 36px; height: 36px; }
.fs8 { top: 9%;  left: 38%; color: var(--purple);      animation-delay: -10.5s; width: 42px; height: 42px; }
.fs9 { top: 82%; right: 26%; color: var(--teal);       animation-delay: -5.5s; width: 38px; height: 38px; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue-bright) 100%);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number,
.stat-suffix {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}

.stat-label {
    color: var(--cream);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Link-style button under the about blurb */
.text-link-btn {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--coral);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-link-btn:hover {
    color: var(--teal);
    transform: translateX(5px);
}

/* Next event countdown banner */
.next-event-banner {
    background: white;
    border: 3px solid var(--teal);
    border-radius: 14px;
    padding: 1rem 2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.next-event-label {
    font-weight: 700;
    color: var(--charcoal);
}

.next-event-name {
    font-weight: 700;
    color: var(--teal);
}

.next-event-countdown {
    font-weight: 800;
    color: var(--coral);
    font-variant-numeric: tabular-nums;
}

/* Info box inside modals */
.info-box {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.info-box strong {
    color: var(--coral);
    display: block;
    margin-bottom: 0.4rem;
}

.info-box p {
    margin: 0;
    font-size: 1rem;
}

/* Industry Data section */
.industry-data {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.data-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
}

.data-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.data-step {
    text-align: center;
    padding: 1.5rem;
}

.data-step-icon {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
}

.data-step h4 {
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.data-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.survey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.survey-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.survey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.survey-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.survey-status.open {
    background: #d4edda;
    color: #2d6a3f;
}

.survey-status.soon {
    background: var(--light-gray);
    color: #888;
}

.survey-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin: 0.5rem 0 1rem;
}

.survey-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.survey-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #e8c99e 100%);
    color: var(--charcoal);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.survey-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.survey-btn.disabled {
    background: var(--light-gray);
    color: #999;
    pointer-events: none;
}

.data-disclaimer {
    text-align: center;
    max-width: 700px;
    margin: 2.5rem auto 0;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

/* Subpage hero (About page) */
body.subpage {
    padding-top: 70px;
}

.page-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-hero h1 {
    color: var(--cream);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Values grid (About page) */
.values {
    padding-bottom: 80px;
    background-color: var(--light-gray);
    padding-top: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team section (About page) */
.team {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
    letter-spacing: 1px;
}

.coral-avatar { background: linear-gradient(135deg, var(--coral) 0%, var(--orange-light) 100%); }
.teal-avatar { background: linear-gradient(135deg, var(--teal) 0%, var(--blue-bright) 100%); }
.purple-avatar { background: linear-gradient(135deg, var(--purple) 0%, #8b7bb8 100%); }
.gold-avatar { background: linear-gradient(135deg, var(--gold) 0%, #e8c99e 100%); }

.member-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--coral);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.member-business {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

/* Contributors section (About page) */
.contributors {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.contributors-intro {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contributor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contributor-card {
    background: white;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contributor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.small-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contributor-card h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.contributor-what {
    font-size: 0.88rem;
    color: var(--teal);
    font-weight: 600;
    line-height: 1.5;
}

.contributors-cta {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.05rem;
}

.contributors-cta a {
    color: var(--coral);
    font-weight: 700;
    text-decoration: none;
}

.contributors-cta a:hover {
    text-decoration: underline;
}

/* Anchor jumps must clear the fixed navbar so section titles aren't cut off */
section[id] {
    scroll-margin-top: 90px;
}

/* Contact Form */
.contact-section {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.contact-form-sub {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-field label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--teal);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--charcoal);
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: white;
}

.form-field textarea {
    resize: vertical;
}

.contact-submit {
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    max-width: 300px;
}

.contact-fallback {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--teal);
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
}

.contact-fallback.hidden {
    display: none;
}

.contact-fallback a {
    color: var(--coral);
    font-weight: 700;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrap {
        padding: 1.75rem 1.25rem;
    }
}

/* Footer "Supported by" sponsor block */
.footer-sponsor {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sponsor-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(234, 231, 220, 0.5);
    margin-bottom: 0.6rem;
}

.sponsor-link {
    display: inline-block;
    text-decoration: none;
    opacity: 0.65;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.sponsor-link:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.sponsor-logo {
    max-height: 44px;
    width: auto;
    display: block;
}

/* Temporary text placeholder until the sponsor logo is added */
.sponsor-placeholder {
    display: inline-block;
    border: 2px dashed rgba(234, 231, 220, 0.35);
    border-radius: 8px;
    padding: 10px 24px;
    color: rgba(234, 231, 220, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Get Involved section (About page) */
.get-involved {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.involved-intro {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1050px;
    margin: 0 auto 2.5rem;
}

.involved-card {
    background: white;
    border-radius: 14px;
    padding: 1.9rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--coral);
    transition: all 0.3s ease;
}

.involved-card:nth-child(2) { border-top-color: var(--teal); }
.involved-card:nth-child(3) { border-top-color: var(--gold); }
.involved-card:nth-child(4) { border-top-color: var(--purple); }

.involved-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.involved-icon {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.involved-card h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.involved-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.involved-cta {
    text-align: center;
}

.involved-cta .cta-button {
    display: inline-block;
}

.involved-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Easter egg padlock */
.easter-egg-lock {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.35;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.easter-egg-lock:hover {
    opacity: 1;
    transform: scale(1.3) rotate(-10deg);
}

.egg-puzzle {
    text-align: center;
}

.egg-hint {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.egg-inputs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.egg-digit {
    width: 60px;
    height: 70px;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    border: 3px solid var(--teal);
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--charcoal);
}

.egg-digit:focus {
    outline: none;
    border-color: var(--coral);
    background: white;
}

.egg-feedback {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--coral);
    min-height: 1.5rem;
}

.egg-success {
    text-align: center;
    padding: 1rem 0;
}

.egg-success-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: unlock-pop 0.6s ease;
}

@keyframes unlock-pop {
    0% { transform: scale(0.3) rotate(-20deg); opacity: 0; }
    60% { transform: scale(1.2) rotate(8deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.egg-success h3 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.egg-success a {
    color: var(--coral);
    font-weight: 700;
}

.egg-success.hidden,
.egg-puzzle.hidden {
    display: none;
}

.modal-shake {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

/* Responsive rules for new components */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(75vw, 300px);
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.35s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

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

    .stat-number,
    .stat-suffix {
        font-size: 2.2rem;
    }

    .data-steps {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-shapes .shape {
        width: 30px !important;
        height: 30px !important;
    }

    .egg-digit {
        width: 50px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 30px;
    }

    .nav-cta {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .nav-logo span {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .connect-card {
        padding: 1.8rem;
    }

    .card-icon img {
        width: 80px;
        height: 80px;
    }

    .event-icon {
        font-size: 2.5rem;
    }

    .past-events-header,
    .past-events-row {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        padding: 0.6rem 0.75rem;
        font-size: 0.7rem;
        gap: 0.25rem;
    }

    .past-events-header {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}

/* ============================================
   Dark Events "Mission Board" + SVG icons + Spotlight
   ============================================ */

/* Flat SVG icon utilities */
.svg-icon {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-bottom: 0.75rem;
}

.svg-icon svg {
    width: 100%;
    height: 100%;
}

.ic-coral { color: var(--coral); }
.ic-teal { color: var(--teal); }
.ic-blue { color: var(--blue-bright); }
.ic-gold { color: var(--gold); }
.ic-purple { color: var(--purple); }

/* Section header on dark backgrounds */
.dark-header h2 {
    color: var(--cream);
}

.dark-header h2::after {
    background: linear-gradient(90deg, var(--gold) 0%, var(--coral) 100%);
}

/* Events section goes dark */
.events {
    background-color: #232323;
    padding-bottom: 80px;
}

.events .next-event-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3f3f3f;
    box-shadow: none;
}

.events .next-event-label { color: var(--cream); }
.events .next-event-name { color: var(--gold); }
.events .next-event-countdown { color: var(--coral); }

.ical-subscribe {
    text-align: center;
    margin: -1.25rem 0 2rem;
    font-size: 0.92rem;
}

.events .ical-subscribe {
    color: rgba(234, 231, 220, 0.6);
}

.events .ical-subscribe a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.events .ical-subscribe a:hover {
    text-decoration: underline;
}

.footer-quicklinks {
    margin-top: 0.75rem;
    font-size: 0.92rem;
}

.footer-quicklinks a {
    color: var(--cream) !important;
    opacity: 0.8;
}

.footer-quicklinks a:hover {
    opacity: 1;
    color: var(--gold) !important;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

/* Side cards: override the light .event-card-compact look */
.mission-card {
    background: #2e2e2e;
    border: 1px solid #3f3f3f;
    border-radius: 16px;
    box-shadow: none;
    max-width: none;
    color: var(--cream);
}

.mission-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.15);
}

.mission-card h3 {
    color: var(--cream);
    font-size: 1.25rem;
}

.mission-card .event-frequency {
    color: var(--coral);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.mission-card .event-details-btn {
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 9px 24px;
}

.mission-card .event-details-btn:hover {
    background: var(--gold);
    color: #232323;
    box-shadow: none;
}

/* Centre card: override the teal .event-card-featured look */
.mission-main {
    background: linear-gradient(160deg, #2e2e2e, #253842);
    border: 1px solid var(--gold);
    box-shadow: 0 0 45px rgba(212, 165, 116, 0.18);
    grid-column: auto;
    padding: 2.4rem 2rem 2.2rem;
    transform: scale(1.04);
}

.mission-main h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.mission-trophy {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 0.5rem;
}

.mission-where {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
}

.count-grid {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.count-cell {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #3f3f3f;
    border-radius: 10px;
    padding: 0.55rem 0.4rem;
    min-width: 64px;
}

.count-cell .num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.count-cell .lbl {
    display: block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(234, 231, 220, 0.55);
}

.count-tbc {
    font-size: 0.82rem;
    color: rgba(234, 231, 220, 0.55);
    font-style: italic;
    margin-bottom: 1.1rem;
}

.mission-soon {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-style: italic;
    padding: 0.6rem 1.8rem;
    border: 2px dashed var(--gold);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Community Spotlight */
.spotlight {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.spotlight-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.spotlight-intro a {
    color: var(--coral);
    font-weight: 700;
    text-decoration: none;
}

.spotlight-intro a:hover {
    text-decoration: underline;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.spotlight-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.spotlight-tag {
    display: inline-block;
    background: var(--purple);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.spotlight-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.spotlight-who {
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.spotlight-card p {
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.spotlight-btn {
    display: inline-block;
    color: var(--coral);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spotlight-btn:hover {
    color: var(--teal);
    transform: translateX(4px);
}

/* Responsive for new components */
@media (max-width: 860px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-main {
        transform: none;
        order: -1;
    }

    .count-cell {
        min-width: 56px;
    }

    .count-cell .num {
        font-size: 1.4rem;
    }
}

/* ============================================
   Census page
   ============================================ */
.census-hero {
    padding-bottom: 3.5rem;
}

.census-count-wrap {
    margin-top: 2rem;
}

.census-count-label {
    color: var(--cream);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.census-count .count-cell {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    min-width: 72px;
}

.census-tbc {
    color: rgba(234, 231, 220, 0.6);
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 0.6rem;
}

.census-why,
.census-faq {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.census-how {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.census-intro {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
}

.census-asks {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.census-asks h3 {
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.chip {
    background: white;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-list details {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

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

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--coral);
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
    padding: 0 1.5rem 1.25rem;
    line-height: 1.75;
    color: var(--charcoal);
}

.census-cta {
    text-align: center;
    margin-top: 3rem;
}

.census-cta .cta-button {
    display: inline-block;
}

.census-cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* ============================================
   News page (featured + card grid, DB-driven)
   ============================================ */
.news-section {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.hero-teal   { background: linear-gradient(135deg, var(--teal), var(--blue-bright)); }
.hero-coral  { background: linear-gradient(135deg, var(--coral), var(--orange-light)); }
.hero-purple { background: linear-gradient(135deg, var(--purple), #8b7bb8); }
.hero-gold   { background: linear-gradient(135deg, var(--gold), #e8c99e); }

.news-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 0.6rem;
}
.tag-teal   { background: var(--teal); }
.tag-coral  { background: var(--coral); }
.tag-purple { background: var(--purple); }
.tag-gold   { background: var(--gold); color: var(--charcoal); }

.news-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.news-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
}

.news-hero-block {
    min-height: 260px;
}

.news-featured-text {
    padding: 2.2rem;
}

.news-featured-text h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.news-readmore {
    color: var(--coral);
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.news-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.3s ease;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.news-thumb {
    height: 130px;
}

.news-card-body {
    padding: 1.4rem;
}

.news-card-body h3 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

.news-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.news-empty {
    text-align: center;
    color: #888;
    font-size: 1.05rem;
    padding: 3rem 0;
}

.news-empty.hidden { display: none; }
.news-section.hidden { display: none; }

/* Single post article */
.post-article {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.post-back {
    display: inline-block;
    color: var(--coral);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.post-article h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}

.post-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.post-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

@media (max-width: 760px) {
    .news-featured { grid-template-columns: 1fr; }
    .news-hero-block { min-height: 160px; }
    .post-article { padding: 1.75rem 1.25rem; }
}

/* ============================================
   Census page â€” live progress, teaser tiles, timeline
   ============================================ */
.census-progress {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.thermo-wrap {
    max-width: 760px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.thermo-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.thermo-head h3 { color: var(--teal); font-size: 1.2rem; }

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.live-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.thermo-bar {
    background: var(--light-gray);
    border-radius: 999px;
    height: 26px;
    overflow: hidden;
}

.thermo-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--coral), var(--orange-light));
    border-radius: 999px;
    transition: width 1s ease;
}

.thermo-label {
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--charcoal);
}

.thermo-note {
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.state-bars {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.state-bar {
    background: white;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.state-bar .st { font-weight: 800; color: var(--teal); font-size: 0.9rem; }
.state-bar .ct { font-size: 1.3rem; font-weight: 800; color: var(--coral); }

/* Results teaser â€” solid colour tiles (cartogram style, no border accents) */
.census-teaser {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.teaser-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.teaser-tile {
    border-radius: 14px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    color: white;
}

.teaser-tile .big {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
}

.teaser-tile .lbl {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.4rem;
    opacity: 0.9;
}

.tile-teal   { background: var(--teal); }
.tile-coral  { background: var(--coral); }
.tile-gold   { background: var(--gold); color: var(--charcoal); }
.tile-purple { background: var(--purple); }

.teaser-foot {
    text-align: center;
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Timeline strip */
.census-timeline {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.timeline-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.timeline-strip::before {
    content: '';
    position: absolute;
    top: 21px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: #ddd7c8;
    border-radius: 2px;
}

.tl-stage {
    text-align: center;
    position: relative;
    padding: 0 0.75rem;
}

.tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 4px solid #ddd7c8;
    color: #b0a890;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    position: relative;
    z-index: 1;
}

.tl-stage.current .tl-dot {
    background: var(--coral);
    border-color: var(--coral);
    color: white;
}

.tl-stage h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.tl-stage .tl-date { color: var(--teal); font-weight: 700; font-size: 0.88rem; }
.tl-stage .tl-note { color: #888; font-size: 0.8rem; margin-top: 0.2rem; }

@media (max-width: 760px) {
    .state-bars { grid-template-columns: repeat(2, 1fr); }
    .timeline-strip { grid-template-columns: 1fr 1fr; gap: 1.5rem 0; }
    .timeline-strip::before { display: none; }
}


/* ============================================
   About page â€” polaroids, Q&A, Code of the Community
   ============================================ */
.polaroid-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    padding: 1rem 0;
}

.polaroid {
    background: white;
    padding: 14px 14px 18px;
    width: 260px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transform: rotate(-2.5deg);
    transition: all 0.3s ease;
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.04);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.polaroid-photo {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    object-fit: cover;
}

.polaroid-caption {
    font-family: 'Segoe Script', 'Comic Sans MS', cursive;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--charcoal);
}

.polaroid-sub {
    text-align: center;
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 700;
    margin-top: 0.1rem;
}

.polaroid-bio {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-top: 0.6rem;
}

.team-note {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 2.5rem;
    font-size: 0.95rem;
}

/* Founder Q&A */
.founder-qa {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.qa-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qa-item {
    background: white;
    border-radius: 14px;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.qa-item h3 {
    color: var(--coral);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.qa-item p {
    line-height: 1.8;
    font-size: 1rem;
}

/* Code of the Community â€” escape room briefing card */
.community-code {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.code-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 16px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.code-preamble {
    text-align: center;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.code-rules {
    list-style: none;
    counter-reset: rule;
    padding: 0;
}

.code-rules li {
    counter-increment: rule;
    padding: 0.9rem 0 0.9rem 3.2rem;
    position: relative;
    line-height: 1.7;
    font-size: 0.98rem;
}

.code-rules li + li {
    border-top: 1px solid rgba(234, 231, 220, 0.12);
}

.code-rules li::before {
    content: counter(rule);
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-rules strong {
    color: var(--gold);
}

/* ============================================
   Survey page (in-house benchmark survey)
   ============================================ */
.survey-page {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.survey-shell {
    max-width: 760px;
    margin: 0 auto;
}

.survey-trust {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.survey-block {
    background: white;
    border-radius: 16px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.survey-block h3 {
    color: var(--teal);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.survey-field {
    margin-bottom: 1.25rem;
}

.survey-field label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.survey-field .hint {
    font-weight: 400;
    color: #888;
    font-size: 0.82rem;
}

.survey-field select,
.survey-field input,
.survey-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--light-gray);
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.survey-field select:focus,
.survey-field input:focus,
.survey-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: white;
}

.check-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.check-option {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.98rem !important;
    color: var(--charcoal) !important;
    cursor: pointer;
}

.check-option input {
    width: auto !important;
    accent-color: var(--coral);
    transform: scale(1.25);
}

.survey-submit-wrap {
    text-align: center;
}

.survey-submit-wrap .cta-button {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
}

.form-status {
    margin-top: 1.25rem;
    font-weight: 700;
    min-height: 1.5rem;
}

.form-status.ok { color: #2d6a3f; }
.form-status.err { color: var(--coral); }

.survey-done {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.survey-done h2 {
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.survey-done.hidden, .survey-shell.hidden { display: none; }

/* Mid-width nav: 6 links get cramped between the hamburger breakpoint
   and full desktop — tighten instead of overflowing */
@media (min-width: 769px) and (max-width: 1120px) {
    .nav-links {
        gap: 1.1rem;
    }

    .nav-links a {
        font-size: 0.92rem;
    }

    .nav-cta {
        padding: 8px 16px;
    }
}

/* Members-area nav: few links, no JS hamburger — stays inline on mobile
   instead of using the drawer (which needs the toggle button) */
@media (max-width: 768px) {
    .nav-links-simple {
        position: static;
        height: auto;
        width: auto;
        background: none;
        flex-direction: row;
        gap: 0.9rem;
        box-shadow: none;
        transition: none;
    }

    .nav-links-simple a {
        font-size: 0.85rem;
    }

    .nav-links-simple .nav-cta {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
}

/* Mobile padding for content blocks used across survey/apply/members pages */
@media (max-width: 600px) {
    .survey-block {
        padding: 1.5rem 1.1rem;
    }

    .qa-item {
        padding: 1.4rem 1.2rem;
    }

    .code-card {
        padding: 1.8rem 1.3rem;
    }

    .step-nav .cta-button {
        padding: 12px 22px;
        font-size: 0.95rem;
    }
}

/* Survey stepper (waiver-style, one section per screen) */
.step-progress {
    background: #e2ddcf;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.step-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--blue-bright));
    border-radius: 999px;
    transition: width 0.4s ease;
}

.step-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.survey-step.hidden-step { display: none; }

.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.step-nav .hidden { display: none; }

/* Community wall */
.wall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.wall-card {
    background: white;
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.wall-kind {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.6rem;
}

.wall-kind.win { background: var(--gold); color: var(--charcoal); }
.wall-kind.thanks { background: var(--coral); }

.wall-to {
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 0.35rem;
}

.wall-message {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.wall-from {
    font-size: 0.82rem;
    color: #888;
}

/* ============================================
   Resources page
   ============================================ */
.resources-page {
    padding-bottom: 80px;
    background-color: var(--cream);
}

.resource-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1050px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.resource-cat-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.75rem;
}

.resource-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.resource-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0.9rem;
}

.resource-vetted {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 700;
}

.resource-link {
    color: var(--coral);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.92rem;
}

.resource-link:hover { text-decoration: underline; }

.resource-suggest {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--teal);
    color: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.resource-suggest h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.resource-suggest p { font-size: 0.88rem; opacity: 0.85; }

