@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin.woff2) format("woff2-variations");
}
:root {
  --yellow: #ffcd06;
  --yellow-hover: #ffd83f;
  --black: #111;
  --white: #fff;
  --ink-d: #fff;
  --muted-d: #c9c6bf;
  --faint-d: #918e88;
  --line-d: #2c2c2c;
  --ink-l: #111;
  --muted-l: #444;
  --faint-l: #6b6b6b;
  --line-l: #e5e5e5;
  --card-l: #f7f7f5;
  --on-yellow: #111;
  --step--1: clamp(0.81rem, 0.78rem + 0.18vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1: clamp(1.19rem, 1.1rem + 0.45vw, 1.44rem);
  --step-2: clamp(1.44rem, 1.28rem + 0.85vw, 1.9rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.6vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.62rem + 2.6vw, 3.4rem);
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --band: clamp(3.5rem, 8vw, 6rem);
  --w-content: 68rem;
  --w-text: 42rem;
  --radius-btn: 6px;
  --radius-card: 12px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.15s;
  --dur: 0.25s;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}
*,
:before,
:after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: var(--ink-d);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  line-height: 1.55;
}
img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
p,
li {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1,
h2 {
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.12;
}
h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-weight: 700;
  font-size: var(--step-1);
  line-height: 1.25;
}
.eyebrow {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.numeral {
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
}
.band {
  padding-block: var(--band);
}
.band--light {
  background: var(--white);
  color: var(--ink-l);
  color-scheme: light;
}
.container {
  width: 100%;
  max-width: var(--w-content);
  padding-inline: var(--space-m);
  margin-inline: auto;
}
.container--text {
  max-width: var(--w-text);
}
.btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-2xs);
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: var(--step-0);
  cursor: pointer;
  background: var(--yellow);
  min-height: 48px;
  color: var(--on-yellow);
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  border: 0;
  padding: 1em 1.7em;
  text-decoration: none;
  display: inline-flex;
}
.btn:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ffcd0647;
}
.cta-unit {
  text-align: center;
}
.cta-unit .btn {
  width: 100%;
  max-width: 24rem;
}
.cta-micro {
  margin-top: var(--space-2xs);
  font-size: var(--step--1);
}
.cta-proof {
  margin-top: var(--space-xs);
  font-size: var(--step--1);
  font-weight: 600;
}
.band--light .cta-micro {
  color: var(--faint-l);
}
.band--light .cta-proof {
  color: var(--muted-l);
}
.band:not(.band--light) .cta-micro {
  color: var(--faint-d);
}
.band:not(.band--light) .cta-proof {
  color: var(--muted-d);
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.band--light :focus-visible {
  outline-color: var(--ink-l);
}
.skip-link {
  left: var(--space-s);
  z-index: 100;
  background: var(--yellow);
  color: var(--on-yellow);
  padding: var(--space-2xs) var(--space-s);
  border-radius: var(--radius-btn);
  transition: top var(--dur-fast) var(--ease-out);
  position: absolute;
  top: -3rem;
}
.skip-link:focus {
  top: var(--space-s);
}
.visually-hidden {
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.js .reveal {
  opacity: 0;
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
  transform: translateY(16px);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.marquee {
  white-space: nowrap;
  overflow: clip;
  mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
}
.marquee__track {
  align-items: center;
  gap: var(--space-2xl);
  padding-right: var(--space-2xl);
  animation: marquee var(--marquee-dur, 46s) linear infinite;
  display: inline-flex;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track,
.marquee.is-paused .marquee__track {
  animation-play-state: paused;
}
.marquee__track > * {
  flex: none;
}
@keyframes marquee {
  to {
    transform: translate(-50%);
  }
}
@media (width<=760px) {
  html {
    scroll-padding-bottom: 5.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  :before,
  :after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track {
    animation: none !important;
  }
}
.booking-modal[data-astro-cid-reei3hmf] {
  border-radius: var(--radius-card);
  background: var(--white);
  width: min(100vw, 34rem);
  height: min(100dvh, 46rem);
  color: var(--ink-l);
  color-scheme: light;
  border: 0;
  padding: 0;
  overflow: hidden;
}
@media (width<=640px) {
  .booking-modal[data-astro-cid-reei3hmf] {
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
  }
}
.booking-modal[data-astro-cid-reei3hmf]::backdrop {
  backdrop-filter: blur(3px);
  background: #111111c7;
}
.bm-inner[data-astro-cid-reei3hmf] {
  flex-direction: column;
  height: 100%;
  display: flex;
}
.bm-head[data-astro-cid-reei3hmf] {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-xs) var(--space-s) var(--space-xs) var(--space-m);
  border-bottom: 1px solid var(--line-l);
  flex: none;
  display: flex;
}
.bm-title[data-astro-cid-reei3hmf] {
  font-weight: 700;
}
.bm-close[data-astro-cid-reei3hmf] {
  border-radius: var(--radius-btn);
  width: 44px;
  height: 44px;
  color: var(--ink-l);
  cursor: pointer;
  background: 0 0;
  border: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.bm-close[data-astro-cid-reei3hmf]:hover {
  background: var(--card-l);
}
.bm-body[data-astro-cid-reei3hmf] {
  flex: 1;
  min-height: 0;
}
iframe[data-astro-cid-reei3hmf] {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}
html:has(.booking-modal[open]) {
  overflow: hidden;
}
.site-header[data-astro-cid-nen7h5rs] {
  inset-inline: 0;
  z-index: 10;
  padding-block: var(--space-m);
  position: absolute;
  top: 0;
}
.bar[data-astro-cid-nen7h5rs] {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  display: flex;
}
.brand-img[data-astro-cid-nen7h5rs] {
  width: clamp(126px, 28vw, 168px);
  height: auto;
}
.head-cta[data-astro-cid-nen7h5rs] {
  font-size: var(--step--1);
  min-height: 44px;
  padding: 0.65em 1.2em;
}
@media (width<=420px) {
  .head-cta[data-astro-cid-nen7h5rs] {
    display: none;
  }
}
.site-footer[data-astro-cid-jo6i4kqk] {
  background: var(--black);
  border-top: 1px solid var(--line-d);
}
.foot[data-astro-cid-jo6i4kqk] {
  padding-block: var(--space-l);
}
.legal[data-astro-cid-jo6i4kqk] {
  color: var(--faint-d);
  font-size: var(--step--1);
  text-align: center;
}
.legal[data-astro-cid-jo6i4kqk] a[data-astro-cid-jo6i4kqk] {
  color: var(--faint-d);
}
