*, *::before, *::after { box-sizing: border-box; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
html, body {
  margin: 0;
  padding: 0;
  background: #f7f1e5;
  color: #2b2f29;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
/* Splash fills the viewport so the video can be full-height with no scrollbar. */
.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* viewport minus the .wrap top+bottom padding (2rem + 3rem) */
  height: calc(100vh - 5rem);
  width: 100%;
}
.splash[hidden] { display: none; }

/* Compact brand bar shown only when a sub-view is active. */
.brand {
  display: none;
  margin-bottom: 1.5rem;
  background: none;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}
.brand.show { display: block; }
.brand img {
  width: 140px;
  height: auto;
  display: block;
}
.video-frame {
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: 9 / 16;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 6px;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: darken;
}
/* Hamburger button */
.hamburger {
  position: fixed;
  top: 1.1rem;
  left: 1.25rem;
  z-index: 200;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2b2f29;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Floating reserve button */
.reserve-fab {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 180;
  background: #4f6b3a;
  color: #f7f1e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(43, 47, 41, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.reserve-fab:hover,
.reserve-fab:focus {
  background: #3d5430;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(43, 47, 41, 0.3);
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(247,241,229,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav-overlay a {
  color: #2b2f29;
  text-decoration: none;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-overlay a:hover,
.nav-overlay a:focus,
.nav-overlay a.active {
  border-bottom-color: #4f6b3a;
  color: #4f6b3a;
}
.home-item { display: none; }
.home-item.show { display: list-item; }

.view {
  width: 100%;
  margin-bottom: 3rem;
  scroll-margin-top: 1rem;
}
.view[hidden] { display: none; }
h2 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

/* Menu tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.tab {
  background: transparent;
  border: 1px solid #c9bfa3;
  color: #2b2f29;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tab:hover { border-color: #4f6b3a; color: #4f6b3a; }
.tab[aria-selected="true"] {
  background: #4f6b3a;
  border-color: #4f6b3a;
  color: #f7f1e5;
}

.menu-panel {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.menu-panel[hidden] { display: none; }
.menu-group { margin-bottom: 2rem; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4f6b3a;
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d8cdb1;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed #e3dcc4;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.menu-item .price {
  font-variant-numeric: tabular-nums;
  color: #4f6b3a;
  font-weight: 600;
  white-space: nowrap;
}
.menu-item .desc {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.45;
}
.menu-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.6;
  font-style: italic;
  line-height: 1.4;
}

.contact {
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact a {
  color: #4f6b3a;
  text-decoration: none;
}
.contact a:hover { text-decoration: underline; }

/* Contact form */
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 0.9rem;
}
.contact-form[hidden] { display: none; }
.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #4f6b3a;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: #2b2f29;
  background: #fffaf0;
  border: 1px solid #d8cdb1;
  border-radius: 4px;
  padding: 0.65rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f6b3a;
  box-shadow: 0 0 0 3px rgba(79,107,58,0.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .cf-turnstile-wrap { display: flex; justify-content: flex-start; }
.contact-form button {
  justify-self: start;
  background: #4f6b3a;
  color: #f7f1e5;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.contact-form button:hover { background: #3d5430; }
.contact-form button:disabled { opacity: 0.6; cursor: wait; }
.form-status {
  font-size: 0.9rem;
  margin: 0;
  min-height: 1.25rem;
}
.form-status.success { color: #4f6b3a; }
.form-status.error   { color: #a04141; }
.contact-alt {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Prominent inline error banner shown above the form on failure */
.form-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 6px;
}
.form-banner[hidden] { display: none; }
.form-banner-error {
  background: #fbeaea;
  border: 1px solid #e3b3b3;
}
.form-banner-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #a04141;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.form-banner-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.form-banner-title {
  font-weight: 700;
  color: #7a2f2f;
  font-size: 0.95rem;
}
.form-banner-detail {
  font-size: 0.85rem;
  color: #7a2f2f;
  opacity: 0.9;
}
.form-banner-report {
  flex: none;
  align-self: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a04141;
  text-decoration: underline;
  white-space: nowrap;
}
.form-banner-report:hover { color: #7a2f2f; }

/* Full success state that replaces the form on a successful submit */
.form-success {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 1.5rem;
}
.form-success[hidden] { display: none; }
.form-success-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #4f6b3a;
  color: #f7f1e5;
  margin-bottom: 0.25rem;
}
.form-success h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.form-success p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}
.form-success .events-cta {
  margin-top: 0.75rem;
  border: 0;
  font: inherit;
  cursor: pointer;
}

/* Private events */
.events-video {
  position: relative;
  height: min(100vh, 720px);
  margin: 0 auto 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.events-scroll-cue {
  display: none;
}
.events-intro {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}
.spaces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: left;
}
.space-card {
  background: #fffaf0;
  border: 1px solid #d8cdb1;
  border-radius: 8px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.space-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.space-cap {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f6b3a;
  font-weight: 600;
}
.space-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.8;
}
.events-perks {
  list-style: none;
  padding: 0;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.events-perks li {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f6b3a;
  border: 1px solid #c9bfa3;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}
.events-cta {
  display: inline-block;
  background: #4f6b3a;
  color: #f7f1e5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.events-cta:hover { background: #3d5430; }
.events-note {
  max-width: 620px;
  margin: 1.5rem auto 0;
  font-size: 0.85rem;
  opacity: 0.75;
}
.events-note a { color: #4f6b3a; text-decoration: none; }
.events-note a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .wrap { padding: 1.25rem 1rem 2rem; }
  .logo {
    max-width: 150px;
    margin-bottom: 1rem;
    transform: translateX(-2rem);
  }
  .brand { transform: translateX(-2rem); }
  .brand img { width: 120px; }
  /* viewport minus mobile .wrap top+bottom padding (1.25rem + 2rem) */
  .splash { height: calc(100vh - 3.25rem); }
  #events h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .events-video {
    width: 100vw;
    max-width: none;
    height: calc(100svh - 5.25rem);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 2rem;
  }
  .events-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    transform: translateX(-50%);
    background: #4F6B3A;
    color: #f7f1e5;
    border: 1px solid #4F6B3A;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.75rem;
    line-height: 1;
    animation: events-cue-bounce 1.4s ease-in-out infinite;
  }
  h2 { font-size: 1.3rem; }
  .tab { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
  .reserve-fab {
    top: 1rem;
    right: 1rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.7rem;
  }
}
@keyframes events-cue-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 0.4rem); }
}
