:root {
    /* Color Palette */
    --primary-color: #d35400; /* Warm Orange/Amber */
    --secondary-color: #8e44ad; /* Deep Purple/Lounge vibe */
    --accent-color: #f39c12; /* Gold */
    --bg-dark: #0a0a0a; /* Deep Black */
    --bg-light: #1a1a1a; /* Soft Black */
    --text-light: #f5f5f5;
    --text-muted: #bdc3c7;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Spacing */
    --padding-mobile: clamp(1rem, 3vw, 3rem);
    --section-padding: clamp(3rem, 8vw, 6rem);
    
    /* Typography */
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Lato', sans-serif;
    --font-menu: 'EB Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
    /* overflow-x: hidden breaks position:sticky — use clip instead */
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--bg-dark);
}

.w-100 {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.5s ease, padding 0.4s ease, border-color 0.5s ease;
    padding: 1.6rem 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, transparent 100%);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(6, 6, 6, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(212, 175, 110, 0.18);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo-zen-svg {
    height: 100%;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(255,255,255,1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.35s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.38);
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.lang-btn:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.12);
    font-size: 0.55rem;
}

.lang-btn:hover {
    color: rgba(255,255,255,0.75);
}

.lang-btn.active {
    color: var(--accent-color);
}

.reserve-btn {
    font-family: var(--font-body) !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.28em !important;
    text-transform: uppercase !important;
    padding: 0.68rem 1.8rem !important;
    background: transparent !important;
    color: rgba(212, 175, 110, 0.88) !important;
    border: 1px solid rgba(212, 175, 110, 0.45) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-width: unset !important;
    min-height: unset !important;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.reserve-btn:hover {
    background: var(--accent-color) !important;
    color: #0a0a0a !important;
    border-color: var(--accent-color) !important;
    transform: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1102;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 0;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.8);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    display: block;
}

.hamburger.toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

/* Hero Section - ZEN Zoom Mask Effect */
.zen-scroll-spacer {
    height: 300vh;
    position: relative;
}

.zen-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SVG Mask Layer */
.zen-mask-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#zen-mask-text {
    will-change: transform;
}

/* Initial dark gradient over video (always present) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 70% 60% at 50% 55%, rgba(5, 5, 5, 0.62) 0%, transparent 100%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

/* The ZEN mask overlay starts fully transparent, fades in on scroll */
.zen-content-overlay {
    z-index: 3;
    opacity: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
    transition: none;
    will-change: opacity;
}

/* Hero Content — visible at start, fades out on scroll */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: none;
    will-change: opacity;
}

/* Tagline */
.hero-tagline {
    font-family: var(--font-menu);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 0;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

/* CTA */
.btn-luxury-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-luxury-primary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
}

/* Scroll Hint */
.zen-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: bounceDown 2s infinite;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.zen-scroll-hint.hidden {
    opacity: 0;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* Marquee Brand Strip */
.marquee-strip {
    background: #0e0e0e;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-word {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 0 1.6rem;
    transition: color 0.3s ease;
}

.marquee-strip:hover .marquee-word {
    color: rgba(255,255,255,0.45);
}

.marquee-dot {
    color: var(--accent-color);
    opacity: 0.4;
    font-size: 0.5rem;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* About Section — Editorial Full-Bleed */
.about-section {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 92vh;
    overflow: hidden;
    background: var(--bg-dark);
}

/* ---- Visual Panel ---- */
.about-visual {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.about-img-primary {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
    filter: brightness(0.88) contrast(1.05);
}

.about-section:hover .about-img-primary img {
    transform: scale(1.1);
}

/* Overlay gradient on image panel */
.about-img-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 65%, var(--bg-dark) 100%),
        linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, transparent 30%);
    pointer-events: none;
}

/* Floating accent image */
.about-img-accent {
    position: absolute;
    bottom: 2.5rem;
    right: -1.5rem;
    width: 38%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 2;
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 6s ease;
    filter: brightness(0.9);
}

.about-section:hover .about-img-accent img {
    transform: scale(1.1);
}

/* Thin gold left border stripe on accent image */
.about-img-accent::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    border: 1px solid rgba(212,175,110,0.35);
    pointer-events: none;
    z-index: 3;
}

/* ---- Editorial Text Panel ---- */
.about-editorial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 7vw, 8rem) clamp(3rem, 5vw, 6rem);
    background: var(--bg-dark);
    position: relative;
}

/* Thin decorative vertical gold line on left edge of text panel */
.about-editorial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,110,0.35), transparent);
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.4rem;
    opacity: 0.85;
}

.about-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.about-rule {
    width: 3rem;
    height: 1px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin-bottom: 2rem;
}

.about-body {
    font-family: var(--font-menu);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.85;
    color: rgba(255,255,255,0.62);
    margin-bottom: 3.5rem;
    max-width: 44ch;
}

/* Stats row */
.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 2rem 0 0;
    flex: 1;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stat-num sup {
    font-size: 0.55em;
    vertical-align: super;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 0;
}

.about-stat-lbl {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    margin-top: 0.5rem;
}

.about-stat-sep {
    width: 1px;
    height: 2.8rem;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    margin-right: 2rem;
}

/* Categories Section — Editorial Pillars */
.categories-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.cats-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.cats-eyebrow {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cats-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
    flex-shrink: 0;
}

.cats-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

/* Three-column pillar grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.category-pillar {
    padding: 2.5rem 3rem;
    border-left: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: border-color 0.4s ease;
    cursor: default;
}

.category-pillar:first-child {
    border-left: none;
    padding-left: 0;
}

.category-pillar:last-child {
    padding-right: 0;
}

.category-pillar:hover {
    border-color: rgba(212,175,110,0.28);
}

.pillar-num {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    opacity: 0.7;
    margin-bottom: 1.6rem;
}

.pillar-rule {
    width: 2.5rem;
    height: 1px;
    background: rgba(212,175,110,0.35);
    margin-bottom: 1.8rem;
    transition: width 0.4s ease, background 0.4s ease;
}

.category-pillar:hover .pillar-rule {
    width: 4.5rem;
    background: var(--accent-color);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 1.8vw, 1.9rem);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.25;
    margin-bottom: 1.1rem;
    transition: color 0.3s ease;
}

.category-pillar:hover .pillar-title {
    color: var(--white);
}

.pillar-desc {
    font-family: var(--font-menu);
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.42);
    transition: color 0.3s ease;
}

.category-pillar:hover .pillar-desc {
    color: rgba(255,255,255,0.62);
}

/* Menu Section — Luxury List */
.menu-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.menu-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.menu-eyebrow {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
    flex-shrink: 0;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

/* Tab filters — underline style */
.menu-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tab-btn {
    background: none;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,0.4);
    padding: 0.85rem 0;
    margin-right: 2.8rem;
    cursor: pointer;
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: var(--font-body);
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.35s ease;
}

.tab-btn.active {
    color: var(--white);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    color: rgba(255,255,255,0.72);
}

/* Second-level filters for dinner / cocktails */
.menu-subtabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.menu-subtab-btn {
    background: rgba(255,255,255,0.02);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.45rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.menu-subtab-btn:hover {
    border-color: rgba(212,175,110,0.6);
    color: rgba(255,255,255,0.9);
}

.menu-subtab-btn.active {
    background: rgba(212,175,110,0.16);
    border-color: rgba(212,175,110,0.75);
    color: var(--accent-color);
}

/* Menu item list rows */
.menu-grid {
    display: flex;
    flex-direction: column;
}

.menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
    cursor: default;
}

.menu-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.menu-item:hover {
    background: rgba(212,175,110,0.03);
}

.menu-item-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.9rem 1rem;
}

.menu-item-info {
    flex-shrink: 0;
    max-width: 55%;
}

.menu-item-name {
    font-family: var(--font-menu);
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.01em;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-name {
    color: var(--white);
}

.menu-item-desc {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.32);
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-desc {
    color: rgba(255,255,255,0.5);
}

/* Dotted leader line */
.menu-item-leader {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.1) 0px,
        rgba(255,255,255,0.1) 3px,
        transparent 3px,
        transparent 9px
    );
    transition: background 0.3s ease;
}

.menu-item:hover .menu-item-leader {
    background: repeating-linear-gradient(
        to right,
        rgba(212,175,110,0.32) 0px,
        rgba(212,175,110,0.32) 3px,
        transparent 3px,
        transparent 9px
    );
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    flex-shrink: 0;
    opacity: 0.82;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-price {
    opacity: 1;
}

/* Collapsible menu category groups */
.menu-group {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-group:last-of-type {
    border-bottom: none;
}

.menu-cat-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    padding: 1.8rem 1rem 0.8rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.8;
}

.menu-group + .menu-group {
    margin-top: 0.1rem;
}

.menu-group:first-of-type .menu-cat-header {
    padding-top: 0;
}

.menu-cat-header::after {
    content: '+';
    font-size: 0.7rem;
    letter-spacing: 0;
    color: rgba(255,255,255,0.7);
    transform-origin: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-group:not(.collapsed) .menu-cat-header::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--accent-color);
}

.menu-cat-header:focus-visible {
    outline: 1px solid var(--accent-color);
    outline-offset: 2px;
}

.menu-group-items {
    padding-bottom: 0.5rem;
}

.menu-group.collapsed .menu-group-items {
    display: none;
}

/* Gallery Section — Luxury Bento Grid */
.gallery-section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.gallery-editorial-header {
    margin-bottom: 3rem;
}

.gallery-eyebrow {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.gallery-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
    flex-shrink: 0;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

/* Asymmetric bento grid — full bleed, hairline gaps */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 420px 280px;
    gap: 3px;
    margin-bottom: 2.5rem;
}

/* Wide hero — spans 2 columns, row 1 */
.gallery-item--wide {
    grid-column: span 2;
    grid-row: 1;
}

/* Tall — spans 2 rows, column 3 */
.gallery-item--tall {
    grid-column: 3;
    grid-row: span 2;
}

/* Images 3 & 4 fill col 1 and col 2 in row 2 naturally */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-light);
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    filter: brightness(0.78) saturate(0.85);
    transition:
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.7s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.13);
    filter: brightness(1) saturate(1.08);
}

/* Gradient overlay — slides up on hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,6,6,0.75) 0%,
        rgba(6,6,6,0.15) 35%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.6rem 2rem;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Number label */
.gallery-num {
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

/* Thin gold inset border on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,175,110,0);
    transition: border-color 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    border-color: rgba(212,175,110,0.3);
}

/* Instagram follow CTA */
.gallery-cta {
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
}

.gallery-follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.gallery-follow-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.35s ease;
}

.gallery-follow-link:hover {
    color: rgba(255,255,255,0.85);
}

.gallery-follow-link:hover::after {
    width: 100%;
}

.gallery-follow-link i {
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.7;
}

/* Events Section — Immersive Atmospheric Full-Bleed */
.events-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* Background image with slow Ken Burns animation */
.events-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.events-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.38) saturate(0.7);
    animation: eventKenBurns 22s ease-in-out infinite alternate;
    display: block;
}

@keyframes eventKenBurns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}

/* Dark gradient overlay — heavier at bottom for text legibility */
.events-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(5,5,5,0.35) 0%,
        rgba(5,5,5,0.15) 35%,
        rgba(5,5,5,0.72) 100%
    );
    pointer-events: none;
}

/* Content floats above image + overlay */
.events-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    padding-top: clamp(5rem, 10vh, 9rem);
    padding-bottom: clamp(3rem, 6vh, 5rem);
}

/* Header */
.events-top {
    margin-bottom: 3rem;
}

.events-eyebrow {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.events-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
    flex-shrink: 0;
}

.events-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 5rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.0;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* Thin animated gold divider */
.events-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(212,175,110,0.55),
        rgba(212,175,110,0.15) 60%,
        transparent
    );
    margin-bottom: 3.5rem;
    flex-shrink: 0;
}

/* Three text columns */
.events-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    flex: 1;
    align-content: end;
    margin-bottom: 3.5rem;
}

.event-item {
    padding: 2.5rem 3rem 0 0;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.4s ease;
}

.event-item:first-child {
    border-left: none;
    padding-left: 0;
}

.event-item:hover {
    border-color: rgba(212,175,110,0.3);
}

.event-num {
    display: block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    color: var(--accent-color);
    opacity: 0.82;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.event-item:hover .event-num {
    opacity: 1;
}

.event-item-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.25;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.event-item:hover .event-item-title {
    color: var(--white);
}

.event-item-desc {
    font-family: var(--font-menu);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    transition: color 0.35s ease;
}

.event-item:hover .event-item-desc {
    color: rgba(255,255,255,0.7);
}

/* CTA */
.events-cta {
    display: flex;
    justify-content: flex-end;
}

.events-book-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    position: relative;
    transition: color 0.3s ease;
}

.events-book-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.35s ease;
}

.events-book-link:hover {
    color: rgba(255,255,255,0.85);
}

.events-book-link:hover::after {
    width: calc(100% - 1.4rem);
}

.events-book-link i {
    font-size: 0.68rem;
    color: var(--accent-color);
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.events-book-link:hover i {
    transform: translateX(4px);
    opacity: 1;
}

/* Reservation Section — Editorial Luxury */
.reservation-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.reservation-header {
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    max-width: 640px;
}

.reservation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1.1rem;
}

.reservation-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
}

.reservation-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.reservation-rule {
    width: 3rem;
    height: 1px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin-bottom: 1.5rem;
}

.reservation-subtitle {
    font-family: var(--font-menu);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

/* Two-panel container — hover lift and border glow */
.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    transition: box-shadow 0.6s ease, border-color 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.reservation-container:hover {
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,175,110,0.08);
    border-color: rgba(212,175,110,0.12);
}

/* Left panel — video bg with Ken Burns + contact */
.reservation-info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 5vw, 5rem);
    min-height: 420px;
    overflow: hidden;
}

.reservation-info-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.reservation-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.reservation-card-video {
    filter: brightness(0.5) saturate(0.85);
    animation: reservationKenBurns 20s ease-in-out infinite alternate;
    transition: filter 0.8s ease;
}

.reservation-container:hover .reservation-card-video {
    filter: brightness(0.58) saturate(0.9);
}

@keyframes reservationKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}

.reservation-info-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.5) 45%, rgba(8,8,8,0.7) 100%);
    pointer-events: none;
}

.reservation-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,110,0.35), transparent);
    z-index: 2;
    transition: opacity 0.5s ease, box-shadow 0.5s ease;
}

.reservation-container:hover .reservation-info::before {
    opacity: 1;
    box-shadow: 0 0 12px rgba(212,175,110,0.15);
}

.reservation-info-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.reservation-info-num {
    display: block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    color: var(--accent-color);
    opacity: 0.82;
    margin-bottom: 2rem;
    text-transform: uppercase;
    transition: letter-spacing 0.4s ease, opacity 0.3s ease;
}

.reservation-container:hover .reservation-info-num {
    letter-spacing: 0.45em;
    opacity: 1;
}

.reservation-contact-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.6rem;
}

.reservation-phone {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
}

.reservation-phone:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Right panel — form with subtle gradient background */
.reservation-form {
    position: relative;
    padding: clamp(3rem, 5vw, 4.5rem);
    background: linear-gradient(165deg, #0c0c0c 0%, #111 45%, #0e0e0e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.reservation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,110,0.12), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reservation-container:hover .reservation-form::before {
    opacity: 1;
}

.reservation-form-inner {
    position: relative;
    width: 100%;
    z-index: 1;
}

.reservation-form .form-group {
    margin-bottom: 1.75rem;
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Luxury floating labels */
.reservation-form .form-group--luxury {
    position: relative;
}

.reservation-form .form-group--luxury input,
.reservation-form .form-group--luxury textarea {
    width: 100%;
    padding: 1rem 0 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reservation-form .form-group--luxury textarea {
    min-height: 100px;
    resize: vertical;
}

.reservation-form .form-group--luxury input:focus,
.reservation-form .form-group--luxury textarea:focus {
    outline: none;
    border-bottom-color: rgba(212,175,110,0.7);
    box-shadow: 0 1px 0 0 rgba(212,175,110,0.25);
}

.reservation-form .form-group--luxury input:focus ~ label,
.reservation-form .form-group--luxury input:not(:placeholder-shown) ~ label,
.reservation-form .form-group--luxury textarea:focus ~ label,
.reservation-form .form-group--luxury textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-1.6rem) scale(0.85);
    color: rgba(255,255,255,0.75);
}

/* Custom picker: trigger looks like luxury input, label floats when has value */
.reservation-form .form-group--picker {
    position: relative;
}

.reservation-form .form-group--picker .picker-trigger {
    width: 100%;
    padding: 1rem 0 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reservation-form .form-group--picker .picker-trigger:focus {
    outline: none;
    border-bottom-color: rgba(212,175,110,0.7);
    box-shadow: 0 1px 0 0 rgba(212,175,110,0.25);
}

.reservation-form .form-group--picker .picker-trigger-value {
    display: block;
    min-height: 1.25em;
}

.reservation-form .form-group--picker label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.45);
    pointer-events: none;
    transition: transform 0.25s ease, color 0.25s ease;
    transform-origin: left top;
}

.reservation-form .form-group--picker.has-value label,
.reservation-form .form-group--picker .picker-trigger:focus ~ label {
    transform: translateY(-1.6rem) scale(0.85);
    color: rgba(255,255,255,0.75);
}

.reservation-form .form-group--picker .picker-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    z-index: 100;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,110,0.06);
    padding: 1rem;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.reservation-form .form-group--picker.picker-open .picker-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Date calendar */
.picker-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.picker-calendar-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.picker-nav {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 4px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.picker-nav:hover {
    background: rgba(212,175,110,0.2);
    color: var(--accent-color);
}

.picker-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.picker-calendar-weekday {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 0.25rem 0;
}

.picker-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.picker-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.picker-calendar-day:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.picker-calendar-day.other-month {
    color: rgba(255,255,255,0.25);
}

.picker-calendar-day.today {
    border: 1px solid rgba(212,175,110,0.4);
    color: var(--white);
}

.picker-calendar-day.selected {
    background: rgba(212,175,110,0.25);
    color: var(--accent-color);
    font-weight: 600;
}

.picker-calendar-day.selected:hover {
    background: rgba(212,175,110,0.35);
}

.picker-calendar-day:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.picker-calendar-day:disabled:hover {
    background: transparent;
}

/* Time list */
.picker-time-dropdown {
    max-height: 220px;
    overflow-y: auto;
}

.picker-time-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.picker-time-option {
    padding: 0.6rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.88);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.picker-time-option:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.picker-time-option.selected {
    background: rgba(212,175,110,0.2);
    color: var(--accent-color);
    font-weight: 500;
}

.picker-time-option.selected:hover {
    background: rgba(212,175,110,0.28);
}

.btn-reservation-submit {
    position: relative;
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    margin-top: 0.5rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.btn-reservation-submit::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.btn-reservation-submit:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(212,175,110,0.06);
}

.btn-reservation-submit:hover::after {
    width: 60%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* FAQ Section — Split panel, editorial luxury */
.faq-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-header {
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    max-width: 720px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1.1rem;
}

.faq-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.faq-rule {
    width: 3rem;
    height: 1px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin-bottom: 1.25rem;
}

.faq-tagline {
    font-family: var(--font-menu);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* Split: list left, panel right */
.faq-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    align-items: stretch;
    min-height: 380px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Left: question list */
.faq-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.faq-tab {
    flex: 1;
    min-height: 7rem;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: background 0.35s ease, border-left-color 0.35s ease;
}

.faq-tab:last-of-type {
    border-bottom: none;
}

.faq-tab:hover {
    background: rgba(255,255,255,0.02);
}

.faq-tab.active {
    background: rgba(212,175,110,0.04);
    border-left-color: var(--accent-color);
}

.faq-tab-num {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--accent-color);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.faq-tab.active .faq-tab-num {
    opacity: 1;
}

.faq-tab-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.35;
    color: rgba(255,255,255,0.75);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.faq-tab.active .faq-tab-text {
    color: var(--white);
}

.faq-tab-line {
    flex-shrink: 0;
    width: 2rem;
    height: 1px;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-tab:hover .faq-tab-line,
.faq-tab.active .faq-tab-line {
    opacity: 1;
    background: linear-gradient(to right, var(--accent-color), transparent);
}

/* Right: answer panel */
.faq-panel {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 380px;
}

.faq-panel-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(212,175,110,0.03) 0%, transparent 50%),
        linear-gradient(to right, rgba(10,10,10,0.6), transparent 30%);
    pointer-events: none;
}

.faq-panel-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    min-height: 280px;
    border-left: 1px solid rgba(212,175,110,0.12);
}

.faq-panel-watermark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1;
    color: rgba(212,175,110,0.08);
    letter-spacing: -0.02em;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.faq-panel-answer {
    position: absolute;
    inset: clamp(2.5rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.faq-panel-answer.active {
    opacity: 1;
    visibility: visible;
}

.faq-panel-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.faq-panel-body {
    font-family: var(--font-menu);
    font-size: clamp(1.1rem, 1.35vw, 1.25rem);
    line-height: 1.85;
    color: rgba(255,255,255,0.88);
    max-width: 42ch;
}

/* Mobile: stack list above panel */
@media (max-width: 900px) {
    .faq-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .faq-list {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .faq-tab {
        min-height: auto;
        padding: 1.25rem 1.5rem;
    }

    .faq-panel {
        min-height: 280px;
    }

    .faq-panel-content {
        border-left: none;
        border-top: 1px solid rgba(212,175,110,0.12);
    }

    .faq-panel-watermark {
        font-size: 3.5rem;
    }
}

/* Contact Section — Editorial Luxury */
.contact-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-header {
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    max-width: 640px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
    margin-bottom: 1.1rem;
}

.contact-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-rule {
    width: 3rem;
    height: 1px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin-bottom: 1.25rem;
}

.contact-tagline {
    font-family: var(--font-menu);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    align-items: stretch;
    min-height: 480px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0,0,0,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-details {
    position: relative;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
}

.contact-details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,110,0.35), transparent);
}

.contact-details-inner {
    position: relative;
    z-index: 1;
}

.contact-block {
    display: block;
    margin-bottom: 2.25rem;
    padding-left: 0.5rem;
    border-left: 2px solid transparent;
    transition: border-color 0.35s ease;
}

.contact-block:hover {
    border-left-color: rgba(212,175,110,0.4);
}

.contact-block:last-of-type {
    margin-bottom: 2rem;
}

.contact-block-num {
    display: block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    color: var(--accent-color);
    opacity: 0.82;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-block-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.5rem;
}

.contact-block-value {
    font-family: var(--font-menu);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.contact-block-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block-link:hover {
    color: var(--accent-color);
}

.contact-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-social-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.contact-social-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(212,175,110,0.08);
}

.contact-social-link i {
    font-size: 0.9rem;
}

.contact-map-card {
    position: relative;
    min-height: 480px;
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.contact-map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
}

.contact-map-iframe.leaflet-container {
    background: #0d0d0d;
    font-family: inherit;
}

.contact-map-marker {
    background: none !important;
    border: none !important;
}

.contact-map-marker i {
    font-size: 2rem;
    color: var(--accent-color);
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.contact-map-iframe .leaflet-control-zoom {
    border: none !important;
}

.contact-map-iframe .leaflet-control-zoom a {
    background: rgba(18,18,18,0.9) !important;
    color: rgba(255,255,255,0.9) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.contact-map-iframe .leaflet-control-zoom a:hover {
    background: rgba(212,175,110,0.2) !important;
    color: var(--accent-color) !important;
}

.contact-map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.contact-map-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(10,10,10,0.95);
}

.contact-map-link i {
    font-size: 0.7rem;
    opacity: 0.9;
}

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

    .contact-grid {
        min-height: 0;
    }

    .contact-map-card {
        min-height: 360px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .contact-details::before {
        display: none;
    }
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-logo a:hover {
    color: var(--white);
}

.footer-logo-svg {
    height: 40px;
    width: auto;
    display: block;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.website-made-by {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    color: var(--text-muted);
    margin-top: 8px;
}

.website-made-by a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.highlight {
    color: var(--accent-color);
    font-weight: 400;
}

.website-made-by a:hover .highlight {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    /* Events: shrink title on tablet */
    .events-bottom {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .event-item {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 2rem 0 0 0;
        margin-bottom: 0.5rem;
    }

    .event-item:first-child {
        border-top: none;
    }

    .events-cta {
        justify-content: flex-start;
    }

    /* Gallery: collapse to 2-column on tablet */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 220px 220px;
    }

    .gallery-item--wide {
        grid-column: span 2;
        grid-row: 1;
    }

    .gallery-item--tall {
        grid-column: 1;
        grid-row: 2 / span 1;
    }

    .reservation-container, .contact-grid {
        grid-template-columns: 1fr;
    }

    .reservation-info {
        padding: 3rem 2rem;
        min-height: 280px;
    }

    .reservation-form {
        padding: 3rem 2rem;
    }

    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }

    /* About: stack on tablet */
    .about-section {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh auto;
        min-height: unset;
    }

    .about-img-accent {
        right: 1rem;
        width: 42%;
    }

    .about-editorial::before {
        display: none;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .lang-switcher,
    .reserve-btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(84vw, 360px);
        height: 100vh;
        padding: 6.5rem 2rem 2rem;
        background:
            linear-gradient(180deg, rgba(22, 14, 8, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1101;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.9rem 0;
        font-size: 0.9rem;
        letter-spacing: 0.24em;
        color: rgba(255,255,255,0.88);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1100;
    }

    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }
    
    /* Categories pillars: stack to single column on mobile */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-pillar {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
        padding: 2rem 0;
    }

    .category-pillar:first-child {
        border-top: none;
        padding-top: 0;
    }

    .category-pillar:hover {
        border-color: rgba(212,175,110,0.28);
    }

    .zen-scroll-spacer {
        height: 250vh;
    }
    
    .header-actions .reserve-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Events: tighter on mobile */
    .events-section {
        min-height: 100vh;
    }

    /* Gallery: single column on mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
    }

    .gallery-item--wide,
    .gallery-item--tall {
        grid-column: unset;
        grid-row: unset;
    }

    .gallery-cta {
        justify-content: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about-stat-sep {
        display: none;
    }

    .about-stat {
        padding-right: 0;
        flex: 0 0 calc(50% - 0.75rem);
    }
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.8rem 1rem;
    background: #ffffff;
    color: #000000;
    border-radius: 0.4rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.nav-links a.active {
    color: rgba(255,255,255,1);
}

.nav-links a.active::after {
    width: 100%;
}

.lang-btn {
    display: inline-block;
}

.breadcrumbs {
    margin-bottom: 1.4rem;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.breadcrumbs-item + .breadcrumbs-item::before {
    content: '/';
    color: rgba(255,255,255,0.28);
}

.breadcrumbs-item.current {
    color: rgba(255,255,255,0.92);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.4rem;
}

.hero-kicker::before,
.hero-kicker::after {
    content: '';
    width: 2rem;
    height: 1px;
    background: rgba(212,175,110,0.45);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-intro {
    max-width: 40rem;
    margin: 0 auto 2.2rem;
    font-family: var(--font-menu);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.76);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 1rem 2.4rem;
    border: 1px solid rgba(212,175,110,0.45);
    color: rgba(212,175,110,0.9);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.18);
}

.hero-secondary-btn:hover {
    color: #0a0a0a;
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-meta li {
    min-width: 12rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,10,10,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-meta-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(212,175,110,0.8);
}

.hero-meta-value {
    display: block;
    font-family: var(--font-menu);
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
}

.footer-tagline {
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.25rem;
    margin-bottom: 1.4rem;
}

.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
}

.footer-links a:hover {
    color: rgba(255,255,255,0.92);
}

.not-found-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 4rem;
    background: var(--bg-dark);
}

.not-found-section {
    text-align: center;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: clamp(2.6rem, 12vw, 4.4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn,
    .hero-actions .hero-secondary-btn {
        width: min(100%, 22rem);
    }

    .hero-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-meta li {
        min-width: 0;
    }

    .breadcrumbs-list {
        justify-content: flex-start;
    }
}
