/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --card:    rgba(30, 21, 17, 0.84);
    --line:    rgba(255, 214, 153, 0.11);
    --text:    #f7ede2;
    --muted:   #cdbba8;
    --accent:  #f1a65a;
    --accent2: #df6d43;
    --shadow:  0 24px 64px rgba(0, 0, 0, 0.38);
}

html { scroll-behavior: smooth; }

body {
    background: #0d0907;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
}

h1, h2, h3, h4, .navbar-brand strong {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(10, 7, 6, 0.55);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 7, 6, 0.92);
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.navbar-brand span { display: grid; line-height: 1; }
.navbar-brand strong { font-size: 1.42rem; }
.navbar-brand small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; }

.nav-link { color: rgba(247, 237, 226, 0.75) !important; font-size: 0.93rem; }
.nav-link:hover, .nav-link.active { color: #fff !important; }

.btn-reserve {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: 0;
    color: #180f0b !important;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(223, 109, 67, 0.28);
}
.btn-reserve:hover { opacity: 0.9; }

/* ============================================================
   HERO – full-screen welcome banner (100vh)
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background photo */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/background.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    z-index: 0;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 5, 4, 0.54) 0%,
        rgba(10, 7, 5, 0.66) 48%,
        rgba(7, 5, 4, 0.90) 100%
    );
    z-index: 1;
}

/* Vertical social sidebar */
.hero-social {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    z-index: 10;
}

.hero-social::before,
.hero-social::after {
    content: '';
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
}

.hero-social a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 1.05rem;
    transition: color 0.2s;
}
.hero-social a:hover { color: var(--accent); }

/* Decorative right bar */
.hero-deco-line {
    position: absolute;
    right: 3.6rem;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.18) 28%,
        rgba(255, 255, 255, 0.18) 72%,
        transparent
    );
    z-index: 2;
}

/* Center content block */
.hero-inner {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 72rem;
    padding: 6rem 2rem 12rem; /* bottom padding clears info bar */
}

/* Tag line */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}
.hero-tag-line {
    width: 2.8rem;
    height: 1px;
    background: currentColor;
}

/* Main headline */
.hero-title {
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.015em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    text-align: center;
}

.hero-title-logo {
    height: clamp(480px, 8vw, 960px);
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Subtitle */
.hero-copy {
    color: rgba(247, 237, 226, 0.75);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 50rem;
    margin: 0 auto 2.4rem;
}

/* CTA row */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #180f0b;
    font-weight: 800;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    border: 0;
    font-size: 0.96rem;
    letter-spacing: 0.03em;
    box-shadow: 0 14px 40px rgba(223, 109, 67, 0.32);
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary:hover { color: #180f0b; opacity: 0.9; transform: translateY(-2px); }

.btn-hero-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.36);
    color: #fff;
    font-weight: 700;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    font-size: 0.96rem;
    letter-spacing: 0.03em;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.58);
    color: #fff;
    transform: translateY(-2px);
}

/* Info bar fixed to hero bottom */
.hero-infobar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 5, 4, 0.62);
    backdrop-filter: blur(18px);
}

.hero-infobar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hib-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    color: rgba(247, 237, 226, 0.8);
    font-size: 0.86rem;
}
.hib-item i { color: var(--accent); }
.hib-item a { color: inherit; }

.hib-sep {
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

/* Mouse scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 5.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}
.hero-scroll:hover { color: var(--accent); }

.scroll-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 1.4rem;
    height: 2.4rem;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.3rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.55rem;
    background: currentColor;
    border-radius: 999px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    75%  { opacity: 0; transform: translateY(0.65rem); }
    100% { opacity: 0; transform: translateY(0); }
}

/* ============================================================
   SHARED EYEBROW
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: '';
    width: 2.4rem;
    height: 1px;
    background: currentColor;
}

/* ============================================================
   ABOUT SECTION – photo left, text right
   ============================================================ */
.about-section {
    overflow: hidden;
    background: #0f0a08;
    padding: 5rem 0;
}

.about-outer {
    max-width: 72%;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-inner-row {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.about-photo-col { position: relative; }

.about-photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 32rem;
    overflow: hidden;
}

.about-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.85) contrast(1.06) saturate(0.92);
}

/* Badge "14 years" overlaid on photo */
.about-badge {
    position: absolute;
    top: 3rem;
    right: -2.1rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 40px rgba(223, 109, 67, 0.48);
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
    color: #180f0b;
}

.about-badge-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: rgba(24, 15, 11, 0.84);
    font-weight: 700;
    padding: 0 0.3rem;
}

/* Photo caption pill bottom-left */
.about-photo-label {
    position: absolute;
    bottom: 2rem;
    left: 1.8rem;
    display: inline-flex;
    align-items: center;
    background: rgba(8, 6, 5, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.42rem 1rem 0.42rem 0.1rem;
    color: rgba(247, 237, 226, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}
.text-accent { color: var(--accent); }

/* Right text column — dark card box */
.about-text-col {
    background: #1a1210;
}

.about-content {
    padding: 3.5rem 3rem 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #1a1210;
    box-shadow: inset 4px 0 32px rgba(0,0,0,0.28);
}

.about-heading {
    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.about-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.88;
    margin-bottom: 0.7rem;
}
.about-desc--muted { opacity: 0.76; font-size: 0.97rem; margin-bottom: 2rem; }

/* Stats row with vertical dividers */
.about-stats {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 2.4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-stat {
    flex: 1;
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
}
.about-stat strong span { color: var(--accent); vertical-align: super; font-size: 1.4rem; }

.about-stat > span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-top: 0.3rem;
}

.about-stat-sep {
    width: 1px;
    height: 2.8rem;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* CTA row */
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: 0;
    color: #180f0b;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(223, 109, 67, 0.26);
    display: inline-flex;
    align-items: center;
}
.btn-primary:hover { color: #180f0b; opacity: 0.9; }

.btn-about-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: transparent;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
}
.btn-about-ghost:hover { background: rgba(255, 255, 255, 0.07); color: #fff; }

/* ============================================================
   SECTION SHELL (wrapper for all other sections)
   ============================================================ */
.section-shell { padding: 6rem 0; }

.section-contrast {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.22),
        rgba(255, 255, 255, 0.0)
    );
}

.section-heading h2, .gallery-caption h2 {
    font-size: clamp(2.3rem, 3.8vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 1.2rem;
}

.narrow-heading { max-width: 48rem; }
.section-intro  { color: var(--muted); }

.sticky-copy { position: sticky; top: 7rem; }

/* ============================================================
   FEATURE CARDS  (why choose us / highlights)
   ============================================================ */
.feature-card,
.experience-card,
.menu-panel,
.menu-item-card,
.testimonial-card,
.reservation-form,
.gallery-caption,
.reservation-shell {
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.feature-card,
.experience-card,
.menu-item-card,
.testimonial-card {
    border-radius: 1.6rem;
    padding: 1.6rem;
}

#experience .section-heading .eyebrow {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    letter-spacing: 0.26em;
}

.experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.experience-icon-wrap {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 1rem;
    background: rgba(241, 166, 90, 0.1);
    border: 1px solid rgba(241, 166, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    transition: background 0.25s;
}
.experience-card:hover .experience-icon-wrap {
    background: rgba(241, 166, 90, 0.18);
}
.experience-icon {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
    filter: brightness(0) saturate(0%) invert(78%) sepia(42%) saturate(600%) hue-rotate(340deg) brightness(102%);
}

.feature-index,
.experience-kicker {
    color: var(--accent);
    display: block;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
}

.feature-card h3,
.experience-card h3,
.menu-panel-header h3,
.menu-item-card h4 {
    font-size: 1.85rem;
    margin-bottom: 0.7rem;
}

.feature-card p,
.experience-card p,
.menu-item-card p,
.testimonial-card p  { color: var(--muted); }

.experience-card p {
    max-width: 33ch;
    margin-left: auto;
    margin-right: auto;
}

.experience-card a {
    color: var(--accent);
    font-size: 0.93rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: auto;
}

/* ============================================================
   MENU TABS
   ============================================================ */
.menu-tabs { gap: 0.7rem; flex-wrap: wrap; }

.menu-tabs .nav-link {
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}
.menu-tabs .nav-link.active {
    background: linear-gradient(135deg, rgba(241,166,90,.16), rgba(223,109,67,.16));
    border-color: rgba(241, 166, 90, 0.24);
    color: #fff;
}

.menu-panel         { border-radius: 2rem; padding: 2rem; }
.menu-panel-header  { margin-bottom: 1.4rem; }
.menu-panel-header p { color: var(--muted); }

.price-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.2rem;
    border-radius: 999px;
    background: rgba(241, 166, 90, 0.14);
    color: var(--accent);
    padding: 0.3rem 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ============================================================
   GALLERY TILES
   ============================================================ */
.gallery-band { padding-top: 0; }

.gallery-tile,
.gallery-caption {
    border-radius: 1.8rem;
    min-height: 16rem;
    position: relative;
    overflow: hidden;
}

.gallery-tile {
    display: flex;
    align-items: flex-end;
    padding: 1.3rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.gallery-tile span   { position: relative; z-index: 1; font-weight: 700; }
.gallery-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.48));
}

.tile-one {
    min-height: 35rem;
    background:
        radial-gradient(circle at top, rgba(241,166,90,.3), transparent 36%),
        linear-gradient(180deg, #54321f 0%, #1c1410 100%);
}
.tile-two  { background: linear-gradient(135deg, #60371e, #1e1310 60%); }
.tile-three{ background: linear-gradient(135deg, #3a221a, #111010 70%); }

.gallery-caption { padding: 2rem; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-wrap {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.event-card {
    position: relative;
    min-height: 26rem;
    border-radius: 1.2rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, grid-column 0.35s ease, filter 0.25s ease;
    filter: saturate(0.88);
}

.event-card:not(.is-active) {
    grid-column: span 3;
    min-height: 18rem;
}

.event-card.is-active {
    grid-column: span 2;
}

.event-card:hover {
    transform: translateY(-4px);
    filter: saturate(1);
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 5, 4, 0.2) 20%, rgba(6, 5, 4, 0.88) 100%);
    transition: background 0.25s ease;
}

.event-card:hover .event-overlay {
    background: linear-gradient(180deg, rgba(6, 5, 4, 0.08) 10%, rgba(6, 5, 4, 0.78) 100%);
}

.event-content {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
}

.event-date {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.55rem;
}

.event-content h3 {
    font-size: 1.55rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.event-content p {
    margin: 0;
    color: rgba(247, 237, 226, 0.88);
    font-size: 0.94rem;
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.event-card:hover .event-content p,
.event-card:focus-within .event-content p {
    max-height: 8rem;
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESERVATION SECTION
   ============================================================ */
.reservation-shell  { border-radius: 2rem; padding: 2rem; }
.reservation-form   { border-radius: 1.8rem; padding: 1.8rem; }
.contact-shell {
    border: 1px solid var(--line);
    border-radius: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,.03);
}

.reservation-tabs {
    gap: 0.75rem;
    flex-wrap: wrap;
}
.reservation-tabs .nav-link {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.03);
    color: var(--text);
    padding: 0.75rem 1.3rem;
    font-weight: 600;
}
.reservation-tabs .nav-link.active {
    background: linear-gradient(120deg, rgba(188,120,68,.4), rgba(255,173,96,.18));
    border-color: rgba(255,195,135,.58);
    color: #fff;
}

.reservation-location-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 1.6rem;
    align-items: stretch;
}

.contact-location-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    border-radius: 1.6rem;
    padding: 1.8rem;
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
}

.contact-location-copy {
    max-width: 42rem;
}

.contact-location-copy h3 {
    margin-bottom: 0.75rem;
}

.contact-location-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.reservation-info-panel,
.reservation-map-panel {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    border-radius: 1.6rem;
    padding: 1.4rem;
}

.reservation-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.4rem;
}

.reservation-detail-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    border-radius: 1.1rem;
    padding: 1.25rem;
}

.reservation-detail-number {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.reservation-detail-card h4 {
    margin-bottom: 0.65rem;
    font-size: 1.9rem;
}

.reservation-detail-card p,
.reservation-detail-card a {
    margin: 0;
    color: var(--muted);
    text-decoration: none;
    line-height: 1.6;
}

.reservation-detail-card a:hover {
    color: #fff;
}

.reservation-map-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reservation-map-header h4 {
    margin: 0 0 0.35rem;
    font-size: 1.7rem;
}

.reservation-map-header p {
    margin: 0;
    color: var(--muted);
}

.reservation-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}
.reservation-links a {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.reservation-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(255,195,135,.48);
    background: rgba(255,255,255,.08);
}
.reservation-links img {
    width: 2.1rem;
    height: 2.1rem;
    object-fit: contain;
}

.reservation-links-large a {
    width: 4.5rem;
    height: 4.5rem;
}

.reservation-links-large img {
    width: 2.5rem;
    height: 2.5rem;
}

.reservation-links-hero {
    margin-top: 0;
    gap: 1.4rem;
}

.reservation-links-hero a {
    width: 5.6rem;
    height: 5.6rem;
}

.reservation-links-hero img {
    width: 3.2rem;
    height: 3.2rem;
}

.contact-list        { display: grid; gap: 1rem; }
.contact-list span   { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-list strong { display: block; margin-top: 0.15rem; }

.map-frame {
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid var(--line);
}
.map-frame iframe {
    width: 100%;
    height: 28rem;
    border: 0;
    filter: grayscale(1) brightness(0.78) contrast(1.1);
}

.form-control,
.form-select {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
    color: var(--text);
    min-height: 3.3rem;
    border-radius: 0.75rem;
}
.form-control:focus,
.form-select:focus {
    background: rgba(255,255,255,.05);
    border-color: rgba(241,166,90,.42);
    box-shadow: 0 0 0 0.25rem rgba(241,166,90,.12);
    color: var(--text);
}
.form-control::placeholder { color: rgba(205,187,168,.58); }
.form-label                { font-size: 0.9rem; color: var(--muted); }
.invalid-feedback          { font-size: 0.88rem; }

.response-banner {
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.response-banner.is-success {
    background: rgba(85,184,120,.14);
    border: 1px solid rgba(85,184,120,.28);
    color: #c9f4d2;
}
.response-banner.is-error {
    background: rgba(223,109,67,.15);
    border: 1px solid rgba(223,109,67,.28);
    color: #ffd0bf;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    padding: 2rem 0 2.8rem;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 0.92rem;
}
.site-footer p      { color: var(--muted); margin: 0; }
.footer-links a     { color: var(--muted); }
.footer-links a:hover { color: #fff; }

.footer-links {
    flex-wrap: wrap;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(241,166,90,0.16), transparent 38%),
        radial-gradient(circle at 90% 85%, rgba(223,109,67,0.12), transparent 30%),
        #0d0907;
}

.legal-shell {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.legal-card {
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 1.4rem;
    padding: 2rem;
}

.legal-updated {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.legal-card h3 {
    font-size: 1.25rem;
    margin-top: 1.4rem;
    margin-bottom: 0.65rem;
}

.legal-card ul {
    margin-bottom: 0.8rem;
}

/* ============================================================
   BUTTONS (shared utility)
   ============================================================ */
.btn-outline-light { border-color: rgba(255,255,255,.22); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .hero-social,
    .hero-deco-line { display: none; }

    .events-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .event-card,
    .event-card.is-active,
    .event-card:not(.is-active) {
        grid-column: span 1;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 7, 6, 0.96);
        border-radius: 1rem;
        margin-top: 0.8rem;
        padding: 1rem;
        border: 1px solid rgba(255,255,255,.06);
    }

    .sticky-copy { position: static; }

    .tile-one { min-height: 20rem; }

    /* About: stack on mobile */
    .about-outer { max-width: 94%; }
    .about-photo-wrap { min-height: 20rem; }
    .about-badge { right: 0.8rem; top: 1.8rem; }
    .about-content { padding: 2.5rem 2rem; }

    .events-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reservation-location-card {
        grid-template-columns: 1fr;
    }

    .hero-scroll { display: none; }
}

@media (max-width: 767.98px) {
    .eyebrow {
        font-size: 0.9rem;
        letter-spacing: 0.18em;
    }

    .hero-title { font-size: clamp(3rem, 13vw, 4.5rem); }

    .hero-inner { padding-bottom: 10rem; }

    .hero-infobar-inner {
        flex-direction: column;
        gap: 0;
    }
    .hib-sep { width: 70%; height: 1px; }

    .menu-panel,
    .reservation-shell,
    .reservation-form,
    .gallery-caption { padding: 1.4rem; }

    .reservation-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .contact-shell {
        padding: 1.4rem;
    }

    .reservation-detail-grid {
        grid-template-columns: 1fr;
    }

    .reservation-map-header {
        flex-direction: column;
    }

    .map-frame iframe {
        height: 22rem;
    }

    .menu-tabs { display: grid; }

    .about-content { padding: 2rem 1.4rem 2.4rem; }

    .about-stats  { flex-wrap: wrap; justify-content: center; }
    .about-stat   { flex: 0 0 44%; min-width: 7rem; }
    .about-stat-sep { display: none; }

    .events-wrap {
        grid-template-columns: 1fr;
    }
    .event-card,
    .event-card.is-active,
    .event-card:not(.is-active) {
        grid-column: span 1;
        min-height: 20rem;
    }
    .event-content p {
        max-height: 8rem;
        opacity: 1;
        transform: translateY(0);
    }
}
