:root {
  --color-obsidian: #0b1410;
  --color-onyx: #0b1410;
  --color-charcoal: #15241c;
  --color-graphite: #2f4a3a;
  --color-paper: #f4f7f2;
  --color-ash: #7a847c;
  --color-fog: #8a938c;
  --color-ember: #fe2c02;
  --color-brass: #b89b6a;
  --hairline: rgba(230, 235, 228, 0.12);
  --glass: rgba(11, 20, 16, 0.35);

  --font-body: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --radius-card: 16px;
  --radius-img: 12px;
  --radius-pill: 9999px;

  --page-max: 1280px;
  --section-gap: clamp(80px, 10vw, 120px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

/* The `hidden` attribute must always win over class display rules
   (e.g. .user-menu__panel uses display:flex, which would otherwise
   defeat the UA's [hidden] { display: none }). */
[hidden] { display: none !important; }

html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--color-onyx);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 450;
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: clamp(40px, 6vw, 66px); letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em; }
h3 { font-size: 22px; font-weight: 450; line-height: 1.3; }

.amp {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

button,
.pill,
.lp-nav,
input,
select,
textarea {
  font-family: var(--font-body);
}
h1, h2, h3 { text-wrap: balance; }

.container { max-width: var(--page-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding-top: var(--section-gap); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--color-ash);
  margin: 0 0 12px;
}

.muted { color: var(--color-ash); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  touch-action: manipulation;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.pill:hover { transform: translateY(-1px); }
.pill:active { transform: translateY(0); }
.pill--light { background: var(--color-paper); color: var(--color-obsidian); }
.pill--light:hover { opacity: 0.9; }
.pill--dark { background: var(--color-charcoal); color: var(--color-paper); border: 1px solid rgba(255, 255, 255, 0.1); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: var(--glass);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-ember); }

:focus-visible { outline: 2px solid var(--color-paper); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--color-paper);
  color: var(--color-obsidian);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* Header — floating over the hero */
.lp-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding-top: max(20px, env(safe-area-inset-top));
}
.lp-header .container { padding-left: max(clamp(20px, 4vw, 48px), env(safe-area-inset-left)); padding-right: max(clamp(20px, 4vw, 48px), env(safe-area-inset-right)); }
.lp-header__inner { display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.lp-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.lp-logo__region {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brass);
}
.lp-logo__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  color: var(--color-paper);
}

.hero__brand {
  display: grid;
  gap: 6px;
  margin: 0 0 8px;
}
.hero__brand-region {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--color-brass) 70%, var(--color-paper));
}
.hero__brand-name {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 9vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #f7faf5;
  margin: 0;
}
.lp-nav { display: flex; gap: 4px; margin-right: auto; margin-left: 16px; }
.lp-nav a {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--color-fog);
  transition: color 0.2s var(--ease-out);
}
.lp-nav a:hover { color: var(--color-paper); }
.lp-header__actions { display: flex; align-items: center; gap: 10px; }

/* Mobile hamburger — glass trigger matching the dark header avatar. */
.lp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-paper);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.lp-nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(20, 20, 20, 0.7);
}
.lp-nav-toggle[aria-expanded="true"] {
  border-color: var(--color-paper);
}
.lp-nav-toggle__close { display: none; }
.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle__open { display: none; }
.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle__close { display: block; }

.lp-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: min(220px, calc(100% - 40px));
  margin-top: 12px;
  margin-left: auto;
  margin-right: max(clamp(20px, 4vw, 48px), env(safe-area-inset-right));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(15, 13, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: lp-nav-pop 160ms var(--ease-out);
}
.lp-nav-mobile.is-open { display: flex; }
.lp-nav-mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-fog);
  transition: color 0.15s var(--ease-out), background 0.15s var(--ease-out);
}
.lp-nav-mobile a:hover,
.lp-nav-mobile a:focus-visible {
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.lp-nav-mobile__signin {
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 10px 10px !important;
  color: var(--color-paper) !important;
}
@keyframes lp-nav-pop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Hero — full viewport, content dead-center */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; background: var(--color-obsidian); }
.hero__bg, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Regrade the flat, warm listing photo into the page's dark cinematic mood. */
.hero__bg img { filter: contrast(1.15) saturate(0.6) brightness(0.76); }
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 50% 108%, rgba(254, 44, 2, 0.16), transparent 60%),
    radial-gradient(140% 120% at 50% 42%, transparent 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(rgba(0, 0, 0, 0.42) 1%, rgba(15, 13, 13, 0.64) 55%, var(--color-onyx) 100%);
}
/* Static film-grain texture, blended once over the flattened image, no repaint cost. */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  max-width: 760px;
}
.hero__sub { margin: 0; color: var(--color-fog); max-width: 560px; }

/* Load-in sequence: badge → h1 → sub → cta */
.hero__content > * { opacity: 0; transform: translateY(14px); animation: lp-rise 0.7s var(--ease-out) forwards; }
.hero__content > :nth-child(1) { animation-delay: 0.1s; }
.hero__content > :nth-child(2) { animation-delay: 0.25s; }
.hero__content > :nth-child(3) { animation-delay: 0.4s; }
.hero__content > :nth-child(4) { animation-delay: 0.55s; }
@keyframes lp-rise { to { opacity: 1; transform: none; } }

@media (max-width: 767px) {
  .lp-nav { display: none; }
  .lp-header__signin { display: none; }
  .lp-nav-toggle { display: flex; }
  .pill { min-height: 44px; padding: 11px 20px; }
  .lp-header__inner { gap: 12px; }
  .lp-header__actions { gap: 8px; }
}

@media (min-width: 768px) {
  .lp-nav-mobile { display: none !important; }
}

/* Signed-in header: push the "Book now" pill to the left of the action group
   and let the profile avatar sit in the right corner. */
.lp-header__actions .lp-header__cta { margin-right: auto; }

/* User profile menu on the dark landing header — glass-style trigger that
   stays legible over the hero photo, white panel that pops cleanly.
   `position: relative` is required so the panel anchors to the avatar, not
   to `.lp-header` (full viewport). Without it, on wide screens `right: 0`
   pins the menu to the viewport edge far from the avatar. */
.user-menu--on-dark {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.user-menu--on-dark .user-menu__trigger {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-menu--on-dark .user-menu__trigger:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(20, 20, 20, 0.7);
}
.user-menu--on-dark .user-menu__trigger[aria-expanded="true"] {
  border-color: var(--color-paper);
}
.user-menu--on-dark .user-menu__avatar { width: 100%; height: 100%; object-fit: cover; display: block; }
.user-menu--on-dark .user-menu__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: -0.01em;
  color: var(--color-paper);
  background: transparent;
}

.user-menu--on-dark .user-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 12rem;
  padding: 6px;
  background: var(--color-paper);
  color: var(--color-obsidian);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
  transform-origin: top right;
  animation: lp-user-menu-pop 140ms cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes lp-user-menu-pop {
  from { opacity: 0; transform: scale(0.96) translateY(-4px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.user-menu--on-dark .user-menu__form { margin: 0; padding: 0; }
.user-menu--on-dark .user-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-obsidian);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
button.user-menu--on-dark .user-menu__item { width: 100%; }
.user-menu--on-dark .user-menu__item:hover,
.user-menu--on-dark .user-menu__item:focus-visible {
  background: var(--color-canvas, #f7f7f5);
  outline: none;
}
.user-menu--on-dark .user-menu__item--danger { color: #b91c1c; }
.user-menu--on-dark .user-menu__item--danger:hover,
.user-menu--on-dark .user-menu__item--danger:focus-visible {
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
}
.user-menu--on-dark .user-menu__item svg { flex-shrink: 0; color: var(--color-ash); }
.user-menu--on-dark .user-menu__item--danger svg { color: currentColor; }

/* Channel marquee — text wordmarks only (nominative use; no brand logo files) */
.channels { padding-top: 48px; }
.channels__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-ash);
  text-align: center;
  margin: 0 0 20px;
}
.channels__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.channels__track { display: flex; width: max-content; animation: lp-marquee 28s linear infinite; }
.channels__mark { font-size: 22px; font-weight: 500; color: var(--color-paper); opacity: 0.6; white-space: nowrap; margin-right: 80px; }
@keyframes lp-marquee { to { transform: translateX(calc(-100% / 3)); } }

/* Stat callouts */
.stats { display: flex; gap: clamp(40px, 8vw, 112px); justify-content: center; padding-top: 64px; }
.stats__item { display: grid; gap: 8px; text-align: center; }
.stats__num { font-size: 44px; line-height: 1; letter-spacing: -0.03em; }
.stats__label { font-size: 14px; color: var(--color-ash); }

/* Our properties section */
.feature-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-list li { border-top: 1px solid var(--hairline); padding-top: 20px; }
.feature-list p { margin: 8px 0 0; font-size: 14px; }

.feature-toggle {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-paper);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  min-height: 44px;
}
.feature-toggle__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
}
.feature-toggle__icon::before,
.feature-toggle__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--color-ash);
  border-radius: 2px;
  transition: background-color 0.2s var(--ease-out), transform 0.3s var(--ease-out);
}
.feature-toggle__icon::before { width: 14px; height: 2px; }
.feature-toggle__icon::after { width: 2px; height: 14px; }
.feature-toggle[aria-expanded="true"] .feature-toggle__icon::after { transform: scaleY(0); }
.feature-toggle:hover .feature-toggle__icon::before,
.feature-toggle:hover .feature-toggle__icon::after,
.feature-toggle[aria-expanded="true"] .feature-toggle__icon::before {
  background: var(--color-paper);
}

.feature-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-in-out);
}
.feature-panel__inner { overflow: hidden; min-height: 0; }
.feature-panel.is-open { grid-template-rows: 1fr; }
.feature-panel p { padding-top: 12px; }

.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.prop-card { background: var(--color-charcoal); border-radius: var(--radius-card); overflow: hidden; transition: transform 0.3s var(--ease-out); }
.prop-card:hover { transform: translateY(-4px); }
.prop-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; height: auto; }
.prop-card__body { padding: 20px; display: grid; gap: 6px; }
.prop-card__body h3 { font-size: 18px; }
.prop-card__body p { margin: 0; font-size: 14px; }
.prop-card__price { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--color-fog); }
.feature-panel .prop-card { margin-top: 16px; }

/* Mobile accordion vs. original desktop/tablet layout */
@media (max-width: 899px) {
  .only-desktop { display: none !important; }
  .feature-list { grid-template-columns: 1fr; }
}
@media (min-width: 900px) {
  .only-mobile { display: none !important; }
}

/* All-stays accordion (mobile) */
.tab__desc { display: block; font-size: 13px; font-weight: 400; margin-top: 2px; color: var(--color-ash); }
.feature-panel .pill { margin-top: 16px; }

.stay-carousel { margin-top: 12px; }
.stay-carousel__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}
.stay-carousel__track::-webkit-scrollbar { display: none; }
.stay-carousel__slide {
  flex: 0 0 84%;
  scroll-snap-align: start;
  border-radius: var(--radius-img);
  overflow: hidden;
}
.stay-carousel__slide:only-child { flex-basis: 100%; }
.stay-carousel__slide img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.stay-carousel__dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.stay-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-ash);
  opacity: 0.5;
  transition: opacity 200ms ease, transform 200ms var(--ease-out), background-color 200ms ease;
}
.stay-carousel__dot.is-active { background: var(--color-paper); opacity: 1; transform: scale(1.3); }

/* All-stays tab rotator (desktop/tablet) */
.tabs-section { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: center; }
.tabs { display: grid; gap: 4px; margin-top: 32px; }
.tab {
  appearance: none;
  background: none;
  border: 0;
  border-top: 1px solid var(--hairline);
  padding: 16px 4px 18px;
  text-align: left;
  color: var(--color-ash);
  font-family: var(--font-body);
  cursor: pointer;
  position: relative;
  touch-action: manipulation;
  transition: color 0.3s var(--ease-out);
}
.tab:hover:not(.is-active) { color: var(--color-fog); }
.tab.is-active { color: var(--color-paper); }
.tab__label { display: block; font-size: 18px; font-weight: 500; }
.tab__progress { position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: transparent; overflow: hidden; }
.tab__fill { display: block; height: 100%; width: 100%; background: var(--color-paper); transform: scaleX(0); transform-origin: left; }
/* Fast start, slow finish, 7s total — set via JS so it restarts cleanly per tab */
@keyframes lp-tab-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.tabs-cta { margin-top: 32px; }

.tabs-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 480px;
  contain: layout style paint;
}
.tabs-visual__bg-stack {
  position: absolute;
  inset: 0;
}
.tabs-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 720ms var(--ease-in-out);
}
.tabs-visual__bg.is-active { opacity: 1; }
.tabs-visual:not(.is-visible) .tabs-visual__bg.is-active { opacity: 0; }
.collage {
  position: absolute;
  inset: clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  z-index: 1;
  overflow: hidden;
}
/* min-width/min-height: 0 override the grid item's default auto-sizing, which
   otherwise lets each img's width/height attributes (added for CLS) establish
   an intrinsic aspect-ratio that keeps the row from shrinking to fit its 1fr
   track — without this the images don't fill their cells. */
.collage img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-img);
  border: 1px solid var(--hairline);
  opacity: 0;
}
.collage img:first-child {
  grid-row: span 2;
  transform: translateY(16px);
}
.collage img:nth-child(2),
.collage img:nth-child(3) {
  transform: translateX(14px);
}

/* All-stays scroll reveal — stagger tabs, bg + collage together */
.tabs .tab[data-reveal]:nth-child(1) { transition-delay: 0ms; }
.tabs .tab[data-reveal]:nth-child(2) { transition-delay: 60ms; }
.tabs .tab[data-reveal]:nth-child(3) { transition-delay: 120ms; }
.tabs .tab[data-reveal]:nth-child(4) { transition-delay: 180ms; }
.tabs-cta[data-reveal] { transition-delay: 240ms; }
.tabs-visual[data-reveal] {
  transform: none;
  transition: opacity 560ms var(--ease-out);
  transition-delay: 80ms;
}
.tabs-visual.is-visible .tabs-visual__bg.is-active {
  transition: opacity 720ms var(--ease-in-out) 0ms;
}
.tabs-visual.is-entered .tabs-visual__bg.is-active {
  transition: opacity 720ms var(--ease-in-out);
  transition-delay: 0ms;
}

.section-lede { margin: 12px 0 0; max-width: 480px; }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.explore-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: auto; border-radius: var(--radius-img); }
.explore-card h3 { font-size: 18px; margin-top: 16px; }
.explore-card p { margin: 6px 0 0; font-size: 14px; }
@media (max-width: 900px) { .explore-grid { grid-template-columns: 1fr; } }

.spotlight { position: relative; border-radius: var(--radius-card); overflow: hidden; min-height: 440px; display: flex; align-items: flex-end; background: var(--color-obsidian); }
.spotlight__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.spotlight__card {
  position: relative;
  margin: clamp(24px, 5vw, 48px);
  max-width: 480px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--glass);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 12px;
  justify-items: start;
}
.spotlight__card p.muted { margin: 0; font-size: 15px; }

.cta { text-align: center; padding-bottom: var(--section-gap); display: grid; gap: 16px; justify-items: center; }
.cta p { margin: 0; }

.lp-footer { border-top: 1px solid var(--hairline); padding: 32px 0; background: var(--color-obsidian); }
.lp-footer__inner { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; font-size: 14px; color: var(--color-ash); }
.lp-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.lp-footer a:hover { color: var(--color-paper); }

/* Scroll reveals */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.prop-card[data-reveal].is-visible:hover { transform: translateY(-4px); }
.pill[data-reveal].is-visible:hover { transform: translateY(-1px); }
.pill--light[data-reveal].is-visible:hover { opacity: 0.9; }
.prop-card[data-reveal] { transition: transform 0.3s var(--ease-out), opacity 0.6s var(--ease-out); }
.pill[data-reveal] { transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out), opacity 0.6s var(--ease-out); }
/* Stagger siblings inside grids */
.feature-list li:nth-child(2), .prop-grid > :nth-child(2), .explore-grid > :nth-child(2) { transition-delay: 0.08s; }
.feature-list li:nth-child(3), .prop-grid > :nth-child(3), .explore-grid > :nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  /* Reduced motion means fewer/gentler animations, not zero: keep a brief
     opacity fade for comprehension, drop all translateY movement. */
  [data-reveal] { opacity: 1; transform: none; transition: opacity 200ms ease; }
  .feature-panel { transition: none; }
  .tabs-visual .tabs-visual__bg { transition: none; }
  .tabs-visual .collage img { opacity: 1; transform: none; }
  .hero__content > * { animation: none; opacity: 1; transform: none; }
  .channels__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* Search capsule — dark glass reskin
   The HeroSearch component (also used on /book) ships unstyled class names
   only; /book pulls its light-theme rules from guest.css, which this page
   doesn't load (its .hero/.header/.footer class names collide with this
   file's). Given a full glass surface here instead of a light card pasted
   onto the photo: translucent charcoal + backdrop-blur, a 1px inner
   highlight simulating edge refraction, warm-white text, no accent hue
   (keeps the hero monochrome — the white "Search" pill is the only bright
   element, same treatment as .pill--light elsewhere on this page). */
.hero__content .search-capsule { animation-delay: 0.55s; }

.search-capsule {
  --sc-surface: rgba(23, 22, 21, 0.55);
  --sc-surface-hover: rgba(23, 22, 21, 0.7);
  --sc-border: rgba(255, 255, 255, 0.16);
  --sc-ink: rgba(255, 255, 255, 0.94);
  --sc-muted: rgba(255, 255, 255, 0.56);
  --sc-ring: rgba(255, 255, 255, 0.9);
  position: relative;
  display: grid;
  /* Guests gets a floor rather than a bare 0.9fr: at this capsule's width the
     free-shrinking track left its value box ~52px, ellipsing "2 guests". */
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(9.5rem, 0.9fr) auto;
  align-items: stretch;
  width: 100%;
  max-width: 44rem;
  padding: 0.375rem;
  border: 1px solid var(--sc-border);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px -20px rgba(0, 0, 0, 0.65);
  transition: box-shadow 220ms var(--ease-out);
}

/* The frosted fill lives on a pseudo-element, not on .search-capsule itself:
   backdrop-filter makes its element a containing block for `position: fixed`
   descendants, which pinned the mobile picker sheets to the capsule instead
   of the viewport. The pseudo-element has no descendants, so the same glass
   costs nothing. Fields already sit at z-index 1, above this. */
.search-capsule::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--sc-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background-color 220ms var(--ease-out);
}

.search-capsule:hover::before { background: var(--sc-surface-hover); }

.search-capsule__field {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 60px;
  padding: 0.5rem 0.875rem;
  border: none;
  border-radius: 13px;
  background: transparent;
  color: var(--sc-ink);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.search-capsule__field + .search-capsule__field { border-left: 1px solid var(--sc-border); }
.search-capsule__field > svg { width: 17px; height: 17px; color: var(--sc-muted); stroke-width: 1.9; }
.search-capsule__copy { display: flex; min-width: 0; flex-direction: column; gap: 0.2rem; }

@media (hover: hover) and (pointer: fine) {
  .search-capsule__field:hover { background: rgba(255, 255, 255, 0.06); }
}

.search-capsule__field:focus-visible,
.search-capsule__field:focus-within {
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--sc-ring);
  outline: none;
}

.search-capsule__label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.02em; color: var(--sc-muted); line-height: 1.2; }
.search-capsule__value { overflow: hidden; color: var(--sc-ink); font-size: 0.9375rem; text-overflow: ellipsis; white-space: nowrap; }
.search-capsule__chevron { width: 14px !important; height: 14px !important; color: var(--sc-muted) !important; }
/* Caret on the date pair is mobile-only — see guest.css for the reasoning. */
.search-capsule__field--checkin .search-capsule__chevron,
.search-capsule__field--checkout .search-capsule__chevron { display: none; }
/* Above ::before, same as the fields — without this the white pill paints
   behind the capsule's frosted fill and disappears. */
.search-capsule__submit { position: relative; z-index: 1; display: flex; align-items: center; padding: 0.25rem 0.25rem 0.25rem 0; }

.search-capsule__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 48px;
  min-height: 48px;
  padding: 0 1.125rem;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-paper);
  color: var(--color-obsidian);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 140ms var(--ease-out), opacity 160ms var(--ease-out);
}

.search-capsule__btn svg { width: 19px; height: 19px; }
.search-capsule__btn-text { display: none; }

@media (hover: hover) and (pointer: fine) {
  .search-capsule__btn:hover { opacity: 0.9; }
}

.search-capsule__btn:focus-visible { outline: 2px solid var(--sc-ring); outline-offset: 3px; }
.search-capsule__btn:active { transform: scale(0.97); }

.search-capsule__popover {
  position: absolute;
  top: calc(100% + 0.75rem);
  z-index: 20;
  border: 1px solid var(--sc-border);
  border-radius: 16px;
  background: rgba(15, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--sc-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 48px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
  /* The hero centers its text; a picker panel is a control surface and reads
     left-aligned, so it must not inherit that. */
  text-align: left;
}

.search-capsule__popover--dates { left: var(--popover-offset-left, 19%); width: min(23rem, calc(100vw - 2rem)); padding: 1rem; }
.search-capsule__popover--dates.is-above { top: auto; bottom: calc(100% + 0.75rem); }
.search-capsule__popover--guests {
  top: calc(100% + 1.25rem);
  right: 4.75rem;
  width: min(20rem, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}
/* Dark-theme twin of the guest-site city list (see guest.css). Landing keeps
   its own copy of the capsule styles, so a popover variant added there has to
   be mirrored here or it renders unstyled in the normal flow. */
.search-capsule__popover--where {
  left: 0.375rem;
  width: min(16rem, calc(100vw - 2rem));
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.search-where__option {
  padding: 0.625rem 0.75rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--sc-ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
  .search-where__option:hover { background: rgba(255, 255, 255, 0.1); }
}

.search-where__option.is-selected {
  background: var(--color-paper);
  color: var(--color-obsidian);
  font-weight: 600;
}

.search-where__option:focus-visible { outline: 2px solid var(--sc-ring); outline-offset: -2px; }

.search-capsule__scrim { display: none; }

.search-calendar__header, .search-calendar__month-nav, .search-calendar__footer, .search-guests__stepper { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-shrink: 0; }
.search-calendar__header { padding: 0 0 0.75rem; border-bottom: 1px solid var(--sc-border); }
.search-calendar__header div, .search-guests__copy, .search-where__copy { display: flex; flex-direction: column; gap: 0.15rem; }
.search-calendar__header strong, .search-guests__copy strong, .search-where__copy strong { font-size: 0.9375rem; }
.search-calendar__header span, .search-guests__copy span, .search-where__copy span { color: var(--sc-muted); font-size: 0.8125rem; }
/* Desktop: the field's own "Where" label is still visible above the panel. */
.search-where__copy { display: none; }
.search-calendar__month-nav { min-height: 48px; }

.search-calendar__icon-btn, .search-guests__stepper button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sc-ink);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 160ms var(--ease-out), transform 140ms var(--ease-out);
}

.search-calendar__icon-btn svg, .search-guests__stepper button svg { width: 18px; height: 18px; }
.search-calendar__icon-btn:disabled, .search-guests__stepper button:disabled { cursor: not-allowed; opacity: 0.35; }

@media (hover: hover) and (pointer: fine) {
  .search-calendar__icon-btn:not(:disabled):hover, .search-guests__stepper button:not(:disabled):hover { background: rgba(255, 255, 255, 0.16); }
}

.search-calendar__icon-btn:not(:disabled):active, .search-guests__stepper button:not(:disabled):active { transform: scale(0.95); }
.search-calendar__icon-btn:focus-visible, .search-calendar__day:focus-visible, .search-guests__stepper button:focus-visible { outline: 2px solid var(--sc-ring); outline-offset: 2px; }

.search-calendar__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.25rem; }
.search-calendar__weekday { padding: 0.25rem 0; color: var(--sc-muted); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.03em; text-align: center; }

.search-calendar__day {
  width: 100%;
  min-width: 36px;
  min-height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--sc-ink);
  font-size: 0.875rem;
  font-family: var(--font-body);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 140ms var(--ease-out), transform 140ms var(--ease-out);
}

.search-calendar__day:disabled { cursor: not-allowed; color: rgba(255, 255, 255, 0.25); }
.search-calendar__day.is-in-range { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
.search-calendar__day.is-selected { background: var(--color-paper); color: var(--color-obsidian); font-weight: 600; }

@media (hover: hover) and (pointer: fine) {
  .search-calendar__day:not(:disabled):not(.is-selected):hover { background: rgba(255, 255, 255, 0.1); }
}

.search-calendar__day:not(:disabled):active { transform: scale(0.94); }
.search-calendar__footer { margin-top: 0.75rem; padding: 0.75rem 0.25rem 0; border-top: 1px solid var(--sc-border); color: var(--sc-muted); font-size: 0.8125rem; }

@media (max-width: 900px) {
  .search-capsule {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "where where" "checkin checkout" "guests guests" "submit submit";
    border-radius: var(--radius-card);
    padding: 0.5rem;
    gap: 1px;
    max-width: 32rem;
  }
  .search-capsule__field { min-height: 56px; border-radius: 12px; }
  .search-capsule__field + .search-capsule__field { border-left: none; }
  .search-capsule__field--checkin .search-capsule__chevron,
  .search-capsule__field--checkout .search-capsule__chevron { display: block; }
  .search-capsule__field--where { grid-area: where; }
  .search-capsule__field--checkin { grid-area: checkin; border-right: 1px solid var(--sc-border); }
  .search-capsule__field--checkout { grid-area: checkout; }
  .search-capsule__field--guests { grid-area: guests; }
  .search-capsule__submit { grid-area: submit; padding: 0.5rem 0 0; }
  .search-capsule__btn { width: 100%; }
  .search-capsule__btn-text { display: inline; }
  .search-capsule__popover--dates { right: 0; left: 0; width: 100%; }
  .search-capsule__popover--guests,
  .search-capsule__popover--where { right: 0; left: 0; width: 100%; top: calc(100% + 1rem); }
}

@media (max-width: 640px) {
  /* One pattern for all four fields on a phone: the panel docks at the
     bottom, in the thumb's reach, over a scrim. Each panel carries its own
     heading, so covering the capsule costs no context. */
  .search-capsule__popover--dates,
  .search-capsule__popover--guests,
  .search-capsule__popover--where {
    position: fixed;
    top: auto;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1rem;
    width: auto;
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    transform-origin: bottom center;
  }

  .search-where__copy {
    display: flex;
    padding: 0.25rem 0.75rem 0.75rem;
    border-bottom: 1px solid var(--sc-border);
    margin-bottom: 0.25rem;
  }

  .search-where__option { padding: 0.875rem 0.75rem; }
  .search-capsule__popover--guests { padding: 1.25rem; }
}

/* Narrowest phones: give the date pair its own rows so "Add date" stops
   ellipsing — see guest.css for the same rule. */
@media (max-width: 380px) {
  .search-capsule {
    grid-template-areas: "where where" "checkin checkin" "checkout checkout" "guests guests" "submit submit";
  }
  .search-capsule__field--checkin { border-right: none; }
}

@media (prefers-reduced-motion: reduce) {
  .search-capsule, .search-capsule__field, .search-capsule__btn, .search-calendar__day { transition: none; }
}
