/* =====================================
   KOETSHUIS KRONENBURG — CLEANED CSS
   (structure-only cleanup; no design changes)
   Order:
   1) Fonts & Reset
   2) CSS Variables
   3) Base / Helpers / Typography / Links
   4) Layout primitives
   5) Header / Logo / Nav (desktop)
   6) Intro / Hero
   7) Events
   8) Floorplan
   9) FAQ (inline page styles)
   10) Burger + Mobile Nav Panel
   11) Section-specific (Contact / Kitchen / Event Space)
   12) FAQ Slide-in Panel (overlay)
   13) Footer
   14) Responsive (≤900px, ≤600px) — grouped at end
====================================== */

/* 1) FONTS & RESET */
@font-face {
    font-family: 'helveticaneue_medium';koetshuiskronenburg.be
    src: url('fonts/helveticaneue_medium-webfont.woff2') format('woff2'),
        url('fonts/helveticaneue_medium-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'helveticaneue_light';
    src: url('fonts/helveticaneue_light-webfont.woff2') format('woff2'),
        url('fonts/helveticaneue_light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

/* 2) CSS VARIABLES */
:root {
    --font-extra-small: 1.3rem;
    --font-small: 2.1rem;
    --font-medium: 3.4rem;
    --font-large: 5.5rem;
    --font-extra-large: 8.9rem;

    --color-black: #120902;
    --color-white: #FAF9F5;
    --color-gray: #0d06537;

    --font-family-body: helveticaneue_light;
    --font-family-title: helveticaneue_medium;
    --font-family-quote: helveticaneue_medium;

    --header-height: 0px;
    --desktop-container-border-width: 20px;

    --event-open-h: 600px;
    --event-closed-h: 110px;

    --border-white: 1px solid rgba(255, 255, 255, .55);
}

/* 3) BASE / HELPERS / TYPE / LINKS */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    scroll-padding-top: 0;
}

body {
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    overscroll-behavior-y: contain;
}

.container {
    display: flex;
    flex-direction: row;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

a,
a:visited,
a:active,
a:focus {
    color: var(--color-black);
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {

    html,
    body {
        scroll-behavior: auto;
    }
}

/* snap helpers */
.snap {
    scroll-snap-align: start;
    scroll-margin-top: var(--header-height);
}

.snap:focus {
    outline: none;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.no-scroll {
    overflow: hidden;
    touch-action: none;
}

/* type */
h1,
h2,
h3,
h4 {
    font-family: var(--font-family-title);
    letter-spacing: 0;
}

p {
    font-family: var(--font-family-body);
    letter-spacing: 0;
}

h1 {
    text-transform: uppercase;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

h2 {
    line-height: 1;
    font-weight: 400;
}

h3 {
    line-height: 1;
    font-weight: 400;
}

h4 {
    font-size: var(--font-small);
    line-height: 1.4;
    font-weight: 400;
}

h5 {
    font-size: var(--font-extra-small);
    line-height: 1.4;
    font-weight: 400;
}


/* Put this near your header CSS */

/* Choose the wrapper you want to blur (not the header).
   If your main wrapper is #page, keep it. Otherwise use main/.site-content */
#page {
  transition: filter .25s ease, opacity .25s ease;
}

/* When the desktop nav or dropdown is hovered, blur the page behind */
@media (hover:hover) {
  body:has(.site-header:hover) #page,
  body:has(.main-nav:hover) #page,
  body:has(.dropdown:hover) #page {
    filter: blur(6px);
    opacity: .65;
  }

  /* Keep header crisp */
  body:has(.site-header:hover) .site-header,
  body:has(.main-nav:hover) .site-header,
  body:has(.dropdown:hover) .site-header {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Optional: add a subtle dim on top of the blurred page */
body:has(.site-header:hover)::after,
body:has(.main-nav:hover)::after,
body:has(.dropdown:hover)::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(0,0,0,.22);
  transition: opacity .25s ease;
}



/* Blur everything except header when nav hovered */

/*

body.nav-hover main,
body.nav-hover .site-content,
body.nav-hover #page {
  filter: blur(6px);
  opacity: 1;
  transition: filter .25s ease, opacity .25s ease;
  pointer-events: none;
}


body.nav-hover .site-header {
  filter: none !important;
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 99999;
}


*/

/* buttons */
.btn-with-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    font-size: var(--font-extra-small);
    border-radius: 40px;
    padding: 10px 20px;
    margin: 60px 0;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-black {
    background: var(--color-black);
    color: var(--color-white) !important;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black) !important;
}

.btn-with-arrow:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-with-arrow .arrow-icon {
    width: 14px;
    height: auto;
    transition: transform .3s ease, filter .3s ease;
}

.btn-with-arrow:hover .arrow-icon {
    transform: rotate(-45deg);
}

/* 4) LAYOUT PRIMITIVES */
img.image-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}



.inner-left {
    width: 50%;
    height: calc(100vh - var(--header-height));
    position: sticky;
    top: var(--header-height);
}

.inner-right {
    width: 50%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--color-black);
}

.text-title {
    font-size: var(--font-large);
    line-height: .8;
    padding: 120px 0 60px;
}

.text-description {
    font-size: var(--font-extra-small);
    line-height: 1.2;
    padding: 0 0 60px;
}

.text-description p {
    padding-top: 30px;
    margin: 0;
}

/* 5) HEADER / LOGO / NAV */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    color: var(--color-white);
    pointer-events: none;
}

.site-header,
.site-header a {
    color: var(--color-white);
    transition: color .3s ease, background-color .3s ease;
}

.site-header[data-color="black"],
.site-header[data-color="black"] a {
    color: var(--color-black);
    mix-blend-mode: normal;
}

.site-header[data-color="white"],
.site-header[data-color="white"] a {
    color: var(--color-white);
}

.site-header[data-color="white"] .main-nav {
    background: linear-gradient(to bottom, rgba(18, 9, 2, .25) 50%, rgba(18, 9, 2, 0) 100%);
    transition: background .2s ease, color .2s ease;
}

.site-header[data-color="black"] .main-nav {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0) 100%);
    transition: background .2s ease, color .2s ease;
}

.site-header.scrolled {
    height: 40px;
}

.header-inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
    background: transparent;
}

.site-logo {
    position: fixed;
    top: 15px;
    width: calc(100vw - 30px);
    padding: 0 15px;
    max-width: none;
    z-index: 999;
    pointer-events: none;
}

.is-small {
    width: 310px;
    /*    top: 10px;*/
    /*    left: 10px;*/
    transform: translateX(0);
}

.site-logo svg {
    width: 100%;
    height: auto;
    display: block;
    fill: currentColor;
}

.main-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    font-size: var(--font-extra-small);
    opacity: 0;
    transition: opacity .3s ease;
    mix-blend-mode: difference;
    color: var(--color-white);
    pointer-events: none;
    z-index: 100;
    height: 15vh;
}

.site-header.scrolled .main-nav,
.main-nav.visible {
    opacity: 1;
    pointer-events: visible;
}

.main-nav-ul {
    list-style: none;
    display: flex;
    margin: 10px;
    padding: 0;
    cursor: pointer;
}

.dropdown-ul {
    list-style: none;
    display: flex;
    margin: 0 0 0 10px;
    padding: 0;
    cursor: pointer;
}

.main-nav ul li {
    position: relative;
}

.main-nav a {
    color: var(--color-white);
    padding: 10px;
    text-decoration: none;
    mix-blend-mode: difference;
}

.main-nav a:hover {
    text-decoration: underline;
}

.margin-left-15 {
    margin-left: 15px;
}

.padding-top-15 {
    padding-top: 10px;
}

.main-nav .has-dropdown > a {
    align-items: flex-end;
    gap: .5em;
    text-decoration: none;
}

.dropdown-arrow {
    background: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 18px;
    height: 18px;
    margin: 0 0 0 5px;
    display: inline-block;
    align-self: flex-end;
    transform: translateY(2px);
}

.site-header[data-color="white"] .dropdown-arrow {
    -webkit-mask-image: var(--arrow-white);
    mask-image: var(--arrow-white);
}

.site-header[data-color="black"] .dropdown-arrow {
    -webkit-mask-image: var(--arrow-black);
    mask-image: var(--arrow-black);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px) scale(.98);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 9999;
}

.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dropdown a {
    display: block;
    padding: 0;
    margin: 0;
    font-size: var(--font-extra-small);
    text-decoration: none;
    transition: color .2s ease;
}

.site-header[data-color="black"] .dropdown a {
    color: var(--color-black);
}

.site-header[data-color="white"] .dropdown a {
    color: var(--color-white);
}

/* optional blur layer */
.blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25vh;
    pointer-events: none;
    z-index: 5;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, .1);
    mask-image: linear-gradient(to bottom, rgba(18, 9, 2, 1), rgba(18, 9, 2, 0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(18, 9, 2, 1), rgba(18, 9, 2, 0));
}

@supports not (backdrop-filter: blur(2px)) {
    .blur-layer {
        background: rgba(255, 255, 255, .5);
    }

    .site-header {
        background: rgba(255, 255, 255, .5);
    }
}

/* 6) INTRO / HERO */
#intro {
    width: 100%;
/*    min-height: 100vh;*/
}

/* Fallback */
.section-full {
  min-height: 100vh;
}

/* Modern mobile fix */
@supports (height: 100dvh) {
  .section-full {
    min-height: 100dvh;
  }
}

@supports (height: 100svh) {
  .section-full {
    min-height: 100svh; /* avoids jumpy behaviour */
  }
}

.section-full {
  min-height: calc(var(--vh) * 100);
}

.section-full { min-height: 100vh; }

@supports (height: 100dvh) {
  .section-full {
    min-height: 100dvh;
  }
}



.intro {
    width: 100%;
    height: 100vh;
    background-color: var(--color-grey);
    filter: blur(1px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.intro-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    align-content: flex-end;
    justify-content: flex-end;
    padding: 10px;
}

.intro-text {
    width: 100%;
    font-size: var(--font-large);
    font-weight: 500;
    line-height: .9;
    position: relative;
    z-index: 2;
}

.intro::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    --overlay-top: rgba(18, 9, 2, .40);
    --overlay-mid: rgba(18, 9, 2, 0);
    --overlay-bottom: rgba(18, 9, 2, .40);
    background: linear-gradient(to bottom, var(--overlay-top) 0%, var(--overlay-mid) 15%, var(--overlay-mid) 85%, var(--overlay-bottom) 100%);
}

/* hero reveal animation */
.hero-title {
    overflow: visible;
    line-height: 1;
    width: 100%;
}

.hero-title .line {
    display: block;
    margin: 0;
    opacity: 0;
    transform: translateY(.8em);
    will-change: transform, opacity;
}

.hero-title.reveal .line {
    animation: lineFadeUp .6s cubic-bezier(.2, .7, .1, 1) forwards;
}

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

.hero-description {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .6s ease, transform .6s ease;
    padding-top: 60px;
}

.hero-description.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-title .line {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .hero-description {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* hero section block */
#hero {
    min-height: calc(100vh - var(--header-height));
    background: var(--color-white);
    color: var(--color-black);
}

.hero-container {
    display: flex;
    flex-direction: row;
}

.hero-image {
    width: 75%;
    height: calc(100vh - var(--header-height));
    background: var(--color-grey);
}

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

.hero-text {
    width: 50%;
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.hero-text .hero-title {
    font-size: var(--font-medium);
}

.hero-text .hero-description {
    font-size: var(--font-extra-small);
    width: 100%;
}

/*
.intro {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
*/

.intro img.image-cover {
/*  position: absolute;*/
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

img {
/*  position: absolute;*/
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* 7) EVENTS */
.events {
    display: grid;
    gap: 0;
}

.event-block-title {
    font-size: var(--font-large);
    width: 75%;
    padding: 120px 15px 60px;
}

.event-block {
    border-bottom: var(--border-white);
    font-size: var(--font-small);
    line-height: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: var(--event-closed-h);
    color: var(--color-white);
    background-image: none;
    cursor: pointer;
    transition: height 400ms ease;
    will-change: height;
}

.event-block:focus-visible {
/*    outline: 0 solid rgba(255, 255, 255, .8);*/
    outline-offset: 0;
}

.event-block {
  background-image: var(--bg-image);
}


.event-top,
.event-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
}

.event-category {
    font-size: var(--font-extra-small);
    width: auto;
    opacity: .9;
    letter-spacing: .04em;
}

.event-time {
    font-size: var(--font-small);
    width: 10%;
    line-height: 1.2;
    font-weight: 400;
    text-align: right;
}

.event-title-box {
    display: flex;
    flex-direction: row;
}

.event-title {
    font-size: var(--font-medium);
    line-height: 1.2;
    font-weight: 400;
    width: 60%;
}

.event-date {
    font-size: var(--font-small);
    line-height: 1.2;
    font-weight: 400;
    width: 30%;
}

.event-description {
    font-size: var(--font-small);
    margin-top: 0;
    width: 40%;
}

.event-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 300ms ease, transform 400ms ease;
    transform: scale(1.02);
    z-index: 0;
}

.event-block.is-open .event-bg {
    opacity: 1;
    transform: scale(1);
}

.event-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;              /* hide when closed */
  transform: scale(1.02);
  transition: opacity 300ms ease, transform 400ms ease, visibility 0s linear 300ms;
  z-index: 0;
  pointer-events: none;
}

.event-block.is-open .event-bg {
  opacity: 1;
  visibility: visible;             /* show when open */
  transform: scale(1);
  transition: opacity 300ms ease, transform 400ms ease, visibility 0s linear 0s;
}


.event-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 9, 2, .7) 0%, rgba(18, 9, 2, .1) 100%);
    pointer-events: none;
    z-index: 1;
}

.event-content {
    position: relative;
    z-index: 2;
}

.event-bottom {
    opacity: 0;
    transition: opacity 300ms ease 100ms;
    padding: 10px 15px;
}

.event-top {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}

.event-block.is-open .event-bottom {
    opacity: 1;
}

/* 8) FLOORPLAN */
#floorplan,
#event-space,
#kitchen {
    min-height: calc(100vh - var(--header-height));
    width: 100%;
}

#kitchen {
    top: 0;
}

.fp-section {
    min-height: calc(100vh - var(--header-height));
    scroll-margin-top: var(--header-height);
    position: relative;
}

.fp-visual {
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.fp-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(var(--base-w) * 1px);
    height: calc(var(--base-h) * 1px);
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    will-change: transform;
    overflow: hidden;
}

.fp-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fp-hotspot {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(calc(attr(data-x px)), calc(attr(data-y px)));
    pointer-events: none;
    color: var(--color-white);
    opacity: 0;
    transition: opacity .35s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
}

.fp-hotspot[data-x][data-y] {
    transform-origin: left top;
}

.fp-hotspot.right {
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-align: right;
}

.fp-hotspot.right .line {
    transform-origin: right center;
}

.fp-hotspot.right .text {
    align-items: flex-end;
    text-align: right;
}

.fp-hotspot .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-white);
}

.fp-hotspot .line {
    width: 140px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .45s ease .05s;
}

.fp-hotspot .text {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    max-width: min(40vw, 380px);
    white-space: normal;
    overflow-wrap: break-word;
}

.fp-hotspot .label {
    font-size: var(--font-small);
    line-height: 1.2;
    padding: .25rem .5rem;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease .10s, transform .35s ease .10s;
}

.fp-hotspot .desc {
    font-size: var(--font-extra-small);
    line-height: 1.35;
    border-radius: 4px;
    padding: .2rem .5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease .24s, transform .35s ease .24s;
    max-width: 100%;
    box-sizing: border-box;
}

.fp-hotspot.seen {
    opacity: 1;
}

.fp-hotspot.seen .line {
    transform: scaleX(1);
}

.fp-hotspot.seen .label {
    opacity: 1;
    transform: translateY(0);
}

.fp-hotspot.seen .desc {
    opacity: 1;
    transform: translateY(0);
}

.fp-spacer {
    height: calc(4 * 80vh);
}

/* 9) FAQ (INLINE PAGE STYLES) */
.faqs-text {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-extra-small);
    font-weight: 400;
}

.faqs-text h2 {
    font-size: var(--font-large);
    line-height: 1;
    margin: 0;
    padding: 120px 15px 60px;
    width: 75%;
}

.faqs-text h3 {
    font-size: var(--font-medium);
    border-top: var(--border-white);
    margin-top: 30px;
    padding: 30px 15px;
}

#faq details {
    padding: 15px;
}

.faq-block {
    padding-top: 30px;
}

#faq details:first-of-type {
    border-top: 0;
}

#faq summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

#faq summary:hover {
    text-decoration: underline
}

#faq summary::-webkit-details-marker {
    display: none;
}

#faq summary::before,
#faq summary::after {
    content: "";
    position: absolute;
    left: 0;
    top: .9rem;
    width: 16px;
    height: 2px;
    background: var(--color-white);
    transition: transform .15s ease;
}

#faq summary::after {
    transform: rotate(90deg);
}

#faq details[open] summary::after {
    transform: rotate(0deg);
}

#faq p {
    margin: .5rem 0 0;
    padding-left: 32px;
}

#faq a {
    color: var(--color-white);
    text-decoration: underline;
}

/* FAQ page header styling (single, de-duplicated) */
body.faq-page .site-header {
    background: var(--color-black);
    color: var(--color-white);
}

body.faq-page .main-nav a {
    color: var(--color-white);
}

body.faq-page .main-nav a:hover {
    opacity: .8;
}

body.faq-page .burger span {
    background: var(--color-white);
}

/* 10) BURGER + MOBILE NAV PANEL */
.burger {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 40px;
    padding: 10px;
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10001;
    cursor: pointer;
    pointer-events: auto;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .25s ease, opacity .25s ease;
}

.burger.is-open span:nth-child(1) {
    transform: translateY(2px) translateX(13px) rotate(45deg);
    width: 70%;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-2px) translateX(13px) rotate(-45deg);
    width: 70%;
}

.site-header[data-color="white"] .burger {
    color: var(--color-white);
}

.site-header[data-color="black"] .burger {
    color: var(--color-black);
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75vw;
    max-width: 360px;
    background: var(--color-white);
    color: var(--color-black);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 10000;
    padding: 80px 20px 40px;
    display: none;
    flex-direction: column;
    pointer-events: auto;
    font-family: var(--font-family-title);
}

.mobile-nav-panel.is-open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--font-small);
    line-height: 1.1;
    font-family: var(--font-family-title);
    text-transform: none;
}

.mobile-nav-item {
    margin-bottom: 24px;
}

.mobile-nav-item > a {
    color: var(--color-black);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.mobile-nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: currentColor;
    transition: width .25s ease;
}

.mobile-nav-item > a:hover::after {
    width: 100%;
}

.mobile-submenu {
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
    font-size: var(--font-small);
    line-height: 1.2;
}

.mobile-submenu li {
    margin-bottom: 12px;
}

.mobile-submenu a {
    color: var(--color-black);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    display: inline-block;
}

.mobile-submenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: currentColor;
    transition: width .25s ease;
}

.mobile-submenu a:hover::after {
    width: 100%;
}

/* desktop default visibility */
.main-nav {
    display: flex;
}

.mobile-nav-panel {
    display: none;
}

/* 11) SECTION-SPECIFIC (Contact / Kitchen / Event Space) */
#contact,
#kitchen,
#event-space {
    min-height: calc(100vh - var(--header-height));
/*    background: var(--color-white);*/
}

#contact {
    color: var(--color-white);
    background: var(--color-black);
}

#contact .hero-container,
#kitchen .hero-container,
#event-space .hero-container {
    display: flex;
    flex-direction: row;
}

#contact .hero-image,
#kitchen .hero-image,
#event-space .hero-image {
    width: 75%;
    height: calc(100vh - var(--header-height));
/*    background: var(--color-grey);*/
    position: sticky;
    top: 0;
}

#contact .hero-image img,
#kitchen .hero-image img,
#event-space .hero-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#contact .hero-text,
#kitchen .hero-text,
#event-space .hero-text {
    width: 50%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    color: var(--color-black);
}

#contact .hero-text .hero-title,
#kitchen .hero-text .hero-title,
#event-space .hero-text .hero-title {
    font-size: var(--font-medium);
    /*    font-family: var(--font-family-title);*/
    line-height: 1;
}

#contact .hero-text .hero-description,
#kitchen .hero-text .hero-description,
#event-space .hero-text .hero-description {
    font-size: var(--font-extra-small);
    width: 100%;
    font-family: var(--font-family-body);
    line-height: 1.2;
    color: var(--color-white);
}

#contact .btn-with-arrow.btn-black,
#kitchen .btn-with-arrow.btn-black,
#event-space .btn-with-arrow.btn-black {
    background: var(--color-black);
    color: var(--color-white) !important;
}

#contact .btn-with-arrow.btn-black:hover,
#kitchen .btn-with-arrow.btn-black:hover,
#event-space .btn-with-arrow.btn-black:hover {
    background: var(--color-white);
    color: var(--color-black) !important;
}

#contact .btn-with-arrow.btn-black .arrow-icon,
#kitchen .btn-with-arrow.btn-black .arrow-icon,
#event-space .btn-with-arrow.btn-black .arrow-icon {
    width: 14px;
    height: auto;
    transition: transform .3s ease, filter .3s ease;
    filter: invert(1);
}

#contact .btn-with-arrow.btn-black:hover .arrow-icon,
#kitchen .btn-with-arrow.btn-black:hover .arrow-icon,
#event-space .btn-with-arrow.btn-black:hover .arrow-icon {
    transform: rotate(180deg);
    filter: invert(0);
}

#kitchen .hero-title,
#event-space .hero-title,
#kitchen .hero-description,
#event-space .hero-description,
#contact .hero-title,
#contact .hero-description {
    color: var(--color-white);
}

.mobile {
    display: none;
}

/* 12) FAQ SLIDE-IN PANEL (overlay) */
.faq-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    transition: opacity .3s ease, backdrop-filter .3s ease;
}

.faq-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.faq-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    min-width: 320px;
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2, .7, .1, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
    pointer-events: none;
}

.faq-panel.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

body.faq-open {
    overflow: hidden;
    touch-action: none;
}

.faq-panel-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 20px 80px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-family: var(--font-family-body);
    font-size: var(--font-extra-small);
    line-height: 1.3;
    color: var(--color-white);
}

.faq-close {
    position: fixed;
    top: 0;
    right: 0;
    background: transparent;
    color: var(--color-black);
    font-family: var(--font-family-title);
    font-size: var(--font-small);
    line-height: 1;
    border: 0;
    padding: 15px;
    cursor: pointer;
    z-index: 10000;
}

.faq-close:hover {
    opacity: .7;
}

.faq-panel-header {
    font-family: var(--font-family-title);
    padding: 40px 0 20px;
    color: var(--color-black);
}

.faq-panel-header h2 {
    font-size: var(--font-medium);
    line-height: 1;
    margin: 0 0 10px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-black);
}

.faq-panel-intro {
    font-family: var(--font-family-body);
    font-size: var(--font-extra-small);
    line-height: 1.4;
    color: var(--color-black);
    opacity: .8;
    margin: 0;
}

.faq-panel-content {
    font-family: var(--font-family-body);
    font-size: var(--font-extra-small);
    line-height: 1.4;
    color: var(--color-black);
}

.faq-panel-content h3 {
    font-size: var(--font-small);
    line-height: 1.1;
    font-weight: 400;
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: var(--border-white);
    color: var(--color-black);
}

.faq-panel-content details {
    padding: 16px 0;
    border-top: 0;
    color: var(--color-black);
}

.faq-panel-content summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    font-size: var(--font-extra-small);
    line-height: 1.3;
    color: var(--color-black);
}

.faq-panel-content summary::-webkit-details-marker {
    display: none;
}

.faq-panel-content summary::before,
.faq-panel-content summary::after {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 14px;
    height: 2px;
    background: var(--color-black);
    transition: transform .15s ease;
}

.faq-panel-content summary::after {
    transform: rotate(90deg);
}

.faq-panel-content details[open] summary::after {
    transform: rotate(0deg);
}

.faq-panel-content .faq-content p {
    margin: .5rem 0 0;
    padding-left: 28px;
    color: var(--color-black);
    opacity: .8;
    line-height: 1.4;
}

.faq-panel-content a {
    color: var(--color-black);
    text-decoration: underline;
}

.faq-panel-content .faq-end-note {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-black);
    color: var(--color-black);
    font-size: var(--font-extra-small);
    line-height: 1.4;
    opacity: .8;
}

/* 13) FOOTER */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    border-top: var(--border-white);
    font-size: var(--font-extra-small);
}

.site-footer a {
    color: var(--color-white);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* unified grid container */
.site-footer .footer-inner,
.site-footer .site-info {
    margin: 0 auto;
    padding: 30px 15px 60px;
}

.footer-logo {
    padding: 120px 15px 30px;
}
.footer-inner {
        display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-contact,
.footer-company {
    width: 50%;
}
.footer-col {
    font-size: var(--font-extra-small);
    line-height: 1.35;
    min-width: 0;
}

.footer-title {
    font-family: var(--font-family-title);
    font-size: var(--font-small);
    line-height: 1;
    margin: 0 0 14px;
    font-weight: 400;
    color: var(--color-white);
}

.footer-address {
/*    font-style: normal;*/
    opacity: .9;
}

.footer-contact,
.footer-company,
.footer-credits,
.footer-copy {
    margin-top: 10px;
    opacity: .9;
}

.footer-link {
    text-decoration: underline;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li + li {
    margin-top: 8px;
}

.footer-col--contact {
    border-right: var(--border-white);
    padding-right: 20px;
}

.footer-col--nav {
    border-right: var(--border-white);
    padding-right: 20px;
}

/* 14) RESPONSIVE */
@media (max-width: 1024px) {
    :root {
        --event-open-h: 600px;
    }
}

@media (max-width: 900px) {
    :root {
        --event-open-h: 420px;
        --event-closed-h: 53px;
    }
}

@media (max-width: 600px) {
    :root {
        --event-open-h: 220px;
        --event-closed-h: 53px;
    }
}

/* ≤900px (tablet) */
@media (max-width: 900px) {
    :root {
        --font-extra-large: 6.9rem;
        --font-large: 4.2rem;
        --font-medium: 2.6rem;
        --font-small: 1.6rem;
        --font-extra-small: 1rem;
    }

    body {
        line-height: 1.2;
    }

    /* header / logo / nav */
    .site-logo {
        top: 12px;
        width: 100vw;
        padding: 0 12px;
    }

    .is-small {
        width: 220px;
        top: 8px;
        left: 0;
    }

    .header-inner {
        height: 40px;
        justify-content: flex-end;
        background: var(--color-black);
    }

    .main-nav {
        height: auto;
        font-size: var(--font-extra-small);
    }

    .main-nav-ul {
        gap: 10px;
        flex-wrap: wrap;
        margin: 50px 10px 10px;
    }

    .main-nav a {
        padding: 8px 6px;
    }

    .dropdown {
        position: static;
        transform: none;
        min-width: auto;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        flex-direction: column;
    }

    .has-dropdown:hover .dropdown {
        opacity: 1;
        transform: none;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown a {
        padding: 4px 0;
    }

    .dropdown-arrow {
        width: 16px;
        height: 16px;
        margin: 0 6px 0 4px;
    }

    /* intro */
    .intro-inner {
        padding: 15px;
    }

    .intro-text {
        font-size: var(--font-medium);
        line-height: .9;
    }

    /* hero */
    .hero-container {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        height: 37.5vh;
    }

    .hero-text {
        width: 100%;
        height: auto;
/*        padding: 15px;*/
    }

    .hero-text .hero-title {
        font-size: var(--font-small);
    }

    .hero-text .hero-description {
        font-size: var(--font-extra-small);
        width: 100%;
    }

    /* sticky split -> single column */
    .inner-left,
    .inner-right {
        width: 100%;
        position: relative;
        top: auto;
        height: auto;
        min-height: auto;
    }

    .inner-right {
        padding: 10px;
    }

    .text-title {
        font-size: var(--font-small);
        padding: 0;
        line-height: .9;
        width: 100%;
    }

    .intro-text {
        font-size: var(--font-small);
    }

    .text-description {
        padding: 30px 0 0 0;
        font-size: var(--font-extra-small);
        line-height: 1.3;
    }

    /* events */
    .event-block {
        height: auto;
        border-bottom: var(--border-white);
    }

    .event-block-title {
        font-size: var(--font-medium);
        width: 100%;
        padding: 30px 10px;
    }

    .event-top,
    .event-bottom {
        flex-direction: column;
        padding: 0;
    }

    .event-date,
    .event-time {
        font-size: var(--font-small);
        line-height: 1.15;
    }

    .event-title {
        font-size: var(--font-small);
        line-height: 1.15;
    }

    .event-description {
        font-size: var(--font-small);
    }

    /* floorplan visibility */
    #floorplan,
    .fp-section,
    .fp-visual,
    .fp-stage {
        display: none !important;
    }

    /* kitchen / event-space sections */
    .kitchen-container,
    .event-space-container,
    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .kitchen-container .inner-left,
    .kitchen-container .inner-right,
    .event-space-container .inner-left,
    .event-space-container .inner-right,
    .contact-container .inner-left,
    .contact-container .inner-right {
        width: 100%;
        position: relative;
        top: auto;
        min-height: auto;
        height: auto;
    }

    .event-space-container {
        flex-direction: column-reverse;
    }

    .inner-left {
        height: 37.5vh;
    }

    .text-title {
        font-size: var(--font-medium);
    }

    .hero-title,
    .hero-text {
        font-size: var(--font-small);
    }

    /* FAQ page */
    .faqs-text {
        font-size: var(--font-extra-small);
        padding: 0 15px 80px;
    }

    .faqs-text h2 {
        font-size: var(--font-large);
        padding: 60px 0;
    }

    .faqs-text h3 {
        font-size: var(--font-small);
        padding: 16px 0;
    }

    #faq summary {
        padding-left: 28px;
    }

    #faq summary::before,
    #faq summary::after {
        top: .8rem;
        width: 14px;
    }

    /* footer */
    .site-footer .footer-inner,
    .site-footer .site-info {
        grid-template-columns: 1fr 1fr;
/*        gap: 20px;*/
        padding: 0;
        height: auto;
                display: flex;
    flex-direction: column;
    }

    .footer-logo {
        display: none;
    }

    .footer-contact,
    .footer-company {
        width: 100%;
/*        padding: 15px 0;*/
    }

        .footer-contact p,
    .footer-company p {
/*        width: 100%;*/
        padding: 0px 0;
        margin: 0;
        margin-bottom: 15px;
    }

    .footer-col--contact,
    .footer-col--nav {
        border-right: 0;
        padding-right: 0;
        border-bottom: var(--border-white);
/*        padding-bottom: 16px;*/
    }

    /* visibility switches */
    .main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-nav-panel {
        display: flex;
    }

    .site-header[data-color="black"] .mobile-nav-panel {
        background: var(--color-white);
        color: var(--color-black);
    }

    .site-header[data-color="white"] .mobile-nav-panel {
        background: var(--color-black);
        color: var(--color-white);
    }

    .site-header[data-color="white"] .mobile-nav-list a,
    .site-header[data-color="white"] .mobile-submenu a {
        color: var(--color-white);
    }

    .site-header[data-color="white"] .mobile-nav-item > a::after,
    .site-header[data-color="white"] .mobile-submenu a::after {
        background: currentColor;
    }
}

/* ≤600px (phone) */
@media (max-width: 600px) {
    :root {
        --font-extra-large: 6.9rem;
        --font-large: 4.2rem;
        --font-medium: 2.6rem;
        --font-small: 1.6rem;
        --font-extra-small: 1rem;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    /* header */
    .site-logo {
        top: 10px;
        width: 100%;
        padding: 0 10px;
    }

    .is-small {
        width: 190px;
        top: 8px;
        left: 0;
    }

    .main-nav {
        font-size: var(--font-extra-small);
        justify-content: flex-end;
        padding-top: 48px;
        background: none;
        mix-blend-mode: normal;
        font-family: var(--font-family-title);
    }

    .main-nav-ul {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        margin: 0 10px 10px;
    }

    .main-nav ul li {
        text-align: right;
    }

    .main-nav a {
        padding: 6px 0;
        line-height: 1.1;
    }

    .has-dropdown {
        display: flex;
        flex-direction: column;
    }

    .main-nav .has-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: .4em;
        padding: 6px 0;
        line-height: 1.1;
    }

    .dropdown-arrow {
        width: 14px;
        height: 14px;
        margin: 0;
        transform: translateY(1px);
    }

    .dropdown {
        position: static;
        padding: 4px 0 8px;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: auto;
        align-items: flex-end;
        text-align: right;
    }

    .dropdown a {
        padding: 4px 0;
        line-height: 1.2;
    }

    /* intro / hero */
    .intro-inner {
        padding: 12px;
    }

    .intro-text {
        font-size: var(--font-small);
        line-height: .9;
/*        word-break: break-word;*/
    }

    .hero-image {
        height: 37.5vh;
    }

    .hero-text {
        padding: 12px;
    }

    .hero-text .hero-title {
        font-size: var(--font-small);
    }

    .hero-text .hero-description {
        font-size: var(--font-extra-small);
    }

    .hero-description {
        padding-top: 25px;
    }

    /* text sections */
    .text-title {
        padding-top: 0;
        font-size: var(--font-small);
        line-height: .9;
    }

    .text-description {
        font-size: var(--font-extra-small);
        padding-bottom: 30px;
        line-height: 1.3;
    }

    .cta-button {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .btn-with-arrow {
        font-size: var(--font-extra-small);
        padding: 10px 16px;
        margin: 30px 0;
    }

    .btn-with-arrow .arrow-icon {
        width: 12px;
    }

    /* events */
    .event-block {
        padding: 10px 10px;
    }

    .event-title {
        font-size: var(--font-extra-small);
    }

    .event-description {
        font-size: var(--font-extra-small);
        width: 75%;
        padding-top: 30px;
    }

    .event-date,
    .event-time {
        font-size: var(--font-extra-small);
    }

    .event-block-title {
        font-size: var(--font-small);
    }


    .event-category {
        font-size: var(--font-extra-small);
        font-size: var(--font-extra-small);
    }

    #contact .hero-image,
    #kitchen .hero-image,
    #event-space .hero-image {
        width: 100%;
        height: 300px;
        position: static;
    }

    #contact .hero-text,
    #kitchen .hero-text,
    #event-space .hero-text {
        width: 100%;
        height: auto;
        min-height: inherit;

    }

    #contact .hero-text .hero-title,
    #kitchen .hero-text .hero-title,
    #event-space .hero-text .hero-title {
        font-size: var(--font-small);
        padding: 30px 0;
        min-height: inherit;
        font-weight: normal;
    }


    #contact .hero-container,
    #kitchen .hero-container,
    #event-space .hero-container {
        display: flex;
        flex-direction: column;
    }

    /* floorplan */
    .fp-stage {
        transform: translate(-50%, -50%) scale(.6);
    }

    .fp-hotspot .label {
        font-size: var(--font-small);
    }

    .fp-hotspot .desc {
        font-size: var(--font-extra-small);
    }

    /* FAQ page */
    .faqs-text {
        padding: 0 15px 60px;
        font-size: var(--font-extra-small);
        line-height: 1.3;
    }

    .faqs-text h2 {
        font-size: var(--font-small);
        padding: 30px 0;
    }

    .faqs-text h3 {
        font-size: var(--font-small);
        padding: 16px 0 8px;
    }

    #faq summary {
        font-size: var(--font-extra-small);
        padding-left: 26px;
        line-height: 1.3;
    }

    #faq summary::before,
    #faq summary::after {
        top: .8rem;
        width: 12px;
        height: 2px;
    }

    #faq p {
        font-size: var(--font-extra-small);
        line-height: 1.4;
        padding-left: 26px;
    }

    /* FAQ panel */
    .faq-panel {
        width: 100vw;
        max-width: 100vw;
    }

    .faq-panel-header h2 {
        font-size: var(--font-large);
    }

    .faq-panel-content h3 {
        font-size: var(--font-small);
    }

    .faq-close {
        font-size: var(--font-medium);
    }

    /* footer */
    .site-footer .footer-inner,
    .site-footer .site-info {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 15px 30px 15px;
    }
}

/* === Mobile header: transparent at top, centered logo, shrink on scroll === */
@media (max-width: 900px) {


    /* start transparent at top */
    .site-header {
        background: transparent;
        transition: background .25s ease;
    }

    /* when JS adds .scrolled, give it a solid black bg */
    .site-header.scrolled {
        background: var(--color-black);
    }

    /* remove the mobile black you previously had on header-inner */
    .header-inner {
        background: transparent !important;
    }

    /* center the logo at the very top */
    .site-logo {
        /*    position: absolute;*/
        top: 50vh;
        left: ;
        transform: translateY(50vh) translateY(-50%);
        width: 100%;
        padding: 0 10px;
    }

    /* when shrunk, keep it centered and a bit smaller */
    .site-logo.is-small {
        height: 20px;
        /* tweak size to taste */
        top: 10px;
        left: 0;
        transform: translateY(0) translateY(0);
        /*    transform: translateX(-50%);*/
    }

    .site-logo.is-small svg {
        width: auto;
        height: 50px;
        display: block;
    }

    /* mobile nav stays normal (no forced background) */
    .main-nav {
        background: none;
        mix-blend-mode: normal;
    }
}

@media (max-width: 900px) {

    .site-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
        background: transparent;
        pointer-events: none;
    }

    /* Gradient blur layer */
    .site-header::before {
        content: "";
        position: absolute;
        inset: 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;

        /* mask creates fade from blur → sharp */
        mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0) 90%);
        -webkit-mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0) 90%);
    }

    /* Show masked blur only when scrolled */
    .site-header.scrolled::before {
        opacity: 1;
    }

    /* Color fade background below blur */
    .site-header.scrolled[data-color="white"] {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(0, 0, 0, 0) 80%);
    }

    .site-header.scrolled[data-color="black"] {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(255, 255, 255, 0) 80%);
    }

    /* Top of page — fully clean */
    .site-header:not(.scrolled) {
        background: transparent !important;
    }
}

/* Disable all scroll-snap on mobile */
@media (max-width: 900px) {
  html, body {
    scroll-snap-type: none !important;
    scroll-padding-top: 0 !important;
  }
  .snap, .snap-section {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }
}


/* Make header receive clicks on mobile */
@media (max-width: 900px) {
  .site-header { pointer-events: auto !important; }
  .header-inner { pointer-events: none; } /* keep inner frame inert */
}

/* Ensure burger sits on top and is clickable */
.burger {
  z-index: 10005;            /* higher than panel/logo */
  pointer-events: auto !important;
  position: fixed;           /* you already have this */
  right: 0; top: 0;
}

/* If you use a blur overlay or FAQ overlay, keep them non-blocking by default */
.faq-overlay { pointer-events: none; }
.faq-overlay.is-open { pointer-events: auto; }


/* Remove baseline gap under images */
img.image-cover,
.hero-image img {
  display: block;
}

/* Prevent sub-pixel seams under fixed-height image wrappers */
.hero-image,
.inner-left {
  line-height: 0;
}

/* Optional: guard against rounding seams on high-DPI */
.image-cover {
  transform: translateZ(0); /* GPU hint; safe */
}


/* Final resort: nudge fill by 1px to cover any seam */
.hero-image img.image-cover {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  margin: -0.5px 0 0 -0.5px;
}

/* Clickable header & burger on mobile */
@media (max-width: 900px) {
  .site-header { pointer-events: auto !important; }
  .header-inner { pointer-events: none; }
  .burger { z-index: 10005; pointer-events: auto !important; }
}

/* Dim/interaction layer behind the panel */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
/*  background: rgba(0,0,0,.35);*/
  opacity: 0;
  pointer-events: none;
  /* z-index: 9999; /* below panel (10000), above page */
  transition: opacity .25s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Panel already has z-index:10000 and transform transitions in your CSS */


/* Remove vh calculations on mobile and use the locked --vh value */
@media (max-width: 900px) {

  /* Any section currently using calc(100vh - var(--header-height)) */
  section,
  .section-full,
  .hero,
  .kitchen-container,
  .event-space-container,
  .meeting-room-container {
    height: auto;
  }

    #hero,
    #kitchen,
    #event-space,
    #contact {
        height: auto;
        min-height: auto;
/*        padding-bottom: 30px;*/
    }

  /* If you had a header height subtraction — remove it */
  .section-full,
  .snap-section {
    scroll-snap-align: none !important;
    scroll-snap-stop: unset !important;
  }

  /* Kill scroll snapping on mobile fully */
  html,
  body {
    scroll-snap-type: none !important;
  }
}

@media (max-width: 600px) {
width: 100vw !important;
}
