:root {
    --gold: #dfaf67;
    --gold-soft: #e8c488;
    --gold-deep: #dfaf67;
    --ink: #0c0c0c;
    --ink-soft: #161616;
    --paper: #f4f0e8;
    --paper-2: #fffcf7;
    --line: rgba(17, 17, 17, 0.08);
    --muted: #000;
    --text: #24221e;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(12, 12, 12, 0.08);
    --radius: 8px;
    --header-h: 80px;
}

@font-face {
    font-family: "GothamRoundedBook";
    src: url("../fonts/GothamRounded-Book.eot?c846bc53137d833a3e96f1845ced3ef9");
    src: url("../fonts/GothamRounded-Book.otf?1e2eac8ad783960d60fa03ee3e26230d") format("opentype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "GothamRoundedMedium";
    src: url("../fonts/GothamRounded-Medium.eot?6fce1801e76eddd5f97dd414f16acf40");
    src: url("../fonts/GothamRounded-Medium.otf?10d88929ec344e9ef79674137b19d094") format("opentype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "GothamRoundedBold";
    src: url("../fonts/GothamRounded-Bold.eot?b25990fb00e82e2f119ef46efd6f77ab");
    src: url("../fonts/GothamRounded-Bold.otf?a829ff15fe2b18d9330bf80c78dc269c") format("opentype");
    font-style: normal;
    font-weight: 700;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "GothamRoundedBook";
    color: var(--text);
    background: var(--paper);
    line-height: 1.55;
}

body.has-dock { padding-bottom: 84px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 96px 0 80px;
    scroll-margin-top: 100px;
}

.section.alt { background: linear-gradient(180deg, #fffdf8 0%, #f7f2e8 100%); }

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-kicker b {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.section-kicker::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.section-title {
    margin: 0 0 10px;
    font-family: Cinzel, serif;
    font-size: clamp(34px, 4.4vw, 50px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-lead {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 500;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-collapse {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 28px;
}

.header-cta { margin-left: auto; }

.nav-phone { display: none; }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand img {
    height: 54px;
    width: auto;
    max-width: min(220px, 46vw);
    display: block;
    object-fit: contain;
}

.brand-copy strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.brand-copy span {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(18px, 2.4vw, 40px);
    white-space: nowrap;
}

.nav > a,
.nav-link {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: none;
    border: 0;
    padding: 0;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Cinzel';
}

.nav > a::after,
.nav-item > .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav > a:hover,
.nav > a.is-active,
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.is-open > .nav-link { color: var(--gold); }

.nav > a.is-active::after,
.nav > a:hover::after,
.nav-item.is-open > .nav-link::after,
.nav-item:hover > .nav-link::after { width: 100%; }

.nav-item {position: relative;padding: 18px 0;font-family: 'Cinzel';}

.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    padding: 16px 22px;
    border-radius: 0;
    background: #fff;
    border: 0;
    box-shadow: 0 16px 50px rgb(27 27 27 / 12%);
}

.nav-item:hover .nav-sub,
.nav-item.is-open .nav-sub { display: block; }

.nav-sub a {
    display: block;
    padding: 8px 0;
    border-radius: 0;
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.nav-sub a:hover {
    background: none;
    color: var(--gold);
    padding-left: 6px;
}

.nav-link { padding-right: 14px; }

.nav-item > .nav-link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-outline {
    color: var(--gold);
    border: 1px solid rgba(223, 175, 103, 0.7);
    background: rgba(223, 175, 103, 0.08);
    padding: 11px 18px;
    font-size: 12px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Cinzel';
    font-weight: 700;
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    font-size: 13px;
}

.btn-dark {
    width: 100%;
    background: var(--ink);
    color: var(--white);
    padding: 13px 18px;
    font-size: 12px;
    border-radius: 4px;
}

.venue-card.is-selected .btn-dark,
.btn-dark:hover {
    background: var(--gold);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    border-radius: 10px;
    font-size: 20px;
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background: #000 center/cover no-repeat;
    padding: calc(var(--header-h) + 40px) 0 80px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-kicker {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 18px;
    font-family: Cinzel, serif;
    font-size: clamp(46px, 6.8vw, 78px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--gold);
}

.hero p {
    margin: 0 0 28px;
    max-width: 500px;
    font-size: 17px;
    color: #efe7d6;
}

.stepper {
    background: #1a1a1a;
}

.stepper-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    color: var(--white);
    padding: 36px 0;
}

.stepper a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stepper .num {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(223, 175, 103, 0.55);
    color: var(--gold);
    background: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.stepper .step-copy {
    display: grid;
    gap: 4px;
}

.stepper strong {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Cinzel';
}

.stepper small {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    font-style: italic;
}

.stepper a.is-done .num,
.stepper a.is-current .num {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.venue-grid,
.menu-grid,
.extra-grid {
    display: grid;
    gap: 22px;
}

.venue-grid { grid-template-columns: repeat(3, 1fr); }

.venue-card,
.drink-card,
.menu-card,
.extra-card {
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.venue-card {
    display: flex;
    flex-direction: column;
}

.venue-card:hover,
.drink-card:hover,
.menu-card:hover,
.extra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(12, 12, 12, 0.12);
}

.venue-card.is-selected,
.drink-card.is-selected,
.menu-card.is-selected,
.extra-card.is-selected {
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(223, 175, 103, 0.18);
}

.venue-card .media,
.menu-card .media {
    position: relative;
    overflow: hidden;
}

.venue-card img,
.menu-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-card:hover img,
.menu-card:hover img { transform: scale(1.06); }

.venue-card .media::after,
.menu-card .media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
}

.pin,
.picked,
.menu-tag {
    position: absolute;
    z-index: 1;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pin {
    left: 14px;
    bottom: 14px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.picked,
.menu-tag {
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--ink);
}

.picked { display: none; }
.venue-card.is-selected .picked,
.menu-card.is-selected .picked { display: inline-flex; }

.venue-card .body,
.menu-card .body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
}

.venue-card h3,
.menu-card h3,
.drink-card h3,
.extra-card h3 {
    margin: 0 0 10px;
    font-family: Cinzel, serif;
    font-size: 24px;
    text-transform: uppercase;
}

.venue-card ul,
.drink-card ul,
.menu-card ul {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.venue-card li,
.drink-card li,
.menu-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
}

.venue-card li::before,
.drink-card li::before,
.menu-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.venue-link {
    display: inline-block;
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.venue-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.venue-actions .btn,
.venue-actions .venue-link.btn {
    display: inline-flex;
    width: 100%;
    margin: 0;
    min-height: 44px;
    padding: 12px 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.venue-actions .btn-outline {
    color: var(--ink);
    border: 1px solid rgba(12, 12, 12, 0.14);
    background: #fff;
}

.venue-actions .btn-outline:hover {
    color: var(--ink);
    border-color: var(--gold);
    background: rgba(223, 175, 103, 0.14);
}

.venue-card.is-selected .btn-outline {
    border-color: rgba(223, 175, 103, 0.45);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.drink-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 26px 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.96)),
        var(--paper-2);
    border: 1px solid rgba(223, 175, 103, 0.16);
    box-shadow: 0 18px 40px rgba(12, 12, 12, 0.06);
}

.drink-card.is-featured {
    background: linear-gradient(180deg, #1a1814 0%, #0c0c0c 100%);
    color: var(--white);
    transform: translateY(-10px);
    border-color: rgba(223, 175, 103, 0.32);
    box-shadow: 0 28px 50px rgba(12, 12, 12, 0.22);
}

.drink-card.is-featured h3,
.drink-card.is-featured .price b { color: var(--white); }

.drink-card.is-featured li { color: #cfc6b6; }

.drink-card.is-featured .choice { color: #ddd4c4; }

.drink-card ul { flex: 1; }

.drink-card .price {
    margin-bottom: 18px;
    color: var(--gold-deep);
    font-weight: 700;
}

.drink-card .price b {
    display: block;
    font-family: Cinzel, serif;
    font-size: 38px;
    line-height: 1;
    color: var(--ink);
}

.drink-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 8px;
    background: #f6f0e4;
}

.drink-icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    background: transparent;
}

.drink-card.is-featured .drink-icon {
    background: #f6f0e4;
}

.drink-card .choice {
    padding: 12px 14px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(223, 175, 103, 0.22);
    background: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.drink-card.is-featured .choice {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(223, 175, 103, 0.24);
}

.drink-card.is-selected .choice,
.drink-card.is-featured.is-selected .choice {
    background: rgba(223, 175, 103, 0.16);
    border-color: var(--gold);
    color: var(--ink);
}

.drink-card.is-featured.is-selected .choice { color: #f3ead8; }

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.choice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
}

.choice input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold-deep);
}

.menu-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }

.menu-card {
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.96)),
        var(--paper-2);
    border: 1px solid rgba(223, 175, 103, 0.16);
}

.menu-card .media img { height: 250px; }

.menu-card .body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card ul { flex: 1; }

.menu-card .price {
    margin-bottom: 16px;
    color: var(--gold-deep);
    font-size: 14px;
    font-weight: 700;
}

.menu-card .price b {
    display: block;
    margin-bottom: 4px;
    font-family: Cinzel, serif;
    font-size: 34px;
    line-height: 1;
    color: var(--ink);
}

.menu-card .choice {
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid rgba(223, 175, 103, 0.22);
    background: rgba(255, 255, 255, 0.55);
}

.menu-card.is-featured {
    background: linear-gradient(180deg, #1a1814 0%, #0c0c0c 100%);
    color: var(--white);
    transform: translateY(-8px);
    border-color: rgba(223, 175, 103, 0.32);
}

.menu-card.is-featured h3,
.menu-card.is-featured .price b { color: var(--white); }

.menu-card.is-featured li { color: #cfc6b6; }

.menu-card.is-featured .choice {
    color: #ddd4c4;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(223, 175, 103, 0.24);
}

.menu-card.is-selected .choice,
.menu-card.is-featured.is-selected .choice {
    background: rgba(223, 175, 103, 0.16);
    border-color: var(--gold);
    color: var(--ink);
}

.menu-card.is-featured.is-selected .choice { color: #f3ead8; }

.drink-card li.is-off {
    text-decoration: line-through;
    color: var(--gold);
    opacity: 0.78;
}

.drink-card.is-featured li.is-off { color: var(--gold); }

.extra-grid { grid-template-columns: repeat(4, 1fr); }

.extra-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
}

.extra-icon {
    display: grid;
    place-items: center;
    width: 100%;
    height: 112px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(223, 175, 103, 0.16);
}

.extra-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: transparent;
}

.extra-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 20px 18px;
}

.extra-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    flex: 1;
}

.extra-card.is-selected .btn-dark {
    background: var(--gold);
    color: var(--ink);
}

.reserve {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: var(--white);
    background: #000 center/cover no-repeat;
    background-image: url("../img/hero-proslava.jpg");
}

.reserve::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.reserve-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
    align-items: center;
}

.reserve-copy { max-width: 520px; }

.reserve .section-kicker { color: var(--gold); }

.reserve h2 {
    margin: 0 0 16px;
    font-family: Cinzel, serif;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.reserve p,
.summary {color: #fff;font-size: 16px;text-transform: uppercase;font-style: italic;}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 24px;
}

.chip {
    padding: 9px 13px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(223, 175, 103, 0.28);
    backdrop-filter: blur(10px);
    color: #efe6d4;
    font-size: 13px;
}

.chip b { color: var(--gold); }

.contact-lines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-lines a {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
}

.contact-lines img {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.contact-lines span {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form {
    padding: 32px;
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.55);
    border: 1px solid rgba(223, 175, 103, 0.22);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-grid .full { grid-column: 1 / -1; }

.form input,
.form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.38);
    color: var(--white);
    border-radius: 4px;
    padding: 15px 16px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form input:focus,
.form textarea:focus {
    outline: 0;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
}

.form textarea { min-height: 120px; resize: vertical; }

.form label {
    display: block;
    margin-bottom: 8px;
    color: #c9c2b4;
    font-size: 13px;
}

.form-msg {
    display: none;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.form-msg.ok { display: block; background: #1f6b3a; }
.form-msg.err { display: block; background: #8b2b24; }

.dock {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(820px, calc(100% - 24px));
    transform: translateX(-50%) translateY(120%);
    padding: 12px 12px 12px 18px;
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(223, 175, 103, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    color: #efe6d4;
    transition: transform 0.3s ease;
}

.dock.is-visible { transform: translateX(-50%) translateY(0); }

.dock p {
    margin: 0;
    font-size: 13px;
}

.dock b { color: var(--gold); }

.dock .btn { flex: 0 0 auto; padding: 12px 18px; font-size: 12px; }

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 24px;
    background:
        radial-gradient(circle at 8% 0%, rgba(223, 175, 103, 0.1), transparent 36%),
        #080808;
    color: #cfc8ba;
    font-size: 14px;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 175, 103, 0.45), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 0.85fr);
    gap: 36px 28px;
    margin-bottom: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-kicker {
    display: none;
}

.footer-brand p {
    margin: 16px 0 0;
    max-width: 280px;
    color: #cfc8ba;
    font-family: "GothamRoundedBook";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

.footer-cta {
    padding: 12px 20px;
    font-size: 12px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #8f887c;
    font-size: 13px;
}

.site-footer a { color: var(--gold); }

.footer-top h4 {
    position: relative;
    margin: 6px 0 20px;
    padding-bottom: 12px;
    color: var(--white);
    font-family: Cinzel, serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-top h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.footer-top a {
    display: block;
    margin-bottom: 10px;
    color: #cfc8ba;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-top a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-cta:hover { padding-left: 20px; }

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-contact a:hover {
    padding-left: 12px;
    border-color: rgba(223, 175, 103, 0.28);
    background: rgba(223, 175, 103, 0.08);
}

.footer-contact img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-contact span {
    display: grid;
    gap: 2px;
    min-width: 0;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    word-break: break-word;
}

.footer-contact small {
    color: #9a9286;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .brand-copy { display: none; }
    .drinks-grid,
    .venue-grid,
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .drink-card.is-featured,
    .menu-card.is-featured { transform: none; }

    .site-header {
        height: auto;
        min-height: var(--header-h);
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
        order: 2;
    }

    .header-cta { order: 3; margin-left: 10px; }

    .nav-collapse {
        display: none;
        position: static;
        left: auto;
        transform: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 90px);
        overflow: auto;
        padding: 8px 0 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-collapse.is-open { display: flex; }

    .site-header.is-menu-open,
    .site-header.is-scrolled {
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(18px);
    }

    .nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav > a,
    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 0;
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    .nav > a::after,
    .nav-item > .nav-link::after { display: none; }

    .nav-item { width: 100%; padding: 0; }

    .nav-sub {
        position: static;
        display: none;
        min-width: 0;
        margin: 0 0 8px;
        padding: 0 0 8px 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-sub a { color: #efe6d4; }

    .nav-item:hover .nav-sub { display: none; }
    .nav-item.is-open .nav-sub { display: block; }

    .nav-phone {
        display: grid;
        gap: 8px;
        margin-top: 10px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 520px; }
}

@media (max-width: 860px) {
    .header-cta { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .contact-lines { grid-template-columns: 1fr; }

    .stepper-inner,
    .reserve-wrap,
    .form-grid,
    .extra-grid,
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 78vh;
        padding-bottom: 56px;
    }

    .stepper-inner {
        gap: 20px;
        padding: 28px 0;
    }

    .drinks-grid,
    .venue-grid,
    .menu-grid { grid-template-columns: 1fr; }

    .dock {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        bottom: 84px;
    }

    body.has-dock { padding-bottom: 180px; }
}

.contact-float {
    position: fixed;
    right: 16px;
    top: 50%;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(-42%);
}

.contact-float-stack {
    overflow: hidden;
    width: 64px;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(12, 12, 12, 0.22);
}

.contact-float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 64px;
    height: 68px;
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-float-btn svg,
.contact-float-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-float-btn.is-phone {
    background: var(--gold);
    color: var(--ink);
}

.contact-float-btn.is-viber,
.contact-float-btn.is-wa {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-float-btn:hover { filter: brightness(1.08); }

.contact-float-top {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 4px;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(12, 12, 12, 0.18);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-float-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-float-top svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 860px) {
    .contact-float {
        inset: auto 0 0;
        top: auto;
        right: 0;
        transform: none;
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .contact-float-stack {
        display: flex;
        width: 100%;
        border-radius: 0;
    }

    .contact-float-btn {
        flex: 1;
        width: auto;
        height: 68px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .contact-float-btn.is-viber,
    .contact-float-btn.is-wa { border-top: 0; border-left: 1px solid rgba(255, 255, 255, 0.08); }

    .contact-float-top {
        position: fixed;
        right: 12px;
        bottom: 80px;
        z-index: 71;
    }

    body { padding-bottom: 68px; }
}
