@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-400.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-600.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-800.woff") format("woff");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-700.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}




:root {
  --navy: #071b3d;
  --navy-2: #0b2858;
  --blue: #0066ff;
  --off-white: #fafbff;
  --white: #ffffff;
  --ink: #071b3d;
  --muted: #596982;
  --line: #dbe3ef;
  --radius: 24px;
  --content-gutter: max(24px, calc((100vw - 1360px) / 2));
  --wide-gutter: max(min(40px, var(--content-gutter)), calc((100vw - 1560px) / 2));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.brand { display: inline-flex; position: relative; z-index: 2; }
.hero .brand { margin-left: calc(var(--wide-gutter) - var(--content-gutter)); }
.brand img { display: block; width: 210px; height: auto; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 104px);
  padding: 0 var(--content-gutter);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7,27,61,.98), rgba(7,27,61,.91)),
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018);
}

.hero-glow {
  position: absolute;
  top: -260px;
  left: 34%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(190px);
  opacity: .18;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 42px 0 58px;
}

.hero-grid {
  min-height: calc(100vh - 204px);
  padding-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr);
  align-items: center;
  gap: 64px;
}

.hero-copy { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8d7f1;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span { width: 26px; height: 2px; background: var(--blue); }

h1, h2, p { text-wrap: balance; }

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.01;
  letter-spacing: -.058em;
  font-weight: 600;
}

.hero h1 em { color: #67a2ff; font-style: normal; }

.hero-subtitle {
  max-width: 620px;
  margin: 30px 0 0;
  color: #ccd7e8;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.68;
}

.calendar-column { min-width: 0; }
.calendar-label { margin: 0 0 13px; color: #96aad0; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }

.calendar-shell {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.calendar-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
    repeating-linear-gradient(0deg, transparent 0 58px, #edf1f7 58px 59px);
}

.calendar-loading.is-hidden { display: none; }
.calendar-loading strong { margin-top: 20px; font-size: 1.08rem; }
.calendar-loading p { max-width: 350px; margin: 8px 0 0; color: var(--muted); line-height: 1.5; }
.calendar-mark { display: grid; grid-template-columns: repeat(3, 12px); gap: 6px; padding: 18px; border-radius: 14px; background: #eef4ff; }
.calendar-mark span { width: 12px; height: 12px; border-radius: 3px; background: var(--blue); opacity: .38; }
.calendar-mark span:nth-child(2) { opacity: .66; }
.calendar-mark span:nth-child(3) { opacity: 1; }

#booking-calendar { display: none; width: 100%; min-height: 720px; border: 0; }
#booking-calendar.is-visible { display: block; }

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font: 800 1rem/1 "Manrope", Arial, sans-serif;
  text-decoration: none;
  transition: background-color .2s ease;
}
.primary-cta:hover { background: #0052d6; }
.primary-cta:focus-visible { outline: 3px solid #a8c8ff; outline-offset: 3px; }

.call-steps {
  padding: 120px var(--content-gutter);
  background: var(--off-white);
}

.call-steps-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.call-steps-media { margin: 0; }
.call-steps-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 712 / 724;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(7,27,61,.14);
}
.call-steps-media figcaption { margin-top: 14px; color: #92a2b9; font-size: .72rem; }

.call-steps .eyebrow { color: var(--muted); }

.call-steps h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 600;
}
.call-steps h2 em { color: var(--blue); font-style: normal; }

.steps { margin: 40px 0; padding: 0; list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-number {
  padding-top: 3px;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.steps h3 { margin: 0 0 6px; font-size: 1.2rem; font-weight: 600; letter-spacing: -.025em; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; text-wrap: pretty; }

footer {
  min-height: 104px;
  padding: 32px var(--wide-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  color: #92a2b9;
  background: #051530;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
}

footer p { margin: 0; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { flex: none; width: 36px; height: 36px; }
.footer-links { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 24px; }
.footer-links a { color: #c8d7f1; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-links a:focus-visible { outline: 2px solid #a8c8ff; outline-offset: 3px; }
.platform-disclaimer { color: #71829c; font-size: .68rem; line-height: 1.55; text-align: center; }

.confirmation-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 104px);
  padding: 0 var(--content-gutter) 96px;
  color: var(--white);
  background: var(--navy);
}
.confirmation-hero .site-nav { position: relative; z-index: 1; height: 104px; display: flex; align-items: center; }
.confirmation-hero .brand { margin-left: calc(var(--wide-gutter) - var(--content-gutter)); }
.confirmation-body { position: relative; z-index: 1; max-width: 760px; padding-top: 56px; }
.confirmation-icon { width: 64px; height: 64px; margin-bottom: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); }
.confirmation-icon svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.confirmation-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.01; letter-spacing: -.058em; font-weight: 600; }
.confirmation-hero h1 em { color: #67a2ff; font-style: normal; }
.confirmation-lead { max-width: 620px; margin: 28px 0 0; color: #ccd7e8; font-size: clamp(1.02rem, 1.8vw, 1.18rem); line-height: 1.68; }
.prep { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.14); }
.prep-title { margin: 0 0 16px; color: #96aad0; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.prep-list { margin: 0; padding: 0; list-style: none; }
.prep-list li { display: grid; grid-template-columns: 48px 1fr; gap: 8px; padding: 16px 0; color: #e3eaf5; line-height: 1.6; border-bottom: 1px solid rgba(255,255,255,.08); }
.prep-list span { color: #67a2ff; font-weight: 800; letter-spacing: .04em; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .calendar-column { width: 100%; }
  .call-steps { padding-top: 88px; padding-bottom: 88px; }
  .call-steps-inner { grid-template-columns: 1fr; gap: 48px; }
  .call-steps-media { max-width: 520px; }
}

@media (max-width: 640px) {
  .brand img { width: 164px; }
  .hero { min-height: auto; padding: 0 16px; }
  .hero .brand { margin-left: 0; }
  footer { padding-left: 16px; padding-right: 16px; }
  .hero-inner { padding: 27px 0 42px; }
  .hero-grid { min-height: auto; padding-top: 68px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.1rem); }
  .hero-subtitle { margin-top: 24px; }
  .calendar-shell, #booking-calendar { min-height: 720px; }
  .call-steps { padding: 64px 16px; }
  .steps li { grid-template-columns: 40px 1fr; }
  .primary-cta { width: 100%; }
  footer { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; }
  .footer-brand { flex-direction: column; gap: 12px; }
  .footer-links { justify-self: center; justify-content: center; }
  .confirmation-hero { min-height: auto; padding: 0 16px 64px; }
  .confirmation-hero .brand { margin-left: 0; }
  .confirmation-body { padding-top: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.legal-hero {
  padding: 0 var(--content-gutter) 72px;
  color: var(--white);
  background: var(--navy);
}
.legal-hero .site-nav { height: 104px; display: flex; align-items: center; }
.legal-hero .brand { margin-left: calc(var(--wide-gutter) - var(--content-gutter)); }
.legal-hero .eyebrow { margin-top: 40px; }
.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 600;
}
.legal-updated { margin: 24px 0 0; color: #ccd7e8; }

.legal-content {
  max-width: 760px;
  padding: 72px 0 120px;
  margin-left: var(--content-gutter);
  line-height: 1.7;
}
.legal-content section + section { margin-top: 48px; }
.legal-content h2 { margin: 0 0 16px; font-size: 1.5rem; font-weight: 600; letter-spacing: -.03em; line-height: 1.2; }
.legal-content p, .legal-content li { color: #3c4b63; }
.legal-content p { margin: 0 0 16px; text-wrap: pretty; }
.legal-content ul { margin: 0 0 16px; padding-left: 20px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--blue); }

@media (max-width: 640px) {
  .legal-hero { padding: 0 16px 56px; }
  .legal-hero .brand { margin-left: 0; }
  .legal-content { margin: 0; padding: 56px 16px 88px; }
}
