:root {
    --ink: #16151a;
    --muted: #6b6470;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --line: rgba(22, 21, 26, 0.12);
    --wine: #7b1e32;
    --wine-dark: #43121e;
    --gold: #c59a45;
    --sage: #60745f;
    --stage: #111827;
    --shadow: 0 18px 55px rgba(22, 21, 26, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.new-home {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.new-home a {
    color: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 16px 22px;
    transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(251, 250, 247, 0.92);
    box-shadow: 0 10px 35px rgba(22, 21, 26, 0.08);
    backdrop-filter: blur(18px);
    padding-block: 10px;
}

.nav-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0;
}

.site-header:not(.is-scrolled) .brand > span:last-child {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .brand > span:last-child {
    color: var(--ink);
    text-shadow: none;
}

.brand-mark-shell {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .brand {
    color: var(--ink);
}

.brand-mark {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.28);
    color: #fff;
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled .nav-links {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.nav-links a {
    display: block;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.94rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .nav-links a:hover {
    background: rgba(123, 30, 50, 0.08);
    color: var(--wine);
}

.admin-link {
    opacity: 0.68;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.24);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

.site-header.is-scrolled .menu-toggle {
    border-color: var(--line);
    background: #fff;
}

.site-header.is-scrolled .menu-toggle span {
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: var(--stage);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(67, 18, 30, 0.72) 52%, rgba(17, 24, 39, 0.42) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.68), transparent 40%);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    filter: saturate(0.92) contrast(1.02);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    min-height: 92vh;
    margin: 0 auto;
    padding: 128px 22px 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: end;
    gap: 44px;
}

.hero-copy {
    max-width: 760px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero h1 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(3.2rem, 9vw, 7.6rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 600px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-facts span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.94rem;
    font-weight: 700;
}

.cta-button,
.book-button,
.details-button,
.btn-primary,
.btn-secondary {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button,
.book-button,
.btn-primary {
    color: #fff;
    background: var(--wine);
    box-shadow: 0 14px 32px rgba(123, 30, 50, 0.32);
}

.cta-button {
    padding: 15px 22px;
}

.cta-button:hover,
.book-button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--wine-dark);
}

.book-button:disabled,
.btn-primary:disabled,
.book-button.is-sold-out,
.btn-primary.is-sold-out {
    cursor: not-allowed;
    background: #8a8f98;
    box-shadow: none;
    opacity: 0.82;
}

.book-button:disabled:hover,
.btn-primary:disabled:hover,
.book-button.is-sold-out:hover,
.btn-primary.is-sold-out:hover {
    transform: none;
    background: #8a8f98;
}

.ghost-link,
.details-button,
.btn-secondary {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ghost-link {
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 700;
}

.hero-panel {
    color: #fff;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.42);
    backdrop-filter: blur(18px);
}

.hero-panel dl,
.hero-panel dd {
    margin: 0;
}

.hero-panel div {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:first-child {
    padding-top: 0;
    border-top: 0;
}

.hero-panel dt {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-panel dd {
    margin-top: 3px;
    font-weight: 700;
}

.section-heading {
    width: min(1180px, 100%);
    margin: 0 auto 32px;
    padding: 0 22px;
}

.section-heading h2,
.about-content h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.events-section {
    padding: 74px 0 46px;
}

.events-container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.event-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 10px 32px rgba(22, 21, 26, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.event-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #d9d5ce;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent);
}

.event-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.event-info h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    line-height: 1.2;
}

.event-date {
    color: var(--wine);
    font-weight: 700;
    margin-bottom: 12px;
}

.event-info p {
    margin: 0 0 18px;
    color: var(--muted);
}

.book-button,
.details-button {
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
}

.details-button {
    color: var(--ink);
    background: #f3f0ea;
    border-color: var(--line);
}

.loading,
.no-events {
    grid-column: 1 / -1;
    padding: 36px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.64);
}

.about-section {
    margin: 28px 0 0;
    padding: 70px 22px;
    background: #fff;
}

.about-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
    align-items: center;
    padding: 0;
}

.about-visual {
    min-height: 310px;
    display: grid;
    place-items: center;
    background: #fff;
}

.logo-big {
    width: min(390px, 92%);
    height: auto;
}

.about-content p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf7;
    font-weight: 700;
}

.map-container {
    width: min(1180px, 100%);
    margin: 34px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(22, 21, 26, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: 0;
}

.footer {
    color: #fff;
    background: #111827;
    padding: 48px 22px 22px;
}

.footer-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 0.8fr;
    gap: 28px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo-frame {
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: #fff;
}

.footer-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer h3,
.footer h4,
.footer p {
    margin-top: 0;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-contacts,
.footer-support {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer a {
    text-decoration: none;
}

.footer-contacts a,
.footer-contacts p,
.footer-support a {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.footer-contacts i,
.footer-support i {
    width: 1rem;
    flex: 0 0 1rem;
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 30px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.support-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 998;
    display: grid;
    justify-items: end;
    gap: 12px;
}

.support-button {
    display: inline-flex;
    width: auto;
    min-width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px 0 12px;
    border: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #2481cc, #7b1e32);
    box-shadow: 0 18px 42px rgba(36, 129, 204, 0.28);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.support-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
    box-shadow: 0 22px 48px rgba(36, 129, 204, 0.34);
}

.support-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex: 0 0 34px;
}

.support-text {
    color: #fff;
    white-space: nowrap;
}

.support-menu {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: min(340px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(22, 21, 26, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(22, 21, 26, 0.2);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transform-origin: right bottom;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    visibility: hidden;
}

.support-menu::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-right: 1px solid rgba(22, 21, 26, 0.12);
    border-bottom: 1px solid rgba(22, 21, 26, 0.12);
    transform: rotate(45deg);
}

.support-menu-header {
    display: grid;
    gap: 2px;
    padding: 6px 8px 4px;
}

.support-menu-header span {
    color: var(--wine);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.support-menu-header strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.25;
}

.support-widget.is-open .support-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

.support-menu-item {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #fbfaf7);
    color: var(--ink);
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.support-menu-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 10px;
    background: rgba(36, 129, 204, 0.1);
    color: #2481cc;
    font-size: 1.15rem;
}

.support-menu-item strong,
.support-menu-item small {
    display: block;
}

.support-menu-item strong {
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.25;
}

.support-menu-item small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.32;
}

.support-menu-item:hover {
    transform: translateY(-1px);
    border-color: rgba(123, 30, 50, 0.2);
    background: #fff;
    box-shadow: 0 14px 32px rgba(22, 21, 26, 0.1);
}

.operator-chat-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: min(380px, calc(100vw - 32px));
    max-height: min(620px, calc(100vh - 112px));
    display: grid;
    grid-template-rows: auto minmax(120px, 1fr) auto;
    border: 1px solid rgba(22, 21, 26, 0.12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(22, 21, 26, 0.22);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transform-origin: right bottom;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.support-widget.chat-open .operator-chat-panel {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.support-widget.chat-open .support-menu {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    visibility: hidden;
}

.operator-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #7b1e32);
}

.operator-chat-head span,
.operator-chat-head strong,
.operator-chat-head small {
    display: block;
}

.operator-chat-head span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.operator-chat-head strong {
    margin-top: 2px;
    font-size: 1rem;
}

.operator-chat-head small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 700;
}

.operator-chat-close {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.operator-chat-body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 14px;
    overflow: auto;
    background: linear-gradient(180deg, #fbfaf7, #f3f0ea);
}

.chat-message {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.42;
}

.chat-message.operator {
    justify-self: start;
    border-bottom-left-radius: 4px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(22, 21, 26, 0.08);
}

.chat-message.user {
    justify-self: end;
    border-bottom-right-radius: 4px;
    background: #2481cc;
    color: #fff;
}

.chat-message.system {
    justify-self: center;
    max-width: 94%;
    border: 1px solid rgba(123, 30, 50, 0.14);
    background: rgba(123, 30, 50, 0.08);
    color: #6b2130;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
}

.chat-message a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.chat-message code {
    padding: 0.08rem 0.28rem;
    border-radius: 5px;
    background: rgba(15, 23, 42, 0.08);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.9em;
}

.chat-message.user code {
    background: rgba(255, 255, 255, 0.18);
}

.chat-message.is-typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.chat-message.is-typing span {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: #9aa3af;
    animation: chatTyping 1s infinite ease-in-out;
}

.chat-message.is-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.chat-message.is-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chatTyping {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.operator-chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.operator-chat-quick button {
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(36, 129, 204, 0.2);
    border-radius: 999px;
    background: #fff;
    color: #2481cc;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.operator-chat-form {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.operator-chat-form textarea {
    flex: 1;
    width: 100%;
    min-height: 44px;
    max-height: 128px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfaf7;
    color: var(--ink);
    font: inherit;
    resize: none;
    overflow: auto;
}

.operator-chat-form textarea:focus {
    outline: none;
    border-color: #2481cc;
    box-shadow: 0 0 0 3px rgba(36, 129, 204, 0.12);
}

.operator-chat-submit {
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 12px;
    background: #7b1e32;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.operator-chat-submit span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.operator-chat-foot {
    margin: 0;
    padding: 0 14px 14px;
    background: #fff;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

.operator-chat-foot a {
    color: #7b1e32;
    font-weight: 800;
    text-decoration: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    padding: 24px;
    background: rgba(17, 24, 39, 0.62);
    overflow: auto;
}

.modal-content {
    position: relative;
    width: min(840px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    margin: 0 auto;
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.modal-content h3 {
    margin: 0 44px 18px 0;
}

.close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.booking-form,
.form-group {
    max-width: 100%;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.btn-primary,
.btn-secondary {
    padding: 12px 18px;
}

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

.seat-map {
    margin: 16px 0;
    padding: 18px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    overflow: auto;
}

.stage {
    margin-bottom: 24px;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--wine), var(--gold));
}

.seats-grid {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.seat-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-label {
    min-width: 30px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.seat {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
}

.seat-free {
    background: var(--sage);
}

.seat-selected {
    background: #2481cc !important;
}

.seat-occupied {
    background: #6b7280 !important;
    cursor: not-allowed;
    opacity: 0.62;
}

.seat-vip {
    background: linear-gradient(135deg, var(--gold), var(--wine));
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.legend-color {
    width: 18px;
    height: 18px;
    border-radius: 5px;
}

.selection-info,
.booking-details,
.confirmation-section {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf7;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 320px;
    padding: 14px 16px;
    border-radius: 8px;
    color: #fff;
    box-shadow: var(--shadow);
}

.notification-success { background: var(--sage); }
.notification-error { background: var(--wine); }
.notification-info { background: #2481cc; }

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notification-close {
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
}

.animated-section {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 880px) {
    .site-header {
        padding: 12px 16px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 8px;
        color: var(--ink);
        background: rgba(255, 255, 255, 0.96);
        border-color: var(--line);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 14px;
    }

    .brand {
        color: #fff;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-items: end;
        gap: 26px;
        padding-top: 112px;
    }

    .hero-panel {
        max-width: 460px;
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .brand span {
        font-size: 0.95rem;
    }

    .hero {
        min-height: 760px;
    }

    .hero-inner {
        min-height: 760px;
        padding-inline: 16px;
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 4.7rem);
    }

    .hero-lead {
        font-size: 1.02rem;
    }

    .hero-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button,
    .ghost-link,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-panel {
        padding: 18px;
    }

    .section-heading {
        padding-inline: 16px;
    }

    .events-container {
        width: calc(100% - 32px);
    }

    .about-section {
        padding: 52px 16px;
    }

    .events-section {
        padding-top: 52px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 320px;
    }

    .footer-container,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-bottom {
        gap: 6px;
    }

    .support-widget {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .support-button {
        justify-self: end;
        min-width: 50px;
        height: 50px;
        padding: 0 14px 0 8px;
        font-size: 0.92rem;
    }

    .support-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .support-text {
        display: inline;
    }

    .support-menu,
    .operator-chat-panel {
        right: 0;
        width: min(100%, calc(100vw - 28px));
        bottom: 62px;
    }

    .support-menu {
        padding: 10px;
    }

    .support-menu-item {
        min-height: 68px;
        padding: 10px;
    }

    .support-menu-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .operator-chat-panel {
        max-height: calc(100vh - 92px);
    }

    .operator-chat-form {
        gap: 8px;
    }

    .modal {
        padding: 0;
    }

    .modal-content {
        width: 100%;
        min-height: 100vh;
        max-height: none;
        border-radius: 0;
        padding: 22px 16px;
    }

    .seat {
        width: 46px;
        height: 46px;
    }

    .seat-row {
        gap: 7px;
    }
}
