/* =========================================================
   WSPC 2026 — redesign prototype
   Mobile-first, self-contained (no framework dependency)
   Brand palette derived from the existing LMI theme.
   ========================================================= */

:root {
    /* Brand */
    --green:        #0a7a31;
    --green-dark:   #075f26;
    --green-light:  #A5CF4E;
    --saffron:      #ff8c1a;
    --saffron-deep: #f2700a;
    --orange:       #FFB62F;
    --navy:         #16266b;     /* Ashoka-chakra navy */
    --maroon:       #9c1f1f;     /* theme-art script colour */

    /* Surfaces */
    --cream:        #fbf6ec;
    --cream-2:      #f3ead7;
    --ink:          #20262b;
    --ink-soft:     #4a545c;
    --line:         #e7ddc9;
    --white:        #ffffff;

    /* Type */
    --font-display: "Cinzel", "Georgia", serif;
    --font-body:    "Mukta", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    /* Misc */
    --radius:       16px;
    --radius-sm:    10px;
    --shadow:       0 10px 30px rgba(20, 30, 20, .10);
    --shadow-lg:    0 18px 50px rgba(20, 30, 20, .16);
    --maxw:         1180px;
    --header-h:     66px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--green); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Headings / shared bits ---------- */
.kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .72rem;
    color: var(--saffron-deep);
    margin-bottom: .5rem;
}
.kicker--light { color: var(--orange); }

.section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.1rem + 2vw, 2.4rem);
    line-height: 1.15;
    color: var(--green-dark);
    margin: 0 0 1rem;
}
.section__title--light { color: #fff; }

/* Section headers (kicker + title) are centered site-wide for a consistent look.
   Exception: the two-column venue block (.location), whose header sits in a side
   column next to the map, stays left-aligned. */
.section__title { text-align: center; }
.kicker { display: block; text-align: center; }
.location .kicker { display: inline-block; text-align: left; }
.location .section__title { text-align: left; }

.lead { font-size: clamp(1.02rem, .98rem + .4vw, 1.18rem); color: var(--ink-soft); }
.lead--light { color: rgba(255,255,255,.92); }

.section { padding: clamp(2.6rem, 1.8rem + 4vw, 5rem) 0; }

sup { font-size: .62em; }

/* ---------- Buttons ---------- */
.btn {
    --bg: var(--green);
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 700; font-size: .98rem;
    padding: .8rem 1.5rem; border-radius: 999px;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(10,122,49,.30); }
.btn--primary:hover { background: var(--green-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--light { background: #fff; color: var(--green-dark); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); }

/* =========================================================
   Announcement ticker
   ========================================================= */
.announcebar {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    color: #fff;
    font-size: .85rem;
}
.announcebar__inner {
    width: min(100% - 2.2rem, var(--maxw));
    margin-inline: auto;
    display: flex; align-items: baseline; gap: .8rem;
    padding: .45rem 0;
}
.announcebar__label { font-weight: 700; white-space: nowrap; color: var(--orange); flex: none; }
.announcebar__track {
    /* Normal flowing text — NOT a flex container. Live DB announcements contain
       inline markup (<sup>, <br/>, raw text); flex+gap would shatter them into
       separate, spaced-out items. */
    min-width: 0;
    line-height: 1.45;
}
.announcebar__track a { color: #fff; }
.announcebar__track a:hover { color: var(--orange); text-decoration: none; }
.announcebar__track br { display: none; }   /* legacy separators from the DB */
.announcebar .dot { opacity: .55; margin: 0 .5rem; }
.announcebar sup { font-size: .6em; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,246,236,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.08); }

.navwrap {
    width: min(100% - 2.2rem, var(--maxw));
    margin-inline: auto;
    height: var(--header-h);
    display: flex; align-items: center; gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .6rem; }
.brand:hover { text-decoration: none; }
.brand__mark { height: 60px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-dark); letter-spacing: .02em; }
.brand__text small { font-family: var(--font-display); font-size: .72rem; color: var(--saffron-deep); font-weight: 600; letter-spacing: .04em; }

/* Hamburger */
.nav-toggle {
    margin-left: auto;
    position: relative; z-index: 130; /* stay above the open drawer so X closes it */
    width: 44px; height: 44px;
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    background: transparent; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span {
    height: 3px; border-radius: 3px; background: var(--green-dark);
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer nav */
.primary-nav {
    position: fixed; top: 0; right: 0; z-index: 120;
    height: 100dvh; width: min(86vw, 360px);
    background: var(--white);
    box-shadow: -20px 0 50px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .28s ease;
    padding: calc(var(--header-h) + 1rem) 1.4rem 2rem;
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.primary-nav.is-open { transform: translateX(0); }

.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav > ul > li { border-bottom: 1px solid var(--line); }
.primary-nav a, .subtoggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; gap: .5rem;
    padding: .85rem .2rem;
    font-size: 1.02rem; font-weight: 600; color: var(--ink);
    background: none; border: 0; cursor: pointer; font-family: var(--font-body);
}
.primary-nav a:hover, .subtoggle:hover { color: var(--green); text-decoration: none; }
.primary-nav a.is-active { color: var(--green); }

.submenu { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.has-sub.is-open .submenu { max-height: 480px; }
.has-sub.is-open .subtoggle i { transform: rotate(180deg); }
.subtoggle i { transition: transform .25s ease; font-size: .75rem; }
.submenu a { display: block; padding-left: 1rem; font-weight: 500; font-size: .95rem; color: var(--ink-soft); white-space: normal; overflow-wrap: anywhere; }
.submenu .divider { height: 1px; background: var(--line); margin: .3rem 0; }

.nav-actions {
    margin-top: 1.4rem;
    display: flex; flex-direction: column; gap: .6rem;
}
.nav-login, .nav-register {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .8rem 1.2rem; border-radius: 999px; font-weight: 700;
}
.nav-login { background: transparent; color: var(--green-dark); border: 2px solid var(--green); }
.nav-login:hover { background: rgba(10,122,49,.08); color: var(--green-dark); text-decoration: none; }
.nav-register { background: var(--saffron); color: #fff; box-shadow: 0 8px 20px rgba(255,140,26,.3); }
.nav-register:hover { background: var(--saffron-deep); color: #fff; text-decoration: none; }

/* Login slot injected by flobals-login.js (.lmi-navbar-login) — style its
   Login link / logged-in menu to match the new nav. Harmless when empty. */
.lmi-navbar-login { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.lmi-navbar-login .nav-link {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1.05rem; border-radius: 999px; font-size: .9rem; font-weight: 700;
    color: var(--green-dark); border: 2px solid var(--green); text-decoration: none;
}
.lmi-navbar-login .nav-link:hover { background: rgba(10,122,49,.08); text-decoration: none; }

.nav-backdrop {
    /* Must sit BELOW .site-header (z-index:100) so the drawer — which is
       trapped inside the header's stacking context — stays above the
       backdrop and remains tappable. Above page content, below header. */
    position: fixed; inset: 0; z-index: 95;
    background: rgba(15,20,15,.45);
    opacity: 0; transition: opacity .25s ease;
}
.nav-backdrop.is-open { opacity: 1; }

/* Desktop nav */
@media (min-width: 992px) {
    .nav-toggle { display: none; }
    .nav-backdrop { display: none !important; }
    .primary-nav {
        position: static; height: auto; width: auto; transform: none;
        box-shadow: none; padding: 0; background: transparent;
        flex-direction: row; align-items: center; margin-left: auto; overflow: visible;
    }
    .primary-nav > ul { display: flex; align-items: center; gap: .1rem; }
    .primary-nav > ul > li { border: 0; position: relative; }
    .primary-nav a, .subtoggle {
        padding: .5rem .7rem; font-size: .92rem; font-weight: 600; white-space: nowrap;
    }
    .primary-nav a.is-active { color: var(--green); }
    .primary-nav > ul > li > a::after,
    .subtoggle::after {
        content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .25rem;
        height: 2px; background: var(--saffron); transform: scaleX(0); transform-origin: left;
        transition: transform .2s ease;
    }
    .primary-nav > ul > li > a:hover::after,
    .primary-nav > ul > li > a.is-active::after,
    .primary-nav > ul > li > .subtoggle:hover::after,
    .primary-nav > ul > li > .subtoggle.is-active::after { transform: scaleX(1); }
    .subtoggle.is-active { color: var(--green); }

    /* Desktop dropdowns */
    .submenu {
        position: absolute; top: 100%; left: 0; min-width: 264px;
        background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
        box-shadow: var(--shadow); padding: .4rem;
        max-height: none; overflow: visible;
        opacity: 0; visibility: hidden; transform: translateY(8px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s;
    }
    .has-sub:hover .submenu,
    .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
    .submenu a { border-radius: 8px; padding: .55rem .8rem; }
    .submenu a:hover { background: var(--cream-2); }
    .has-sub .subtoggle i { transition: none; }

    .nav-actions { margin: 0 0 0 .8rem; flex-direction: row; align-items: center; gap: .5rem; }
    .nav-login, .nav-register { padding: .5rem 1.05rem; font-size: .88rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    text-align: center;
    padding: clamp(2.5rem, 1.5rem + 6vw, 5.5rem) 1.1rem clamp(3rem, 2rem + 5vw, 5rem);
    background:
        radial-gradient(1200px 480px at 50% -10%, rgba(255,182,47,.30), transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    overflow: hidden;
}
.hero__ornament {
    position: absolute; width: 220px; height: 220px; opacity: .5; pointer-events: none;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,140,26,.35), transparent 60%);
    filter: blur(4px);
}
.hero__ornament--tl { top: -40px; left: -40px; }
.hero__ornament--br { bottom: -50px; right: -50px; background: radial-gradient(circle at 70% 70%, rgba(10,122,49,.28), transparent 60%); }

.hero__inner { position: relative; max-width: 820px; margin-inline: auto; }
.hero__logo {
    width: clamp(160px, 38vw, 260px);
    margin: 0 auto 1.4rem;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.12));
}
.hero__eyebrow {
    font-weight: 600; color: var(--maroon);
    letter-spacing: .04em; margin: 0 0 .5rem; font-size: clamp(.82rem, .78rem + .4vw, 1rem);
}
.hero__title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.7rem, 1.1rem + 3.4vw, 3rem);
    line-height: 1.12; margin: 0 auto 1.2rem; max-width: 16ch; color: var(--green-dark);
}
.hero__facts {
    list-style: none; margin: 0 0 1.6rem; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.4rem;
    color: var(--ink-soft); font-weight: 600; font-size: .98rem;
}
.hero__facts i { color: var(--saffron-deep); margin-right: .4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.hero__cta .btn--ghost { color: var(--green-dark); border-color: var(--green); }
.hero__cta .btn--ghost:hover { background: rgba(10,122,49,.08); }

/* Countdown */
.countdown {
    margin-top: 2.4rem;
    display: inline-flex; gap: .6rem; flex-wrap: wrap; justify-content: center;
}
.countdown__unit {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 72px; padding: .7rem .4rem;
    display: flex; flex-direction: column; align-items: center;
}
.countdown__num {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); color: var(--green-dark); line-height: 1;
}
.countdown__lbl { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: .35rem; }

/* =========================================================
   Quick info
   ========================================================= */
.quickinfo {
    width: min(100% - 2.2rem, var(--maxw));
    margin: -2.4rem auto 0;
    position: relative; z-index: 2;
    display: grid; gap: 1rem;
    grid-template-columns: 1fr;
}
.quickinfo__card {
    background: #fff; border-radius: var(--radius); padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow); border-top: 4px solid var(--saffron);
}
.quickinfo__card i { font-size: 1.6rem; color: var(--green); }
.quickinfo__card h3 { font-family: var(--font-display); margin: .7rem 0 .4rem; font-size: 1.15rem; color: var(--green-dark); }
.quickinfo__card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
@media (min-width: 760px) { .quickinfo { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   Welcome
   ========================================================= */
.section--welcome { text-align: center; }
.section--welcome .container { max-width: 760px; }
.section--welcome p { margin-bottom: 1rem; }

/* =========================================================
   Themes
   ========================================================= */
.section--themes { background: var(--cream-2); text-align: center; }
.themes { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
@media (min-width: 820px) { .themes { grid-template-columns: 1fr 1fr; } }

.theme-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); text-align: left;
    transition: transform .2s ease, box-shadow .2s ease;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.theme-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.theme-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.theme-card:hover .theme-card__media img { transform: scale(1.04); }
.theme-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.theme-card__body h3 { font-family: var(--font-display); color: var(--maroon); margin: .6rem 0 .5rem; font-size: 1.3rem; }
.theme-card__body p { margin: 0 0 1rem; color: var(--ink-soft); }

.badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; color: #fff; }
.badge--green { background: var(--green); }
.badge--orange { background: var(--saffron-deep); }

/* Subtle, secondary theme indicator (the theme is flavour, not the headline) */
.theme-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .82rem; font-weight: 600; color: var(--ink-soft);
    background: rgba(156,31,31,.07); border: 1px solid rgba(156,31,31,.18);
    padding: .3rem .7rem; border-radius: 999px; margin: 0 0 1rem;
}
.theme-chip i { color: var(--maroon); }
.page-hero .theme-chip { margin-top: 1rem; }

.link-arrow { font-weight: 700; color: var(--green-dark); display: inline-flex; align-items: center; gap: .4rem; }
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover i { transform: translateX(4px); }

/* =========================================================
   Schedule timeline
   ========================================================= */
.section--schedule { text-align: center; }
.timeline { list-style: none; margin: 1.8rem auto 0; padding: 0; max-width: 760px; text-align: left; position: relative; }
.timeline::before {
    content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 3px;
    background: linear-gradient(var(--green), var(--saffron)); border-radius: 3px;
}
.timeline__item {
    position: relative; padding: .2rem 0 1.3rem 3.2rem;
    display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
}
.timeline__item::before {
    content: ""; position: absolute; left: 11px; top: 4px;
    width: 17px; height: 17px; border-radius: 50%;
    background: #fff; border: 3px solid var(--green); box-shadow: 0 0 0 4px var(--cream);
}
.timeline__date { font-family: var(--font-display); font-weight: 700; color: var(--green-dark); min-width: 64px; }
.timeline__item p { margin: 0; flex: 1 1 220px; color: var(--ink); }
.timeline__tag { font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .22rem .55rem; border-radius: 999px; color: #fff; }
.tag--sudoku { background: var(--green); }
.tag--puzzle { background: var(--saffron-deep); }
.tag--leisure { background: var(--navy); }

/* =========================================================
   CTA band
   ========================================================= */
.section--cta { background: linear-gradient(120deg, var(--green-dark), var(--green)); position: relative; overflow: hidden; }
.section--cta::after {
    content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,182,47,.35), transparent 65%);
}
.cta-band { position: relative; display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 840px) { .cta-band { grid-template-columns: 1.4fr 1fr; } }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* =========================================================
   Location
   ========================================================= */
.location { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 880px) { .location { grid-template-columns: 1fr 1fr; } }
.location__text p i { color: var(--saffron-deep); margin-right: .4rem; }
.location__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.location__map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #11331c; color: #d6e6da; padding-top: 3rem; }
.site-footer__grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; padding-bottom: 2rem; }
@media (min-width: 680px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer__brand img { height: 54px; margin-bottom: .8rem; background:#fff; border-radius: 10px; padding: 4px; }
.site-footer__brand p { color: #aec7b4; font-size: .92rem; }
.site-footer__col h4 { font-family: var(--font-display); color: #fff; font-size: 1.02rem; margin: 0 0 .8rem; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: .5rem; }
.site-footer__col a { color: #cfe2d4; font-size: .92rem; }
.site-footer__col a:hover { color: var(--orange); text-decoration: none; }

.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1); color: #fff; transition: background .2s ease;
}
.social a:hover { background: var(--saffron); text-decoration: none; }

.site-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 1.2rem 0; text-align: center; }
.site-footer__bar p { margin: 0; font-size: .82rem; color: #9fb8a5; }

/* =========================================================
   Back to top
   ========================================================= */
.to-top {
    position: fixed; right: 18px; bottom: 18px; z-index: 90;
    width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--green); color: #fff; font-size: 1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--green-dark); }

/* make quick-info cards behave as links */
a.quickinfo__card { color: inherit; }
a.quickinfo__card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); transition: transform .2s ease, box-shadow .2s ease; }

.section__more { margin-top: 2rem; text-align: center; }

/* =========================================================
   INNER PAGES
   ========================================================= */

/* Page banner (sub-hero) */
.page-hero {
    position: relative; overflow: hidden;
    padding: clamp(2.2rem, 1.5rem + 3vw, 3.6rem) 0;
    background:
        radial-gradient(900px 320px at 80% -20%, rgba(255,182,47,.28), transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.page-hero--wsc { background: radial-gradient(900px 320px at 80% -20%, rgba(10,122,49,.22), transparent 60%), linear-gradient(180deg, var(--cream) 0%, #eef3e0 100%); }
.page-hero--wpc { background: radial-gradient(900px 320px at 80% -20%, rgba(242,112,10,.22), transparent 60%), linear-gradient(180deg, var(--cream) 0%, #fbeedd 100%); }

.page-hero__title {
    font-family: var(--font-display); font-weight: 700; color: var(--green-dark);
    font-size: clamp(1.7rem, 1.2rem + 2.6vw, 2.8rem); margin: .3rem 0 .5rem; line-height: 1.12;
}
.page-hero__sub { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; font-size: clamp(1rem, .96rem + .3vw, 1.12rem); }

.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; padding: 0; margin: 0 0 .6rem; font-size: .82rem; color: var(--ink-soft); background: none; border-radius: 0; }
.breadcrumb li::after { content: "/"; margin-left: .4rem; opacity: .5; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--saffron-deep); font-weight: 600; }

/* Prose blocks */
.prose { max-width: 760px; margin-inline: auto; }
.prose p { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: 1.04rem; }
.prose h3 { font-family: var(--font-display); color: var(--green-dark); font-size: 1.35rem; margin: 1.8rem 0 .7rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.2rem; color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; }
.prose a { font-weight: 600; }

/* Generic content card grid */
.info-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .info-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .info-grid--3 { grid-template-columns: repeat(3,1fr); } }

.info-card {
    background: #fff; border-radius: var(--radius); padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow); border-top: 4px solid var(--green);
}
.info-card--orange { border-top-color: var(--saffron); }
.info-card__icon { width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(10,122,49,.1); color: var(--green); font-size: 1.3rem; margin-bottom: .8rem; }
.info-card--orange .info-card__icon { background: rgba(255,140,26,.14); color: var(--saffron-deep); }
a.info-card { color: inherit; display: block; transition: transform .2s ease, box-shadow .2s ease; }
a.info-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.info-card h3 { font-family: var(--font-display); color: var(--green-dark); font-size: 1.2rem; margin: 0 0 .5rem; }
.info-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.info-card ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: .96rem; }

/* Numbered steps */
.steps { counter-reset: step; display: grid; gap: 1rem; max-width: 780px; margin-inline: auto; padding: 0; list-style: none; }
.steps li { position: relative; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem 1.3rem 1.2rem 4.2rem; }
.steps li::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 1rem; top: 1.1rem;
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.steps h3 { margin: 0 0 .3rem; font-family: var(--font-display); color: var(--green-dark); font-size: 1.1rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* Data table (schedule full / past events) */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
table.data { width: 100%; border-collapse: collapse; min-width: 460px; }
table.data th, table.data td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 600; }
table.data tbody tr:nth-child(even) { background: var(--cream); }
table.data tbody tr:hover { background: var(--cream-2); }

/* Episodes (WSC/WPC theme videos) */
.episodes { display: grid; gap: 1.6rem; }
.episode { display: grid; gap: 1rem; align-items: center; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
@media (min-width: 760px) { .episode { grid-template-columns: 1.2fr 1fr; } }
.episode__video { aspect-ratio: 16 / 9; background: #000; }
.episode__video iframe { width: 100%; height: 100%; border: 0; display: block; }
.episode__video--ph {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
    background: radial-gradient(circle at 50% 40%, #1d3b25, #0c1f14);
    color: rgba(255,255,255,.85); text-align: center; padding: 1rem;
}
.episode__video--ph .play {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--saffron); color: #fff; font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.episode__video--ph span { font-size: .82rem; letter-spacing: .04em; }
.episode__body { padding: 1.2rem 1.4rem; }
.episode__body h3 { font-family: var(--font-display); color: var(--maroon); margin: 0 0 .5rem; font-size: 1.2rem; }
.episode__body p { margin: 0; color: var(--ink-soft); }

/* Lazy playlist embed (facade — loads the player only on click) */
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-embed__facade {
    position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer;
    border: 0; color: #fff; font: inherit;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
    background:
        linear-gradient(rgba(12,31,20,.55), rgba(12,31,20,.75)),
        radial-gradient(circle at 50% 35%, #1d3b25, #0c1f14);
    transition: background .2s ease;
}
.video-embed--wpc .video-embed__facade { background: linear-gradient(rgba(60,24,4,.5), rgba(60,24,4,.72)), radial-gradient(circle at 50% 35%, #5a2a08, #2c1404); }
.video-embed__facade:hover { background: linear-gradient(rgba(12,31,20,.4), rgba(12,31,20,.62)), radial-gradient(circle at 50% 35%, #244a2f, #0c1f14); }
.video-embed__play {
    width: 74px; height: 74px; border-radius: 50%;
    background: var(--saffron); color: #fff; font-size: 1.7rem;
    display: flex; align-items: center; justify-content: center; padding-left: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .15s ease;
}
.video-embed__facade:hover .video-embed__play { transform: scale(1.08); }
.video-embed__text { font-weight: 700; font-size: 1.05rem; }
.video-embed__count { font-size: .85rem; opacity: .85; letter-spacing: .03em; }
.video-embed__link { margin: .9rem 0 0; }
.video-embed__link a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--maroon); }
.video-embed__link i { color: #ff0000; font-size: 1.15rem; }

/* Theme banner image */
.theme-banner { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1.8rem; }
.theme-banner img { width: 100%; display: block; }

/* Contact form */
.contact-grid { display: grid; gap: 1.8rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form { display: grid; gap: 1rem; }
.form label { font-weight: 600; font-size: .92rem; color: var(--ink); display: block; margin-bottom: .35rem; }
.form input, .form textarea {
    width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
    font: inherit; background: #fff; color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
.form textarea { min-height: 130px; resize: vertical; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list i { color: var(--saffron-deep); font-size: 1.1rem; margin-top: .2rem; }
.contact-list strong { display: block; color: var(--green-dark); font-family: var(--font-display); }

/* Partners */
.partner-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 720px) { .partner-grid { grid-template-columns: repeat(4,1fr); } }
.partner {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center;
    padding: 1.2rem; color: var(--ink-soft); font-weight: 700; text-align: center;
    border: 1px dashed var(--line);
}

/* Note / callout */
.note {
    background: rgba(255,182,47,.14); border-left: 4px solid var(--saffron);
    padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin: 1.4rem auto; max-width: 760px;
    color: var(--ink); font-size: .96rem;
}
.note i { color: var(--saffron-deep); margin-right: .4rem; }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
