:root {
    --ink: #101A30;
    --ink-2: #182448;
    --ink-3: #0C1424;
    --parchment: #F7EFDF;
    --parchment-2: #FCF8EE;
    --gold: #E3A537;
    --gold-2: #C6862A;
    --gold-soft: #F0C875;
    --sindoor: #B4402F;
    --sage: #3F6C51;
    --text-dark: #241F16;
    --text-muted: #645C48;
    --line: #E3D6B8;
    --shadow: 0 20px 60px -20px rgba(16, 26, 48, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--parchment);
    color: var(--text-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    margin: 0;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

a {
    color: inherit;
}

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

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--gold-2);
    font-weight: 600;
}

.section {
    padding: 96px 0;
    position: relative;
}

.section-head {
    max-width: 640px;
    margin-bottom: 52px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-top: 10px;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 14px;
    font-size: 16.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: #241a06;
    box-shadow: 0 10px 30px -10px rgba(227, 165, 55, 0.6);
}

.btn-gold:hover {
    background: var(--gold-soft);
}

.btn-outline {
    border-color: rgba(247, 239, 223, 0.4);
    color: var(--parchment);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.btn-dark {
    background: var(--ink);
    color: var(--parchment-2);
}

.btn-dark:hover {
    background: var(--ink-2);
}

.btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
}

.btn-wide {
    width: 100%;
    justify-content: center;
}

/* ---------- NAV ---------- */
#nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 26, 48, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 165, 55, 0.25);
    border-radius: 100px;
    padding: 7px 8px 7px 18px;
    box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.5);
    max-width: 94vw;
}

#nav .brand {
    font-family: 'Marcellus', serif;
    color: var(--gold-soft);
    font-size: 14px;
    padding-right: 14px;
    margin-right: 6px;
    border-right: 1px solid rgba(227, 165, 55, 0.25);
    white-space: nowrap;
}

#nav a {
    color: rgba(247, 239, 223, 0.78);
    text-decoration: none;
    font-size: 12.5px;
    font-family: 'IBM Plex Mono', monospace;
    padding: 9px 13px;
    border-radius: 100px;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

#nav a:hover {
    background: rgba(227, 165, 55, 0.14);
    color: var(--gold-soft);
}

#nav .navcta {
    background: var(--gold);
    color: #241a06;
    font-weight: 700;
    margin-left: 4px;
}

/* ---------- MOBILE NAV ---------- */
#mobileNav {
    display: none;
}

@media (max-width:900px) {
    #nav {
        display: none;
    }

    #mobileNav {
        display: block;
    }
}

.mobileBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(12, 18, 36, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(227, 165, 55, 0.2);
}

.mobileBar .brand {
    font-family: 'Marcellus', serif;
    color: var(--gold-soft);
    font-size: 15px;
}

#hamburger {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(227, 165, 55, 0.3);
    background: rgba(227, 165, 55, 0.08);
    color: var(--gold-soft);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

#mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 599;
    background: rgba(12, 18, 36, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
}

#mobileMenu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mobileMenu a {
    color: rgba(247, 239, 223, 0.85);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    letter-spacing: 0.03em;
    padding: 16px 24px;
}

#mobileMenu a.navcta {
    margin-top: 14px;
    background: var(--gold);
    color: #241a06;
    border-radius: 100px;
    font-weight: 700;
}

#mobileMenu .closeMenu {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(247, 239, 223, 0.7);
    font-size: 24px;
    cursor: pointer;
}

/* ---------- HERO ---------- */
#hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--parchment-2);
    overflow: hidden;
    background: var(--ink);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 32%;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.6s ease;
}

.hero-slide.active {
    opacity: 1;
    animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 18, 36, 0.55) 0%, rgba(12, 18, 36, 0.86) 62%, var(--ink) 100%);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    right: max(20px, 5vw);
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(247, 239, 223, 0.5);
    background: rgba(247, 239, 223, 0.15);
    padding: 0;
    cursor: pointer;
    transition: all .3s ease;
}

.hero-dots button.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 20px;
    border-radius: 5px;
}

#hero .archwrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
}

#hero .arch-svg {
    width: min(1100px, 140vw);
    height: auto;
}

#hero .arch-path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.4;
    opacity: 0.55;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: drawArch 2.6s ease forwards 0.3s;
}

@keyframes drawArch {
    to {
        stroke-dashoffset: 0;
    }
}

#hero .heroinner {
    position: relative;
    z-index: 2;
    padding: 96px clamp(20px, 5vw, 64px) 56px;
    width: 100%;
}

@media (max-width:900px) {
    #hero {
        min-height: auto;
    }

    #hero .heroinner {
        padding: 88px 25px 48px;
    }
}

@media (max-width:560px) {
    #hero .heroinner {
        padding: 78px 15px 42px;
    }
}

.datestamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(227, 165, 55, 0.55);
    border-radius: 100px;
    padding: 8px 8px 8px 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    color: var(--gold-soft);
    background: rgba(227, 165, 55, 0.08);
    margin-bottom: 26px;
}

.datestamp b {
    background: var(--gold);
    color: #241a06;
    border-radius: 100px;
    padding: 5px 12px;
    font-weight: 700;
}

#hero h1 {
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.06;
    max-width: 920px;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

#hero h1 em {
    font-style: normal;
    color: var(--gold-soft);
}

#hero .subline {
    margin-top: 22px;
    font-size: 17px;
    color: rgba(247, 239, 223, 0.86);
    max-width: 620px;
}

#hero .venueline {
    margin-top: 6px;
    font-size: 14.5px;
    color: rgba(247, 239, 223, 0.65);
    font-family: 'IBM Plex Mono', monospace;
}

#hero .herobtns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 38px;
}

#hero .heroorgs {
    margin-top: 56px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

#hero .heroorgs .chip {
    background: rgba(247, 239, 223, 0.94);
    border-radius: 14px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    height: 44px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
}

#hero .heroorgs .chip img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

#hero .heroorgs .hostline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: rgba(247, 239, 223, 0.55);
}

/* scroll cue */
.scrollcue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 44px;
    background: linear-gradient(var(--gold), transparent);
    z-index: 3;
}

.scrollcue::after {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: cueMove 2.2s ease-in-out infinite;
}

@keyframes cueMove {
    0% {
        top: 0;
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        top: 44px;
        opacity: 0;
    }
}

/* ---------- DIVIDER (signature arch motif) ---------- */
.archdivider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--parchment);
}

.archdivider svg {
    width: 100%;
    height: auto;
    display: block;
}

.archdivider path {
    fill: none;
    stroke: var(--gold-2);
    stroke-width: 1;
    opacity: 0.45;
}

/* ---------- ABOUT ---------- */
#about {
    background: var(--parchment);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
}

.welcome-card {
    background: var(--parchment-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 38px;
    box-shadow: var(--shadow);
}

.welcome-card p {
    margin: 0 0 14px;
    color: var(--text-dark);
}

.welcome-card .sign {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.orgs-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.org-card {
    background: var(--ink);
    color: var(--parchment-2);
    border-radius: 18px;
    padding: 24px 26px;
    border: 1px solid rgba(227, 165, 55, 0.2);
}

.org-card .orglogo {
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    display: inline-flex;
    height: 38px;
    margin-bottom: 14px;
}

.org-card .orglogo img {
    height: 100%;
    width: auto;
}

.org-card h4 {
    color: var(--gold-soft);
    font-size: 17px;
}

.org-card p {
    font-size: 13.6px;
    color: rgba(247, 239, 223, 0.78);
    margin: 8px 0 0;
}

.stats-row {
    display: flex;
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
    flex-wrap: wrap;
}

.stats-row.records {
    grid-column: 1 / -1;
}

.stat {
    flex: 1;
    min-width: 130px;
    padding-right: 20px;
}

.stat b {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 32px;
    color: var(--sindoor);
}

.stat span {
    font-size: 12.5px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

/* ---------- PROGRAM ---------- */
#program {
    background: var(--ink);
    color: var(--parchment-2);
}

#program .section-head h2 {
    color: #fff;
}

#program .section-head p {
    color: rgba(247, 239, 223, 0.65);
}

#program .eyebrow {
    color: var(--gold-soft);
}

.daytabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.daytab {
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid rgba(227, 165, 55, 0.3);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(247, 239, 223, 0.75);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    cursor: pointer;
    transition: all .25s ease;
}

.daytab .d {
    display: block;
    font-size: 10.5px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.daytab.active {
    background: var(--gold);
    color: #241a06;
    border-color: var(--gold);
    font-weight: 700;
}

.daytab.active .d {
    opacity: 0.7;
}

.daypanel {
    display: none;
}

.daypanel.active {
    display: block;
    animation: fadeUp .5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(227, 165, 55, 0.18);
}

.srow {
    display: grid;
    grid-template-columns: 150px 1.1fr 2.3fr;
    gap: 18px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(247, 239, 223, 0.08);
    background: rgba(255, 255, 255, 0.015);
    align-items: center;
}

.srow:nth-child(even) {
    background: rgba(255, 255, 255, 0.035);
}

.srow:last-child {
    border-bottom: none;
}

.srow .time {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--gold-soft);
    white-space: nowrap;
}

.srow .who {
    font-size: 13.2px;
    color: rgba(247, 239, 223, 0.7);
}

.srow .what {
    font-size: 14.5px;
    color: #fff;
}

.srow.break .what {
    color: var(--gold-soft);
    font-style: italic;
}

.srow.break {
    background: rgba(227, 165, 55, 0.06);
}

@media (max-width:720px) {
    .srow {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 18px;
    }

    .srow .time {
        font-weight: 700;
    }
}

.workshop-note {
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(227, 165, 55, 0.08);
    border: 1px dashed rgba(227, 165, 55, 0.4);
    font-size: 13.6px;
    color: rgba(247, 239, 223, 0.85);
}

/* ---------- SPEAKERS ---------- */
#speakers {
    background: var(--parchment);
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.speaker-card {
    background: var(--parchment-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.speaker-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--ink);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.speaker-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-body h4 {
    font-size: 19px;
}

.speaker-body .cred {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--sindoor);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.speaker-body .topic {
    font-size: 13.6px;
    color: var(--text-muted);
    margin-top: 12px;
    flex: 1;
}

.readmore {
    margin-top: 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--gold-2);
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

.speaker-full {
    display: none;
    font-size: 13.2px;
    color: var(--text-dark);
    margin-top: 12px;
    border-top: 1px dashed var(--line);
    padding-top: 12px;
}

.speaker-full.open {
    display: block;
}

@media (max-width:920px) {
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .speaker-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FEES ---------- */
#fees {
    background: var(--ink-3);
    color: var(--parchment-2);
}

#fees .section-head h2 {
    color: #fff;
}

#fees .section-head p {
    color: rgba(247, 239, 223, 0.6);
}

#fees .eyebrow {
    color: var(--gold-soft);
}

.feetabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.feetab {
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(227, 165, 55, 0.3);
    background: transparent;
    color: rgba(247, 239, 223, 0.7);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    cursor: pointer;
}

.feetab.active {
    background: var(--gold);
    color: #241a06;
    border-color: var(--gold);
    font-weight: 700;
}

.feenote {
    font-size: 12.8px;
    color: var(--gold-soft);
    margin: 14px 0 26px;
    font-family: 'IBM Plex Mono', monospace;
}

.feegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feepanel {
    display: none;
}

.feepanel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    animation: fadeUp .4s ease;
}

.feecard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 165, 55, 0.16);
    border-radius: 18px;
    padding: 24px 26px;
}

.feecard h4 {
    color: var(--gold-soft);
    font-size: 15px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    font-weight: 600;
}

.feeline {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(247, 239, 223, 0.08);
    font-size: 13.8px;
}

.feeline:last-child {
    border-bottom: none;
}

.feeline .cat {
    color: rgba(247, 239, 223, 0.82);
}

.feeline .amt {
    font-family: 'IBM Plex Mono', monospace;
    color: #fff;
    text-align: right;
}

.feeline .amt small {
    display: block;
    color: rgba(247, 239, 223, 0.45);
    font-size: 11px;
}

.feefoot {
    margin-top: 22px;
    font-size: 12.6px;
    color: rgba(247, 239, 223, 0.55);
    line-height: 1.7;
}

@media (max-width:820px) {
    .feepanel.active {
        grid-template-columns: 1fr;
    }
}

/* ---------- REGISTER (3 step) ---------- */
#register {
    background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-2) 100%);
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

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

.stepdot .circ {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--text-muted);
    background: var(--parchment-2);
    transition: all .3s ease;
    flex-shrink: 0;
}

.stepdot.done .circ {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
}

.stepdot .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

.stepdot.done .lbl {
    color: var(--sage);
}

.steplink {
    width: 60px;
    height: 2px;
    background: var(--line);
    margin: 0 8px;
}

.steplink.done {
    background: var(--sage);
}

.steps3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.steps3.steps2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.stepcard {
    background: var(--parchment-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.stepcard .num {
    font-family: 'Marcellus', serif;
    font-size: 44px;
    color: var(--gold-2);
    opacity: 0.5;
    line-height: 1;
}

.stepcard h3 {
    font-size: 20px;
    margin-top: 8px;
}

.stepcard .desc {
    color: var(--text-muted);
    font-size: 13.8px;
    margin-top: 10px;
    flex: 1;
}

.qrbox {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--parchment);
    border: 1px dashed var(--line);
    border-radius: 14px;
    padding: 14px;
    margin-top: 14px;
}

.qrbox img {
    width: 92px;
    height: 92px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 4px;
    cursor: zoom-in;
    transition: transform .2s ease;
}

.qrbox img:hover {
    transform: scale(1.05);
}

.qrbox .qrlabel {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--text-muted);
}

.qrbox .qrlabel .hint {
    display: block;
    color: var(--gold-2);
    margin-top: 4px;
    font-size: 10.5px;
}

/* QR Lightbox */
.qr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(12, 18, 36, 0.88);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 30px;
    animation: fadeIn .2s ease;
}

.qr-lightbox.open {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.qr-lightbox .qr-lightbox-inner {
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    max-width: min(420px, 86vw);
    width: 100%;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    text-align: center;
    animation: zoomPop .25s ease;
}

@keyframes zoomPop {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.qr-lightbox img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.qr-lightbox .qr-caption {
    margin-top: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--text-muted);
}

.qr-lightbox .qr-close-hint {
    margin-top: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--gold-2);
}

.bankrow {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.bankrow:last-child {
    border-bottom: none;
}

.bankrow .k {
    color: var(--text-muted);
}

.bankrow .v {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    text-align: right;
}

.copybtn {
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2px 9px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    cursor: pointer;
    margin-left: 8px;
    color: var(--gold-2);
}

.copybtn:hover {
    background: var(--gold);
    color: #241a06;
    border-color: var(--gold);
}

.banktable {
    margin-top: 14px;
}

.formnote {
    font-size: 11.5px;
    color: var(--sindoor);
    background: rgba(180, 64, 47, 0.08);
    border: 1px dashed rgba(180, 64, 47, 0.35);
    border-radius: 10px;
    padding: 8px 12px;
    margin-top: 14px;
    font-family: 'IBM Plex Mono', monospace;
}

.btn.btn-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(0.3);
}

/* ---------- UPLOAD MODAL ---------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 36, 0.72);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-backdrop.open {
    display: flex;
}

.modal {
    background: var(--parchment-2);
    border-radius: 22px;
    max-width: 460px;
    width: 100%;
    padding: 32px 30px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal .close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.modal h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.modal .sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.dropzone {
    border: 2px dashed var(--line);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    cursor: pointer;
    background: var(--parchment);
    transition: border-color .2s ease, background .2s ease;
    display: block;
}

.dropzone:hover,
.dropzone.drag {
    border-color: var(--gold);
    background: rgba(227, 165, 55, 0.06);
}

.dropzone .icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.dropzone .txt {
    font-size: 13.5px;
    color: var(--text-muted);
}

.dropzone .txt b {
    color: var(--sindoor);
}

.dropzone input {
    display: none;
}

.filepreview {
    display: none;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--parchment);
}

.filepreview.show {
    display: flex;
}

.filepreview img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.filepreview .fname {
    font-size: 12.5px;
    color: var(--text-dark);
    word-break: break-all;
    flex: 1;
}

.filepreview .fclear {
    background: none;
    border: none;
    color: var(--sindoor);
    cursor: pointer;
    font-size: 16px;
}

.uploadnote {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 14px;
    line-height: 1.6;
    font-family: 'IBM Plex Mono', monospace;
}

.field {
    margin-bottom: 0;
}

.field label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--parchment);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 0.03em;
}

.field input:focus {
    outline: 2px solid var(--gold);
    border-color: var(--gold);
}

.loaderbox {
    display: none;
    text-align: center;
    padding: 28px 0;
}

.loaderbox.show {
    display: block;
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--line);
    border-top-color: var(--gold);
    margin: 0 auto 18px;
    animation: spin 0.8s linear infinite;
}

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

.loaderbox p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
}

.successbox {
    display: none;
    text-align: center;
    padding: 10px 0;
}

.successbox.show {
    display: block;
}

.successbox .tick {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    animation: popIn .35s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---------- VENUE ---------- */
#venue {
    background: var(--parchment);
}

.venue-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.venue-img {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.venue-info {
    background: var(--ink);
    color: var(--parchment-2);
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-info h3 {
    color: #fff;
    font-size: 26px;
}

.venue-info p {
    font-size: 14px;
    color: rgba(247, 239, 223, 0.72);
    margin-top: 14px;
}

.venue-facts {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.venue-facts div {
    font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--gold-soft);
}

.mapembed {
    margin-top: 34px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.mapembed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* ---------- EXPLORE ---------- */
#explore {
    background: var(--parchment-2);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.explore-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--parchment);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.explore-card .img {
    height: 170px;
    background-size: cover;
    background-position: center;
}

.explore-card .body {
    padding: 18px 20px 22px;
}

.explore-card h4 {
    font-size: 16.5px;
}

.explore-card p {
    font-size: 12.8px;
    color: var(--text-muted);
    margin-top: 8px;
}

.explore-card .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--sindoor);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width:920px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CONTACT / FOOTER ---------- */
#contact {
    background: var(--ink);
    color: var(--parchment-2);
}

#contact .section-head h2 {
    color: #fff;
}

#contact .eyebrow {
    color: var(--gold-soft);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 165, 55, 0.16);
    border-radius: 18px;
    padding: 24px 24px;
}

.contact-card h4 {
    color: var(--gold-soft);
    font-size: 14px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.contact-card .name {
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.contact-card .num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: rgba(247, 239, 223, 0.7);
    display: block;
    margin-top: 4px;
}

/* ---------- SPONSERS / FOOTER ----------  */
.sponser{
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    padding: 15px 10px;
    border-radius: 0px 15px 15px 0px;
    box-shadow: 3px 4px 10px 0px #b5b5b5;
    z-index: 99;
}

.sponser .spons{
    max-width: 115px;
    padding: 10px;
}

.sponser .spons.spons1{
    padding: 0px;
}

.sponser .spons img{
    width: 100%;
    object-fit: contain;
}

footer {
    padding: 40px 10px 30px;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: rgba(247, 239, 223, 0.4);
    border-top: 1px solid rgba(247, 239, 223, 0.08);
    margin-top: 60px;
}

footer a {
    color: var(--gold-soft);
    text-decoration: none;
}

/* ---------- BROCHURE DOWNLOAD ----------  */

.brochure {
    position: fixed;
    top: calc(100% - 100px);
    left: calc(100% - 175px);
    animation: zoom 1.5s infinite cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 999;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

#brochure_btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#brochure_btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}