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

:root {
    --gold: #FFE500;
    --gold-bright: #FFF04A;
    --gold-pale: #FFF8B8;
    --black: #080806;
    --deep: #0F0F0C;
    --surface: #141410;
    --card: #1A1A15;
    --border: rgba(255, 229, 0, 0.22);
    --border-dim: rgba(255, 255, 255, 0.07);
    --cream: #F2EAD8;
    --cream-dim: #A89880;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === COVER === */
.cover {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.cover-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--black);
}

.cover-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../images/banner/doorimg.jpeg") center / cover no-repeat;
    filter: blur(18px) brightness(0.25) saturate(0.75);
    transform: scale(1.08);
}

.cover-photo img {
    position: absolute;
    inset: 24px;
    z-index: 1;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    object-fit: cover;
    object-position: center;
    filter: brightness(0.22) saturate(0.6);
}

.cover-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 229, 0, 0.12) 0%, transparent 70%);
}

.cover-frame {
    position: absolute;
    inset: 24px;
    border: 1px solid var(--border);
    pointer-events: none;
    z-index: 1;
}

.cover-frame::before,
.cover-frame::after {
    content: '◆';
    position: absolute;
    color: var(--gold);
    font-size: 10px;
    line-height: 1;
}

.cover-frame::before {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.cover-frame::after {
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.cover-content {
    position: relative;
    z-index: 2;
    width: min(540px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-logo-fallback {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--gold);
    margin: 0 auto 30px;
    box-shadow: 0 0 34px rgba(255, 229, 0, 0.18);
    overflow: visible;
}

.cover-logo-fallback img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cover-pre {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.cover-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(34px, 5.4vw, 58px);
    font-weight: 700;
    color: var(--gold-pale);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-align: center;
    width: 100%;
}

.cover-name span {
    color: var(--gold);
}

.cover-name .cover-cafe {
    display: block;
    color: var(--gold-pale);
}

.cover-rule {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px auto 18px;
    justify-content: center;
}

.rule-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.rule-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.cover-tagline {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 300;
    color: var(--cream-dim);
    letter-spacing: 0.05em;
}

.scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 229, 0, 0.5);
    z-index: 2;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

/* === MENU BODY === */
.menu-body {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 80px;
}

.menu-search {
    max-width: 820px;
    margin: 0 auto;
    padding: 14px 0 18px;
}

.menu-search input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(20, 20, 16, 0.9);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    outline: none;
    padding: 0 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.menu-search input::placeholder {
    color: rgba(168, 152, 128, 0.78);
}

.menu-search input:focus {
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(255, 229, 0, 0.12);
}

#menuContainer {
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 40px 0;
}

/* Category */
.category {
    margin-bottom: 80px;
}

.category-section {
    margin-bottom: 80px;
    scroll-margin-top: 78px;
}

.category-section:not(#specials) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.category-section:not(#specials) .cat-header {
    grid-column: 1 / -1;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.cat-header::before,
.cat-header::after {
    content: '';
    height: 1px;
    flex: 1 1 0;
    background: linear-gradient(90deg, transparent, rgba(242, 234, 216, 0.24));
}

.cat-header::after {
    background: linear-gradient(90deg, rgba(242, 234, 216, 0.24), transparent);
}

.cat-num {
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cat-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: var(--gold-pale);
    letter-spacing: 0.12em;
    flex: 0 1 auto;
    max-width: min(620px, 100%);
    line-height: 1.2;
}

.cat-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.cat-rule-line {
    width: 100px;
    height: 1px;
    background: var(--border);
}

.cat-rule-icon {
    font-size: 14px;
    color: var(--gold);
}

/* Feature image for category */
.cat-feature {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 36px;
    filter: brightness(0.75) saturate(1.05) contrast(1.05);
    border: 1px solid var(--border);
    display: block;
    transition: filter 0.4s;
}

.cat-feature:hover {
    filter: brightness(0.85) saturate(1.1) contrast(1.05);
}

/* Specials slider */
#specials {
    overflow: hidden;
    margin-bottom: 42px;
}

.specials-viewport {
    width: min(640px, 92vw);
    margin: 0 auto;
    overflow: hidden;
    padding: 4px 0 0;
    cursor: grab;
    touch-action: pan-y;
}

.specials-viewport.is-dragging {
    cursor: grabbing;
}

.specials-track {
    display: flex;
    width: max-content;
    gap: 22px;
    transform: translateX(0);
    transition: transform 0.48s ease;
    will-change: transform;
}

#specials .special-slide {
    width: min(640px, 92vw);
    height: 150px;
    min-height: 0;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 46% minmax(0, 1fr);
    align-items: stretch;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--black);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

#specials .special-slide::before {
    left: 0;
    right: 0;
}

#specials .special-slide .row-thumb-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border: 0;
    border-radius: 8px 0 0 8px;
    background: rgba(8, 8, 6, 0.92);
    overflow: hidden;
}

#specials .special-slide .row-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95) saturate(1);
}

#specials .special-slide .row-name {
    position: static;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-pale);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

#specials .special-slide .row-desc {
    display: none;
}

#specials .special-slide .row-left {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 18px 18px 42px;
}

#specials .special-slide .row-right {
    grid-column: 2;
    grid-row: 1;
    position: absolute;
    left: 46%;
    bottom: 20px;
    z-index: 2;
    text-align: left;
    padding: 0 18px;
}

#specials .special-slide .row-price {
    font-size: 18px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

#specials .special-slide::after {
    content: none;
}

/* Menu row layout */
.menu-rows {
    display: flex;
    flex-direction: column;
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-dim);
    border-radius: 6px;
    background: rgba(20, 20, 16, 0.58);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.menu-row:first-child {
    border-top: 1px solid var(--border-dim);
}

.menu-row::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 229, 0, 0.03);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.menu-row:hover::before {
    opacity: 1;
}

.menu-row:hover {
    border-color: var(--border);
    transform: translateY(-2px);
}

/* Thumbnail */
.row-thumb-wrap {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    height: auto;
    flex-shrink: 0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.row-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 0.5s ease, filter 0.3s;
    display: block;
}

.menu-row:hover .row-thumb {
    transform: scale(1.08);
    filter: brightness(0.95) saturate(1.1);
}

.row-left {
    position: relative;
    z-index: 1;
}

.row-name {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.row-title {
    display: inline;
}

.row-badges {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.row-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    min-height: 22px;
    padding: 6px 10px;
    border-radius: 2px;
    vertical-align: middle;
    color: #e0ba63;
    background: rgba(73, 53, 22, 0.22);
    border: 2px solid rgba(126, 88, 28, 0.72);
    box-shadow: inset 0 0 0 1px rgba(229, 181, 88, 0.12);
}

.badge-sig {
    color: #e0ba63;
}

.badge-new {
    color: #e0ba63;
}

.badge-spice {
    color: #e0ba63;
}

.badge-veg {
    color: #e0ba63;
}

.badge-fav {
    color: #e0ba63;
}

.row-desc {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 300;
    color: var(--cream-dim);
    line-height: 1.6;
}

.row-desc:empty {
    display: none;
}

.row-right {
    text-align: left;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.row-price {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-bright);
    white-space: nowrap;
}

.row-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(168, 152, 128, 0.7);
    margin-top: 4px;
}

.menu-subhead {
    grid-column: 1 / -1;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-bright);
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 229, 0, 0.22);
    padding-top: 24px;
    margin-top: 18px;
}

/* === SPECIAL BLOCK === */
.special-block {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 40px;
}

.special-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.7);
    display: block;
}

.special-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 6, 0.7) 100%);
}

.special-eyebrow {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.special-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.special-desc {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
    color: var(--cream-dim);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 20px;
}

.special-price {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-bright);
}

/* === FOOTER === */
.menu-footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 50px 40px;
}

.footer-emblem {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--cream);
    margin-bottom: 18px;
}

.footer-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--cream-dim);
    line-height: 2;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.category:nth-child(1) {
    animation-delay: 0.15s;
}

.category:nth-child(2) {
    animation-delay: 0.3s;
}

.category:nth-child(3) {
    animation-delay: 0.45s;
}

.category:nth-child(4) {
    animation-delay: 0.6s;
}

.special-block {
    opacity: 0;
    animation: fadeUp 0.7s ease 0.75s forwards;
}

/* Category Navigation */

.category-nav {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  background: rgba(8, 8, 6, 0.96);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: transparent;
  color: rgba(242, 234, 216, 0.75);
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 2px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 52px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.category-btn:hover,
.category-btn.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.party-promo {
    width: min(820px, calc(100% - 48px));
    height: clamp(138px, 16vw, 172px);
    min-height: 0;
    margin: 26px auto 4px;
    padding: 0;
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    text-decoration: none;
    color: inherit;
    border: 2px solid rgba(130, 103, 41, 0.64);
    border-radius: 28px;
    background: #090908;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 229, 0, 0.08);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: none;
}

.party-promo:hover {
    border-color: rgba(130, 103, 41, 0.64);
    transform: none;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 229, 0, 0.08);
}

.party-promo:focus,
.party-promo:focus-visible,
.party-promo:active {
    border-color: rgba(130, 103, 41, 0.64);
    outline: none;
    transform: none;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 229, 0, 0.08);
}

.party-promo-media {
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: var(--black);
}

.party-promo-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.party-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(7px, 1vw, 11px);
    text-align: left;
    min-width: 0;
    padding: clamp(14px, 2vw, 24px) clamp(24px, 3vw, 38px);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 229, 0, 0.08), transparent 34%),
        linear-gradient(135deg, rgba(15, 15, 12, 0.98), rgba(8, 8, 6, 0.98));
}

.party-label {
    display: none;
}

.party-rule {
    display: none;
}

.party-promo h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-pale);
    font-size: clamp(21px, 2.25vw, 31px);
    font-weight: 700;
    line-height: 1.08;
    text-transform: none;
    text-shadow: none;
    margin-bottom: 0;
}

.party-promo p {
    color: rgba(180, 138, 43, 0.92);
    font-size: clamp(13px, 1.15vw, 16px);
    line-height: 1.4;
    margin-bottom: 0;
    padding-left: clamp(11px, 1.4vw, 16px);
    border-left: 2px solid rgba(130, 103, 41, 0.72);
}

.party-promo p span {
    color: rgba(180, 138, 43, 0.72);
    padding: 0 8px;
}

.party-promo .party-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-end;
    min-width: clamp(142px, 17vw, 188px);
    height: clamp(30px, 3.5vw, 40px);
    margin-top: 0;
    margin-left: auto;
    padding: 0 clamp(12px, 1.5vw, 18px);
    color: #000;
    background:
        linear-gradient(135deg, #fff6a6 0%, #ffe24d 34%, #d7a526 72%, #fff178 100%);
    border: 1px solid rgba(255, 241, 120, 0.7);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(215, 165, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    font-size: clamp(12px, 1.1vw, 15px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.party-promo .party-btn::after {
    content: '→';
    margin-left: 9px;
    font-size: 15px;
    line-height: 1;
}

.party-arrow {
    display: none;
}

.party-promo .party-btn:hover,
.party-promo .party-btn:focus-visible {
    background:
        linear-gradient(135deg, #fff9bf 0%, #fff04a 36%, #e0b236 72%, #fff6a6 100%);
    box-shadow: 0 12px 24px rgba(215, 165, 38, 0.2), 0 0 8px rgba(255, 229, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    outline: none;
}

@media (min-width: 601px) {
    .menu-body {
        padding-top: 0;
    }

    .party-promo {
        position: relative;
        width: min(820px, calc(100% - 48px));
        height: 190px;
        margin: 50px auto 18px;
        grid-template-columns: 38% minmax(0, 1fr);
        border-radius: 30px;
        overflow: hidden;
    }

    .party-promo-content {
        position: relative;
        justify-content: flex-start;
        gap: 12px;
        padding: 20px 40px 64px;
    }

    .party-promo h2 {
        font-size: 31px;
        line-height: 1.02;
    }

    .party-promo p {
        max-width: 365px;
        font-size: 15px;
        line-height: 1.35;
    }

    .party-promo .party-btn {
        position: absolute;
        right: 38px;
        bottom: 20px;
        width: 188px;
        min-width: 0;
        height: 34px;
        font-size: 12px;
    }

    .menu-search {
        width: min(820px, calc(100% - 48px));
        max-width: none;
        padding: 0 0 18px;
    }

    .category-nav {
        justify-content: flex-start;
        padding-left: max(24px, calc((100vw - 960px) / 2));
        padding-right: max(24px, calc((100vw - 960px) / 2));
    }
}

@media (min-width: 1120px) {
    .category-nav {
        justify-content: center;
    }
}

.party-page {
    min-height: 100vh;
    background: #050505;
    color: var(--gold-bright);
    text-align: center;
    padding: 80px 20px;
}

.party-page h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.party-page p {
    color: var(--cream-dim);
    margin-bottom: 25px;
}

.party-page .party-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    color: var(--black);
    background: var(--gold);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.event-grid {
    max-width: 900px;
    margin: 35px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.event-card {
    background: rgba(20, 20, 16, 0.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
}

.event-card h3 {
    color: var(--gold-bright);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.event-card p {
    color: var(--cream-dim);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 28px auto;
    }

    .event-card {
        padding: 18px 14px;
    }

    .event-card h3 {
        font-size: 16px;
    }

    .event-card p {
        font-size: 13px;
    }
}

.hall-gallery {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.hall-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;

    border-radius: 12px;
    border: 1px solid var(--border);

    transition: transform 0.3s ease;
}

.hall-gallery img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .hall-gallery {
        grid-template-columns: 1fr;
    }

    .hall-gallery img {
        height: 220px;
    }
}

/* Party Hall page */
.party-page {
    min-height: 100vh;
    padding: 0 16px 42px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 229, 0, 0.13), transparent 34%),
        radial-gradient(circle at 0% 38%, rgba(255, 229, 0, 0.07), transparent 28%),
        linear-gradient(180deg, #050505 0%, #0d0d0a 48%, #050505 100%);
    color: var(--cream);
    text-align: center;
    position: relative;
}

.party-back-link {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 80;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    background:
        linear-gradient(145deg, rgba(24, 24, 18, 0.92), rgba(8, 8, 6, 0.92));
    border: 1px solid rgba(255, 229, 0, 0.34);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    font-size: 19px;
    line-height: 1;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    backdrop-filter: blur(10px);
    transition: color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.party-back-link:focus,
.party-back-link:focus-visible,
.party-back-link:active {
    outline: none;
}

.party-hero {
    min-height: min(620px, 92svh);
    display: grid;
    place-items: center;
    padding: 72px 0 48px;
    position: relative;
}

.party-hero::before {
    content: '';
    position: absolute;
    inset: 24px 0 auto;
    height: 1px;
    max-width: 680px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(255, 229, 0, 0.55), transparent);
}

.party-hero-inner {
    position: relative;
    width: min(760px, 100%);
    padding: 32px 18px;
    border: 1px solid rgba(255, 229, 0, 0.2);
    border-radius: 20px;
    background: rgba(20, 20, 16, 0.42);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
}

.party-eyebrow {
    margin: 0 0 14px;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.party-page h1 {
    margin: 0 auto 16px;
    font-family: 'Cinzel', serif;
    font-size: clamp(34px, 8vw, 64px);
    line-height: 1.05;
    color: var(--gold-pale);
    text-shadow: 0 0 28px rgba(255, 229, 0, 0.18);
}

.party-subtitle,
.party-page .party-subtitle {
    max-width: 640px;
    margin: 0 auto 24px;
    color: rgba(242, 234, 216, 0.78);
    font-size: clamp(14px, 3.5vw, 19px);
    line-height: 1.7;
}

.party-call-btn,
.party-page .party-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    color: #000;
    background:
        linear-gradient(135deg, #fff6a6 0%, #ffe24d 34%, #d7a526 72%, #fff178 100%);
    border: 1px solid rgba(255, 241, 120, 0.7);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(215, 165, 38, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.party-section {
    width: min(1040px, 100%);
    margin: 0 auto 42px;
}

.party-section h2 {
    margin: 0 0 20px;
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 600;
    color: var(--gold-pale);
    letter-spacing: 0.05em;
    text-shadow: 0 0 18px rgba(255, 229, 0, 0.12);
}

.hall-gallery {
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hall-photo {
    margin: 0;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(255, 229, 0, 0.28);
    border-radius: 20px;
    background: rgba(20, 20, 16, 0.5);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hall-photo-trigger {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.hall-photo-trigger:focus-visible {
    outline: 3px solid rgba(255, 229, 0, 0.9);
    outline-offset: -5px;
}

.hall-photo-featured {
    min-height: 340px;
}

.hall-photo img,
.hall-gallery img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    transform: scale(1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.hall-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.68);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.hall-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hall-lightbox-img {
    max-width: min(100%, 1120px);
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.hall-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 229, 0, 0.5);
    border-radius: 50%;
    color: #ffe500;
    background: rgba(10, 10, 8, 0.78);
    font-size: 32px;
    line-height: 38px;
    cursor: pointer;
}

.hall-lightbox-close:focus-visible {
    outline: 3px solid rgba(255, 229, 0, 0.9);
    outline-offset: 3px;
}

body.hall-lightbox-open {
    overflow: hidden;
}

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

.party-feature-card,
.party-contact-card {
    border: 1px solid rgba(255, 229, 0, 0.18);
    border-radius: 18px;
    background: rgba(20, 20, 16, 0.58);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.party-feature-card {
    position: relative;
    padding: 18px 18px 18px 48px;
    color: rgba(242, 234, 216, 0.9);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

.party-feature-card::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-bright);
    font-weight: 800;
    text-shadow: 0 0 16px rgba(255, 229, 0, 0.42);
}

.party-contact-card {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 22px;
    text-align: center;
}

.party-contact-card p {
    display: grid;
    justify-items: center;
    gap: 5px;
    margin: 0 0 17px;
    color: rgba(242, 234, 216, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.party-contact-card strong {
    color: var(--gold-bright);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.party-contact-card a,
.party-contact-card span {
    color: var(--gold-pale);
    text-decoration: none;
    max-width: 520px;
}

.party-contact-card .party-call-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
    color: #000;
}

.party-bottom-nav {
    display: flex;
    justify-content: center;
    padding: 4px 0 18px;
}

@media (hover: hover) {
    .party-back-link:hover {
        color: var(--gold-pale);
        background:
            linear-gradient(145deg, rgba(27, 27, 20, 0.96), rgba(10, 10, 8, 0.96));
        border-color: rgba(255, 229, 0, 0.48);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 8px rgba(255, 229, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .party-call-btn:hover,
    .party-page .party-btn:hover {
        transform: translateY(-2px);
        background:
            linear-gradient(135deg, #fff9bf 0%, #fff04a 36%, #e0b236 72%, #fff6a6 100%);
        box-shadow: 0 22px 44px rgba(215, 165, 38, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.68);
    }

    .hall-photo:hover img {
        transform: scale(1.045);
        filter: brightness(1.06) saturate(1.05);
    }
}

@media (min-width: 720px) {
    .party-page {
        padding-left: 32px;
        padding-right: 32px;
    }

    .party-hero-inner {
        padding: 48px 54px;
    }

    .hall-gallery {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: stretch;
        max-width: 900px;
        margin: 0 auto;
    }

    .hall-photo {
        min-height: 420px;
    }

    .hall-photo-featured {
        min-height: 420px;
    }

    .party-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .party-feature-card {
        padding: 20px 20px 20px 52px;
        font-size: 16px;
    }

    .party-contact-card {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .party-page {
        padding: 0 14px 34px;
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 229, 0, 0.16), transparent 32%),
            linear-gradient(180deg, #050505 0%, #0b0b08 54%, #050505 100%);
    }

    .party-back-link {
        top: 28px;
        left: 16px;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 17px;
    }

    .party-hero {
        min-height: auto;
        padding: 28px 0 28px;
        place-items: start center;
    }

    .party-hero::before {
        inset: 14px 18px auto;
    }

    .party-hero-inner {
        width: 100%;
        padding: 24px 16px 26px;
        border-radius: 18px;
        background: rgba(15, 15, 12, 0.62);
        backdrop-filter: blur(10px);
    }

    .party-eyebrow {
        margin-bottom: 14px;
        min-height: 30px;
        font-size: 8px;
        letter-spacing: 0.24em;
        line-height: 1.5;
    }

    .party-page h1 {
        max-width: 330px;
        font-size: clamp(30px, 10vw, 42px);
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .party-subtitle,
    .party-page .party-subtitle {
        max-width: 300px;
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.65;
    }

    .party-section {
        margin-bottom: 34px;
    }

    .party-section h2 {
        margin-bottom: 16px;
        font-size: 23px;
        line-height: 1.18;
    }

    .hall-gallery {
        gap: 12px;
    }

    .hall-photo,
    .hall-photo-featured {
        min-height: 0;
        height: 190px;
        border-radius: 16px;
    }

    .hall-photo-featured {
        height: 230px;
    }

    .hall-photo img,
    .hall-gallery img {
        min-height: 0;
        height: 100%;
    }

    .hall-photo-featured img {
        object-position: center 43%;
    }

    .hall-photo:not(.hall-photo-featured) img {
        object-position: center 45%;
    }

    .party-feature-grid {
        gap: 10px;
    }

    .party-feature-card {
        border-radius: 16px;
        padding: 15px 14px 15px 42px;
        font-size: 14px;
        line-height: 1.35;
    }

    .party-feature-card::before {
        left: 16px;
    }

    .party-contact-card {
        padding: 18px;
        border-radius: 16px;
    }

    .party-contact-card p {
        margin-bottom: 15px;
        font-size: 13px;
    }

    .party-contact-card strong {
        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .party-call-btn,
    .party-page .party-btn {
        min-height: 42px;
        padding: 0 20px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .party-contact-card .party-call-btn {
        width: 100%;
        margin-top: 2px;
    }

    .party-bottom-nav {
        padding: 0 0 10px;
    }
}

@media (max-width: 380px) {
    .party-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .party-hero-inner {
        padding: 22px 12px 24px;
    }

    .party-page h1 {
        font-size: clamp(27px, 9.8vw, 36px);
    }

    .party-subtitle,
    .party-page .party-subtitle {
        font-size: 11px;
        line-height: 1.6;
    }

    .hall-photo,
    .hall-photo-featured {
        height: 176px;
    }

    .hall-photo-featured {
        height: 212px;
    }

    .party-feature-card {
        padding-right: 12px;
        font-size: 13px;
    }
}
