/* assets/styles.css */
/* One background color sitewide: #0b1324 */

:root {
    --bg: #0b1324;
    --card: rgba(255,255,255,.06);
    --card2: rgba(255,255,255,.08);
    --stroke: rgba(255,255,255,.14);
    --text: #ffffff;
    --muted: rgba(255,255,255,.72);
    --muted2: rgba(255,255,255,.55);
    --gold: #d6b25e;
    --red: #a61c1c;
    --shadow: 0 20px 60px rgba(0,0,0,.45);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto
}

.skip {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    .skip:focus {
        left: 16px;
        top: 16px;
        width: auto;
        height: auto;
        padding: 10px 12px;
        background: #111;
        border-radius: 10px;
        z-index: 9999;
    }

/* Header + Nav */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11,19,36,.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 240px;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-title {
    font-weight: 900;
    letter-spacing: .2px;
    line-height: 1.05
}

.brand-sub {
    font-size: 12px;
    color: var(--muted2);
    margin-top: 2px
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255,255,255,.82);
    padding: 10px 12px;
    border-radius: 12px;
}

    .nav-link:hover {
        background: rgba(255,255,255,.08)
    }

    .nav-link.active {
        background: rgba(214,178,94,.16);
        color: #fff;
        box-shadow: inset 0 0 0 1px rgba(214,178,94,.30);
    }

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

    .nav-toggle span {
        display: block;
        height: 2px;
        width: 20px;
        background: rgba(255,255,255,.9);
        margin: 5px auto;
        border-radius: 2px;
    }

/* Mobile Nav Fix */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 90;
}

    .nav-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

@media (max-width: 919px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        display: grid;
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
        background: #0b1324;
        box-shadow: 0 18px 50px rgba(0,0,0,.35);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
        z-index: 110;
    }

    body.nav-open .nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav .nav-link {
        color: #fff;
        padding: 12px 12px;
        border-radius: 12px;
    }

        .nav .nav-link:hover {
            background: rgba(255,255,255,.10);
        }
}

/* Hero */
.hero {
    position: relative;
    padding: 36px 0 22px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: start;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    color: rgba(255,255,255,.86);
    font-weight: 700;
    font-size: 12px;
}

h1 {
    font-size: 52px;
    line-height: 1.03;
    margin: 14px 0 10px;
    letter-spacing: -.6px
}

@media (max-width: 520px) {
    h1 {
        font-size: 40px
    }
}

.lead {
    color: rgba(255,255,255,.80);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
}

    .btn:hover {
        background: rgba(255,255,255,.10)
    }

    .btn.primary {
        background: linear-gradient(180deg, rgba(166,28,28,.95), rgba(107,16,16,.92));
        border-color: rgba(255,255,255,.12);
    }

    .btn.ghost {
        background: rgba(255,255,255,.06);
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 620px) {
    .hero-stats {
        grid-template-columns: 1fr
    }
}

.stat {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.stat-k {
    font-weight: 900
}

.stat-v {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    margin-top: 4px
}

/* Media card + masonry */
.media-card {
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), var(--shadow);
    overflow: hidden;
}

.media-top {
    padding: 14px 14px 10px
}

.media-tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(214,178,94,.14);
    box-shadow: inset 0 0 0 1px rgba(214,178,94,.22);
    color: rgba(255,255,255,.9);
    font-weight: 800;
    font-size: 12px;
}

.media-title {
    margin-top: 10px;
    font-weight: 900;
    font-size: 18px
}

.masonry {
    padding: 12px 14px 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mimg {
    border: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

    .mimg img {
        width: 100%;
        height: 86px;
        object-fit: cover;
    }

@media (max-width: 520px) {
    .masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .mimg img {
        height: 92px
    }
}

.media-foot {
    padding: 10px 14px 14px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.text-link {
    color: var(--gold);
    font-weight: 900;
    text-decoration: none;
}

    .text-link:hover {
        text-decoration: underline
    }

/* Sections */
.section {
    padding: 34px 0
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

    .section-head h2 {
        margin: 0;
        font-size: 26px;
        letter-spacing: -.2px
    }

.muted {
    color: var(--muted)
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 820px) {
    .grid3 {
        grid-template-columns: 1fr
    }
}

.card {
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    padding: 14px;
}

    .card.soft {
        background: rgba(255,255,255,.05);
    }

.card-title {
    font-weight: 900;
    margin-bottom: 6px
}

.card-text {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.55
}

/* Split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

@media (max-width: 940px) {
    .split {
        grid-template-columns: 1fr
    }
}

.preview {
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), var(--shadow);
    padding: 12px;
}

.preview-img {
    border: 0;
    padding: 0;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

    .preview-img img {
        width: 100%;
        height: 220px;
        object-fit: cover
    }

.preview-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
    font-weight: 800;
    font-size: 12px;
    color: rgba(255,255,255,.85);
}

/* Contact cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.contact-pill {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
}

/* Page hero */
.page-hero {
    position: relative;
    padding: 34px 0 20px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 980px) {
    .page-hero-grid {
        grid-template-columns: 1fr
    }
}

.page-hero-card {
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), var(--shadow);
    padding: 14px;
}

.mini-list {
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.mini-item {
    display: grid;
    gap: 4px
}

.mini-k {
    font-weight: 900
}

.mini-v {
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.45
}

/* Timeline */
.timeline {
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.t-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.t-step {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(214,178,94,.14);
    box-shadow: inset 0 0 0 1px rgba(214,178,94,.22);
    font-weight: 900;
}

.t-title {
    font-weight: 900
}

.t-text {
    margin-top: 4px;
    color: rgba(255,255,255,.76);
    line-height: 1.45
}

/* Forms */
.form {
    padding: 14px
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 12px
}

    .form-row.two {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

@media (max-width: 560px) {
    .form-row.two {
        grid-template-columns: 1fr
    }
}

.label {
    font-weight: 900;
    font-size: 13px;
    color: rgba(255,255,255,.88)
}

.input, .textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.22);
    color: #fff;
    padding: 12px 12px;
    outline: none;
}

.textarea {
    resize: vertical;
    min-height: 110px
}

.form-hint {
    margin: 10px 0 0;
    font-size: 12px
}

/* Hall page media */
.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 920px) {
    .media-grid {
        grid-template-columns: 1fr
    }
}

.media-card2 {
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), var(--shadow);
    overflow: hidden;
}

.media-card2-top {
    padding: 14px
}

.media-card2-title {
    margin-top: 8px;
    font-weight: 900;
    font-size: 18px
}

.video {
    width: 100%;
    display: block;
    background: #000
}

/* Photo rail */
.photo-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}

.rail-item {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 260px;
    scroll-snap-align: start;
    box-shadow: 0 12px 38px rgba(0,0,0,.35);
}

    .rail-item img {
        width: 100%;
        height: 170px;
        object-fit: cover
    }

/* Footer */
.footer {
    padding: 22px 0 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.10);
}

.foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

@media (max-width: 680px) {
    .foot {
        flex-direction: column
    }
}

.foot-title {
    font-weight: 900
}

.foot-sub {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    margin-top: 2px
}

.foot-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.foot-link {
    text-decoration: none;
    color: rgba(255,255,255,.78);
    font-weight: 800;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

    .foot-link:hover {
        background: rgba(255,255,255,.10)
    }

.siteby {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,.62);
}

    .siteby a {
        color: var(--gold);
        font-weight: 900;
        text-decoration: none;
    }

        .siteby a:hover {
            text-decoration: underline
        }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 200;
}

    .lightbox.open {
        display: block
    }

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.lightbox-figure {
    position: relative;
    width: min(1100px, calc(100% - 28px));
    margin: 32px auto;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(10,10,10,.94);
    box-shadow: 0 30px 90px rgba(0,0,0,.60);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 900;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 2;
}

.lightbox-img {
    width: 100%;
    height: auto;
    display: block
}

.lightbox-cap {
    padding: 12px 14px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,.10);
}

/* Subtle glow (still same background base) */
.hero-glow, .page-glow {
    position: absolute;
    inset: -200px -140px auto -140px;
    height: 420px;
    pointer-events: none;
    background: radial-gradient(600px 260px at 18% 42%, rgba(214,178,94,.16), transparent 60%), radial-gradient(620px 300px at 78% 32%, rgba(166,28,28,.14), transparent 62%);
    filter: blur(2px);
    opacity: .9;
}
