/* ==================================================
   VARIABLES
   ================================================== */

:root {
  --black: #020306;
  --graphite: #151921;
  --white: #FFFFFF;
  --soft-white: #F4F4F4;
  --light-grey: #E8E8E8;
  --mid-grey: #A7A7A7;

  --font:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;

  --shadow:
    0 24px 70px rgba(0, 0, 0, 0.22);
}


/* ==================================================
   RESET
   ================================================== */

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--black);
  background: var(--black);

  font-family: var(--font);

  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* ==================================================
   PROGRESSIVE OPENING BLUR
   ================================================== */

.page-reveal {
  position: fixed;
  z-index: 200;

  inset: 0;

  pointer-events: none;

  background: rgba(2, 3, 6, 0.28);

  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);

  animation:
    page-unblur
    1.7s
    cubic-bezier(.22, 1, .36, 1)
    forwards;
}

@keyframes page-unblur {
  0% {
    opacity: 1;

    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
  }

  50% {
    opacity: 0.6;

    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
  }

  82% {
    opacity: 0.18;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  100% {
    opacity: 0;
    visibility: hidden;

    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}


/* ==================================================
   HEADER
   ================================================== */

.site-header {
  position: fixed;
  z-index: 40;

  top: 0;
  right: 0;
  left: 0;

  height: 86px;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: start;

  padding: 16px 22px;

  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}


/* ==================================================
   LOGO
   ================================================== */

.brand-mark {
  grid-column: 1;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  overflow: hidden;

  color: var(--white);
  background: var(--black);

  border:
    1px solid rgba(255, 255, 255, 0.72);

  border-radius: 50%;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.25);

  transition:
    transform 180ms ease;
}

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

.brand-mark__logo {
  width: 72%;
  height: 72%;

  object-fit: contain;
}

.brand-mark__fallback {
  font-size: 13px;
  font-weight: 750;
}


/* ==================================================
   EXPANDABLE NAVIGATION
   ================================================== */

.navigation {
  grid-column: 2;

  width: 116px;
  min-height: 36px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: var(--white);
  background: rgba(2, 3, 6, 0.94);

  border:
    1px solid rgba(255, 255, 255, 0.16);

  border-radius: 999px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    width 420ms cubic-bezier(.16, 1, .3, 1),
    border-radius 300ms ease;
}

.navigation.is-open {
  width: min(650px, 60vw);
}

.navigation__toggle {
  flex: 0 0 116px;

  min-height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 14px;

  color: var(--white);
  background: transparent;

  border: 0;
  border-radius: 999px;

  font-family: var(--font);
  font-size: 10px;
  font-weight: 550;

  cursor: pointer;
}

.navigation__toggle-icon {
  width: 16px;
  height: 14px;

  display: grid;
  align-content: center;

  gap: 4px;
}

.navigation__toggle-icon span {
  display: block;

  width: 16px;
  height: 1px;

  background: currentColor;

  transition:
    transform 220ms ease;
}

.navigation.is-open
.navigation__toggle-icon
span:first-child {
  transform:
    translateY(2.5px)
    rotate(45deg);
}

.navigation.is-open
.navigation__toggle-icon
span:last-child {
  transform:
    translateY(-2.5px)
    rotate(-45deg);
}

.navigation__links {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 3px;

  padding-right: 5px;

  opacity: 0;
  visibility: hidden;

  transform: translateX(-18px);

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.navigation.is-open
.navigation__links {
  opacity: 1;
  visibility: visible;

  transform: translateX(0);
}

.navigation__links a {
  min-height: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 13px;

  color: rgba(255, 255, 255, 0.68);

  border-radius: 999px;

  font-family: var(--font);
  font-size: 10px;
  font-weight: 550;

  white-space: nowrap;

  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.navigation__links a:hover,
.navigation__links a.is-active {
  color: var(--black);
  background: var(--white);
}


/* ==================================================
   HEADER CTA
   ================================================== */

.header-cta {
  grid-column: 3;
  justify-self: end;

  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 17px;

  color: var(--white);
  background: var(--black);

  border:
    1px solid rgba(255, 255, 255, 0.18);

  border-radius: 999px;

  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22);

  cursor: pointer;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  color: var(--black);
  background: var(--white);

  transform: translateY(-2px);
}


/* ==================================================
   HERO
   ================================================== */

.hero {
  position: relative;

  min-height: 100svh;

  display: grid;
  place-items: center;

  overflow: hidden;

  padding:
    100px
    7vw
    78px;

  background: var(--black);

  isolation: isolate;
}

.hero__background-video {
  position: absolute;
  z-index: -3;

  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center;

  opacity: 0;
  filter: blur(30px);

  transform: scale(1.14);

  animation:
    hero-video-reveal
    2.2s
    cubic-bezier(.22, 1, .36, 1)
    forwards;
}

.hero__video-overlay {
  position: absolute;
  z-index: -2;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(2, 3, 6, 0.38) 0%,
      rgba(2, 3, 6, 0.12) 42%,
      rgba(2, 3, 6, 0.48) 100%
    );
}

.hero__title {
  position: relative;
  z-index: 2;

  width: 100%;

  display: flex;
  align-items: baseline;
  justify-content: center;

  gap: 0.19em;

  margin: 0;

  color: var(--white);

  font-family: var(--font);
  font-size: clamp(58px, 7.8vw, 132px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-align: center;

  white-space: nowrap;

  opacity: 0;
  filter: blur(24px);

  transform:
    translateY(18px)
    scale(0.95);

  animation:
    hero-title-reveal
    1.85s
    cubic-bezier(.22, 1, .36, 1)
    0.35s
    forwards;
}

.hero__title span {
  display: inline-block;
}

.hero__index {
  position: absolute;

  right: 24px;
  bottom: 18px;

  margin: 0;

  color: rgba(255, 255, 255, 0.52);

  font-size: 9px;
}


/* ==================================================
   HERO ANIMATIONS
   ================================================== */

@keyframes hero-video-reveal {
  0% {
    opacity: 0;
    filter: blur(30px);

    transform: scale(1.14);
  }

  45% {
    opacity: 0.75;
    filter: blur(15px);
  }

  75% {
    opacity: 1;
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    filter: blur(0);

    transform: scale(1.04);
  }
}

@keyframes hero-title-reveal {
  0% {
    opacity: 0;
    filter: blur(24px);

    transform:
      translateY(18px)
      scale(0.95);
  }

  55% {
    opacity: 0.72;
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    filter: blur(0);

    transform:
      translateY(0)
      scale(1);
  }
}


/* ==================================================
   DISCOVERY-CALL PILL
   ================================================== */

.discovery-call {
  position: absolute;
  z-index: 4;

  left: 50%;
  bottom: 24px;

  min-height: 48px;

  display: flex;
  align-items: center;

  gap: 16px;

  padding:
    5px
    5px
    5px
    20px;

  color: rgba(2, 3, 6, 0.7);
  background: rgba(255, 255, 255, 0.88);

  border:
    1px solid rgba(255, 255, 255, 0.5);

  border-radius: 999px;

  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;

  white-space: nowrap;

  opacity: 0;

  transform:
    translate(-50%, 14px);

  animation:
    discovery-reveal
    0.8s
    ease
    1.25s
    forwards;
}

.discovery-call__button {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 17px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 999px;

  font-family: var(--font);
  font-size: 11px;
  font-weight: 650;

  cursor: pointer;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.discovery-call__button:hover {
  color: var(--black);
  background: var(--light-grey);

  transform: translateY(-2px);
}

@keyframes discovery-reveal {
  from {
    opacity: 0;

    transform:
      translate(-50%, 14px);
  }

  to {
    opacity: 1;

    transform:
      translate(-50%, 0);
  }
}


/* ==================================================
   BOOKING MODAL
   ================================================== */

.booking-modal {
  position: fixed;
  z-index: 100;

  inset: 0;

  display: grid;
  place-items: center;

  padding: 30px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal__backdrop {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  padding: 0;

  background: rgba(0, 0, 0, 0.78);

  border: 0;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  cursor: pointer;
}


/* ==================================================
   HORIZONTAL DESKTOP BOOKING CARD
   ================================================== */

.booking-card {
  position: relative;
  z-index: 1;

  width: min(1120px, calc(100vw - 60px));
  max-height: calc(100svh - 60px);

  overflow-y: auto;

  padding:
    clamp(30px, 4vw, 52px);

  color: var(--black);
  background: var(--soft-white);

  border:
    1px solid rgba(255, 255, 255, 0.7);

  border-radius: 28px;

  box-shadow: var(--shadow);

  opacity: 0;

  transform:
    translateY(28px)
    scale(0.97);

  transition:
    opacity 260ms ease,
    transform 340ms cubic-bezier(.16, 1, .3, 1);
}

.booking-modal.is-open
.booking-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.booking-card__close {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  padding: 0;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 50%;

  font-family: var(--font);
  font-size: 23px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    transform 180ms ease;
}

.booking-card__close:hover {
  transform: rotate(6deg) scale(1.05);
}

.booking-card__header {
  padding-right: 60px;
  margin-bottom: 34px;
}

.booking-card__header p {
  margin:
    0
    0
    10px;

  color: rgba(2, 3, 6, 0.52);

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-card__header h2 {
  max-width: 760px;

  margin: 0;

  font-family: var(--font);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.booking-layout {
  display: grid;

  grid-template-columns:
    minmax(440px, 1.08fr)
    minmax(320px, 0.92fr);

  gap: clamp(28px, 5vw, 70px);

  align-items: start;
}


/* ==================================================
   CALENDAR
   ================================================== */

.booking-calendar-panel {
  padding: 24px;

  background: var(--light-grey);

  border:
    1px solid rgba(2, 3, 6, 0.07);

  border-radius: 22px;
}

.booking-calendar__header {
  display: grid;

  grid-template-columns:
    38px
    1fr
    38px;

  align-items: center;

  margin-bottom: 22px;

  text-align: center;
}

.booking-calendar__header strong {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 650;
}

.calendar-nav {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  padding: 0;

  color: var(--black);
  background: var(--white);

  border: 0;
  border-radius: 50%;

  font-family: var(--font);
  font-size: 22px;

  cursor: pointer;

  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.calendar-nav:hover:not(:disabled) {
  color: var(--white);
  background: var(--black);

  transform: scale(1.06);
}

.calendar-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.booking-calendar__week,
.booking-calendar__days {
  display: grid;

  grid-template-columns:
    repeat(7, minmax(0, 1fr));

  gap: 7px;
}

.booking-calendar__week {
  margin-bottom: 8px;
}

.booking-calendar__week span {
  color: rgba(2, 3, 6, 0.38);

  font-size: 8px;
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;

  min-width: 0;
  padding: 0;

  color: var(--black);
  background: rgba(255, 255, 255, 0.78);

  border: 0;
  border-radius: 50%;

  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.calendar-day:hover:not(:disabled) {
  background: var(--white);

  transform: scale(1.07);
}

.calendar-day.is-selected {
  color: var(--white);
  background: var(--black);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2);

  transform: scale(1.04);
}

.calendar-day:disabled {
  color: rgba(2, 3, 6, 0.18);
  background: transparent;

  cursor: default;
}

.calendar-day--blank {
  visibility: hidden;
}


/* ==================================================
   BOOKING FORM
   ================================================== */

.booking-form {
  display: grid;
  gap: 15px;
}

.selected-date-box {
  min-height: 64px;

  display: grid;
  align-content: center;

  gap: 4px;

  padding: 12px 14px;

  background: var(--black);

  border-radius: 12px;

  color: var(--white);
}

.selected-date-box__label {
  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.selected-date-box strong {
  font-size: 12px;
  font-weight: 550;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label > span {
  font-size: 10px;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  width: 100%;

  padding: 13px 14px;

  color: var(--black);
  background: var(--light-grey);

  border:
    1px solid transparent;

  border-radius: 10px;
  outline: none;

  font-family: var(--font);
  font-size: 14px;
  font-weight: 450;

  resize: vertical;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  background: var(--white);

  border-color: var(--black);

  box-shadow:
    0 0 0 3px rgba(2, 3, 6, 0.1);
}

.booking-form__submit {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 3px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 999px;

  font-family: var(--font);
  font-size: 11px;
  font-weight: 650;

  cursor: pointer;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.booking-form__submit:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.2);
}

.booking-form__status {
  min-height: 18px;

  margin: 0;

  font-size: 12px;
  font-weight: 550;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 980px) {

  .navigation.is-open {
    width: min(590px, 69vw);
  }

  .navigation__links a {
    padding: 0 9px;
    font-size: 9px;
  }

  .booking-layout {
    grid-template-columns:
      minmax(390px, 1fr)
      minmax(280px, 0.85fr);

    gap: 28px;
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 760px) {

  .site-header {
    height: 74px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding: 14px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .navigation {
    position: absolute;

    top: 14px;
    right: 16px;

    width: 106px;

    display: block;

    border-radius: 21px;

    transition:
      width 360ms cubic-bezier(.16, 1, .3, 1),
      max-height 420ms cubic-bezier(.16, 1, .3, 1),
      border-radius 260ms ease;

    max-height: 42px;
  }

  .navigation.is-open {
    width: min(310px, calc(100vw - 32px));
    max-height: 390px;

    border-radius: 22px;
  }

  .navigation__toggle {
    width: 106px;
    min-height: 42px;

    justify-content: center;

    padding: 0 13px;
  }

  .navigation__links {
    width: 100%;

    display: grid;

    gap: 3px;

    padding:
      6px
      7px
      8px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);
  }

  .navigation.is-open
  .navigation__links {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .navigation__links a {
    min-height: 46px;

    justify-content: flex-start;

    padding: 0 16px;

    font-size: 14px;
  }

  .hero {
    padding:
      86px
      20px
      90px;
  }

  .hero__title {
    width: auto;

    display: grid;

    gap: 0;

    font-size:
      clamp(58px, 17vw, 94px);

    line-height: 0.88;

    white-space: normal;
  }

  .hero__background-video {
    object-position: center;
  }

  .discovery-call {
    bottom: 18px;
  }

  .hero__index {
    display: none;
  }

  .booking-modal {
    place-items: end center;

    padding: 12px;
  }

  .booking-card {
    width: 100%;
    max-height: calc(100svh - 24px);

    padding:
      30px
      20px;

    border-radius: 24px;
  }

  .booking-card__header {
    margin-bottom: 24px;
  }

  .booking-card__header h2 {
    font-size:
      clamp(38px, 12vw, 54px);
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-calendar-panel {
    padding: 15px;
  }

}


/* ==================================================
   SMALL MOBILE
   ================================================== */

@media (max-width: 460px) {

  .hero {
    padding-inline: 15px;
  }

  .hero__title {
    max-width: 360px;

    font-size:
      clamp(54px, 18vw, 78px);
  }

  .discovery-call {
    width: calc(100% - 30px);
    max-width: 355px;

    justify-content: space-between;

    gap: 9px;

    min-height: 46px;

    padding:
      5px
      5px
      5px
      15px;

    font-size: 10px;
  }

  .discovery-call__button {
    min-height: 36px;
    padding: 0 15px;
  }

  .booking-calendar__week,
  .booking-calendar__days {
    gap: 3px;
  }

  .calendar-day {
    font-size: 10px;
  }

}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-reveal {
    display: none;
  }

}

/* ==================================================
   SF PRO FONT
   Add these files to assets/fonts/
   ================================================== */

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Semibold.woff2")
    format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font:
    "SF Pro Display",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}


/* Apply SF Pro everywhere */

html,
body,
button,
input,
textarea,
select,
a {
  font-family: var(--font);
}


/* ==================================================
   SHARED BUTTON PERSONALITY
   No outlines, more breathing room
   ================================================== */

button,
.header-cta,
.navigation__toggle,
.navigation__links a,
.discovery-call__button,
.booking-form__submit,
.calendar-nav {
  border: 0;
  outline: 0;
  font-family: var(--font);
}


/* ==================================================
   TOP-RIGHT BOOKING BUTTON
   ================================================== */

.header-cta {
  min-height: 44px;

  padding:
    0
    22px;

  gap: 12px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 500;
  line-height: 1;

  text-transform: none;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.header-cta:hover {
  color: var(--black);
  background: var(--white);
}


/* ==================================================
   EXPANDABLE DESKTOP NAVIGATION
   ================================================== */

.navigation {
  min-height: 46px;

  background: var(--black);

  border: 0;
  border-radius: 999px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2);
}

.navigation__toggle {
  min-height: 46px;

  padding:
    0
    20px;

  gap: 12px;

  color: var(--white);
  background: transparent;

  border: 0;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 400;
}

.navigation__links {
  align-items: center;

  gap: 5px;

  padding-right: 6px;
}

.navigation__links a {
  min-height: 36px;

  padding:
    0
    18px;

  color: rgba(255, 255, 255, 0.68);
  background: transparent;

  border: 0;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.navigation__links a:hover,
.navigation__links a.is-active {
  color: var(--black);
  background: var(--white);
}


/* ==================================================
   DISCOVERY-CALL SEGMENTED PILL
   Follows the Future / Now reference
   ================================================== */

.discovery-call {
  min-height: 54px;

  gap: 18px;

  padding:
    5px
    5px
    5px
    23px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 400;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.22);
}

.discovery-call__button {
  min-width: 90px;
  min-height: 44px;

  padding:
    0
    20px;

  gap: 10px;

  color: var(--black);
  background: var(--white);

  border: 0;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.discovery-call__button:hover {
  color: var(--white);
  background: var(--graphite);
}


/* ==================================================
   POPUP CLOSE BUTTON
   ================================================== */

.booking-card__close {
  width: 44px;
  height: 44px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 50%;

  font-size: 22px;
  font-weight: 400;
}


/* ==================================================
   POPUP TYPOGRAPHY
   Human-readable sizing
   ================================================== */

.booking-card__header p {
  margin-bottom: 12px;

  color: rgba(2, 3, 6, 0.54);

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.booking-card__header h2 {
  font-size:
    clamp(42px, 5vw, 70px);

  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
}


/* ==================================================
   CALENDAR CONTROLS
   ================================================== */

.calendar-nav {
  width: 40px;
  height: 40px;

  color: var(--black);
  background: var(--white);

  border: 0;
  border-radius: 50%;

  font-size: 22px;
  font-weight: 400;
}

.calendar-nav:hover:not(:disabled) {
  color: var(--white);
  background: var(--black);
}

.booking-calendar__header strong {
  font-size: 17px;
  font-weight: 600;
}

.booking-calendar__week span {
  font-size: 9px;
  font-weight: 500;
}

.calendar-day {
  color: var(--black);
  background: rgba(255, 255, 255, 0.8);

  border: 0;
  border-radius: 50%;

  font-size: 12px;
  font-weight: 500;
}

.calendar-day.is-selected {
  color: var(--white);
  background: var(--black);
}


/* ==================================================
   UNIFIED FORM FIELD DESIGN
   ================================================== */

.booking-form {
  gap: 18px;
}

.booking-form label {
  gap: 9px;
}

.booking-form label > span {
  color: var(--black);

  font-size: 12px;
  font-weight: 500;
}

.booking-form input,
.booking-form textarea {
  width: 100%;

  color: var(--black);
  background: var(--light-grey);

  border: 0;
  border-radius: 14px;
  outline: 0;

  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
}

.booking-form input {
  min-height: 52px;

  padding:
    0
    17px;
}

.booking-form textarea {
  min-height: 118px;

  padding:
    15px
    17px;

  line-height: 1.45;
}

.booking-form input:hover,
.booking-form textarea:hover {
  background: #E1E1E1;
}

.booking-form input:focus,
.booking-form textarea:focus {
  background: var(--white);

  border: 0;
  outline: 0;

  box-shadow:
    0 0 0 3px rgba(2, 3, 6, 0.12);
}


/* Preferred-date field follows inputs */

.selected-date-box {
  min-height: 72px;

  padding:
    14px
    17px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 14px;
}

.selected-date-box__label {
  font-size: 10px;
  font-weight: 500;
}

.selected-date-box strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}


/* Form submission button */

.booking-form__submit {
  min-height: 52px;

  padding:
    0
    24px;

  gap: 12px;

  color: var(--white);
  background: var(--black);

  border: 0;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 500;
}

.booking-form__submit:hover {
  color: var(--black);
  background: var(--white);

  box-shadow:
    inset 0 0 0 1px var(--black);
}


/* ==================================================
   MOBILE NAVIGATION FIX
   ================================================== */

@media (max-width: 760px) {

  .navigation {
    width: 112px;
    min-height: 46px;

    border: 0;
    border-radius: 23px;
  }

  .navigation.is-open {
    width: min(
      320px,
      calc(100vw - 32px)
    );

    max-height: 430px;

    border-radius: 24px;
  }

  .navigation__toggle {
    width: 112px;
    min-height: 46px;

    justify-content: flex-start;

    padding:
      0
      16px;

    text-align: left;
  }

  .navigation__links {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 5px;

    padding:
      9px
      9px
      12px;
  }

  .navigation__links a {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding:
      0
      18px;

    text-align: left;

    border: 0;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 500;
  }

  .navigation__links a:hover,
  .navigation__links a.is-active {
    color: var(--black);
    background: var(--white);
  }

}


/* ==================================================
   MOBILE POPUP AND BUTTONS
   ================================================== */

@media (max-width: 760px) {

  .booking-card {
    padding:
      34px
      22px;

    border-radius: 24px;
  }

  .booking-card__header {
    padding-right: 50px;
  }

  .booking-card__header h2 {
    font-size:
      clamp(39px, 11vw, 54px);
  }

  .booking-calendar-panel {
    padding: 17px;

    border: 0;
    border-radius: 18px;
  }

  .booking-form input {
    min-height: 54px;
  }

  .booking-form textarea {
    min-height: 125px;
  }

  .booking-form__submit {
    min-height: 54px;

    font-size: 14px;
  }

}


/* ==================================================
   SMALL PHONE
   ================================================== */

@media (max-width: 460px) {

  .navigation.is-open {
    right: 15px;

    width: calc(100vw - 30px);
  }

  .discovery-call {
    min-height: 52px;

    padding-left: 19px;

    font-size: 11px;
  }

  .discovery-call__button {
    min-width: 78px;
    min-height: 42px;

    padding:
      0
      17px;

    font-size: 12px;
  }

  .booking-calendar__week,
  .booking-calendar__days {
    gap: 4px;
  }

  .calendar-day {
    font-size: 11px;
  }

}

/* ==================================================
   POPPINS — BUTTONS AND BOOKING POPUP
   ================================================== */

.header-cta,
.navigation,
.navigation button,
.navigation a,
.discovery-call,
.discovery-call button,
.booking-modal,
.booking-modal button,
.booking-modal input,
.booking-modal textarea,
.booking-modal select,
.booking-modal label {
  font-family: "Poppins", sans-serif;
}


/* ==================================================
   REMOVE LOGO OUTLINE
   ================================================== */

.brand-mark {
  border: 0;
  outline: 0;

  background: transparent;

  box-shadow: none;
}

.brand-mark:hover {
  box-shadow: none;
}


/* ==================================================
   DISCOVERY POPUP — HORIZONTAL REVEAL
   Similar movement to the navigation
   ================================================== */

.booking-modal {
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-card {
  opacity: 0;

  clip-path:
    inset(
      0 46% 0 46%
      round 999px
    );

  transform:
    translateY(-10px)
    scaleY(0.82);

  transform-origin:
    top center;

  transition:
    clip-path 520ms cubic-bezier(.16, 1, .3, 1),
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    opacity 180ms ease;
}

.booking-modal.is-open
.booking-card {
  opacity: 1;

  clip-path:
    inset(
      0 0 0 0
      round 28px
    );

  transform:
    translateY(0)
    scaleY(1);
}

.booking-card__header,
.booking-layout,
.booking-card__close {
  opacity: 0;

  transform:
    translateY(12px);

  transition:
    opacity 260ms ease 180ms,
    transform 360ms cubic-bezier(.16, 1, .3, 1) 180ms;
}

.booking-modal.is-open
.booking-card__header,
.booking-modal.is-open
.booking-layout,
.booking-modal.is-open
.booking-card__close {
  opacity: 1;

  transform:
    translateY(0);
}


/* ==================================================
   CONSISTENT POPUP TYPOGRAPHY
   ================================================== */

.booking-card__header p {
  font-family: "Poppins", sans-serif;

  font-size: 11px;
  font-weight: 500;
}

.booking-card__header h2 {
  font-family: "Poppins", sans-serif;

  font-weight: 600;
  letter-spacing: -0.055em;
}

.booking-calendar__header strong,
.booking-calendar__week span,
.calendar-day,
.selected-date-box,
.booking-form label > span,
.booking-form input,
.booking-form textarea,
.booking-form select,
.booking-form__submit,
.booking-form__status {
  font-family: "Poppins", sans-serif;
}


/* ==================================================
   CONSISTENT POPUP BUTTONS
   ================================================== */

.booking-card__close,
.calendar-nav,
.booking-form__submit {
  border: 0;
  outline: 0;

  color: var(--white);
  background: var(--black);
}

.booking-card__close {
  width: 44px;
  height: 44px;

  border-radius: 50%;
}

.calendar-nav {
  width: 40px;
  height: 40px;

  border-radius: 50%;
}

.calendar-nav:hover:not(:disabled) {
  color: var(--black);
  background: var(--white);
}

.booking-form__submit {
  min-height: 52px;

  padding:
    0
    24px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 500;
}


/* ==================================================
   PHONE NUMBER FIELD
   ================================================== */

.phone-field {
  display: grid;
  gap: 9px;
}

.phone-field__control {
  width: 100%;
  min-height: 54px;

  display: grid;

  grid-template-columns:
    minmax(106px, auto)
    1fr;

  overflow: hidden;

  background: var(--light-grey);

  border: 0;
  border-radius: 14px;

  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.phone-field__control:focus-within {
  background: var(--white);

  box-shadow:
    0 0 0 3px rgba(2, 3, 6, 0.12);
}

.phone-field__control select {
  min-width: 0;

  padding:
    0
    34px
    0
    15px;

  color: var(--black);
  background-color: transparent;

  border: 0;
  border-right:
    1px solid rgba(2, 3, 6, 0.1);

  outline: 0;

  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;

  cursor: pointer;
}

.phone-field__control input {
  width: 100%;
  min-width: 0;
  min-height: 54px;

  padding:
    0
    16px;

  color: var(--black);
  background: transparent;

  border: 0;
  border-radius: 0;
  outline: 0;

  box-shadow: none;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.phone-field__control input:focus,
.phone-field__control select:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.phone-field__control:hover {
  background: #E1E1E1;
}

.phone-field small {
  color: rgba(2, 3, 6, 0.5);

  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}


/* ==================================================
   MOBILE POPUP REVEAL
   ================================================== */

@media (max-width: 760px) {

  .booking-card {
    clip-path:
      inset(
        0 42% 0 42%
        round 999px
      );

    transform:
      translateY(-8px)
      scaleY(0.88);
  }

  .booking-modal.is-open
  .booking-card {
    clip-path:
      inset(
        0 0 0 0
        round 24px
      );

    transform:
      translateY(0)
      scaleY(1);
  }

}


/* ==================================================
   SMALL PHONE NUMBER FIELD
   ================================================== */

@media (max-width: 420px) {

  .phone-field__control {
    grid-template-columns:
      104px
      minmax(0, 1fr);
  }

  .phone-field__control select {
    padding-left: 12px;
    font-size: 11px;
  }

  .phone-field__control input {
    padding:
      0
      13px;

    font-size: 13px;
  }

}