:root {
  --navy: #0b3d2e;
  --blue: #126b4d;
  --deep: #06251c;
  --gold: #d8b35a;
  --gold-2: #b99138;
  --orange: #c97737;
  --emerald: #11865b;
  --paper: #f4f8f3;
  --white: #ffffff;
  --ink: #10251c;
  --muted: #62766b;
  --line: #dce8df;
  --leaf: #e9f2ea;
  --surface: rgba(255, 255, 255, 0.9);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --shadow: 0 24px 72px rgba(6, 37, 28, 0.18);
  --shadow-soft: 0 18px 48px rgba(6, 37, 28, 0.1);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 248, 243, 0.28), rgba(244, 248, 243, 1) 38%), var(--paper);
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--deep);
  background: var(--gold);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.announcement {
  position: relative;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, #05231b, #0b3d2e 55%, #145d43);
  font-size: 13px;
  font-weight: 700;
}

.announcement.is-hidden {
  display: none;
}

.announcement__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  font-size: 22px;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  overflow: visible;
  color: #fff;
  background: rgba(6, 37, 28, 0.84);
  backdrop-filter: blur(20px) saturate(130%);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(6, 37, 28, 0.96);
  box-shadow: 0 16px 44px rgba(6, 37, 28, 0.22);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(146px, 14vw, 206px);
  min-width: 0;
}

.brand__logo {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 22px);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a,
.nav-dropdown__trigger {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a::after,
.nav-dropdown__trigger::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 240ms var(--ease),
    transform 240ms var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown__trigger.is-active,
.nav-dropdown.is-open .nav-dropdown__trigger {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after,
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown__trigger.is-active::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown__trigger::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
  order: 2;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 4px;
  width: min(640px, calc(100vw - 40px));
  max-height: min(70vh, 620px);
  overflow: auto;
  border: 1px solid rgba(216, 179, 90, 0.2);
  border-radius: 14px;
  padding: 10px;
  background: rgba(250, 252, 248, 0.96);
  box-shadow: 0 30px 90px rgba(6, 37, 28, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 12px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
  backdrop-filter: blur(18px);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0) scale(1);
}

.nav-dropdown__panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 11px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.nav-dropdown__overview {
  grid-column: 1 / -1;
  color: var(--navy) !important;
  background: #edf6ee;
}

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

.nav-dropdown__panel a:hover {
  color: var(--navy);
  background: var(--leaf);
  transform: translateX(2px);
}

.nav-dropdown__panel span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef5ed;
  font-size: 10px;
  font-weight: 900;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background 240ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12px;
}

.btn--gold {
  color: var(--deep);
  background: linear-gradient(135deg, #f4d985, var(--gold));
  box-shadow: 0 18px 36px rgba(244, 190, 62, 0.24);
}

.btn--glass {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(360px, 92vw);
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(
      155deg,
      rgba(8, 74, 52, 0.96),
      rgba(6, 37, 28, 0.98) 54%,
      rgba(3, 18, 14, 0.98)
    ),
    var(--deep);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.32);
  transform: translateX(110%);
  transition: transform 300ms var(--ease);
}

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

.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
  font-size: 18px;
}

.mobile-panel nav {
  display: grid;
  align-content: start;
  gap: 7px;
  overflow: auto;
  padding: 22px 0 26px;
}

.mobile-panel a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 800;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.mobile-panel a:hover {
  border-color: rgba(216, 179, 90, 0.35);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-2px);
}

.mobile-panel a span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.mobile-panel__label {
  margin-top: 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero--cover-only {
  min-height: auto;
  background: #071f18;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

/* Full-bleed responsive video cover (homepage hero only) — poster image
   paints first (JS-disabled/reduced-motion fallback + brief load gap),
   the YouTube iframe paints on top once it loads. The iframe's width/
   height formula (177.78vh / 56.25vw = a 16:9 box sized off whichever
   viewport dimension is larger) always overflows the container on the
   short axis, so `min-width/min-height: 100%` + centering crops it like
   object-fit: cover would on a real <video> — works identically at any
   viewport size, desktop or mobile, no extra breakpoints needed. */
.hero__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--deep);
}

.hero__video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-frame {
    display: none;
  }
}

.hero--cover-only .hero__image {
  position: relative;
  display: block;
}

.hero--cover-only .hero__image img {
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: calc(100vh - 64px);
  object-fit: cover;
  object-position: center top;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 48, 0.92) 0%,
      rgba(4, 20, 48, 0.68) 42%,
      rgba(4, 20, 48, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(4, 20, 48, 0.5), rgba(4, 20, 48, 0.02) 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
  padding: 110px 0 72px;
}

.hero__copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  color: #fff4cf;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.05;
}

.hero p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__stats {
  display: grid;
  gap: 12px;
  align-self: end;
}

.hero__stats article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero__stats strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.hero__stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 37, 28, 0.94), rgba(6, 37, 28, 0.68) 52%, rgba(6, 37, 28, 0.28)),
    linear-gradient(0deg, rgba(6, 37, 28, 0.58), transparent 62%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 440px;
  align-content: end;
  padding: 96px 0 70px;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.96;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.unit-shortcuts {
  position: relative;
  z-index: 6;
  margin-top: -28px;
  padding: 0 0 12px;
}

.unit-shortcuts__rail {
  display: grid;
  grid-auto-columns: minmax(136px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 0 4px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.unit-shortcuts__rail::-webkit-scrollbar {
  display: none;
}

.unit-shortcut {
  display: grid;
  min-height: 118px;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(227, 232, 240, 0.9);
  border-radius: 8px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  text-align: center;
  scroll-snap-align: start;
  transition:
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    transform 240ms var(--ease);
}

.unit-shortcut:hover {
  border-color: rgba(216, 179, 90, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.unit-shortcut span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--navy);
  background: #eaf5ec;
  font-size: 14px;
  font-weight: 900;
}

.unit-shortcut strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.unit-shortcut--all span {
  background: #fff7df;
}

.quick-actions {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 18px 0 0;
  background: linear-gradient(180deg, #f7fbf6, transparent);
}

.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.quick-card {
  display: grid;
  min-height: 104px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(227, 232, 240, 0.9);
  border-radius: var(--radius);
  padding: 14px 10px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.quick-card:hover {
  border-color: rgba(244, 190, 62, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.quick-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(145deg, #edf6ee, #d9ebdd);
  font-weight: 900;
  transition: transform 260ms var(--ease);
}

.quick-card:hover .quick-card__icon {
  transform: translateY(-2px);
}

.quick-card span {
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section--warm {
  background: linear-gradient(180deg, #fbfdf9, #f4f8f3 72%), var(--paper);
}

.section--after-cover {
  padding-top: 64px;
}

.intro-grid,
.events-layout,
.booking-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 44px;
}

.section__copy h2,
.section-head h2,
.showcase-card h2,
.night-section h2,
.booking-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}

.section__copy p:not(.eyebrow),
.section-head h2 + p,
.showcase-card p,
.night-section p,
.booking-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feature-panel,
.events-panel,
.editorial-card,
.booking-form {
  border: 1px solid rgba(220, 232, 223, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.feature-panel__line {
  width: 80px;
  height: 5px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.feature-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head.centered {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 880px;
  font-size: clamp(30px, 3.25vw, 46px);
}

.section-head__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pill,
.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.pill.is-active,
.tab.is-active {
  border-color: var(--gold);
  color: var(--deep);
  background: #eef6ed;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.unit-card {
  overflow: hidden;
  border: 1px solid rgba(220, 232, 223, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 248, 0.96)), var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease),
    border-color 300ms var(--ease);
}

.unit-card:hover {
  border-color: rgba(17, 134, 91, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.unit-card__media {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 188px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(8, 68, 49, 0.96), rgba(20, 112, 78, 0.88)),
    radial-gradient(circle at 18% 22%, rgba(216, 179, 90, 0.28), transparent 32%);
}

.unit-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  object-fit: cover;
  transition:
    opacity 360ms var(--ease),
    transform 520ms var(--ease);
}

.unit-card__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 37, 28, 0.18), rgba(6, 37, 28, 0.68)),
    linear-gradient(90deg, rgba(6, 37, 28, 0.7), rgba(6, 37, 28, 0.08));
  content: "";
}

.unit-card__media::after {
  position: absolute;
  z-index: 1;
  right: -10px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.08);
  content: var(--unit-index);
  font-size: 94px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.unit-card:hover .unit-card__media img {
  opacity: 1;
  transform: scale(1.045);
}

.unit-card__number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 260ms var(--ease);
}

.unit-card:hover .unit-card__number {
  transform: scale(1.06);
}

.unit-card__badge {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--deep);
  background: linear-gradient(135deg, #e8cb79, var(--gold));
  font-size: 11px;
  font-weight: 900;
}

.unit-card__body {
  display: grid;
  gap: 9px;
  padding: 18px 18px 20px;
}

.unit-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.28;
}

.unit-card p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--emerald);
  font-size: 11px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.split-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.showcase-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.showcase-card--image {
  min-height: 430px;
}

.showcase-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.showcase-card--copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 56px);
}

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue);
  background: #e9f4eb;
  font-size: 12px;
  font-weight: 900;
}

.badge--gold {
  color: var(--deep);
  background: var(--gold);
}

.night-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 37, 28, 0.97), rgba(11, 61, 46, 0.88)),
    url("./image.png") center top / cover;
}

.night-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.night-section h2 {
  color: #fff;
  max-width: 700px;
}

.night-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.night-stack {
  display: grid;
  gap: 14px;
}

.night-stack img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.night-stack div {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.night-stack strong {
  color: var(--gold);
}

.night-stack span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.experience-rail {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x proximity;
}

.experience-rail::-webkit-scrollbar {
  height: 8px;
}

.experience-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #b7cfbd;
}

.experience-card {
  display: grid;
  min-height: 340px;
  align-content: space-between;
  border: 1px solid rgba(227, 232, 240, 0.9);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 245, 0.9)),
    url("./image.png") center top / cover;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.experience-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.experience-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.experience-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.experience-card div {
  display: grid;
  gap: 2px;
}

.experience-card dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.events-section {
  background: #fff;
}

.events-panel {
  padding: 18px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.event-date {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--deep);
  background: #fff4d1;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.event-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plan-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.plan-card h3,
.news-card h3,
.editorial-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.plan-card p,
.news-card p,
.editorial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.plan-card strong,
.editorial-card strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange);
  font-size: 12px;
}

.services-section {
  color: #fff;
  background: linear-gradient(135deg, #0b3d2e, #06251c);
}

.services-section .section-head h2,
.services-section .section-head p {
  color: #fff;
}

.audience-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.audience-card,
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  transition:
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    transform 260ms var(--ease);
}

.audience-card:hover,
.service-card:hover {
  border-color: rgba(216, 179, 90, 0.45);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.audience-card h3,
.service-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 22px;
}

.audience-card p,
.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.audience-card span,
.service-card strong,
.service-card span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.service-card span {
  margin-top: 0;
  margin-bottom: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.editorial-card {
  overflow: hidden;
  padding: 24px;
}

.editorial-card--large {
  display: grid;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
  padding: 0;
}

.editorial-card--large img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.editorial-card--large div {
  padding: 34px 34px 34px 0;
}

.news-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-grid button {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--deep);
  box-shadow: var(--shadow-soft);
}

.gallery-grid button:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 240ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.booking-cta {
  padding: 92px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(6, 37, 28, 0.96), rgba(18, 107, 77, 0.86)),
    url("./image.png") center top / cover;
}

.booking-cta h2 {
  color: #fff;
}

.booking-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.booking-form {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 190, 62, 0.22);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, rgba(6, 37, 28, 0.98), rgba(7, 46, 34, 0.96)), var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(140px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.brand--footer {
  width: min(210px, 100%);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 10px;
  line-height: 1.7;
}

.footer-brand > span {
  display: inline-flex;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.footer-bottom span:first-child {
  margin-right: auto;
  color: var(--gold);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 37, 28, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #fff;
}

.lightbox figure {
  width: min(1080px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
}

.lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 720ms var(--ease),
    filter 720ms var(--ease),
    transform 720ms var(--ease);
}

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

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .header__inner {
    grid-template-columns: auto 1fr;
  }

  .header__actions {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .quick-actions__grid,
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .plan-grid,
  .news-grid,
  .service-grid,
  .audience-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .announcement {
    display: none;
  }

  .header__inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    width: 158px;
  }

  .brand__logo {
    max-height: 48px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .header__actions .btn {
    display: none;
  }

  .hero,
  .hero__content {
    min-height: 760px;
  }

  .hero--cover-only {
    min-height: auto;
  }

  .hero--cover-only .hero__image img {
    min-height: 360px;
    max-height: 58vh;
  }

  .hero__content,
  .intro-grid,
  .events-layout,
  .booking-cta__inner,
  .night-section__inner,
  .split-showcase,
  .editorial-card--large,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    align-items: end;
    gap: 22px;
    padding: 80px 0 56px;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(4, 20, 48, 0.42),
        rgba(4, 20, 48, 0.94) 52%,
        rgba(4, 20, 48, 0.98)
      ),
      linear-gradient(90deg, rgba(4, 20, 48, 0.64), transparent);
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .hero h1 span {
    font-size: clamp(24px, 8vw, 36px);
  }

  .quick-actions {
    margin-top: 0;
    padding-top: 12px;
    background: #fff;
  }

  .quick-actions__grid,
  .card-grid,
  .plan-grid,
  .news-grid,
  .service-grid,
  .audience-tabs,
  .editorial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 22px;
  }

  .section__copy h2,
  .section-head h2,
  .showcase-card h2,
  .night-section h2,
  .booking-cta h2 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1.08;
  }

  .section-head p {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.12em;
  }

  .section-head__actions {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    margin-top: 18px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .section-head__actions::-webkit-scrollbar {
    display: none;
  }

  .pill,
  .tab {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .quick-card {
    min-height: 86px;
    padding: 12px 8px;
  }

  .quick-card__icon {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .quick-card span {
    font-size: 12px;
    line-height: 1.3;
  }

  .unit-card__media {
    min-height: 158px;
    padding: 14px;
  }

  .unit-card__media::after {
    right: -8px;
    bottom: -20px;
    font-size: 76px;
  }

  .unit-card__number {
    width: 38px;
    height: 38px;
  }

  .unit-card p {
    min-height: auto;
  }

  .showcase-card--image,
  .editorial-card--large img {
    min-height: 300px;
  }

  .editorial-card--large div {
    padding: 26px;
  }

  .gallery-grid button:first-child {
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100% - 22px, 1180px);
  }

  .brand {
    width: 138px;
  }

  .brand__logo {
    max-height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero--cover-only .hero__image img {
    min-height: 300px;
    max-height: 52vh;
  }

  .section {
    padding: 40px 0;
  }

  .section__copy h2,
  .section-head h2,
  .showcase-card h2,
  .night-section h2,
  .booking-cta h2 {
    font-size: clamp(25px, 9.4vw, 34px);
  }

  .hero__actions,
  .tabs {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero__stats article {
    padding: 14px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }
}
