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

:root {
  --forest-950: #12190f;
  --forest-900: #1e2c1b;
  --forest-800: #263623;
  --forest-700: #3d5136;
  --ivory-100: #f6f1e4;
  --ivory-300: #cfd3c3;
  --brass-400: #c7a86b;
  --line: rgba(246, 241, 228, 0.18);
  --line-strong: rgba(246, 241, 228, 0.32);

  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  background: var(--forest-900);
  color: var(--ivory-100);
  font-family: var(--font-ui);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 1.5px solid var(--brass-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Entrance choreography ----------
   Default state (no JS / JS throws before revealing): everything visible,
   fully functional, no animation. `.js-intro` (set synchronously by an
   inline <head> script, before first paint) hides the pieces that animate
   in; `.is-revealed` (added by script.js once the logo has docked) brings
   them back with a transition. If JS never runs, `.js-intro` never gets
   added either, so the page just renders in its final state. */

.js-intro .brand-logo {
  opacity: 0;
}

.js-intro .menu-toggle {
  opacity: 0;
  transform: translateY(-10px);
}

.js-intro .hero__intro {
  opacity: 0;
  transform: translateY(14px);
}

.js-intro .booking-bar {
  opacity: 0;
  transform: translateY(14px);
}

.hero__content {
  pointer-events: none;
}

.is-revealed .hero__content {
  pointer-events: auto;
}

.is-revealed .menu-toggle {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.is-revealed .hero__intro {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.1s, transform 0.7s var(--ease-out) 0.1s;
}

.is-revealed .booking-bar {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.22s, transform 0.7s var(--ease-out) 0.22s;
}

/* ---------- Header / menu toggle ---------- */

.hero-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 32px);
  pointer-events: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(18, 25, 15, 0.35);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ivory-100);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.menu-toggle:hover {
  background: rgba(18, 25, 15, 0.55);
  border-color: var(--line-strong);
}

.menu-toggle__icon {
  display: flex;
}

/* ---------- Brand logo (fixed, animates from hero-center to docked) ---------- */

.brand-logo {
  position: fixed;
  top: clamp(16px, 3vw, 32px);
  left: clamp(16px, 3vw, 32px);
  width: clamp(60px, 8vw, 116px);
  height: auto;
  z-index: 32;
  pointer-events: none;
  transform-origin: top left;
}

.brand-logo.is-armed {
  transition: opacity 0.8s var(--ease-out), transform 1.05s var(--ease-out);
}

.brand-logo.is-visible {
  opacity: 1;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(96px, 12vh, 140px) clamp(16px, 4vw, 48px) clamp(32px, 6vh, 64px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 20%, rgba(61, 81, 54, 0.55) 0%, rgba(30, 44, 27, 0) 55%),
    linear-gradient(160deg, #24361f 0%, #1e2c1b 45%, #141d12 100%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

.hero__video.is-playing {
  opacity: 1;
}

/* Tint is deliberately darker through the middle band than a typical vignette —
   the intro heading/body sit directly on the video there and need the contrast. */
.hero__tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 78% at 50% 40%,
      rgba(9, 13, 7, 0.5) 0%,
      rgba(9, 13, 7, 0.22) 55%,
      rgba(9, 13, 7, 0.66) 100%
    ),
    linear-gradient(
      180deg,
      rgba(9, 13, 7, 0.68) 0%,
      rgba(12, 17, 9, 0.4) 30%,
      rgba(12, 17, 9, 0.44) 64%,
      rgba(8, 11, 6, 0.8) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 7vh, 72px);
}

.hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.8vh, 28px);
  max-width: 640px;
  text-align: center;
}

.hero__eyebrow,
.hero__heading,
.hero__body {
  text-shadow: 0 2px 24px rgba(8, 12, 6, 0.5);
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-300);
}

.hero__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.16;
  color: var(--ivory-100);
}

.hero__body {
  font-size: clamp(0.94rem, 1.35vw, 1.06rem);
  line-height: 1.65;
  color: var(--ivory-300);
  max-width: 600px;
}

/* ---------- Booking bar ---------- */

.booking-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: rgba(246, 241, 228, 0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(8, 12, 6, 0.35);
}

.booking-bar__field {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}

.booking-bar__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-300);
  margin-bottom: 2px;
}

.booking-bar__input {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--ivory-100);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  color-scheme: dark;
  padding: 0;
  min-width: 0;
}

.booking-bar__input::-webkit-calendar-picker-indicator {
  filter: invert(0.9) brightness(1.3);
  opacity: 0.75;
  cursor: pointer;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stepper__btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.stepper__btn:hover:not(:disabled) {
  background: rgba(246, 241, 228, 0.12);
  border-color: var(--ivory-100);
}

.stepper__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.stepper__value {
  min-width: 1ch;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
}

.booking-bar__cta {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 32px;
  background: var(--ivory-100);
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 18px 18px 0;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.booking-bar__cta:hover {
  background: #ffffff;
}

.booking-bar__cta svg {
  transition: transform 0.25s var(--ease-out);
}

.booking-bar__cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .booking-bar {
    border-radius: 20px;
    flex-direction: column;
  }

  .booking-bar__field {
    flex: 1 1 auto;
    width: 100%;
    border-right: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .booking-bar__cta {
    flex: 0 0 auto;
    border-radius: 0 0 20px 20px;
    padding: 18px 24px;
  }
}

@media (max-height: 560px) {
  .hero {
    padding-top: clamp(56px, 9vh, 84px);
    padding-bottom: clamp(20px, 4vh, 32px);
  }

  .hero__content {
    gap: clamp(16px, 2.8vh, 28px);
  }

  .hero__intro {
    gap: 6px;
  }

  .hero__body {
    display: none;
  }

  .booking-bar__field {
    padding: 14px 22px;
  }

  .booking-bar__cta {
    padding: 14px 28px;
  }
}

/* ---------- Side menu overlay ---------- */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
}

.menu-overlay.is-open {
  visibility: visible;
}

.menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 8, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.menu-overlay.is-open .menu-overlay__backdrop {
  opacity: 1;
}

.menu-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--forest-950);
  border-left: 1px solid var(--line);
  padding: clamp(28px, 6vh, 56px) clamp(28px, 6vw, 56px);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.menu-overlay.is-open .menu-overlay__panel {
  transform: translateX(0);
}

.menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin-bottom: clamp(32px, 8vh, 72px);
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.menu-close:hover {
  border-color: var(--line-strong);
  transform: rotate(90deg);
}

.menu-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vh, 18px);
  margin-bottom: auto;
}

.menu-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  padding: 4px 0;
}

.menu-link__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 2.6rem);
  color: var(--ivory-100);
  transition: color 0.25s var(--ease-out);
}

.menu-link:hover .menu-link__label,
.menu-link:focus-visible .menu-link__label {
  color: var(--brass-400);
}

.menu-link__flourish {
  width: clamp(90px, 20vw, 140px);
  height: 12px;
  overflow: visible;
}

.menu-link__flourish path {
  fill: none;
  stroke: var(--brass-400);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.6s var(--ease-out);
}

.menu-link:hover .menu-link__flourish path,
.menu-link:focus-visible .menu-link__flourish path {
  stroke-dashoffset: 0;
}

.menu-overlay__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.menu-social {
  display: flex;
  gap: 16px;
}

.menu-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-300);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.menu-social a:hover {
  color: var(--ivory-100);
  border-color: var(--line-strong);
}

.menu-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ivory-300);
}

.menu-contact a:hover {
  color: var(--ivory-100);
}

@media (max-width: 480px) {
  .menu-overlay__panel {
    width: 100%;
  }
}
