:root {
    --bg: #040505;
    --bg-soft: #09110f;
    --panel: rgba(11, 15, 14, 0.72);
    --panel-strong: rgba(15, 20, 18, 0.92);
    --panel-light: rgba(24, 31, 28, 0.68);
    --line: rgba(244, 232, 201, 0.12);
    --line-strong: rgba(244, 232, 201, 0.22);
    --text: #f3efe4;
    --muted: #b7b1a3;
    --gold: #d0ab63;
    --gold-soft: #f2d49b;
    --green: #14382e;
    --green-soft: #1e5644;
    --shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 12%, rgba(26, 88, 66, 0.22), transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(208, 171, 99, 0.14), transparent 20%),
        linear-gradient(180deg, #040505 0%, #06100d 30%, #040505 60%, #030303 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 34%, transparent 100%);
    opacity: 0.18;
}

body::after {
    background:
        radial-gradient(circle at 50% 0%, rgba(208, 171, 99, 0.14), transparent 38%),
        radial-gradient(circle at 15% 60%, rgba(18, 86, 66, 0.12), transparent 32%);
    filter: blur(50px);
    opacity: 0.9;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.page-shell {
    position: relative;
    isolation: isolate;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.06) 0.7px, transparent 0.7px);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
    opacity: 0.12;
    z-index: -1;
}

.topbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--container);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(6, 9, 8, 0.24);
    backdrop-filter: blur(18px);
    z-index: 30;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}

.topbar.is-scrolled {
    top: 12px;
    background: rgba(7, 10, 9, 0.72);
    border-color: rgba(244, 232, 201, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: fit-content;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(208, 171, 99, 0.45);
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(208, 171, 99, 0.26), rgba(11, 18, 16, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.35);
    font-family: "Forum", serif;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
}

.brand-text {
    display: grid;
    gap: 3px;
}

.brand-text strong {
    font-family: "Forum", serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.nav a {
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
    color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 232, 201, 0.08);
    border-radius: 50%;
    background: rgba(10, 12, 12, 0.8);
    color: var(--text);
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.section {
    position: relative;
    width: var(--container);
    margin: 0 auto;
    padding: 120px 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: 90px auto auto -20px;
    width: 1px;
    height: calc(100% - 180px);
    background: linear-gradient(180deg, transparent, rgba(208, 171, 99, 0.2), transparent);
    opacity: 0.7;
}

.hero {
    padding-top: 150px;
    min-height: 100svh;
    display: grid;
    align-items: center;
}

.bootstrap-grid.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.bootstrap-grid.row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.hero-grid {
    --bs-gutter-x: 48px;
    --bs-gutter-y: 48px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold-soft);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.pricing-top h3,
.review-slide p,
.booking-form h3,
.map-copy h3 {
    font-family: "Forum", serif;
    font-weight: 400;
}

.hero h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(3.5rem, 7.4vw, 7.2rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
}

.hero h1 span {
    display: block;
    margin-top: 18px;
    max-width: 10ch;
    color: #d8d0be;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.12;
    letter-spacing: 0.05em;
}

.hero-text {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.hero-actions,
.messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

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

.button-primary {
    color: #11100b;
    background:
        linear-gradient(135deg, #f0d59d 0%, #d0ab63 50%, #b18a48 100%);
    box-shadow: 0 20px 40px rgba(208, 171, 99, 0.22);
}

.button-primary:hover {
    box-shadow: 0 24px 54px rgba(208, 171, 99, 0.3);
}

.button-ghost {
    color: var(--text);
    border-color: rgba(208, 171, 99, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover {
    border-color: rgba(208, 171, 99, 0.5);
    background: rgba(208, 171, 99, 0.08);
}

.glass-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
        linear-gradient(160deg, rgba(10, 17, 15, 0.9), rgba(10, 12, 12, 0.68));
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(315deg, rgba(208, 171, 99, 0.07), transparent 28%);
    pointer-events: none;
}

.hero-metrics {
    margin-top: 36px;
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
}

.metric-card {
    padding: 20px;
    min-height: 120px;
    height: 100%;
}

.metric-card strong {
    display: block;
    font-family: "Forum", serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-soft);
}

.metric-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
}

.hero-stage {
    position: relative;
}

.stage-card {
    position: relative;
    min-height: 640px;
    padding: 34px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(244, 232, 201, 0.12);
    background:
        radial-gradient(circle at 60% 10%, rgba(208, 171, 99, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(12, 16, 15, 0.98), rgba(6, 8, 7, 0.9));
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transform-origin: center;
    will-change: transform;
}

.stage-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(244, 232, 201, 0.08);
    border-radius: calc(var(--radius-xl) - 10px);
    pointer-events: none;
}

.stage-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 14%, rgba(251, 213, 133, 0.2), transparent 22%),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.stage-photo-wrap {
    position: absolute;
    inset: 0;
}

.stage-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 6, 0.08), rgba(3, 3, 3, 0.56)),
        radial-gradient(circle at 78% 18%, rgba(208, 171, 99, 0.18), transparent 22%);
}

.stage-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.92);
    transform: scale(1.03);
}

.table-surface {
    position: absolute;
    left: 50%;
    top: 53%;
    width: min(460px, 100%);
    aspect-ratio: 1.08 / 1;
    transform: translate(-50%, -50%);
    border-radius: 28px;
    border: 16px solid #4b2c18;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #134134 0%, #0d2e25 45%, #08120f 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 18px 30px rgba(255, 255, 255, 0.05),
        0 30px 50px rgba(0, 0, 0, 0.45);
}

.table-surface::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.table-surface::after {
    content: "";
    position: absolute;
    inset: auto 10% -14%;
    height: 34%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.45), transparent 70%);
    filter: blur(14px);
}

.pocket {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #020202;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.08);
}

.pocket-1 { top: -14px; left: -14px; }
.pocket-2 { top: -14px; right: -14px; }
.pocket-3 { bottom: -14px; left: -14px; }
.pocket-4 { bottom: -14px; right: -14px; }
.pocket-5 { top: calc(50% - 14px); left: -18px; }
.pocket-6 { top: calc(50% - 14px); right: -18px; }

.ball {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow:
        inset -6px -8px 12px rgba(0, 0, 0, 0.28),
        inset 4px 5px 10px rgba(255, 255, 255, 0.18),
        0 10px 25px rgba(0, 0, 0, 0.35);
}

.ball-cue {
    left: 22%;
    top: 57%;
    background: radial-gradient(circle at 35% 35%, #ffffff, #cfd3d6 78%);
}

.ball-black {
    right: 18%;
    top: 33%;
    background: radial-gradient(circle at 35% 35%, #4d4d4d, #050505 78%);
}

.ball-gold {
    left: 58%;
    bottom: 19%;
    background: radial-gradient(circle at 35% 35%, #f3d79c, #b98e47 82%);
}

.cue-stick {
    position: absolute;
    left: 14%;
    top: 63%;
    width: 50%;
    height: 6px;
    border-radius: 999px;
    transform: rotate(-19deg);
    background: linear-gradient(90deg, #f0e5cf 0%, #b98a44 70%, #5b3920 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.stage-chip {
    position: absolute;
    padding: 11px 16px;
    border: 1px solid rgba(244, 232, 201, 0.12);
    border-radius: 999px;
    background: rgba(8, 10, 9, 0.54);
    backdrop-filter: blur(16px);
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    z-index: 2;
}

.chip-top {
    top: 52px;
    left: 56px;
}

.chip-mid {
    right: 48px;
    top: 172px;
}

.chip-bottom {
    bottom: 56px;
    right: 58px;
}

.hero-note {
    margin-top: 20px;
    max-width: none;
    padding: 24px 28px;
}

.hero-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0.04em;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: start;
}

.about-story,
.about-quote,
.stat-card,
.contact-info,
.booking-form,
.map-card,
.review-shell,
.pricing-card,
.feature-card {
    padding: 28px;
}

.about-story {
    min-height: 100%;
    padding-top: 38px;
}

.section-number {
    display: block;
    margin-bottom: 24px;
    color: rgba(208, 171, 99, 0.64);
    font-family: "Forum", serif;
    font-size: 2.7rem;
}

.about-story p,
.about-quote p,
.stat-card span,
.feature-card p,
.gallery-overlay p,
.review-slide small,
.contact-row span,
.map-copy p,
.form-status {
    color: var(--muted);
}

.about-story p,
.feature-card p,
.stat-card span,
.gallery-overlay p,
.map-copy p,
.contact-row strong,
.contact-row a {
    line-height: 1.8;
}

.about-story p + p {
    margin-top: 16px;
}

.about-stack {
    display: grid;
    gap: 24px;
}

.about-quote {
    min-height: 210px;
    display: flex;
    align-items: end;
}

.about-quote p {
    margin: 0;
    font-family: "Forum", serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    color: var(--text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.stat-card strong,
.feature-card h3,
.pricing-top h3,
.contact-row strong,
.contact-row a,
.booking-form h3,
.map-copy h3 {
    display: block;
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.feature-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.features .feature-grid,
.details .feature-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.feature-card {
    min-height: 220px;
    grid-column: span 4;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(208, 171, 99, 0.1), transparent 30%),
        linear-gradient(160deg, rgba(11, 17, 15, 0.92), rgba(11, 12, 12, 0.74));
}

.features .feature-card,
.details .feature-card {
    grid-column: auto;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-wide {
    grid-column: span 8;
}

.feature-tall {
    min-height: 300px;
}

.feature-accent {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(30, 86, 68, 0.26), transparent 34%),
        linear-gradient(160deg, rgba(11, 17, 15, 0.92), rgba(11, 12, 12, 0.74));
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(208, 171, 99, 0.18);
    color: var(--gold-soft);
    font-size: 0.88rem;
}

.feature-card h3 {
    font-size: 1.2rem;
}

.features .feature-card h3,
.details .feature-card h3,
.features .feature-card p,
.details .feature-card p,
.features .feature-card .feature-index,
.details .feature-card .feature-index {
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.features .feature-card::after,
.details .feature-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 171, 99, 0.7), transparent);
    transform: scaleX(0.28);
    transform-origin: center;
    opacity: 0.45;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.feature-card:hover,
.pricing-card:hover,
.stat-card:hover,
.gallery-card:hover,
.map-card:hover {
    transform: translateY(-6px);
}

.feature-card,
.pricing-card,
.stat-card,
.gallery-card,
.map-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.pricing-card:hover,
.stat-card:hover,
.map-card:hover {
    border-color: rgba(208, 171, 99, 0.26);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.features .feature-card:hover,
.details .feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(208, 171, 99, 0.34);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(208, 171, 99, 0.16), transparent 34%),
        linear-gradient(160deg, rgba(13, 20, 18, 0.96), rgba(11, 12, 12, 0.82));
}

.features .feature-card:hover::after,
.details .feature-card:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.features .feature-card:hover .feature-index,
.details .feature-card:hover .feature-index {
    transform: translateY(-2px) scale(1.08);
    border-color: rgba(208, 171, 99, 0.38);
    box-shadow: 0 0 0 10px rgba(208, 171, 99, 0.08);
    background: rgba(208, 171, 99, 0.08);
}

.features .feature-card:hover h3,
.details .feature-card:hover h3 {
    color: var(--gold-soft);
}

.features .feature-card:hover p,
.details .feature-card:hover p {
    color: #d3ccbe;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    min-height: 260px;
    grid-column: span 4;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(244, 232, 201, 0.08);
    overflow: hidden;
    isolation: isolate;
    background-color: #0a0e0d;
    box-shadow: var(--shadow);
}

.gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.76) saturate(0.9);
    transform: scale(1.02);
    transition: transform 0.6s ease, filter 0.4s ease;
    z-index: 0;
}

.gallery-card::before,
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.gallery-card::before {
    background:
        radial-gradient(circle at 50% 15%, rgba(244, 212, 155, 0.28), transparent 20%),
        linear-gradient(180deg, rgba(10, 14, 12, 0.12), rgba(3, 4, 4, 0.84)),
        linear-gradient(135deg, rgba(208, 171, 99, 0.18), transparent 48%);
    z-index: 1;
}

.gallery-card::after {
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: calc(var(--radius-lg) - 10px);
    z-index: 2;
}

.gallery-card:hover::before {
    transform: scale(1.05);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.07);
    filter: brightness(0.82) saturate(0.96);
}

.gallery-main {
    grid-column: span 7;
    min-height: 420px;
    background:
        linear-gradient(180deg, rgba(5, 7, 6, 0.2), rgba(4, 4, 4, 0.88)),
        radial-gradient(circle at 50% 16%, rgba(244, 212, 155, 0.34), transparent 22%),
        linear-gradient(180deg, rgba(18, 58, 46, 0.92), rgba(7, 15, 13, 0.96));
}

.gallery-main::before {
    background:
        radial-gradient(circle at 48% 16%, rgba(244, 212, 155, 0.28), transparent 16%),
        linear-gradient(180deg, rgba(7, 11, 10, 0.06), rgba(3, 4, 4, 0.9)),
        linear-gradient(180deg, rgba(17, 55, 44, 0.28), rgba(5, 10, 9, 0.12));
}

.gallery-main::after {
    inset: 16px;
    height: auto;
    border-radius: calc(var(--radius-lg) - 10px);
    background: transparent;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.gallery-lounge {
    background:
        radial-gradient(circle at 70% 18%, rgba(244, 212, 155, 0.22), transparent 18%),
        linear-gradient(180deg, rgba(14, 35, 28, 0.95), rgba(5, 7, 6, 0.95)),
        linear-gradient(45deg, rgba(208, 171, 99, 0.14), transparent 50%);
}

.gallery-vip {
    grid-column: span 5;
    min-height: 420px;
    background:
        radial-gradient(circle at 50% 14%, rgba(244, 212, 155, 0.32), transparent 18%),
        linear-gradient(180deg, rgba(10, 12, 12, 0.5), rgba(3, 3, 3, 0.92)),
        linear-gradient(135deg, rgba(34, 82, 65, 0.82), rgba(6, 10, 9, 1));
}

.gallery-bar {
    background:
        radial-gradient(circle at 18% 18%, rgba(244, 212, 155, 0.26), transparent 18%),
        linear-gradient(180deg, rgba(20, 24, 22, 0.55), rgba(5, 5, 5, 0.92)),
        linear-gradient(130deg, rgba(103, 61, 29, 0.86), rgba(14, 14, 14, 0.96));
}

.gallery-tournament {
    grid-column: span 7;
    min-height: 280px;
    background:
        radial-gradient(circle at 80% 18%, rgba(244, 212, 155, 0.24), transparent 18%),
        linear-gradient(180deg, rgba(13, 35, 29, 0.94), rgba(4, 8, 7, 0.96)),
        linear-gradient(135deg, rgba(208, 171, 99, 0.1), transparent 40%);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.82));
    z-index: 3;
}

.gallery-overlay span,
.pricing-tag,
.review-rating {
    color: var(--gold-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.gallery-overlay h3 {
    margin: 10px 0 0;
    font-size: 1.45rem;
}

.gallery-overlay p {
    margin: 12px 0 0;
}

.pricing-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.pricing-notes {
    margin-top: 24px;
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.pricing-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-featured {
    transform: translateY(-18px);
    border-color: rgba(208, 171, 99, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 36%),
        radial-gradient(circle at 50% 0%, rgba(208, 171, 99, 0.14), transparent 32%),
        linear-gradient(160deg, rgba(12, 18, 16, 0.96), rgba(10, 12, 12, 0.78));
}

.pricing-top strong {
    display: block;
    margin-top: 18px;
    font-size: 2.7rem;
    line-height: 1;
    color: var(--text);
}

.pricing-top small {
    font-size: 1rem;
    color: var(--muted);
}

.pricing-caption {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    gap: 14px;
    color: var(--muted);
}

.pricing-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.65;
}

.pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.price-book {
    width: 100%;
}

.pricing-note {
    padding: 24px 28px;
}

.pricing-note h3 {
    margin: 12px 0 8px;
    font-size: 1.3rem;
}

.pricing-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.review-shell {
    padding: 38px;
}

.review-track {
    position: relative;
    min-height: 280px;
}

.review-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 18px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.review-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.review-slide p {
    margin: 0;
    max-width: 24ch;
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.14;
    letter-spacing: 0.03em;
}

.review-slide strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.review-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(208, 171, 99, 0.2);
    background: rgba(10, 12, 12, 0.74);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.review-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(208, 171, 99, 0.46);
    background: rgba(208, 171, 99, 0.08);
}

.review-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.review-dot.is-active {
    transform: scale(1.2);
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(208, 171, 99, 0.12);
}

.contact-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.contact-stack {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-row span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
    font-size: 1.05rem;
}

.messenger {
    min-width: 150px;
}

.map-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(208, 171, 99, 0.22), transparent 18%),
        linear-gradient(180deg, rgba(14, 36, 29, 0.88), rgba(6, 9, 8, 0.94));
    background-size: 68px 68px, 68px 68px, auto, auto;
}

.map-grid::before,
.map-grid::after {
    content: "";
    position: absolute;
    background: rgba(208, 171, 99, 0.14);
}

.map-grid::before {
    left: 12%;
    top: 18%;
    width: 68%;
    height: 2px;
    transform: rotate(18deg);
}

.map-grid::after {
    left: 26%;
    top: 18%;
    width: 2px;
    height: 54%;
    transform: rotate(12deg);
}

.map-pin {
    position: absolute;
    top: 44%;
    left: 58%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--gold-soft), var(--gold));
    box-shadow: 0 0 0 12px rgba(208, 171, 99, 0.12);
}

.map-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.map-copy .button {
    margin-top: 16px;
}

.map-copy span {
    color: var(--gold-soft);
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.booking-form {
    display: grid;
    gap: 18px;
}

.booking-form h3 {
    margin: 0 0 8px;
    font-size: 2rem;
}

.booking-lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.booking-points {
    display: grid;
    gap: 10px;
    margin: 4px 0 6px;
}

.booking-points p {
    position: relative;
    margin: 0;
    padding-left: 18px;
    line-height: 1.6;
}

.booking-points p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(208, 171, 99, 0.75);
}

.booking-form label {
    display: grid;
    gap: 10px;
}

.booking-form label span {
    color: var(--muted);
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(244, 232, 201, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 16px 18px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.booking-form select,
.booking-form select option {
    background: #0e1412;
    color: var(--text);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(183, 177, 163, 0.74);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: rgba(208, 171, 99, 0.36);
    background: rgba(208, 171, 99, 0.06);
    box-shadow: 0 0 0 4px rgba(208, 171, 99, 0.08);
}

.form-status {
    min-height: 24px;
    margin: 2px 0 0;
    line-height: 1.65;
}

.booking-footnote {
    margin: -2px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.footer {
    width: var(--container);
    margin: 0 auto;
    padding: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    border-top: 1px solid rgba(244, 232, 201, 0.08);
}

.footer p {
    margin: 0;
    font-family: "Forum", serif;
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

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

    .stage-card {
        min-height: 560px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card,
    .gallery-main,
    .gallery-vip,
    .gallery-tournament {
        grid-column: auto;
    }

    .pricing-featured {
        transform: none;
    }
}

@media (max-width: 860px) {
    .topbar {
        top: 12px;
        border-radius: 26px;
        align-items: flex-start;
        padding: 12px 14px;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        width: 100%;
        display: grid;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease, padding-top 0.35s ease;
    }

    .nav.is-open {
        max-height: 340px;
        opacity: 1;
        padding-top: 10px;
    }

    .nav a {
        padding: 4px 0;
    }

    .section {
        padding: 92px 0;
    }

    .section::before {
        display: none;
    }

    .hero {
        padding-top: 124px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .review-shell {
        padding: 28px;
    }

    .review-track {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 24px, 100%);
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero h1 span {
        max-width: none;
    }

    .section-intro h2,
    .review-slide p {
        max-width: none;
    }

    .stage-card,
    .about-story,
    .about-quote,
    .stat-card,
    .contact-info,
    .booking-form,
    .map-card,
    .review-shell,
    .pricing-card,
    .feature-card {
        padding: 22px;
    }

    .stage-card {
        min-height: 480px;
    }

    .table-surface {
        width: calc(100% - 40px);
        border-width: 12px;
    }

    .chip-top {
        top: 26px;
        left: 22px;
    }

    .chip-mid {
        top: 92px;
        right: 22px;
    }

    .chip-bottom {
        right: 22px;
        bottom: 22px;
    }

    .review-controls {
        gap: 14px;
    }

    .review-arrow {
        width: 48px;
        height: 48px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 28px;
    }
}
