:root {
    --navy-950: #020914;
    --navy-925: #04111f;
    --navy-900: #07182d;
    --navy-850: #0a1f3a;
    --navy-800: #0f2648;
    --navy-700: #18375f;

    --gold-500: #d59816;
    --gold-400: #e0af34;
    --gold-300: #ecc96a;

    --red: #ec030c;

    --white: #f9fafb;
    --paper: #f3f5f7;
    --ink: #08182d;
    --muted: #697485;

    --dark-line: rgba(255,255,255,.10);
    --light-line: #d7dde4;

    --container: 1320px;
    --page-gutter: clamp(24px, 4vw, 72px);
    --fmmsc-public-hero-top: 110px;

    color-scheme: dark;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--navy-950);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--white);
    background: var(--navy-950);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

.site-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: var(--page-gutter);
}


/* HEADER */

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid transparent;
    transition:
        background .2s ease,
        border-color .2s ease,
        backdrop-filter .2s ease;
}

.site-header.scrolled {
    border-color: rgba(255,255,255,.08);
    background: rgba(2,9,20,.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-copy strong,
.brand-copy span {
    display: block;
}

.brand-copy strong {
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: .06em;
}

.brand-copy span {
    margin-top: 6px;
    color: var(--gold-300);
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    position: relative;
    padding: 35px 0 30px;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
    color: #fff;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 23px;
    height: 2px;
    background: var(--gold-400);
    transition: right .18s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
    right: 0;
}

.header-domain {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid rgba(224,175,52,.30);
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    background: rgba(7,24,45,.55);
    font-size: .75rem;
    font-weight: 750;
}

.domain-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 5px rgba(224,175,52,.10);
}

.nav-toggle {
    display: none;
}


/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 136px 0 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 77% 32%, rgba(224,175,52,.08), transparent 25rem),
        radial-gradient(circle at 18% 45%, rgba(24,55,95,.65), transparent 38rem),
        linear-gradient(120deg, var(--navy-900), var(--navy-950));
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .30;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner {
    position: relative;
    z-index: 2;

    min-height: 640px;

    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 50px;
    align-items: center;

    padding-bottom: 55px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--gold-300);

    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 42px;
    height: 1px;
    background: var(--gold-400);
}

.coming-badge {
    width: fit-content;
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 26px;
    padding: 0 14px;

    border: 1px solid rgba(224,175,52,.35);
    border-radius: 999px;

    color: var(--gold-300);
    background: rgba(224,175,52,.06);

    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: var(--red);

    box-shadow: 0 0 0 0 rgba(236,3,12,.42);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(236,3,12,0);
    }
}

.hero h1 {
    margin: 23px 0 0;

    max-width: 850px;

    font-size: clamp(3.2rem, 6.2vw, 6.6rem);
    line-height: .91;
    letter-spacing: -.065em;
}

.hero h1 > span:not(.emoji) {
    color: var(--gold-400);
}

.hero h1 .emoji {
    white-space: nowrap;
    font-size: .43em;
    letter-spacing: normal;
}

.hero-message {
    max-width: 720px;
    margin-top: 30px;
}

.hero-message > strong {
    display: block;
    color: var(--gold-300);
    font-size: 1.08rem;
    letter-spacing: .13em;
}

.hero-message p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.56);
    font-size: .98rem;
    line-height: 1.65;
}

.hero-message .hero-lead {
    color: rgba(255,255,255,.94);
    font-size: 1.08rem;
    font-weight: 680;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.primary-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 21px;
    border-radius: 999px;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    font-size: .82rem;
    font-weight: 900;
    text-decoration: none;
}

.hero-domain {
    color: rgba(255,255,255,.42);
    font-size: .78rem;
    font-weight: 700;
}

.hero-visual {
    min-width: 0;
}

.crest-stage {
    position: relative;
    width: min(100%, 590px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(224,175,52,.16);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(224,175,52,.11), transparent 58%),
        radial-gradient(circle, rgba(24,55,95,.58), transparent 72%);
}

.crest-stage::before,
.crest-stage::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.crest-stage::before {
    inset: 9%;
}

.crest-stage::after {
    inset: 20%;
}

.crest-rings {
    position: absolute;
    inset: -12%;
    border: 1px dashed rgba(224,175,52,.15);
    border-radius: 50%;
    animation: rotate 50s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.crest-stage > img {
    position: relative;
    z-index: 4;
    width: 62%;
    filter: drop-shadow(0 32px 40px rgba(0,0,0,.38));
}

.mini-tag {
    position: absolute;
    z-index: 7;
    min-width: 135px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: rgba(7,24,45,.78);
    box-shadow: 0 15px 35px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
}

.mini-tag small,
.mini-tag strong {
    display: block;
}

.mini-tag small {
    color: var(--gold-300);
    font-size: .56rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.mini-tag strong {
    margin-top: 3px;
    font-size: .78rem;
}

.tag-bapak {
    left: 0;
    top: 24%;
}

.tag-ibu {
    right: 0;
    top: 39%;
}

.tag-anak {
    right: 12%;
    bottom: 7%;
}

.hero-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--dark-line);
}

.hero-strip > div {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 23px;
    border-right: 1px solid var(--dark-line);
}

.hero-strip > div:last-child {
    border-right: 0;
}

.hero-strip span {
    color: var(--gold-400);
    font-size: .64rem;
    font-weight: 900;
}

.hero-strip strong {
    font-size: .83rem;
}


/* COMMON SECTIONS */

.section {
    position: relative;
    padding: 118px 0;
    scroll-margin-top: 90px;
}

.section-light {
    color: var(--ink);
    background: var(--paper);
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 25%, rgba(224,175,52,.07), transparent 26rem),
        var(--navy-900);
}

.section-label {
    display: block;
    margin-bottom: 19px;
    color: var(--gold-400);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.section-light .section-label {
    color: #a26f07;
}

.section h2 {
    margin: 0;
    font-size: clamp(2.9rem, 5.4vw, 5.7rem);
    line-height: .96;
    letter-spacing: -.058em;
}

.section-split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 95px;
}

.section-copy {
    max-width: 760px;
    padding-top: 35px;
}

.section-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.section-copy .lead-copy {
    color: var(--ink);
    font-size: 1.3rem;
    font-weight: 680;
    line-height: 1.55;
}

.section-head {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 80px;
    align-items: end;
}

.section-head > p,
.section-action-copy p {
    margin: 0 0 8px;
    color: rgba(255,255,255,.48);
    line-height: 1.7;
}

.section-head-light > p,
.section-head-light .section-action-copy p {
    color: var(--muted);
}

.section-action-copy {
    align-self: end;
}

.section-action-copy.dark p {
    color: rgba(255,255,255,.48);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    color: var(--gold-300);
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none;
}

.arrow-link span {
    transition: transform .18s ease;
}

.arrow-link:hover span {
    transform: translateX(4px);
}

.light-link {
    color: #966604;
}

.contact-link {
    margin-top: 24px;
}


/* CONCEPT */

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.concept-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );
}

.card-index {
    color: var(--gold-400);
    font-size: .65rem;
    font-weight: 900;
}

.concept-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-top: 18px;
    border: 1px solid rgba(224,175,52,.20);
    border-radius: 15px;
    background: rgba(224,175,52,.07);
    font-size: 1.2rem;
}

.concept-card h3 {
    margin: auto 0 10px;
    font-size: 1.28rem;
}

.concept-card p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: .86rem;
    line-height: 1.65;
}

.values-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
}

.values-inline > div {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-right: 1px solid var(--dark-line);
}

.values-inline > div:last-child {
    border-right: 0;
}

.values-inline span {
    color: var(--gold-400);
    font-size: .62rem;
    font-weight: 900;
}

.values-inline strong {
    font-size: .82rem;
}


/* JADWAL */

.empty-card {
    min-height: 260px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 50px;
    padding: 42px;
    border: 1px solid var(--light-line);
    border-radius: 27px;
    background: #fff;
}

.empty-symbol {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: var(--ink);
    background: #edf0f3;
    font-size: 2rem;
}

.empty-kicker {
    color: #a26f07;
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.empty-card h3 {
    margin: 9px 0 8px;
    font-size: 1.4rem;
}

.empty-card p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
}


/* GALERI */

.section-gallery {
    background:
        radial-gradient(circle at 75% 20%, rgba(224,175,52,.08), transparent 30rem),
        var(--navy-950);
}

.gallery-placeholder {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
    margin-top: 58px;
}

.gallery-cell {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(145deg, var(--navy-800), var(--navy-925));
}

.gallery-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 34px 34px;
}

.gallery-cell span {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.48);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.cell-a {
    grid-row: 1 / 3;
}

.cell-d {
    grid-column: 2 / 4;
}


/* SPONSOR */

.sponsor-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.sponsor-empty {
    min-height: 220px;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 34px;
    border: 1px dashed #bdc6cf;
    border-radius: 26px;
    background: rgba(255,255,255,.55);
}

.sponsor-plus {
    width: 65px;
    height: 65px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #a26f07;
    background: #eceff2;
    font-size: 1.7rem;
}

.sponsor-empty strong {
    display: block;
}

.sponsor-empty p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}


/* CONTACT */

.contact-section {
    background:
        radial-gradient(circle at 70% 55%, rgba(224,175,52,.10), transparent 24rem),
        var(--navy-900);
}

.contact-layout {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 52px;
    align-items: center;
}

.contact-logo img {
    width: 170px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 22px 35px rgba(0,0,0,.27));
}

.contact-copy p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.48);
}

.social-placeholder {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-placeholder > div {
    min-width: 150px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: rgba(255,255,255,.03);
}

.social-placeholder small,
.social-placeholder strong {
    display: block;
}

.social-placeholder small {
    color: var(--gold-300);
    font-size: .6rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.social-placeholder strong {
    margin-top: 4px;
    color: rgba(255,255,255,.62);
    font-size: .76rem;
}

.contact-domain {
    min-width: 220px;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.contact-domain span,
.contact-domain strong {
    display: block;
}

.contact-domain span {
    color: rgba(255,255,255,.36);
    font-size: .66rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-domain strong {
    margin-top: 8px;
    color: var(--gold-300);
}


/* DETAIL PAGE */

.inner-hero {
    padding: 180px 0 95px;
    background:
        radial-gradient(circle at 78% 25%, rgba(224,175,52,.08), transparent 27rem),
        linear-gradient(120deg, var(--navy-900), var(--navy-950));
}

.inner-hero-content {
    max-width: 960px;
}

.inner-hero h1 {
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: .93;
    letter-spacing: -.065em;
}

.inner-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.53);
    font-size: 1rem;
    line-height: 1.7;
}

.inner-content {
    min-height: 470px;
    padding: 90px 0 110px;
}

.light-page {
    color: var(--ink);
    background: var(--paper);
}

.gallery-page {
    background:
        radial-gradient(circle at 70% 20%, rgba(224,175,52,.06), transparent 28rem),
        var(--navy-950);
}

.detail-empty {
    min-height: 330px;
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 44px;
    border: 1px solid var(--light-line);
    border-radius: 28px;
    background: #fff;
}

.detail-empty-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
    background: #edf0f3;
    font-size: 1.7rem;
}

.detail-empty h2 {
    margin: 9px 0 10px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: -.04em;
}

.detail-empty p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.dark-empty {
    border-color: var(--dark-line);
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}

.dark-empty .detail-empty-icon {
    background: rgba(255,255,255,.05);
}

.dark-empty h2 {
    color: #fff;
}

.dark-empty p {
    color: rgba(255,255,255,.45);
}

.contact-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-detail-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--light-line);
    border-radius: 24px;
    background: #fff;
}

.contact-detail-card > span {
    color: #a26f07;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-detail-card strong {
    display: block;
    margin-top: 65px;
    font-size: 1.25rem;
}

.contact-detail-card p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.65;
}


/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(255,255,255,.07);
    background: var(--navy-950);
}

.footer-top {
    min-height: 165px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 55px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    letter-spacing: .07em;
}

.footer-brand span {
    margin-top: 5px;
    color: rgba(255,255,255,.35);
    font-size: .68rem;
}

.footer-nav {
    display: flex;
    gap: 18px;
}

.footer-nav a {
    color: rgba(255,255,255,.54);
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
}

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

.footer-social {
    justify-self: end;
    text-align: right;
}

.footer-social > span {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-300);
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-social > div {
    display: flex;
    gap: 12px;
}

.social-disabled {
    color: rgba(255,255,255,.35);
    font-size: .7rem;
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.30);
    font-size: .66rem;
    letter-spacing: .04em;
}


/* RESPONSIVE */

@media (max-width: 1160px) {

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-nav,
    .header-domain {
        display: none;
    }

    .nav-toggle {
        justify-self: end;
        width: 42px;
        height: 42px;
        display: grid;
        place-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 12px;
        background: rgba(255,255,255,.04);
    }

    .nav-toggle span {
        width: 19px;
        height: 1px;
        background: #fff;
    }

    .site-nav.open {
        position: fixed;
        inset: 90px 0 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 24px;
        background: rgba(2,9,20,.98);
        backdrop-filter: blur(15px);
    }

    .site-nav.open a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 1rem;
    }

    .site-nav.open a::after {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 840px;
    }

    .crest-stage {
        margin: 0 auto;
    }

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

    .hero-strip > div:nth-child(2) {
        border-right: 0;
    }

    .hero-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--dark-line);
    }

    .section-split,
    .section-head,
    .sponsor-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .section-copy {
        padding-top: 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-nav {
        justify-self: end;
    }

    .footer-social {
        grid-column: 1 / -1;
        justify-self: start;
        text-align: left;
    }

}

@media (max-width: 780px) {

    .site-container {
        width: 100%;
        padding-inline: 16px;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand img {
        width: 49px;
        height: 49px;
    }

    .brand-copy strong {
        font-size: 1.1rem;
    }

    .brand-copy span {
        font-size: .54rem;
    }

    .site-nav.open {
        inset: 76px 0 0;
    }

    .hero {
        min-height: auto;
        padding-top: 105px;
    }

    .hero-inner {
        min-height: 0;
        gap: 20px;
        padding-bottom: 38px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .crest-stage {
        width: 100%;
    }

    .hero-strip {
        grid-template-columns: 1fr;
    }

    .hero-strip > div {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid var(--dark-line);
    }

    .hero-strip > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 78px 0;
    }

    .section h2 {
        font-size: clamp(2.7rem, 12vw, 4.2rem);
    }

    .concept-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .concept-card {
        min-height: 245px;
    }

    .values-inline {
        grid-template-columns: 1fr;
    }

    .values-inline > div {
        border-right: 0;
        border-bottom: 1px solid var(--dark-line);
    }

    .values-inline > div:last-child {
        border-bottom: 0;
    }

    .empty-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 27px;
    }

    .gallery-placeholder {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 180px 180px;
    }

    .cell-a {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .cell-b {
        grid-column: 1;
        grid-row: 2;
    }

    .cell-c {
        grid-column: 2;
        grid-row: 2;
    }

    .cell-d {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .contact-layout {
        grid-template-columns: 100px 1fr;
        gap: 26px;
    }

    .contact-logo img {
        width: 100px;
    }

    .contact-domain {
        grid-column: 1 / -1;
        padding: 21px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .contact-detail-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero {
        padding: 135px 0 70px;
    }

    .detail-empty {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 35px 0;
    }

    .footer-nav,
    .footer-social {
        justify-self: start;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

}

@media (max-width: 480px) {

    .brand-copy span {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 15vw, 4rem);
    }

    .mini-tag {
        min-width: auto;
        transform: scale(.88);
    }

    .tag-bapak {
        left: -4%;
    }

    .tag-ibu {
        right: -4%;
    }

    .tag-anak {
        right: 4%;
        bottom: 3%;
    }

    .gallery-placeholder {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 190px);
    }

    .cell-a,
    .cell-b,
    .cell-c,
    .cell-d {
        grid-column: 1;
        grid-row: auto;
    }

    .social-placeholder {
        flex-direction: column;
    }

    .footer-bottom {
        min-height: 92px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

}


/* ==========================================================
   FMMSC PUBLIC COPY V005 REFINEMENTS
   ========================================================== */

.secondary-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 21px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.035);
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none;
    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}

.secondary-button:hover {
    border-color: rgba(224,175,52,.55);
    background: rgba(224,175,52,.06);
    color: var(--gold-300);
}

.invite-copy {
    margin-top: 28px !important;
    padding-left: 20px;
    border-left: 3px solid var(--gold-400);
    color: var(--ink) !important;
    font-weight: 720;
}

.sponsor-copy {
    max-width: 570px;
    margin: 22px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.contact-lead {
    max-width: 700px;
    line-height: 1.7;
}

.detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: #966604;
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none;
}

.detail-back-link span {
    transition: transform .18s ease;
}

.detail-back-link:hover span {
    transform: translateX(4px);
}

.detail-back-link.dark-link {
    color: var(--gold-300);
}

.contact-bottom-invite {
    margin-top: 22px;
    padding: 28px;
    border: 1px solid var(--light-line);
    border-radius: 22px;
    background: #fff;
}

.contact-bottom-invite strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
}

.contact-bottom-invite > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.contact-bottom-invite a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #966604;
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none;
}

@media (max-width: 780px) {
    .hero-actions {
        gap: 12px;
    }

    .secondary-button {
        width: fit-content;
    }
}


/* ============================================================
   PUBLIC SCHEDULE — DATA DRIVEN
   ============================================================ */

.public-schedule-grid {
    display: grid;
    gap: 18px;
}

.public-schedule-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);

    overflow: hidden;

    border: 1px solid var(--light-line);
    border-radius: 28px;

    background: #fff;
}

.public-schedule-date {
    min-height: 100%;

    display: grid;
    align-content: center;
    justify-items: center;

    color: var(--gold-300);

    background:
        radial-gradient(
            circle at 50% 8%,
            rgba(224, 175, 52, .15),
            transparent 11rem
        ),
        linear-gradient(
            155deg,
            var(--navy-800),
            var(--navy-950)
        );
}

.public-schedule-date span {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.public-schedule-date strong {
    margin-top: 4px;

    font-size: 2.5rem;
    line-height: 1;
}

.public-schedule-body {
    padding: 30px 32px;
}

.public-schedule-body h2 {
    margin: 8px 0 0;

    color: var(--ink);

    font-size: clamp(1.7rem, 4vw, 2.8rem);
    letter-spacing: -.04em;
}

.public-schedule-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    margin-top: 22px;
}

.public-schedule-meta > div {
    padding: 14px;

    border: 1px solid var(--light-line);
    border-radius: 14px;

    background: #f7f8fa;
}

.public-schedule-meta span,
.public-schedule-meta strong {
    display: block;
}

.public-schedule-meta span {
    color: var(--muted);

    font-size: .66rem;
    font-weight: 800;
}

.public-schedule-meta strong {
    margin-top: 5px;

    color: var(--ink);

    font-size: .82rem;
}

.public-schedule-address {
    margin: 16px 0 0;

    color: var(--muted);

    font-size: .78rem;
    line-height: 1.6;
}

.public-schedule-note {
    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid var(--light-line);

    color: #946607;

    font-size: .73rem;
    font-weight: 750;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .public-schedule-card {
        grid-template-columns: 1fr;
    }

    .public-schedule-date {
        min-height: 90px;

        grid-auto-flow: column;
        gap: 7px;
    }

    .public-schedule-date strong {
        font-size: 1.8rem;
    }

    .public-schedule-meta {
        grid-template-columns: 1fr;
    }

    .public-schedule-body {
        padding: 24px;
    }
}


/* JADWAL MAIN V002 — ROLE PRICING */

.public-schedule-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 920px) {
    .public-schedule-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .public-schedule-meta {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   JADWAL MAIN V003 — PUBLIC CAPACITY + MAPS
   ============================================================ */

.public-schedule-body > h2 {
    margin-top: 0;
}

.public-schedule-info-grid {
    display: grid;
    grid-template-columns:
        minmax(140px, .8fr)
        minmax(260px, 1.55fr)
        minmax(145px, .8fr)
        minmax(145px, .8fr);
    gap: 10px;

    margin-top: 22px;
}

.public-schedule-info {
    min-width: 0;

    padding: 14px;

    border: 1px solid var(--light-line);
    border-radius: 14px;

    background: #f7f8fa;
}

.public-schedule-info > span,
.public-schedule-info > strong {
    display: block;
}

.public-schedule-info > span {
    color: var(--muted);

    font-size: .66rem;
    font-weight: 800;
}

.public-schedule-info > strong {
    margin-top: 5px;

    color: var(--ink);

    font-size: .82rem;
    line-height: 1.4;
}

.public-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: 8px;

    color: #946607;

    font-size: .68rem;
    font-weight: 850;
    text-decoration: none;
}

.public-map-link:hover {
    text-decoration: underline;
}

.public-capacity-panel {
    margin-top: 14px;
    padding: 16px;

    border: 1px solid rgba(213, 152, 22, .24);
    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 247, 228, .92),
            rgba(255, 255, 255, .96)
        );
}

.public-capacity-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 11px;
}

.public-capacity-heading span {
    color: var(--ink);

    font-size: .74rem;
    font-weight: 900;
}

.public-capacity-heading small {
    color: var(--muted);

    font-size: .62rem;
}

.public-capacity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.public-role-capacity {
    padding: 12px 13px;

    border: 1px solid var(--light-line);
    border-radius: 13px;

    background: #fff;
}

.public-role-capacity-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.public-role-capacity-head strong {
    color: var(--ink);

    font-size: .75rem;
}

.public-role-capacity-head span {
    color: #946607;

    font-size: .72rem;
    font-weight: 900;
}

.public-role-capacity p {
    margin: 5px 0 0;

    color: var(--muted);

    font-size: .66rem;
    font-weight: 700;
}

.public-schedule-address {
    margin-top: 13px;
}

.public-schedule-note {
    margin-top: 15px;
}

@media (max-width: 1080px) {
    .public-schedule-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .public-schedule-info-grid,
    .public-capacity-grid {
        grid-template-columns: 1fr;
    }

    .public-capacity-heading {
        display: block;
    }

    .public-capacity-heading small {
        display: block;
        margin-top: 3px;
    }
}


/* ============================================================
   LANDING — JADWAL MINGGU INI V001
   ============================================================ */

.landing-week-grid {
    display: grid;
    gap: 16px;

    margin-top: 50px;
}

.landing-week-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);

    overflow: hidden;

    border: 1px solid var(--light-line);
    border-radius: 27px;

    background: #fff;
}

.landing-week-date {
    min-height: 100%;

    display: grid;
    align-content: center;
    justify-items: center;

    border-right: 1px solid rgba(224, 175, 52, .16);

    color: var(--gold-300);

    background:
        radial-gradient(
            circle at 50% 8%,
            rgba(224, 175, 52, .15),
            transparent 10rem
        ),
        linear-gradient(
            155deg,
            var(--navy-800),
            var(--navy-950)
        );
}

.landing-week-date span {
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.landing-week-date strong {
    margin-top: 4px;

    font-size: 2.45rem;
    line-height: 1;
}

.landing-week-body {
    min-width: 0;

    padding: 30px 32px;
}

.landing-week-body h3 {
    margin: 8px 0 0;

    color: var(--ink);

    font-size: clamp(1.55rem, 4vw, 2.45rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.landing-week-info {
    display: grid;
    grid-template-columns:
        minmax(130px, .75fr)
        minmax(240px, 1.35fr)
        minmax(130px, .75fr)
        minmax(130px, .75fr);
    gap: 9px;

    margin-top: 20px;
}

.landing-week-info > div {
    min-width: 0;

    padding: 12px 13px;

    border: 1px solid var(--light-line);
    border-radius: 13px;

    background: #f7f8fa;
}

.landing-week-info span,
.landing-week-info strong {
    display: block;
}

.landing-week-info span {
    color: var(--muted);

    font-size: .62rem;
    font-weight: 800;
}

.landing-week-info strong {
    margin-top: 4px;

    color: var(--ink);

    font-size: .78rem;
    line-height: 1.45;
}

.landing-week-venue a {
    display: inline-flex;

    margin-top: 7px;

    color: #946607;

    font-size: .64rem;
    font-weight: 850;
    text-decoration: none;
}

.landing-week-venue a:hover {
    text-decoration: underline;
}

.landing-slot-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;

    margin-top: 10px;
}

.landing-slot-row > div {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 7px 10px;
    align-items: baseline;

    padding: 12px 13px;

    border: 1px solid rgba(213, 152, 22, .22);
    border-radius: 13px;

    background: #fffaf0;
}

.landing-slot-row > div > span {
    color: var(--ink);

    font-size: .7rem;
    font-weight: 900;
}

.landing-slot-row > div > strong {
    color: #946607;

    font-size: .78rem;
}

.landing-slot-row > div > small {
    justify-self: end;

    color: var(--muted);

    font-size: .64rem;
    font-weight: 700;
}

.landing-slot-row > div.is-full {
    border-color: var(--light-line);
    background: #f7f8fa;
}

.landing-slot-row > div.is-full > strong {
    color: var(--muted);
}

.landing-week-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 15px;
    padding-top: 14px;

    border-top: 1px solid var(--light-line);
}

.landing-week-foot > span {
    color: var(--muted);

    font-size: .67rem;
    line-height: 1.5;
}

.landing-week-foot > a {
    flex: 0 0 auto;

    display: inline-flex;
    gap: 7px;

    color: #946607;

    font-size: .68rem;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .landing-week-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .landing-week-card {
        grid-template-columns: 1fr;
    }

    .landing-week-date {
        min-height: 82px;

        grid-auto-flow: column;
        gap: 7px;

        border-right: 0;
        border-bottom: 1px solid rgba(224, 175, 52, .16);
    }

    .landing-week-date strong {
        font-size: 1.7rem;
    }

    .landing-week-body {
        padding: 24px;
    }

    .landing-week-info,
    .landing-slot-row {
        grid-template-columns: 1fr;
    }

    .landing-slot-row > div {
        grid-template-columns: auto auto;
    }

    .landing-slot-row > div > small {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .landing-week-foot {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ============================================================
   LANDING MAX 2 + PUBLIC COMPACT SCHEDULE V001
   ============================================================ */

.landing-field-names {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: .61rem;
    font-weight: 700;
}

.landing-more-schedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid var(--light-line);
    border-radius: 15px;
    background: #fff;
}

.landing-more-schedule > span {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 750;
}

.landing-more-schedule a {
    color: #946607;
    font-size: .7rem;
    font-weight: 900;
    text-decoration: none;
}

.public-schedule-compact {
    display: grid;
    gap: 9px;
}

.schedule-month-heading {
    margin: 30px 0 6px;
    color: #946607;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.schedule-month-heading:first-child {
    margin-top: 0;
}

.schedule-compact-item {
    overflow: hidden;
    border: 1px solid var(--light-line);
    border-radius: 18px;
    background: #fff;
}

.schedule-compact-item summary {
    display: grid;
    grid-template-columns:
        66px
        minmax(230px, 1.35fr)
        minmax(140px, .65fr)
        minmax(150px, .65fr)
        auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
}

.schedule-compact-item summary::-webkit-details-marker {
    display: none;
}

.schedule-compact-date {
    display: grid;
    justify-items: center;
    padding: 8px 6px;
    border-radius: 12px;
    background: var(--navy-950);
    color: var(--gold-300);
}

.schedule-compact-date span {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.schedule-compact-date strong {
    margin-top: 2px;
    font-size: 1.35rem;
}

.schedule-compact-main {
    min-width: 0;
}

.schedule-compact-main h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    letter-spacing: -.02em;
}

.schedule-compact-main p,
.schedule-fields-line {
    display: block;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .67rem;
    line-height: 1.45;
}

.schedule-fields-line {
    color: #946607;
    font-weight: 750;
}

.schedule-compact-price,
.schedule-compact-capacity {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 8px;
    align-items: baseline;
}

.schedule-compact-price span,
.schedule-compact-capacity span {
    color: var(--muted);
    font-size: .61rem;
}

.schedule-compact-price strong,
.schedule-compact-capacity b {
    color: var(--ink);
    font-size: .66rem;
}

.schedule-expand {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #946607;
    font-size: .65rem;
    font-weight: 900;
}

.schedule-compact-item[open] .schedule-expand b {
    transform: rotate(180deg);
}

.schedule-compact-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr);
    gap: 14px;
    padding: 14px 18px 17px 98px;
    border-top: 1px solid var(--light-line);
    background: #fbfbfc;
}

.schedule-detail-status {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.schedule-detail-status > div {
    padding: 10px 12px;
    border: 1px solid var(--light-line);
    border-radius: 11px;
    background: #fff;
}

.schedule-detail-status span,
.schedule-detail-status strong {
    display: block;
}

.schedule-detail-status span {
    color: var(--muted);
    font-size: .6rem;
    font-weight: 800;
}

.schedule-detail-status strong {
    margin-top: 3px;
    color: var(--ink);
    font-size: .68rem;
}

.schedule-detail-actions {
    display: grid;
    align-content: center;
    gap: 7px;
}

.schedule-detail-actions a {
    width: fit-content;
    color: #946607;
    font-size: .68rem;
    font-weight: 900;
    text-decoration: none;
}

.schedule-detail-actions > span {
    color: var(--muted);
    font-size: .64rem;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .schedule-compact-item summary {
        grid-template-columns: 60px minmax(200px, 1fr) auto;
    }

    .schedule-compact-price,
    .schedule-compact-capacity {
        display: none;
    }
}

@media (max-width: 720px) {
    .landing-more-schedule {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-compact-item summary {
        grid-template-columns: 54px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 13px;
    }

    .schedule-expand {
        font-size: 0;
    }

    .schedule-expand b {
        font-size: .8rem;
    }

    .schedule-compact-detail {
        grid-template-columns: 1fr;
        padding: 13px;
    }

    .schedule-detail-status {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   FAMILY FLOW V002 — PUBLIC SCALE + MEMBER CTA + SCHEDULE DETAIL
   ============================================================ */

html {
    font-size: 17px;
}

.brand-copy strong,
.footer-brand strong {
    font-size: .95rem;
}

.brand-copy span,
.footer-brand span {
    font-size: .64rem;
}

.header-member-cta,
.nav-member-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(213, 152, 22, .32);
    border-radius: 10px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: .68rem;
    font-weight: 900;
    text-decoration: none;
}

.nav-member-cta {
    display: none;
}

.schedule-list-v2 {
    display: grid;
    gap: 9px;
}

.schedule-row-card {
    display: grid;
    grid-template-columns:
        64px
        minmax(240px, 1.3fr)
        minmax(145px, .55fr)
        auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--light-line);
    border-radius: 17px;
    background: #fff;
}

.schedule-row-date {
    display: grid;
    justify-items: center;
    padding: 8px;
    border-radius: 11px;
    background: var(--navy-950);
    color: var(--gold-300);
}

.schedule-row-date span {
    font-size: .61rem;
    font-weight: 900;
}

.schedule-row-date strong {
    margin-top: 2px;
    font-size: 1.45rem;
}

.schedule-row-main h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.02rem;
    letter-spacing: -.025em;
}

.schedule-row-main p,
.schedule-row-main small {
    display: block;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.45;
}

.schedule-row-main small {
    color: #946607;
    font-weight: 750;
}

.schedule-row-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.schedule-row-slots > div {
    padding: 8px;
    border: 1px solid var(--light-line);
    border-radius: 10px;
    background: #f8f9fb;
    text-align: center;
}

.schedule-row-slots span,
.schedule-row-slots strong {
    display: block;
}

.schedule-row-slots span {
    color: var(--muted);
    font-size: .61rem;
}

.schedule-row-slots strong {
    margin-top: 2px;
    color: var(--ink);
    font-size: .72rem;
}

.schedule-row-actions {
    display: grid;
    gap: 7px;
    min-width: 112px;
}

.schedule-row-actions a {
    min-height: 36px;
    display: grid;
    place-items: center;
    padding: 0 11px;
    border-radius: 9px;
    font-size: .66rem;
    font-weight: 900;
    text-decoration: none;
}

.schedule-detail-button {
    border: 1px solid var(--light-line);
    background: #fff;
    color: var(--ink);
}

.schedule-register-button {
    border: 1px solid var(--gold-500);
    background: var(--gold-500);
    color: var(--navy-950);
}

.schedule-detail-hero {
    padding: 74px 0 32px;
    color: #fff;
    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(224, 175, 52, .14),
            transparent 25rem
        ),
        linear-gradient(
            145deg,
            var(--navy-800),
            var(--navy-950)
        );
}

.schedule-back-link {
    color: var(--gold-300);
    font-size: .7rem;
    font-weight: 850;
    text-decoration: none;
}

.schedule-detail-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
}

.schedule-detail-heading h1 {
    margin: 7px 0 0;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.schedule-detail-heading p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
}

.schedule-detail-register {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 15px;
    border-radius: 11px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: .72rem;
    font-weight: 900;
    text-decoration: none;
}

.schedule-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 17px;
    align-items: start;
}

.schedule-detail-main {
    display: grid;
    gap: 13px;
}

.schedule-info-card,
.roster-section,
.schedule-detail-side section {
    padding: 20px;
    border: 1px solid var(--light-line);
    border-radius: 18px;
    background: #fff;
}

.schedule-info-grid {
    display: grid;
    grid-template-columns:
        minmax(220px, 1.3fr)
        minmax(120px, .6fr)
        minmax(120px, .6fr);
    gap: 10px;
}

.schedule-info-grid > div {
    padding: 12px;
    border: 1px solid var(--light-line);
    border-radius: 11px;
    background: #f8f9fb;
}

.schedule-info-grid span,
.schedule-info-grid strong,
.schedule-info-grid small {
    display: block;
}

.schedule-info-grid span {
    color: var(--muted);
    font-size: .63rem;
    font-weight: 800;
}

.schedule-info-grid strong {
    margin-top: 4px;
    color: var(--ink);
    font-size: .76rem;
}

.schedule-info-grid small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .66rem;
}

.schedule-info-grid a {
    display: inline-block;
    margin-top: 7px;
    color: #946607;
    font-size: .67rem;
    font-weight: 850;
    text-decoration: none;
}

.schedule-live-slots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.schedule-live-slots article {
    padding: 14px;
    border: 1px solid rgba(213, 152, 22, .22);
    border-radius: 14px;
    background: #fffaf0;
}

.schedule-live-slots span,
.schedule-live-slots strong,
.schedule-live-slots small {
    display: block;
}

.schedule-live-slots span {
    color: #946607;
    font-size: .66rem;
    font-weight: 850;
}

.schedule-live-slots strong {
    margin-top: 3px;
    color: var(--ink);
    font-size: 1.3rem;
}

.schedule-live-slots small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .65rem;
}

.roster-section-heading h2 {
    margin: 6px 0 0;
    color: var(--ink);
    font-size: 1.35rem;
    letter-spacing: -.035em;
}

.roster-section-heading p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.55;
}

.roster-login-card {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--light-line);
    border-radius: 14px;
    background: #f8f9fb;
}

.roster-login-card > div:first-child strong,
.roster-login-card > div:first-child span {
    display: block;
}

.roster-login-card > div:first-child strong {
    color: var(--ink);
    font-size: .78rem;
}

.roster-login-card > div:first-child span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.5;
}

.roster-login-card form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px;
    margin-top: 12px;
}

.roster-login-card input,
.roster-login-card button {
    min-height: 42px;
    border-radius: 9px;
    font: inherit;
    font-size: .7rem;
}

.roster-login-card input {
    padding: 0 11px;
    border: 1px solid var(--light-line);
    background: #fff;
}

.roster-login-card button {
    padding: 0 13px;
    border: 1px solid var(--gold-500);
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 900;
}

.roster-login-error {
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    background: #faeeee;
    color: #963d3d;
    font-size: .67rem;
}

.roster-access-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
    padding: 9px 11px;
    border-radius: 10px;
    background: #f8f9fb;
    color: var(--muted);
    font-size: .66rem;
}

.roster-access-bar button {
    border: 0;
    background: transparent;
    color: #946607;
    font: inherit;
    font-size: .64rem;
    font-weight: 850;
    cursor: pointer;
}

.roster-family-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.roster-family-summary > div {
    padding: 10px 11px;
    border: 1px solid var(--light-line);
    border-radius: 10px;
    background: #fff;
}

.roster-family-summary span,
.roster-family-summary strong {
    display: block;
}

.roster-family-summary span {
    color: var(--muted);
    font-size: .61rem;
}

.roster-family-summary strong {
    margin-top: 3px;
    color: var(--ink);
    font-size: 1rem;
}

.roster-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.roster-role-card {
    overflow: hidden;
    border: 1px solid var(--light-line);
    border-radius: 13px;
    background: #fff;
}

.roster-role-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-bottom: 1px solid var(--light-line);
    background: #f8f9fb;
}

.roster-role-head span,
.roster-role-head strong {
    display: block;
}

.roster-role-head span {
    color: #946607;
    font-size: .61rem;
    font-weight: 850;
}

.roster-role-head strong {
    margin-top: 2px;
    color: var(--ink);
    font-size: .74rem;
}

.roster-role-head small {
    color: var(--muted);
    font-size: .62rem;
}

.roster-player-list {
    display: grid;
}

.roster-player-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    padding: 10px 11px;
    border-bottom: 1px solid var(--light-line);
}

.roster-player-row:last-child {
    border-bottom: 0;
}

.roster-sequence {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-950);
    color: var(--gold-300);
    font-size: .62rem;
    font-weight: 900;
}

.roster-player-name strong,
.roster-player-name small {
    display: block;
}

.roster-player-name strong {
    color: var(--ink);
    font-size: .72rem;
}

.roster-player-name small {
    margin-top: 2px;
    color: #946607;
    font-size: .58rem;
    font-weight: 750;
}

.roster-payment-status {
    padding: 5px 7px;
    border-radius: 999px;
    font-size: .57rem;
    font-weight: 900;
    white-space: nowrap;
}

.roster-payment-status.is-paid {
    background: rgba(47, 118, 80, .09);
    color: #2f7650;
}

.roster-payment-status.is-pending {
    background: #fff2d6;
    color: #95670c;
}

.roster-empty {
    padding: 18px;
    color: var(--muted);
    font-size: .66rem;
    text-align: center;
}

.schedule-detail-side {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 92px;
}

.schedule-detail-side h3 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 1rem;
}

.schedule-detail-side p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.5;
}

.schedule-detail-side a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 11px;
    border-radius: 9px;
    background: var(--navy-950);
    color: #fff;
    font-size: .68rem;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 980px) {
    .header-member-cta {
        display: none;
    }

    .nav-member-cta {
        display: inline-flex;
    }

    .schedule-row-card {
        grid-template-columns:
            60px
            minmax(0, 1fr)
            auto;
    }

    .schedule-row-slots {
        display: none;
    }

    .schedule-detail-layout {
        grid-template-columns: 1fr;
    }

    .schedule-detail-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .schedule-row-card {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .schedule-row-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .schedule-detail-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-info-grid,
    .schedule-live-slots,
    .roster-role-grid,
    .roster-family-summary,
    .schedule-detail-side {
        grid-template-columns: 1fr;
    }

    .roster-login-card form {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   FAMILY MAN V005 — LIVE ROSTER MEMBER ID INPUT
   ============================================================ */

.roster-login-card form {
    grid-template-columns:
        minmax(220px, 1fr)
        minmax(220px, 1fr)
        auto;
}

.roster-member-id-input {
    min-height: 42px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--light-line);
    border-radius: 9px;
    background: #fff;
}

.roster-member-id-input:focus-within {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(213,152,22,.10);
}

.roster-member-id-input .member-id-prefix {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-right: 1px solid var(--light-line);
    background: #e9edf2;
    color: #5c6777;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .02em;
    user-select: none;
}

.roster-member-id-input input {
    min-width: 0;
    min-height: 40px;
    padding: 0 11px;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;
    background: #fff !important;
    color: #08182d !important;
    -webkit-text-fill-color: #08182d !important;
    caret-color: #08182d !important;
    box-shadow: none !important;
    font: inherit;
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .02em;
}

.roster-member-id-input input::placeholder {
    color: #97a0ac !important;
    -webkit-text-fill-color: #97a0ac !important;
    opacity: 1;
}

.roster-login-card > form > input {
    color: #08182d !important;
    -webkit-text-fill-color: #08182d !important;
    caret-color: #08182d !important;
    background: #fff !important;
}

@media (max-width: 720px) {
    .roster-login-card form {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FMMSC V018 — HEADER SPACE FOR ASPIRASI & VOTING
   ============================================================ */
@media (min-width: 1161px) and (max-width: 1320px) {
    .site-nav {
        gap: 15px;
    }

    .site-nav a {
        font-size: .72rem;
    }
}


/* ============================================================
   V018.5.8 — ACCESSIBILITY / WCAG AA POLISH
   ============================================================ */

:root {
    /* Slightly darker on light surfaces so normal text reaches AA. */
    --muted: #626d7d;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.section-light .section-label,
.empty-kicker {
    color: #875b05;
}

.section-light .arrow-link {
    color: #875b05;
}

.section-dark .section-head > p,
.section-gallery .section-action-copy.dark p,
.concept-card p,
.contact-section .contact-copy p,
.contact-section .contact-lead {
    color: rgba(255,255,255,.68);
}

.contact-domain span {
    color: rgba(255,255,255,.68);
}

.footer-brand span {
    color: rgba(255,255,255,.62);
}

.footer-bottom {
    color: rgba(255,255,255,.62);
}

/* Respect the visitor's operating-system reduced-motion preference. */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   FMMSC V018.6.12.3 — MEMBER CTA NAVIGATION
   Ruang Member is a dedicated CTA, not a primary navigation item.
   ============================================================ */
.header-member-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-member-actions .header-member-cta {
    white-space: nowrap;
}

.header-room-cta,
.nav-room-cta {
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.header-room-cta:hover,
.header-room-cta.is-current,
.nav-room-cta:hover,
.nav-room-cta.is-current {
    border-color: rgba(224,175,52,.56);
    background: rgba(224,175,52,.12);
    color: #fff;
}

.header-register-cta,
.nav-register-cta {
    border-color: rgba(213,152,22,.32);
    background: var(--gold-500);
    color: var(--navy-950);
}

.nav-member-actions {
    display: none;
}

@media (max-width: 1160px) {
    .header-member-actions {
        display: none;
    }

    .site-nav.open .nav-member-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
        padding-top: 4px;
    }

    .site-nav.open .nav-member-actions .nav-member-cta {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border-bottom: 0;
        border-radius: 12px;
        font-size: .82rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-nav.open .nav-member-actions {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FMMSC V018.6.14 — HERO MEMBER ACCESS CTA
   ============================================================ */
.member-access-button {
    border-color: rgba(224,175,52,.48);
    background: rgba(224,175,52,.09);
    color: var(--gold-300);
}

.member-access-button:hover {
    border-color: rgba(224,175,52,.78);
    background: rgba(224,175,52,.16);
    color: #fff;
}

/* ============================================================
   FMMSC V018.6.15.3 — ROBUST MOBILE NAV DRAWER
   Drawer lives outside the fixed header to avoid clipping/containing-block bugs.
   ============================================================ */
.mobile-nav-drawer {
    display: none;
}

@media (max-width: 1160px) {
    body.nav-open {
        overflow: hidden !important;
        overscroll-behavior: none;
    }

    .mobile-nav-drawer[hidden] {
        display: none !important;
    }

    .mobile-nav-drawer.is-open {
        position: fixed !important;
        top: var(--fmmsc-mobile-header-height, 90px) !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 1199 !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background: #020914 !important;
        color: #fff;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .mobile-nav-drawer-inner {
        min-height: 100%;
        display: grid;
        align-content: start;
        gap: 18px;
        padding: 18px var(--page-gutter, 24px) calc(28px + env(safe-area-inset-bottom));
        background:
            radial-gradient(circle at 85% 10%, rgba(224,175,52,.08), transparent 18rem),
            #020914;
    }

    .mobile-nav-links {
        display: grid;
    }

    .mobile-nav-links > a {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 0 4px;
        border-bottom: 1px solid rgba(255,255,255,.09);
        color: rgba(255,255,255,.82);
        font-size: 1rem;
        font-weight: 800;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(224,175,52,.15);
        touch-action: manipulation;
    }

    .mobile-nav-links > a.is-active,
    .mobile-nav-links > a[aria-current="page"] {
        color: #f1c75d;
    }

    .mobile-nav-links > a > span {
        color: #e1ad31;
        font-size: 1.05rem;
    }

    .mobile-nav-member-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-top: 2px;
    }

    .mobile-nav-member-actions > a {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 13px;
        color: #fff;
        background: rgba(255,255,255,.06);
        font-size: .88rem;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        touch-action: manipulation;
    }

    .mobile-nav-member-actions > .mobile-nav-register {
        border-color: rgba(213,152,22,.4);
        background: #e1ad31;
        color: #07182d;
    }

    .mobile-nav-member-actions > .mobile-nav-room.is-current {
        border-color: rgba(224,175,52,.62);
        background: rgba(224,175,52,.14);
    }

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

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

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

    .nav-toggle span {
        transition: transform .18s ease, opacity .18s ease;
    }
}

@media (max-width: 720px) {
    .mobile-nav-drawer-inner {
        padding: 12px 14px calc(24px + env(safe-area-inset-bottom));
    }

    .mobile-nav-member-actions {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FMMSC V018.6.15.3 — ONE MOBILE SCHEDULE FILTER
   The visible category cards are the actual filters; no duplicate chips.
   ============================================================ */
.schedule-mobile-category-filter {
    display: none;
}

@media (max-width: 720px) {
    .public-site .schedule-calendar-legend-desktop {
        display: none !important;
    }

    .public-site .schedule-mobile-category-filter {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin: 0 0 24px;
    }

    .public-site .schedule-mobile-category-filter > button {
        min-width: 0;
        min-height: 54px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0 14px !important;
        border: 1px solid #d8dee6 !important;
        border-radius: 14px !important;
        background: #fff !important;
        color: #5e6a7a !important;
        box-shadow: 0 3px 10px rgba(7,24,45,.025);
        font: inherit !important;
        font-size: .82rem !important;
        font-weight: 850 !important;
        line-height: 1.2;
        text-align: left;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(225,173,49,.17);
    }

    .public-site .schedule-mobile-category-filter > button.is-all {
        grid-column: 1 / -1;
        border-color: rgba(7,24,45,.2) !important;
    }

    .public-site .schedule-mobile-category-filter > button > span {
        min-width: 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .public-site .schedule-mobile-category-filter > button i {
        width: 9px;
        height: 9px;
        flex: 0 0 9px;
        display: block;
        border-radius: 50%;
        background: #8a95a3;
    }

    .public-site .schedule-mobile-category-filter > button.is-registration i { background: #d99b11; }
    .public-site .schedule-mobile-category-filter > button.is-checkpoint i { background: #50647e; }
    .public-site .schedule-mobile-category-filter > button.is-final i { background: #7b5aae; }
    .public-site .schedule-mobile-category-filter > button.is-match i { background: #2f7a58; }

    .public-site .schedule-mobile-category-filter > button > strong {
        min-width: 28px;
        height: 28px;
        display: inline-grid;
        place-items: center;
        padding: 0 6px;
        border-radius: 999px;
        background: #f0f3f6;
        color: #5b6878;
        font-size: .72rem;
        font-weight: 950;
    }

    .public-site .schedule-mobile-category-filter > button.is-active {
        border-color: #07182d !important;
        background: #07182d !important;
        color: #fff !important;
        box-shadow: 0 9px 22px rgba(7,24,45,.14);
    }

    .public-site .schedule-mobile-category-filter > button.is-active > strong {
        background: rgba(255,255,255,.15);
        color: #fff;
    }

    .public-site .schedule-mobile-category-filter > button:active {
        transform: scale(.985);
    }

    .public-site .schedule-mobile-detail-heading {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }

    .public-site .schedule-mobile-detail-heading > small {
        display: block;
        margin-top: 5px;
        color: #718092;
        font-size: .78rem !important;
        line-height: 1.45;
    }

    .public-site .schedule-mobile-agenda,
    .public-site .schedule-mobile-event {
        position: relative;
        pointer-events: auto !important;
    }

    .public-site .schedule-mobile-event {
        z-index: 1;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(225,173,49,.16);
    }
}
