@charset "UTF-8";

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

:root {
  --accent: #982a8e;
  --accent-deep: #7b1f72;
  --muted: #665462;
  --shadow: 0 24px 70px rgba(30,10,24,.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #f8f2f7;
  overflow-x: hidden;
}

.booking-page-main {
  background: #f8f2f7;
}

/* HERO */
.booking-gate-section {
  position: relative;
  min-height: calc(100vh - 86px);

  display: flex;
  align-items: center;

  padding: 72px 0 54px;

  background-image:
    url('https://www.adinaskin.nz/assets/hero-main.jpg');

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f8f2f7;
}

.booking-gate-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.booking-gate-card {
  width: min(100%, 720px);

  background: rgba(255,255,255,.93);

  border-radius: 34px;

  padding: clamp(26px,4vw,46px);

  box-shadow: var(--shadow);

  backdrop-filter: blur(12px);
}

.booking-gate-eyebrow {
  margin: 0 0 12px;

  color: var(--accent);

  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 800;
}

.booking-gate-card h1 {
  margin: 0 0 22px;

  font-size: clamp(2.4rem,6vw,4.7rem);
  line-height: .98;
  letter-spacing: -.055em;

  color: #211422;
}

.booking-gate-lead {
  margin: 0 0 16px;

  color: var(--muted);

  font-size: clamp(1rem,2vw,1.22rem);
  line-height: 1.75;
}

.booking-gate-warning {
  margin: 16px 0 24px;

  padding: 22px 24px;

  border-radius: 24px;

  background: #f6edf5;

  color: #604b5d;

  line-height: 1.72;
}

.booking-policy-read {
  appearance: none;
  border: 0;
  background: transparent;

  padding: 0;

  color: var(--accent);

  font-size: 1.08rem;
  font-weight: 800;

  cursor: pointer;
}

.booking-policy-content-inline {
  margin-top: 18px;
}

.policy-mini-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.policy-mini-card {
  padding: 18px;

  background: #fff;

  border-radius: 18px;
}

.policy-mini-card--wide {
  grid-column: 1 / -1;
}

.policy-mini-card h3 {
  margin: 0 0 8px;
}

.policy-mini-card p {
  margin: 0;

  color: var(--muted);
  line-height: 1.65;
}

.booking-gate-agree {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin: 24px 0 18px;

  font-weight: 800;
}

.booking-gate-agree input {
  width: 22px;
  height: 22px;

  accent-color: var(--accent);
}

.booking-choice__button,
.booking-gate-button,
.main-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 56px;

  padding: 0 26px;

  border-radius: 999px;

  border: 0;

  background: var(--accent);

  color: #fff !important;

  font-weight: 800;

  text-decoration: none;

  cursor: pointer;
}

.booking-gate-button {
  width: 100%;
  min-height: 68px;

  font-size: 1.18rem;
  letter-spacing: .02em;

  padding: 0 32px;

  box-shadow:
    0 18px 40px rgba(152,42,142,.24);

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.booking-gate-button:hover:not(:disabled) {
  transform: translateY(-2px);

  box-shadow:
    0 24px 50px rgba(152,42,142,.32);
}

.booking-gate-button.booking-disabled,
.booking-gate-button:disabled {
  opacity: .58;
  cursor: not-allowed;
  background: #d8c8d6;
}

.booking-gate-footnote {
  margin-top: 24px;

  color: #2f2b2f;
}

/* TIMELY */
.timely-booking-section {
  padding: 54px 0 82px;

  background: #faf5fa;
}

.timely-booking-card {
  background: #fff;

  border-radius: 32px;

  padding: clamp(18px,3vw,30px);

  box-shadow: 0 18px 50px rgba(30,10,24,.08);
}

.timely-booking-heading h2 {
  margin: 0 0 8px;
}

.timely-booking-heading p {
  color: var(--muted);
}

.timely-frame-wrap {
  overflow: hidden;

  border-radius: 24px;

  background: #fff;
}

#timelyWidget {
  display: block;

  width: 100% !important;
  height: 920px !important;

  border: none !important;
}

/* MOBILE */
@media (max-width: 900px) {

  .booking-gate-section {
    min-height: auto;

    padding: 34px 0;

    background-size: cover;
    background-position: center top;
  }

  .booking-gate-card {
    width: 100%;

    padding: 24px 18px;

    border-radius: 26px;
  }

  .booking-gate-button {
    min-height: 64px;
    font-size: 1.06rem;
  }

  .booking-gate-card h1 {
    font-size: clamp(2.1rem,10vw,3.2rem);
  }

  .policy-mini-grid {
    grid-template-columns: 1fr;
  }

  .policy-mini-card--wide {
    grid-column: auto;
  }

  #timelyWidget {
    height: 1200px !important;
  }
}

@media (max-width: 480px) {

  .booking-gate-card {
    padding: 22px 16px;
  }

  .booking-gate-eyebrow {
    font-size: .72rem;
    letter-spacing: .16em;
  }

  #timelyWidget {
    height: 1350px !important;
  }
}
