:root {
    --bg: #050608;
    --bg-alt: #0b0d12;
    --panel: #12141b;
    --panel-2: #181b24;
    --text: #f3ede3;
    --muted: #b8afa1;
    --line: rgba(255, 255, 255, 0.10);
    --accent: #f04d23;
    --accent-2: #ff7a45;
    --button-accent: #f0c20f;
    --button-accent-2: #ffd84a;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right, rgba(240, 77, 35, 0.10), transparent 28%), linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-row,
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-row {
    min-height: 76px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 220px;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
}

    .main-nav a {
        color: var(--muted);
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        font-size: 0.92rem;
    }

        .main-nav a:hover {
            color: var(--text);
        }

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

h1,
h2,
h3 {
    margin: 0 0 0.75rem;
    line-height: 1.03;
}

h1 {
    max-width: 36ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    font-weight: 850;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.1rem;
    font-weight: 800;
}

p,
.hero-copy,
.rich-copy {
    color: var(--muted);
    line-height: 1.75;
}

.btn,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    border: 1px solid transparent;
}

    .btn:hover,
    .button:hover {
        transform: translateY(-2px);
    }

.btn-primary,
.button-primary {
    background: linear-gradient(135deg, var(--button-accent), var(--button-accent-2));
    color: #141006;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(240, 194, 15, 0.28);
}

    .btn-primary:hover,
    .button-primary:hover {
        color: #141006;
        box-shadow: 0 16px 34px rgba(240, 194, 15, 0.36);
    }

.btn-secondary,
.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
    color: var(--text);
}

    .btn-secondary:hover,
    .button-secondary:hover {
        color: var(--text);
        border-color: rgba(240, 77, 35, 0.4);
        box-shadow: 0 10px 24px rgba(240, 77, 35, 0.10);
        background: rgba(255, 255, 255, 0.06);
    }

.section {
    padding: 1.25rem 0 4rem;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)), linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-body {
    padding: 1.25rem;
}

.hero {
    padding: 2.5rem 0 2rem;
}

.hero-home {
    padding: 2.5rem 0 2rem;
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-col {
    min-width: 0;
    max-width: 900px;
}

.home-logo {
    display: block;
    width: 100%;
    max-width: 475px;
    height: auto;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.3));
}

.hero-home h1 {
    max-width: 36ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 0.75rem;
}

.hero-home .hero-copy {
    max-width: 70ch;
    margin-bottom: 0;
    font-size: 1.02rem;
}

.hero-actions,
.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.promo-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 560px);
    gap: 1.25rem;
    align-items: start;
}

.promo-layout__left {
    display: grid;
    gap: 1.25rem;
}

.promo-layout__right {
    display: block;
}

.statement-card {
    border-left: 4px solid var(--accent);
}

.accent-card {
    background: radial-gradient(circle at top right, rgba(240, 77, 35, 0.12), transparent 38%), linear-gradient(180deg, var(--panel), var(--panel-2));
}

.page-hero {
    padding: 3.25rem 0 1.5rem;
}

.page-hero-sm {
    padding-top: 2.25rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.guest-card {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

    .guest-card:hover {
        transform: translateY(-4px);
        border-color: rgba(240, 77, 35, 0.35);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
    }

.guest-card-link {
    display: block;
    height: 100%;
}

.guest-photo-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(240, 77, 35, 0.12), rgba(255, 255, 255, 0.03));
}

.guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02);
}

.guest-photo-placeholder {
    min-height: 240px;
    background: linear-gradient(135deg, rgba(240, 77, 35, 0.18), rgba(255, 255, 255, 0.03));
}

.guest-name {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.guest-detail-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

    .guest-detail-grid > * {
        flex: 1;
    }

.guest-detail-photo {
    width: 100%;
    max-width: 440px;
    min-height: 260px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.rich-copy {
    white-space: pre-line;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-list {
    display: grid;
    gap: 1rem;
}

.news-item {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

    .news-item:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .news-item h3 {
        margin-bottom: 0.35rem;
    }

        .news-item h3 a:hover {
            color: var(--text);
        }

.news-meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th,
    .admin-table td {
        text-align: left;
        padding: 0.85rem 0.75rem;
        border-bottom: 1px solid var(--line);
        color: var(--muted);
    }

    .admin-table th {
        color: var(--text);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

.site-footer {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}

.footer-row {
    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), rgba(10, 10, 14, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.product-card__image-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)), rgba(255, 255, 255, 0.02);
    padding: 0.85rem;
}

.product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-card__image--placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(240, 75, 75, 0.15), transparent 45%), linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
    gap: 0.85rem;
}

.product-card__title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

    .product-card__title a {
        color: inherit;
        text-decoration: none;
    }

        .product-card__title a:hover {
            color: #f04b4b;
        }

.product-card__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    font-size: 0.95rem;
}

.product-card__price {
    font-weight: 900;
    color: #ffffff;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.product-card__availability {
    color: #9ae6b4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
}

.product-card__availability--soldout {
    color: #f6ad55;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
}

.product-card__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

    .product-card__actions .btn,
    .product-card__actions .button,
    .product-detail__actions .btn,
    .product-detail__actions .button {
        flex: 1;
        text-align: center;
    }

.empty-state {
    padding: 2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    gap: 2rem;
    align-items: start;
}

.product-detail__image {
    display: block;
    width: 100%;
    max-width: 520px;
    max-height: 520px;
    margin: 0 auto;
    border-radius: 18px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
}

.product-detail__content {
    display: grid;
    gap: 1rem;
}

.product-detail__description p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

    .product-detail__description p:last-child {
        margin-bottom: 0;
    }

.product-detail__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .product-detail__actions .btn,
    .product-detail__actions .button {
        min-width: 180px;
    }

.button[aria-disabled="true"],
.btn[aria-disabled="true"] {
    opacity: 0.72;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

    .button[aria-disabled="true"]:hover,
    .btn[aria-disabled="true"]:hover {
        transform: none;
    }

.store-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.store-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

    .store-filter:hover {
        transform: translateY(-1px);
        border-color: rgba(240, 77, 35, 0.4);
        background: rgba(255, 255, 255, 0.06);
    }

.store-filter--active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #140d09;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(240, 77, 35, 0.22);
}

.workshop-card {
    overflow: hidden;
}

.workshop-card__media-link {
    display: block;
}

    .workshop-card__media-link:hover .workshop-card__image {
        transform: scale(1.02);
    }

.workshop-card__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(240, 77, 35, 0.18), rgba(255, 255, 255, 0.03));
}

.workshop-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.workshop-card__actions {
    display: flex;
    justify-content: center;
}
.centered-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}
.venue-info strong {
    color: var(--text);
}

.venue-info p {
    margin: 0 0 0.75rem;
}

.subtle-note {
    color: rgba(243, 237, 227, 0.48);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.55;
}

.subtle-note--inline {
    margin: 0.25rem 0 1rem;
}

.centered-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1.25rem 0 1rem;
}

@media (max-width: 900px) {
    .hero-split,
    .promo-grid,
    .promo-layout,
    .product-detail {
        grid-template-columns: 1fr;
    }

    .hero-logo-col {
        justify-content: flex-start;
    }

    .home-logo {
        max-width: 365px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .nav-row,
    .footer-row,
    .guest-detail-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .brand-logo {
        height: 38px;
    }

    .admin-table {
        display: block;
        overflow-x: auto;
    }
}
