:root {
    --bg: #eef3fb;
    --surface: #ffffff;
    --ink: #121725;
    --muted: #5a6478;
    --accent: #0f63ce;
    --accent-2: #0a1f3d;
    --danger: #b42318;
    --success: #157347;
    --border: #d5dfef;
    --nav-dark: #081b38;
    --nav-blue: #0d5ec3;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --shadow-sm: 0 6px 16px rgba(8, 28, 60, 0.07);
    --shadow-md: 0 12px 26px rgba(8, 28, 60, 0.1);
    --shadow-lg: 0 18px 36px rgba(8, 28, 60, 0.16);
    --focus-ring: 0 0 0 3px rgba(15, 99, 206, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.48;
    font-weight: 400;
    background:
        radial-gradient(circle at 0% 0%, rgba(15, 99, 206, 0.12), transparent 42%),
        radial-gradient(circle at 100% 0%, rgba(10, 31, 61, 0.1), transparent 34%),
        var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 560;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-underline-offset: 2px;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.site-header .container {
    width: 100%;
    margin: 0;
    padding-left: clamp(0.75rem, 1.4vw, 1.55rem);
    padding-right: clamp(0.75rem, 1.4vw, 1.55rem);
}

.site-header-admin {
    background: linear-gradient(96deg, #0b1e3d 0%, #12376d 54%, #0f63ce 100%);
}

.admin-header-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-header-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.admin-brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.02em;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    min-width: 0;
}

.admin-nav a {
    color: #eef5ff;
    text-decoration: none;
    font-size: 0.94rem;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.45rem 0.9rem;
    line-height: 1.2;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.admin-nav a:hover,
.admin-nav a.is-active {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    justify-content: flex-end;
}

.admin-user-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.35rem 0.64rem;
    color: #f4f8ff;
    font-size: 0.78rem;
    line-height: 1.1;
    background: rgba(255, 255, 255, 0.11);
}

.admin-logout-btn.btn.btn-secondary {
    border-color: rgba(255, 255, 255, 0.33);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.admin-logout-btn.btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.admin-mobile-menu {
    display: none;
    position: relative;
    z-index: 330;
}

.admin-mobile-menu summary {
    list-style: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 9px;
    padding: 0.44rem 0.84rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.11);
}

.admin-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.admin-mobile-menu[open] summary {
    color: #10305e;
    background: #fff;
    border-color: #fff;
}

.admin-mobile-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(320px, 90vw);
    border: 1px solid #c5d4ea;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(6, 20, 45, 0.22);
    padding: 0.62rem;
    display: grid;
    gap: 0.46rem;
}

.admin-mobile-link {
    display: block;
    text-decoration: none;
    color: #193a68;
    border: 1px solid #c8d8ef;
    border-radius: 9px;
    padding: 0.46rem 0.58rem;
    background: #f7fbff;
    font-size: 0.9rem;
}

.admin-mobile-link:hover,
.admin-mobile-link.is-active {
    border-color: #9dbce6;
    background: #eef5ff;
    color: #0a57b8;
}

.admin-mobile-link-danger {
    border-color: #efc1c1;
    background: #fff3f3;
    color: #a12828;
}

.admin-area {
    background:
        radial-gradient(circle at 0% 0%, rgba(15, 99, 206, 0.14), transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(18, 55, 109, 0.11), transparent 34%),
        #edf3fc;
}

.admin-area .page-content {
    padding-top: 1.2rem;
    padding-bottom: 2.35rem;
}

.admin-area h1 {
    color: #12335f;
}

.admin-area h2,
.admin-area h3 {
    color: #173a69;
}

.admin-area .form-card,
.admin-area .card,
.admin-area .kpi,
.admin-area .table-wrap {
    border-color: #c7d7ee;
    box-shadow: 0 12px 24px rgba(12, 35, 74, 0.08);
}

.admin-area table th {
    background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    color: #223e66;
}

.admin-area .btn.btn-secondary {
    border-color: #bad0ed;
    background: #fff;
    color: #183860;
}

.admin-area .btn.btn-secondary:hover {
    background: #f2f8ff;
}

.admin-area .table-wrap td .btn {
    margin-bottom: 0.25rem;
}

.page-content.container,
.site-footer .container {
    width: 100%;
    margin: 0;
    padding-left: clamp(0.75rem, 1.4vw, 1.55rem);
    padding-right: clamp(0.75rem, 1.4vw, 1.55rem);
}

.header-topbar {
    background: var(--nav-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.15rem;
    min-height: 32px;
}

.header-trust-line {
    margin: 0;
    color: #e4eeff;
    font-size: 0.77rem;
    letter-spacing: 0.02em;
}

.header-top-links {
    display: flex;
    align-items: center;
    gap: 1.22rem;
    white-space: nowrap;
}

.header-top-links a {
    color: #f2f7ff;
    text-decoration: none;
    font-size: 0.78rem;
    opacity: 0.93;
}

.header-top-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.header-mainbar {
    background: linear-gradient(92deg, #0b4b9d 0%, var(--nav-blue) 52%, #0a57b8 100%);
}

.header-main-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(250px, 325px);
    align-items: center;
    gap: 1.28rem;
    padding: 0.68rem 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.02em;
}

.brand-main {
    font-size: 1.48rem;
    line-height: 1;
    font-weight: 700;
}

.brand-sub {
    margin-top: 0.12rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: #d9e8ff;
}

.main-nav,
.main-nav > a,
.nav-category summary {
    font-size: 0.97rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.08rem;
    min-width: 0;
}

.main-nav > a {
    text-decoration: none;
    color: #edf4ff;
    padding: 0.54rem 1.08rem;
    border-radius: 8px;
    border: 1px solid transparent;
    line-height: 1.2;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.mobile-nav-menu {
    display: none;
    position: relative;
    z-index: 280;
}

.mobile-nav-menu summary {
    list-style: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 0.46rem 0.9rem;
    cursor: pointer;
    font-size: 0.92rem;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-menu[open] summary {
    background: #fff;
    color: #0d4f9f;
    border-color: #fff;
}

.mobile-nav-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(320px, 90vw);
    border: 1px solid #c6d6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(6, 20, 45, 0.2);
    padding: 0.65rem;
    display: grid;
    gap: 0.5rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #0b4fa5;
    border: 1px solid #bfd2ec;
    border-radius: 8px;
    padding: 0.46rem 0.56rem;
    background: #f5f9ff;
    font-size: 0.92rem;
    font-weight: 600;
}

.mobile-nav-link:hover {
    background: #eaf3ff;
}

.mobile-nav-item {
    border: 1px solid #d4e0f2;
    border-radius: 10px;
    background: #fff;
    padding: 0.48rem 0.55rem;
}

.mobile-nav-item-head {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: #1d3357;
}

.mobile-nav-badge {
    border: 1px solid rgba(15, 99, 206, 0.25);
    border-radius: 999px;
    padding: 0.12rem 0.38rem;
    font-size: 0.7rem;
    color: #0a57b8;
    background: #edf5ff;
    white-space: nowrap;
}

.mobile-nav-note {
    margin: 0.28rem 0 0;
    color: #5b6780;
    font-size: 0.79rem;
}

.mobile-nav-note-danger {
    color: #a42a2a;
}

.nav-categories {
    display: flex;
    gap: 0.98rem;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.nav-category {
    position: relative;
    z-index: 2;
}

.nav-category summary {
    list-style: none;
    color: #edf4ff;
    padding: 0.54rem 1.08rem;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
    user-select: none;
}

.nav-category summary::-webkit-details-marker {
    display: none;
}

.nav-category summary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.nav-category[open] summary {
    border-color: #fff;
    background: #fff;
    color: #0e4a9a;
}

.nav-category[open] {
    z-index: 260;
}

.nav-category-overlay {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    min-width: 245px;
    max-width: min(296px, 86vw);
    background: #fff;
    border: 1px solid #c5d3ea;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 16px 30px rgba(6, 20, 45, 0.2);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
    z-index: 220;
}

.nav-category:hover .nav-category-overlay,
.nav-category[open] .nav-category-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-category-note {
    margin: 0.5rem 0 0;
    color: #4b576f;
    font-size: 0.84rem;
}

.nav-category-note-danger {
    color: var(--danger);
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid #9fc0e8;
    border-radius: 999px;
    background: #fff;
    min-width: 0;
    overflow: hidden;
}

.header-search input {
    border: 0;
    border-radius: 0;
    padding: 0.56rem 0.85rem;
    background: transparent;
    min-width: 0;
}

.header-search input:focus {
    outline: none;
}

.header-search button {
    border: 0;
    border-radius: 0;
    background: #0a57b8;
    color: #fff;
    cursor: pointer;
    padding: 0.58rem 0.82rem;
    font-size: 0.78rem;
}

.header-search button:hover {
    background: #09489b;
}

.header-citybar {
    background: #f8fbff;
    border-bottom: 1px solid #d5dfef;
}

.city-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.5rem 0 0.58rem;
    scrollbar-width: thin;
}

.city-links a {
    text-decoration: none;
    color: #244067;
    font-size: 0.9rem;
    border-radius: 999px;
    padding: 0.24rem 0.74rem;
    border: 1px solid transparent;
}

.city-links a:hover,
.city-links a.is-active {
    color: #0a57b8;
    background: #fff;
    border-color: #c3d5ec;
}

.city-links .city-all {
    color: #0a57b8;
    font-weight: 600;
}

.city-all-toggle {
    border: 1px solid #c0d3ed;
    border-radius: 999px;
    background: #fff;
    color: #0a57b8;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.24rem 0.78rem;
    cursor: pointer;
    white-space: nowrap;
}

.city-all-toggle:hover {
    border-color: #9bbce4;
    background: #f4f9ff;
}

.city-all-toggle.is-open {
    color: #fff;
    background: #0a57b8;
    border-color: #0a57b8;
}

.header-city-panel {
    border-top: 1px solid #d5dfef;
    border-bottom: 1px solid #d5dfef;
    background: #f8fbff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    max-height: min(72vh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.city-panel-inner {
    padding: 0.85rem 0 1rem;
}

.city-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.city-panel-head h2 {
    margin: 0;
    font-size: 1.04rem;
    color: #193458;
}

.city-panel-close {
    border: 1px solid #bfd2ec;
    border-radius: 8px;
    background: #fff;
    color: #1c3f70;
    padding: 0.3rem 0.56rem;
    font-size: 0.84rem;
    cursor: pointer;
}

.city-panel-close:hover {
    background: #f2f7ff;
}

.city-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 0.62rem;
}

.city-panel-item {
    display: block;
    border: 1px solid #d5dfef;
    border-radius: 10px;
    background: #fff;
    padding: 0.55rem 0.62rem;
    text-decoration: none;
    transition: border-color 0.14s ease, box-shadow 0.14s ease, transform 0.14s ease, background 0.14s ease;
}

.city-panel-item:hover {
    border-color: #9fc0e8;
    background: #f8fbff;
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(13, 45, 94, 0.08);
}

.city-panel-item.is-active {
    border-color: #0a57b8;
    background: #f0f6ff;
}

.city-panel-item h3 {
    margin: 0;
    color: #163964;
    font-size: 0.92rem;
}

.city-panel-item p {
    margin: 0.22rem 0 0;
    color: #5a6881;
    font-size: 0.82rem;
    line-height: 1.3;
}

.page-content {
    padding: 1.02rem 0 2.5rem;
}

.hero {
    position: relative;
    isolation: isolate;
    background-color: #fffaf2;
    background-image:
        linear-gradient(110deg, rgba(255, 250, 242, 0.95) 0%, rgba(255, 250, 242, 0.9) 46%, rgba(255, 250, 242, 0.75) 100%),
        linear-gradient(120deg, #fff6e8, #f3fbfb);
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-position: center;
    border: 1px solid #cddbf0;
    border-radius: 20px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    width: 100%;
    min-height: clamp(240px, 30vw, 360px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 19, 14, 0.04) 0%, rgba(25, 19, 14, 0.22) 62%, rgba(25, 19, 14, 0.38) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-parks {
    padding: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: clamp(260px, 30vw, 430px);
    min-height: 0;
    border-radius: 0;
    border-color: #cad8ee;
}

.hero-wide {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0.7rem;
    min-height: clamp(320px, 34vw, 430px);
    height: auto;
    border-radius: 0;
}

.hero-parks::before {
    display: none;
}

.hero-parks-collage {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 2px;
    background: #132746;
}

.hero-parks-tile {
    background-size: cover;
    background-position: center;
    filter: saturate(1.04) contrast(1.04);
}

.hero-parks-tile-1 {
    background-image: url("../images/hero-home.jpg");
}

.hero-parks-tile-2 {
    background-image: url("../images/hero-help.jpg");
}

.hero-parks-tile-3 {
    background-image: url("../images/hero-faq.jpg");
}

.hero-parks-tile-4 {
    background-image: url("../images/hero-contact.jpg");
}

.hero-parks-tile-5 {
    background-image:
        linear-gradient(160deg, rgba(16, 22, 40, 0.08), rgba(16, 22, 40, 0.34)),
        url("../images/hero-home.jpg");
}

.hero-parks-tile-6 {
    background-image:
        linear-gradient(160deg, rgba(16, 22, 40, 0.12), rgba(16, 22, 40, 0.38)),
        url("../images/hero-faq.jpg");
}

.hero-parks-offer {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: min(43%, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1.2rem 1.7rem;
    color: #fff;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), transparent 48%),
        linear-gradient(160deg, #b558ff 0%, #8f3ce9 46%, #802fdf 100%);
    border-radius: 0 52% 52% 0 / 0 100% 100% 0;
}

.hero-parks-offer h1 {
    margin: 0;
    font-size: clamp(2.05rem, 4.5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    max-width: none;
    color: #fff;
    text-shadow: none;
}

.hero-parks-subtitle {
    margin: 1rem 0 0;
    font-size: clamp(1.05rem, 2.3vw, 2rem);
    color: #f9ecff;
}

.hero-parks-small {
    margin: 1rem 0 0;
    font-size: clamp(1rem, 1.85vw, 2rem);
    color: rgba(255, 250, 255, 0.94);
}

.hero-parks-discount {
    margin: 0.35rem 0 0;
    font-size: clamp(2.75rem, 8vw, 7.2rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: #fff;
}

.hero-parks-conditions {
    margin: 1rem 0 0;
    font-size: clamp(0.88rem, 1.45vw, 1.2rem);
    color: #f6ecff;
}

.hero-nav-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(8, 15, 30, 0.34);
    color: #fff;
    font-size: 2rem;
    line-height: 0.9;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-nav-arrow:hover {
    background: rgba(8, 15, 30, 0.52);
}

.hero-nav-arrow-left {
    left: 1.05rem;
}

.hero-nav-arrow-right {
    right: 1.05rem;
}

.hero-slider-dots {
    position: absolute;
    right: 1.1rem;
    bottom: 0.95rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.hero-slider-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(235, 242, 255, 0.62);
}

.hero-slider-dots span.is-active {
    background: #0a57b8;
}

.hero-home {
    background-image:
        linear-gradient(108deg, rgba(26, 20, 14, 0.08) 0%, rgba(26, 20, 14, 0.16) 44%, rgba(26, 20, 14, 0.28) 100%),
        url("../images/hero-home.jpg"),
        url("../images/hero-home.svg");
    background-position: left top, center, right center;
}

.hero-help {
    background-image:
        linear-gradient(108deg, rgba(26, 20, 14, 0.1) 0%, rgba(26, 20, 14, 0.18) 50%, rgba(26, 20, 14, 0.3) 100%),
        url("../images/hero-help.jpg"),
        url("../images/hero-help.svg");
    background-position: left top, center, right center;
}

.hero-faq {
    background-image:
        linear-gradient(108deg, rgba(26, 20, 14, 0.1) 0%, rgba(26, 20, 14, 0.18) 50%, rgba(26, 20, 14, 0.3) 100%),
        url("../images/hero-faq.jpg"),
        url("../images/hero-faq.svg");
    background-position: left top, center, right center;
}

.hero-contact {
    background-image:
        linear-gradient(108deg, rgba(26, 20, 14, 0.1) 0%, rgba(26, 20, 14, 0.18) 50%, rgba(26, 20, 14, 0.3) 100%),
        url("../images/hero-contact.jpg"),
        url("../images/hero-contact.svg");
    background-position: left top, center, right center;
}

.hero-rotator {
    background-image: none;
    background-color: #081a36;
}

.hero-rotator::before {
    z-index: 1;
    background: linear-gradient(108deg, rgba(9, 16, 30, 0.4) 0%, rgba(9, 16, 30, 0.58) 46%, rgba(9, 16, 30, 0.75) 100%);
}

.hero-rotator > * {
    z-index: 2;
}

.hero-rotator-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-rotator-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.78s ease, transform 6.8s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-rotator-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-rotator-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(8, 14, 28, 0.36);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-rotator-nav:hover {
    background: rgba(8, 14, 28, 0.55);
}

.hero-rotator-prev {
    left: 1.05rem;
}

.hero-rotator-next {
    right: 1.05rem;
}

.hero-rotator-dots {
    position: absolute;
    right: 1.08rem;
    bottom: 0.95rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.hero-rotator-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(234, 241, 253, 0.58);
    cursor: pointer;
}

.hero-rotator-dot.is-active {
    background: #0a57b8;
}

.hero h1 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    max-width: 24ch;
    color: #fffaf2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.hero p {
    margin: 0;
    max-width: 72ch;
    color: rgba(255, 248, 238, 0.95);
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.48rem;
    border: 1px solid rgba(255, 246, 232, 0.45);
    border-radius: 999px;
    padding: 0.24rem 0.56rem;
    font-size: 0.73rem;
    letter-spacing: 0.06em;
    background: rgba(17, 12, 9, 0.5);
    color: #fff3df;
}

.hero-actions {
    margin-top: 0.72rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.sales-proof-row {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.sales-proof {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 243, 225, 0.58);
    background: rgba(30, 22, 16, 0.42);
    color: #fff4e4;
    font-size: 0.88rem;
    font-weight: 600;
}

.home-seo-intro {
    margin: 0 0 1rem;
    border: 1px solid #ccdef5;
    background:
        radial-gradient(980px 340px at 118% -58%, rgba(13, 94, 195, 0.16), transparent 44%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    box-shadow: 0 10px 28px rgba(11, 34, 66, 0.1);
}

.home-seo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(290px, 1fr);
    gap: 0.9rem;
    align-items: stretch;
}

.home-seo-main {
    display: flex;
    flex-direction: column;
}

.home-seo-kicker {
    margin: 0;
    width: fit-content;
    border: 1px solid #b5d3f8;
    border-radius: 999px;
    padding: 0.2rem 0.54rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d5ec3;
    background: #ecf4ff;
    font-weight: 650;
}

.home-seo-intro h2 {
    margin: 0.48rem 0 0.5rem;
    font-size: clamp(1.22rem, 2.2vw, 1.68rem);
    line-height: 1.24;
    color: #0c274e;
    letter-spacing: 0.01em;
}

.home-seo-summary {
    margin: 0;
    color: #22415f;
    line-height: 1.58;
    max-width: 88ch;
}

.home-seo-actions {
    margin-top: 0.72rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
}

.home-seo-points {
    margin-top: 0.72rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.home-seo-point {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0.56rem 0.64rem;
    border-radius: 11px;
    border: 1px solid #d2e2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #0f3869;
    font-size: 0.89rem;
    line-height: 1.4;
}

.home-seo-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
}

.home-seo-metric {
    margin: 0;
    border: 1px solid #d5e3f8;
    border-radius: 12px;
    background: #fff;
    padding: 0.72rem 0.72rem 0.66rem;
    box-shadow: 0 4px 14px rgba(8, 42, 88, 0.08);
}

.home-seo-metric-value {
    margin: 0;
    font-size: clamp(1.05rem, 2.05vw, 1.34rem);
    font-weight: 650;
    color: #0a3d7a;
    line-height: 1.26;
}

.home-seo-metric-label {
    margin: 0.24rem 0 0;
    color: #335375;
    font-size: 0.84rem;
    line-height: 1.34;
}

.btn-light {
    background: rgba(255, 255, 255, 0.88);
    color: #124a95;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-light:hover {
    background: #fff;
}

.home-showcase {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(290px, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-showcase-single {
    display: block;
}

.showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
}

.showcase-head h2 {
    margin: 0;
}

.showcase-head a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.showcase-head a:hover {
    text-decoration: underline;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.showcase-grid-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.headliner-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1rem;
    padding: clamp(1rem, 2.2vw, 1.45rem) clamp(0.75rem, 1.4vw, 1.55rem) clamp(1.1rem, 2vw, 1.55rem);
    background: linear-gradient(112deg, #071a37 0%, #0d5ec3 52%, #0b4b9d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid #bfd2ec;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.headliner-strip-head {
    margin-bottom: 0.85rem;
    color: #f2f7ff;
}

.headliner-kicker {
    display: inline-flex;
    border: 1px solid rgba(236, 244, 255, 0.45);
    border-radius: 999px;
    padding: 0.2rem 0.58rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.16);
    color: #f4f8ff;
}

.headliner-strip-head h2 {
    margin: 0.42rem 0 0;
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
    letter-spacing: 0.03em;
}

.headliner-strip-head p {
    margin: 0.34rem 0 0;
    color: rgba(239, 246, 255, 0.92);
    max-width: 75ch;
}

.headliner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.headliner-card {
    position: relative;
    min-height: clamp(220px, 22vw, 290px);
    border: 1px solid rgba(228, 238, 255, 0.4);
    border-radius: 14px;
    overflow: hidden;
    background: #142949;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.headliner-grid .headliner-card:first-child {
    grid-column: 1 / -1;
    min-height: clamp(330px, 35vw, 460px);
}

.headliner-grid .headliner-card:first-child .headliner-media img {
    object-position: center 72%;
}

.headliner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 12, 22, 0.08) 16%, rgba(7, 12, 22, 0.65) 74%, rgba(7, 12, 22, 0.82) 100%),
        linear-gradient(130deg, rgba(8, 61, 143, 0.12), rgba(25, 56, 112, 0.18));
    z-index: 1;
}

.headliner-media {
    position: absolute;
    inset: 0;
    display: block;
}

.headliner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.headliner-no-image {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 1rem;
    color: #e6f0ff;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 600;
    background: linear-gradient(140deg, #11325e, #1b4a87);
}

.headliner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
}

.headliner-city {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(234, 243, 255, 0.92);
}

.headliner-content h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: 0.015em;
}

.headliner-content h3 a {
    color: #ffd978;
    text-decoration: none;
}

.headliner-content h3 a:hover {
    color: #fff3cf;
    text-decoration: underline;
}

.headliner-date {
    margin: 0;
    color: rgba(236, 244, 255, 0.96);
    font-size: 1.01rem;
}

.headliner-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.headliner-price {
    display: inline-flex;
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    font-size: 0.9rem;
    border: 1px solid rgba(232, 241, 255, 0.6);
    background: rgba(255, 255, 255, 0.14);
    color: #f8fbff;
}

.headliner-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.74rem;
    border-radius: 999px;
    background: #fff;
    color: #0b4ea0;
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.headliner-cta:hover,
.headliner-cta:focus-visible {
    background: #dcecff;
    color: #083f84;
    transform: translateY(-1px);
}

.headliner-grid .headliner-card:first-child .headliner-content h3 {
    font-size: clamp(1.85rem, 3.8vw, 2.95rem);
}

.headliner-grid .headliner-card:first-child .headliner-date {
    font-size: 1.08rem;
}

.headliner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 19, 43, 0.28);
}

.headliner-card:hover .headliner-media img {
    transform: scale(1.03);
}

.spotlight-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.spotlight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.spotlight-media {
    display: block;
    height: 170px;
    background: #dde6f5;
}

.spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spotlight-no-image {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.05rem;
    color: #2a3650;
    text-align: center;
    padding: 0.5rem;
}

.spotlight-content {
    padding: 0.62rem 0.68rem 0.72rem;
}

.spotlight-city {
    margin: 0;
    color: #5d6880;
    font-size: 0.8rem;
}

.spotlight-content h3 {
    margin: 0.2rem 0 0.08rem;
    font-size: 1.02rem;
}

.spotlight-title {
    margin: 0 0 0.42rem;
    color: #4e5972;
    font-size: 0.9rem;
}

.spotlight-content a {
    text-decoration: none;
    color: var(--accent);
    font-size: 0.88rem;
}

.spotlight-content a:hover {
    text-decoration: underline;
}

.spotlight-content .spotlight-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.12rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid #0a58ba;
    background: linear-gradient(180deg, #1670da 0%, #0c58ba 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(10, 88, 186, 0.26);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.spotlight-content .spotlight-cta:hover,
.spotlight-content .spotlight-cta:focus-visible {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, #1c7bea 0%, #0e63cf 100%);
    box-shadow: 0 10px 18px rgba(10, 88, 186, 0.34);
    transform: translateY(-1px);
}

.showcase-side h2 {
    margin: 0 0 0.65rem;
    font-size: 1.08rem;
}

.top-sales-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.58rem;
}

.top-sales-item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.5rem;
    align-items: start;
}

.top-sales-rank {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #0c63cb;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.88rem;
    font-weight: 600;
}

.top-sales-content p {
    margin: 0.08rem 0;
    color: #58637a;
    font-size: 0.82rem;
}

.top-sales-link {
    text-decoration: none;
    color: #10213f;
    font-weight: 600;
}

.top-sales-link:hover {
    color: var(--accent);
}

.top-sales-price {
    color: #145cbc;
    font-weight: 600;
}

.artist-inline-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.artist-inline-link:hover {
    text-decoration: underline;
}

.artist-catalog-head {
    margin-bottom: 1rem;
}

.artist-catalog-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #536686;
    font-weight: 700;
}

.artist-catalog-head h1 {
    margin: 0 0 0.45rem;
}

.artist-catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.artist-catalog-grid {
    margin-top: 0.9rem;
}

.artist-card-actions {
    margin: 0.8rem 0 0;
}

.sales-close {
    margin-bottom: 1rem;
}

.sales-close h2 {
    margin: 0 0 0.75rem;
    font-size: 1.22rem;
}

.sales-close-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.65rem;
}

.sales-close-item {
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fffaf2;
    padding: 0.7rem;
}

.sales-close-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
}

.sales-close-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.location-directory {
    margin-bottom: 1rem;
}

.location-directory-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.location-directory-head h2 {
    margin: 0;
    font-size: 1.1rem;
}

.location-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 0.65rem;
}

.location-item {
    background: #fffaf2;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
}

.location-item h3 {
    margin: 0 0 0.2rem;
    color: #1f1b17;
    font-size: 1rem;
}

.location-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.35;
}

.badge-coming-soon {
    background: rgba(212, 85, 31, 0.12);
    color: var(--accent);
    border-color: rgba(212, 85, 31, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.filters {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.filters .field {
    grid-column: span 5;
}

.filters .field-city {
    grid-column: span 4;
}

.filters .field-action {
    grid-column: span 3;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 0.9rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: #c5d8f3;
    box-shadow: var(--shadow-md);
}

.card-media {
    margin: -1rem -1rem 0.8rem;
}

.card-media img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    display: block;
}

.card h3 {
    margin: 0 0 0.4rem;
}

.artist-preview {
    margin-top: 0.65rem;
    padding: 0.65rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
}

.artist-preview-text {
    margin: 0;
    color: var(--muted);
}

.muted {
    color: var(--muted);
}

.meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #105fc6;
}

.badge {
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    background: #fff;
}

.badge-danger {
    color: var(--danger);
    border-color: rgba(143, 29, 44, 0.3);
}

.badge-success {
    color: var(--success);
    border-color: rgba(28, 108, 61, 0.3);
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.6rem 0.98rem;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(140deg, #0d62cc 0%, #0b4fa8 100%);
    color: #fff;
    font-weight: 560;
    letter-spacing: 0.01em;
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease, background 0.16s ease;
}

.btn:hover {
    opacity: 1;
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring), var(--shadow-sm);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--border);
}

.btn-danger {
    background: var(--danger);
}

.btn-accent {
    background: linear-gradient(140deg, #0f63ce 0%, #0a57b8 100%);
}

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.field {
    margin-bottom: 0.8rem;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #263754;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.62rem 0.68rem;
    background: #fff;
    font: inherit;
    transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #89b2e7;
    box-shadow: var(--focus-ring);
    background: #fdfeff;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.split {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.split .left {
    grid-column: span 7;
}

.split .right {
    grid-column: span 5;
}

.admin-gallery-preview {
    border: 1px solid #d1dcef;
    border-radius: 12px;
    background: #fff;
    padding: 0.55rem;
    max-width: 420px;
}

.admin-gallery-preview img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #d8e2f0;
    background: #f8fbff;
}

.event-detail-shell {
    display: grid;
    gap: 1rem;
}

.event-top-card {
    background: #f4f6fb;
    border: 1px solid #d8dbe5;
    border-radius: 18px;
    padding: 1.1rem;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.event-poster img,
.event-poster-placeholder {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #d8dbe5;
    background: #fff;
    display: block;
}

.event-poster img {
    object-fit: cover;
    max-height: 560px;
}

.event-poster-placeholder {
    min-height: 400px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a3940;
    text-align: center;
    padding: 1rem;
}

.event-title {
    margin: 0 0 0.8rem;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    letter-spacing: 0.02em;
}

.event-artist-link {
    margin: 0 0 0.7rem;
    color: #596983;
    font-size: 0.92rem;
}

.event-artist-link .artist-inline-link {
    font-weight: 500;
}

.event-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.event-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    line-height: 1.2;
}

.event-chip-gold {
    color: #b35d00;
    background: #fff7e9;
    border-color: #ebc877;
}

.event-chip-red {
    color: #b32635;
    background: #fff0f2;
    border-color: #f2b3bb;
}

.event-chip-muted {
    color: #324669;
    background: #eef3ff;
    border-color: #c8d5f3;
}

.event-date-line {
    margin: 0;
    font-size: 1.15rem;
    color: #2a3552;
}

.event-location-line {
    margin: 0.35rem 0 0.85rem;
    color: #55657f;
    font-weight: 500;
}

.event-service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.event-service {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.62rem;
    border-radius: 9px;
    border: 1px solid transparent;
    font-size: 0.94rem;
}

.event-service-green {
    color: #14753f;
    background: #ecfbf3;
    border-color: #8fd6ad;
}

.event-service-blue {
    color: #1b4fa8;
    background: #edf4ff;
    border-color: #a8c2ef;
}

.event-service-purple {
    color: #6934c7;
    background: #f4edff;
    border-color: #cab4f6;
}

.event-price-label {
    margin: 0.15rem 0 0;
    color: #5e6881;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.event-price-amount {
    margin: 0.12rem 0 0.65rem;
    color: #6825c5;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 700;
    line-height: 1;
}

.event-main-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.9rem 0 0.6rem;
}

.event-close-box {
    margin-top: 0.75rem;
    border: 1px solid #d4c8ea;
    background: #faf7ff;
    border-radius: 10px;
    padding: 0.65rem 0.72rem;
}

.event-close-box h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: #4d2f84;
}

.event-close-box ul {
    margin: 0;
    padding-left: 1.05rem;
}

.event-close-box li {
    margin-bottom: 0.28rem;
    color: #4d5971;
}

.event-close-urgency {
    margin: 0.5rem 0 0;
    color: #983117;
    font-weight: 600;
    font-size: 0.92rem;
}

.btn-violet {
    background: #672ac3;
    color: #fff;
}

.btn-green {
    background: #55b86f;
    color: #fff;
}

.btn-full {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}

.event-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(320px, 1fr);
    gap: 1rem;
}

.event-map-card {
    background: #f4f6fb;
    border: 1px solid #d8dbe5;
    border-radius: 12px;
    padding: 0.65rem;
}

.event-map-shell {
    position: relative;
    background: #e9ebf0;
    border-radius: 12px;
    border: 1px solid #d8dbe5;
    padding: 0.7rem;
    min-height: 430px;
}

.event-map-toolbar {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: grid;
    gap: 0.45rem;
}

.event-map-toolbar button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #d3d7e0;
    background: #fff;
    color: #273149;
    font-weight: 600;
    cursor: pointer;
}

.event-map-canvas {
    height: 100%;
    min-height: 390px;
    border-radius: 10px;
    background: #d7dae1;
    border: 1px solid #cfd3dc;
    position: relative;
    overflow: hidden;
}

.event-map-canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 40%);
    pointer-events: none;
}

.arena-plan-svg {
    display: block;
    width: min(92%, 820px);
    height: auto;
    margin: 1.2rem auto 1rem;
    filter: drop-shadow(0 8px 16px rgba(44, 51, 66, 0.12));
    position: relative;
    z-index: 2;
}

.arena-category-strip {
    position: absolute;
    left: 50%;
    bottom: 1.05rem;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    z-index: 4;
}

.arena-cat {
    display: inline-flex;
    padding: 0.16rem 0.42rem;
    font-size: 0.72rem;
    border-radius: 3px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid rgba(91, 96, 108, 0.22);
    background: #fff;
    color: #333949;
}

.arena-cat-or {
    background: #cab5bc;
}

.arena-cat-1 {
    background: #ea79a2;
}

.arena-cat-2 {
    background: #41b34a;
}

.arena-cat-early {
    background: #d6c7ff;
}

.arena-cat-fosse {
    background: #e2a25a;
}

.event-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 0.4rem 0.2rem;
    color: #49556f;
}

.event-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-available {
    background: #65c68d;
}

.dot-limited {
    background: #e7b75b;
}

.dot-soldout {
    background: #b2b6c0;
}

.dot-selected {
    background: #616773;
}

.event-ticket-panel {
    background: #fff;
    border: 1px solid #d2dced;
    border-radius: 14px;
    padding: 0.95rem;
    box-shadow: 0 10px 22px rgba(12, 36, 77, 0.08);
}

.event-ticket-panel h2 {
    margin: 0 0 0.68rem;
}

.event-ticket-panel h3 {
    margin: 0.85rem 0 0.6rem;
}

.checkout-kicker {
    margin: 0 0 0.34rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #476694;
    font-weight: 600;
}

.checkout-title {
    font-size: 1.28rem;
    color: #152c4d;
}

.checkout-form {
    display: grid;
    gap: 0.16rem;
}

.checkout-form-section {
    margin-bottom: 0.72rem;
}

.quantity-stepper {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 0.45rem;
}

.quantity-stepper-btn {
    height: 42px;
    border: 1px solid #cfd7e6;
    border-radius: 10px;
    background: #f5f8ff;
    color: #1d355d;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
}

.quantity-stepper-btn:hover {
    background: #edf3ff;
    border-color: #b9c8e2;
}

.quantity-stepper-btn:active {
    transform: translateY(1px);
}

.quantity-stepper input {
    text-align: center;
    font-weight: 600;
}

.quantity-stepper-help {
    margin: 0.36rem 0 0;
    font-size: 0.82rem;
}

.checkout-section-title {
    font-size: 1.08rem;
    color: #19355f;
}

.checkout-type-list {
    margin-bottom: 0.8rem;
}

.ticket-type-list {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.ticket-type-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: center;
    border: 1px solid #d5dae4;
    border-radius: 11px;
    background: #fff;
    padding: 0.6rem 0.7rem;
}

.ticket-type-item input {
    width: auto;
    margin: 0;
}

.ticket-type-main {
    display: grid;
    gap: 0.26rem;
}

.ticket-type-name {
    font-weight: 600;
}

.ticket-type-status {
    font-size: 0.8rem;
    width: fit-content;
    padding: 0.18rem 0.48rem;
    border-radius: 999px;
    border: 1px solid transparent;
}

.ticket-state-available {
    color: #14753f;
    background: #ebfbf2;
    border-color: #a4dfbc;
}

.ticket-state-limited {
    color: #8d6208;
    background: #fff7e8;
    border-color: #efd193;
}

.ticket-state-soldout {
    color: #8f1d2c;
    background: #fff1f3;
    border-color: #f0bcc2;
}

.ticket-type-price {
    color: #1e49b3;
    font-weight: 700;
}

.payment-method-list {
    display: grid;
    gap: 0.55rem;
}

.payment-method-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #d5dae4;
    border-radius: 11px;
    background: #fff;
    padding: 0.56rem 0.66rem;
    cursor: pointer;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.payment-method-item:hover {
    border-color: #a8b8d8;
    background: #fcfdff;
}

.payment-method-item.is-disabled {
    opacity: 0.68;
    cursor: not-allowed;
    border-style: dashed;
    border-color: #c7cfdd;
    background: #f5f6f8;
}

.payment-method-item.is-disabled:hover {
    border-color: #c7cfdd;
    background: #f5f6f8;
}

.payment-method-item.is-disabled .payment-method-note {
    color: #7b8598;
}

.payment-method-item.is-disabled .payment-method-badge {
    background: #fff0f0;
    border-color: #f2b7b7;
    color: #b42318;
}

.payment-method-item input {
    width: auto;
    margin: 0;
}

.payment-method-item:has(input:checked) {
    border-color: #6b8fdf;
    box-shadow: 0 0 0 2px rgba(62, 112, 204, 0.14);
    background: #f5f8ff;
}

.payment-method-main {
    display: grid;
    gap: 0.2rem;
}

.payment-method-name {
    color: #1e2d47;
    font-weight: 600;
    line-height: 1.25;
}

.payment-method-note {
    color: #66748d;
    font-size: 0.82rem;
    line-height: 1.2;
}

.payment-method-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.46rem;
    border-radius: 999px;
    border: 1px solid #b9cae8;
    background: #edf4ff;
    color: #1f509a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.payment-method-help {
    margin: 0.5rem 0 0;
    font-size: 0.84rem;
    color: #5c6b84;
}

.event-order-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.6rem 0 0.75rem;
    background: #fff;
    border: 1px solid #d5dae4;
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
}

.checkout-total {
    border-color: #c3d4ee;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.event-order-summary strong {
    color: #1d46af;
    font-size: 1.35rem;
}

.checkout-submit.btn {
    width: 100%;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.tx-page {
    display: grid;
    gap: 1.15rem;
    margin-bottom: 1.2rem;
}

.tx-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid #bfd2ee;
    border-radius: 16px;
    padding: 1.08rem 1.08rem 1.14rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(15, 99, 206, 0.17), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(15, 99, 206, 0.08), transparent 43%),
        linear-gradient(160deg, #ffffff 0%, #f4f9ff 100%);
    box-shadow: 0 14px 30px rgba(10, 34, 74, 0.1);
}

.tx-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f63ce 0%, #29a0ff 44%, #93c8ff 100%);
    opacity: 0.72;
}

.tx-kicker {
    margin: 0 0 0.34rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #2f5a93;
    font-weight: 700;
}

.tx-hero h1 {
    margin: 0;
    color: #0f294c;
    font-size: clamp(1.58rem, 2.8vw, 2.08rem);
    letter-spacing: 0.01em;
}

.tx-ref,
.tx-email {
    margin: 0.46rem 0 0;
    color: #2e476f;
    line-height: 1.42;
}

.tx-ref strong,
.tx-email strong {
    color: #0f2d56;
}

.tx-status-row {
    margin-top: 0.82rem;
    display: flex;
    gap: 0.52rem;
    flex-wrap: wrap;
}

.tx-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    border-radius: 999px;
    padding: 0.3rem 0.72rem;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid #c8d7ed;
    background: linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
    color: #294d7e;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tx-status-chip.is-success {
    border-color: rgba(28, 108, 61, 0.28);
    background: rgba(28, 108, 61, 0.09);
    color: #157347;
}

.tx-status-chip.is-info {
    border-color: rgba(15, 99, 206, 0.3);
    background: rgba(15, 99, 206, 0.09);
    color: #0a4ea8;
}

.tx-status-chip.is-warning {
    border-color: rgba(188, 136, 19, 0.34);
    background: rgba(248, 214, 139, 0.3);
    color: #8b5d00;
}

.tx-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.06rem;
}

.tx-panel {
    grid-column: span 6;
    border: 1px solid #cad8eb;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 1rem;
    box-shadow: 0 12px 24px rgba(12, 36, 77, 0.08);
}

.tx-panel h2 {
    margin: 0 0 0.72rem;
    padding-bottom: 0.48rem;
    border-bottom: 1px solid #e0eaf8;
    color: #14365f;
    font-size: 1.08rem;
}

.tx-panel-accent {
    grid-column: 1 / -1;
    border-color: #b6cdef;
    background:
        radial-gradient(circle at 0% 0%, rgba(15, 99, 206, 0.1), transparent 44%),
        #fff;
}

.tx-note {
    margin: 0;
    color: #4f6788;
    font-size: 0.9rem;
    line-height: 1.44;
}

.tx-facts {
    margin: 0;
    display: grid;
    gap: 0;
}

.tx-facts div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.82rem;
    padding: 0.54rem 0;
    border-bottom: 1px solid #e4ecf9;
}

.tx-facts div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tx-facts dt {
    margin: 0;
    color: #5b6d89;
    font-weight: 500;
}

.tx-facts dd {
    margin: 0;
    color: #10294a;
    font-weight: 650;
    text-align: right;
}

.tx-transfer-block {
    position: relative;
    margin-top: 0.74rem;
    border: 1px solid #91b8ec;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(15, 99, 206, 0.15) 0%, rgba(15, 99, 206, 0.04) 54%, rgba(255, 194, 92, 0.18) 100%),
        #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 20px rgba(15, 99, 206, 0.1);
    padding: 0.88rem 0.88rem 0.88rem 1rem;
}

.tx-transfer-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 8px;
    background: linear-gradient(180deg, #0f63ce 0%, #5cb1ff 100%);
}

.tx-transfer-block p {
    margin: 0;
    padding: 0.42rem 0;
    color: #17345b;
    line-height: 1.38;
    border-bottom: 1px solid rgba(22, 76, 152, 0.14);
}

.tx-transfer-block p:last-child {
    border-bottom: 0;
}

.tx-transfer-block p strong {
    color: #0a57b8;
    display: inline-block;
    min-width: 148px;
}

.tx-upload-card {
    margin-top: 0.9rem;
    border: 1px solid #cddcef;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 0.88rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.tx-upload-card h3 {
    margin: 0 0 0.38rem;
    color: #16355f;
}

.tx-upload-card .field {
    margin-bottom: 0.6rem;
}

.tx-upload-card label {
    font-weight: 560;
    color: #27466e;
}

.tx-upload-card input[type="file"] {
    width: 100%;
    border: 1px dashed #96b9e7;
    border-radius: 10px;
    background: #f6faff;
    padding: 0.58rem 0.62rem;
    color: #27405f;
}

.tx-upload-card input[type="file"]::file-selector-button {
    margin-right: 0.58rem;
    border: 1px solid #9dbde5;
    border-radius: 8px;
    background: #fff;
    color: #1c4f8f;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.32rem 0.56rem;
    cursor: pointer;
}

.tx-upload-card .btn {
    width: 100%;
    justify-content: center;
}

.tx-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

body.has-tx-receipt-overlay {
    overflow: hidden;
    touch-action: none;
}

.tx-receipt-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tx-receipt-overlay[hidden] {
    display: none;
}

.tx-receipt-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 20, 39, 0.62);
    backdrop-filter: blur(3px);
}

.tx-receipt-overlay-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 430px);
    border-radius: 16px;
    border: 1px solid #cdd9ea;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 46px rgba(7, 26, 56, 0.32);
    padding: 1rem 1rem 1.05rem;
    text-align: center;
    animation: tx-overlay-in 0.2s ease-out;
}

.tx-receipt-overlay-dialog::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #f2cab7;
    background: #fff3ee;
    color: #bf441d;
    font-weight: 700;
    margin-bottom: 0.52rem;
}

.tx-receipt-overlay-dialog h3 {
    margin: 0;
    color: #17345e;
    font-size: 1.12rem;
}

.tx-receipt-overlay-dialog p {
    margin: 0.66rem 0 0.95rem;
    color: #2a3f61;
    line-height: 1.45;
}

.tx-receipt-overlay-dialog .btn {
    min-width: 120px;
}

@keyframes tx-overlay-in {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.testimonials-shell {
    margin-bottom: 1rem;
}

.testimonials-shell h1 {
    margin: 0 0 0.35rem;
}

.testimonials-summary {
    margin-top: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.66rem;
    border-radius: 999px;
    border: 1px solid #bfd2ec;
    background: #f4f9ff;
    color: #23426f;
    font-size: 0.92rem;
}

.testimonials-summary-stars {
    color: #cc8f12;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.testimonials-score {
    color: #0d5ec3;
    font-size: 1.02rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.85rem;
}

.testimonial-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0.82rem 0.86rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    border-color: #bfd2ec;
    box-shadow: var(--shadow-md);
}

.testimonial-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.testimonial-name {
    margin: 0;
    font-weight: 600;
    color: #182b4b;
}

.testimonial-city {
    margin: 0;
    font-size: 0.82rem;
    color: #60708a;
}

.testimonial-stars {
    margin: 0.42rem 0 0.44rem;
    color: #cc8f12;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
}

.testimonial-stars span {
    color: #4d5c77;
    font-size: 0.84rem;
    letter-spacing: normal;
}

.testimonial-comment {
    margin: 0;
    color: #31415d;
}

.testimonial-concert,
.testimonial-date {
    margin: 0.42rem 0 0;
    font-size: 0.84rem;
    color: #5a6881;
}

.help-card h2 {
    margin-top: 0;
    font-size: 1.1rem;
}

.help-card p {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem 0.85rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.alert {
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    font-weight: 500;
}

.alert-error {
    background: rgba(143, 29, 44, 0.08);
    color: var(--danger);
    border-color: rgba(143, 29, 44, 0.25);
}

.alert-success {
    background: rgba(28, 108, 61, 0.09);
    color: var(--success);
    border-color: rgba(28, 108, 61, 0.25);
}

.alert-info {
    background: rgba(29, 122, 120, 0.09);
    color: var(--accent-2);
    border-color: rgba(29, 122, 120, 0.25);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding: 0.65rem;
    vertical-align: top;
}

th {
    background: #fff7ea;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.kpi {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 0.9rem;
}

.kpi strong {
    display: block;
    font-size: 1.4rem;
    color: var(--accent);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    background: linear-gradient(180deg, #0b1730 0%, #081327 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: grid;
    gap: 0.62rem;
    color: #c8d5ea;
    padding: 1.18rem 0 1.35rem;
}

.footer-top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-brand-line,
.footer-payment-line {
    margin: 0;
    letter-spacing: 0.01em;
}

.footer-links {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #ecf3ff;
    transition: color 0.16s ease;
}

.footer-links a:hover {
    color: #8fc3ff;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    align-items: center;
    color: #aab8d0;
    font-size: 0.92rem;
}

.footer-legal-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.16s ease;
}

.footer-legal-links a:hover {
    color: #8fc3ff;
}

.footer-sep {
    opacity: 0.65;
}

.legal-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.15rem 0 0.35rem;
}

.legal-head {
    margin-bottom: 0.75rem;
}

.legal-card h1 {
    margin-top: 0;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.15rem 0 0.42rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-meta p {
    margin: 0;
    color: inherit;
}

.legal-meta p + p::before {
    content: "| ";
    color: #a09a93;
}

.legal-link-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.35rem 0 0.45rem;
}

.legal-link-chips a {
    text-decoration: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2f2924;
    padding: 0;
    font-size: 0.9rem;
}

.legal-link-chips a + a::before {
    content: "| ";
    color: #a09a93;
}

.legal-link-chips a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.legal-link-chips a.is-active {
    color: var(--accent);
    text-decoration: underline;
}

.legal-card h2 {
    margin: 1rem 0 0.4rem;
    font-size: 1.1rem;
}

.legal-card p {
    margin-top: 0;
}

.legal-note {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0.65rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.legal-card-intro {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.legal-card ul {
    margin: 0.4rem 0 0.8rem;
    padding-left: 1.1rem;
    color: #4b4d56;
}

.cookie-pref-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fffaf2;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.7rem;
}

.cookie-pref-box p {
    margin: 0;
}

.cookie-consent-summary {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.75rem;
}

.cookie-consent-summary p {
    margin: 0.15rem 0;
}

.cookie-pref-form {
    margin-bottom: 0.35rem;
}

.cookie-pref-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.28rem;
}

.cookie-pref-head h2 {
    margin: 0;
    font-size: 1rem;
}

.cookie-pref-required {
    border-color: #d4d9e3;
    background: #f7f9fe;
}

.cookie-switch {
    border: 1px solid #d4d9e3;
    background: #fff;
    border-radius: 999px;
    padding: 0.18rem 0.52rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #445067;
}

.cookie-switch-locked {
    color: #5f6582;
    border-color: #cad1df;
    background: #eef2fa;
}

.cookie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #344055;
}

.cookie-toggle input {
    width: auto;
    margin: 0;
}

.cookie-pref-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.cookie-status {
    margin-top: 1rem;
}

@media (max-width: 1180px) {
    .header-main-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .header-search {
        grid-column: 1 / -1;
        max-width: 460px;
    }
}

@media (max-width: 860px) {
    .site-header .container,
    .page-content.container,
    .site-footer .container {
        padding-left: 0.72rem;
        padding-right: 0.72rem;
    }

    .header-top-inner {
        min-height: auto;
        padding: 0.35rem 0;
    }

    .header-trust-line {
        display: none;
    }

    .header-main-inner {
        grid-template-columns: auto 1fr auto;
        gap: 0.55rem;
        padding: 0.58rem 0;
    }

    .brand-main {
        font-size: 1.32rem;
    }

    .main-nav,
    .main-nav > a,
    .nav-category summary {
        font-size: 0.9rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-nav-menu {
        display: block;
        justify-self: end;
    }

    .header-search {
        width: 100%;
        grid-column: 1 / -1;
    }

    .header-search input {
        padding: 0.5rem 0.72rem;
    }

    .header-search button {
        padding: 0.5rem 0.68rem;
        font-size: 0.74rem;
    }

    .city-links {
        gap: 0.78rem;
        padding: 0.4rem 0 0.5rem;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
    }

    .city-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0.56rem;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        scroll-snap-align: start;
    }

    .city-all-toggle {
        font-size: 0.85rem;
        padding: 0.2rem 0.62rem;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        scroll-snap-align: start;
    }

    .city-panel-grid {
        grid-template-columns: 1fr;
    }

    .home-showcase {
        grid-template-columns: 1fr;
    }

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

    .headliner-strip {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 14px;
        padding-top: 0.92rem;
        padding-bottom: 1.08rem;
    }

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

    .headliner-grid .headliner-card:first-child {
        min-height: 300px;
    }

    .headliner-grid .headliner-card:first-child .headliner-media img {
        object-position: center 68%;
    }

    .headliner-grid .headliner-card:nth-child(n + 2) {
        min-height: 220px;
    }

    .hero,
    .hero-home,
    .hero-help,
    .hero-faq,
    .hero-contact {
        background-position: left top, 72% center, right center;
    }

    .hero {
        min-height: 200px;
        padding: 1rem;
    }

    .hero-wide,
    .hero-parks {
        min-height: 360px;
        height: auto;
        margin-top: 0.55rem;
    }

    .hero-rotator-nav {
        width: 40px;
        height: 40px;
        font-size: 1.72rem;
    }

    .hero-rotator-prev {
        left: 0.75rem;
    }

    .hero-rotator-next {
        right: 0.75rem;
    }

    .hero-rotator-dots {
        right: 0.78rem;
        bottom: 0.7rem;
    }

    .hero h1 {
        font-size: clamp(1.35rem, 5.3vw, 1.95rem);
        max-width: 20ch;
    }

    .hero p {
        font-size: 0.92rem;
        max-width: 56ch;
    }

    .sales-proof {
        font-size: 0.8rem;
        padding: 0.3rem 0.54rem;
    }

    .home-seo-layout {
        grid-template-columns: 1fr;
    }

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

    .event-top-card,
    .event-booking-grid {
        grid-template-columns: 1fr;
    }

    .event-map-shell {
        min-height: 300px;
    }

    .event-map-canvas {
        min-height: 260px;
    }

    .nav-category-overlay {
        left: auto;
        right: 0;
    }

    .filters .field,
    .filters .field-city,
    .filters .field-action {
        grid-column: span 12;
    }

    .split .left,
    .split .right {
        grid-column: span 12;
    }

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

    .tx-panel {
        grid-column: auto;
        padding: 0.86rem;
    }

    .tx-hero {
        padding: 0.9rem;
    }

    .tx-status-chip {
        font-size: 0.77rem;
    }

    .tx-transfer-block {
        padding: 0.76rem 0.76rem 0.76rem 0.9rem;
    }

    .tx-transfer-block p strong {
        min-width: 120px;
    }

    .tx-upload-card {
        padding: 0.74rem;
    }

    .tx-receipt-overlay-dialog {
        width: min(94vw, 400px);
        padding: 0.9rem;
    }

    .admin-header-inner {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 0.55rem;
        min-height: 62px;
        padding: 0.56rem 0;
    }

    .admin-mobile-menu {
        display: block;
        justify-self: end;
    }

    .admin-nav,
    .admin-header-actions {
        display: none;
    }
}

@media (max-width: 640px) {
    .header-top-links {
        display: none;
    }

    .mobile-nav-menu summary {
        padding: 0.42rem 0.74rem;
        font-size: 0.86rem;
    }

    .header-search {
        border-radius: 12px;
    }

    .header-search button {
        font-size: 0.72rem;
    }

    .city-panel-inner {
        padding: 0.68rem 0 0.86rem;
    }

    .header-city-panel {
        max-height: 68vh;
    }

    .city-panel-head h2 {
        font-size: 0.95rem;
    }

    .city-panel-grid {
        display: block;
    }

    .city-panel-item {
        border: 0;
        border-bottom: 1px solid #d7e2f3;
        border-radius: 0;
        background: transparent;
        padding: 0.6rem 0.05rem;
        box-shadow: none;
        transform: none;
    }

    .city-panel-item:first-child {
        border-top: 1px solid #d7e2f3;
    }

    .city-panel-item:hover,
    .city-panel-item.is-active {
        border-color: #d7e2f3;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .city-panel-item h3 {
        font-size: 0.9rem;
    }

    .city-panel-item p {
        margin-top: 0.18rem;
        font-size: 0.8rem;
        line-height: 1.28;
    }

    .hero {
        padding: 0.9rem;
    }

    .hero-wide,
    .hero-parks {
        min-height: 334px;
    }

    .hero-rotator-nav {
        display: none;
    }

    .hero-rotator-slide,
    .hero-rotator-slide.is-active {
        transform: none;
    }

    .hero-rotator-slide {
        transition: opacity 0.42s ease;
    }

    .hero-kicker {
        font-size: 0.66rem;
        margin-bottom: 0.36rem;
    }

    .hero-actions {
        width: 100%;
        gap: 0.36rem;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .btn,
    .city-all-toggle,
    .mobile-nav-menu summary,
    .header-search button,
    .quantity-stepper-btn {
        min-height: 42px;
    }

    .sales-proof-row {
        gap: 0.32rem;
    }

    .showcase-main,
    .showcase-side,
    .home-seo-intro,
    .sales-close,
    .filters {
        padding: 0.82rem;
    }

    .home-seo-points {
        grid-template-columns: 1fr;
    }

    .home-seo-actions .btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .home-seo-metrics {
        grid-template-columns: 1fr;
    }

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

    .headliner-grid .headliner-card:first-child {
        grid-column: auto;
        min-height: 275px;
    }

    .headliner-grid .headliner-card {
        min-height: 245px;
    }

    .card {
        padding: 0.86rem;
    }

    .card-media {
        margin: -0.86rem -0.86rem 0.7rem;
    }

    .card-media img {
        height: 185px;
    }

    .event-main-actions .btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .tx-facts div {
        flex-direction: column;
        gap: 0.18rem;
    }

    .tx-facts dd {
        text-align: left;
    }

    .tx-transfer-block p strong {
        min-width: 0;
    }

    .tx-actions .btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .event-map-toolbar {
        top: 0.52rem;
        right: 0.52rem;
    }

    .event-map-toolbar button {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }

    .payment-method-item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .payment-method-badge {
        grid-column: 2;
        justify-self: start;
    }

    .quantity-stepper {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .quantity-stepper-btn {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-topbar {
        display: none;
    }

    .site-header .container,
    .page-content.container,
    .site-footer .container {
        padding-left: 0.56rem;
        padding-right: 0.56rem;
    }

    .header-main-inner {
        gap: 0.45rem;
        padding: 0.52rem 0;
    }

    .brand-main {
        font-size: 1.16rem;
    }

    .brand-sub {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .main-nav,
    .main-nav > a,
    .nav-category summary {
        font-size: 0.84rem;
    }

    .main-nav > a,
    .nav-category summary {
        padding: 0.42rem 0.62rem;
    }

    .city-links {
        gap: 0.55rem;
    }

    .city-links a,
    .city-all-toggle {
        font-size: 0.8rem;
    }

    .hero-wide,
    .hero-parks {
        min-height: 308px;
        height: auto;
        margin-top: 0.46rem;
    }

    .hero {
        padding: 0.76rem;
    }

    .hero h1 {
        font-size: clamp(1.12rem, 6vw, 1.48rem);
    }

    .hero p {
        font-size: 0.86rem;
    }

    .hero-rotator-dots {
        right: 0.62rem;
        bottom: 0.58rem;
        gap: 0.34rem;
    }

    .hero-rotator-dot {
        width: 10px;
        height: 10px;
    }

    .headliner-strip-head p {
        font-size: 0.89rem;
    }

    .sales-proof-row {
        display: none;
    }

    .top-sales-item {
        grid-template-columns: 26px minmax(0, 1fr);
    }

    .top-sales-rank {
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
    }

    .footer-legal-links {
        font-size: 0.84rem;
    }

    .admin-mobile-menu summary {
        padding: 0.4rem 0.7rem;
        font-size: 0.84rem;
    }

    .admin-mobile-panel {
        width: min(280px, 90vw);
        padding: 0.54rem;
    }

    .admin-mobile-link {
        font-size: 0.84rem;
        padding: 0.42rem 0.5rem;
    }
}
