:root {
  color-scheme: dark;
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #fffaf0;
  --muted: #d7d2c6;
  --accent: #d7b56d;
  --accent-dark: #866328;
  --line: rgba(255, 255, 255, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 181, 109, 0.22), transparent 25rem),
    radial-gradient(circle at 12% 82%, rgba(44, 77, 140, 0.3), transparent 25rem),
    linear-gradient(135deg, #050812 0%, #101827 54%, #03050a 100%);
  color: var(--text);
}

.page-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  min-height: 88vh;
  padding: 24px 0 54px;
}

.hero-copy,
.booking-copy {
  position: relative;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8.8vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.intro,
.booking-copy p:last-child {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: 999px;
  color: #f3e5c4;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(215, 181, 109, 0.08);
}

.video-card,
.booking {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.video-card {
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.hero-copy::after {
  content: "";
  display: block;
  width: min(340px, 70vw);
  height: 10px;
  margin-top: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(215, 181, 109, 0.05));
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 760px);
  min-height: 520px;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 8, 18, 0.96), rgba(5, 8, 18, 0));
  z-index: 1;
}

.video-card::before {
  content: none;
}

iframe,
video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.booking {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(360px, 1.25fr);
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.15), transparent 36%),
    var(--panel-strong);
  transition: opacity 420ms ease, transform 420ms ease;
}

.booking-hidden {
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(22px);
}

.booking-visible {
  opacity: 1;
  transform: translateY(0);
}

.calendly-inline-widget {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-hero {
  width: 100%;
  min-height: auto;
  grid-template-columns: 1fr;
}

.home-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(215, 181, 109, 0.45);
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  background: rgba(215, 181, 109, 0.12);
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 520px);
    padding-top: 0;
  }

  .hero,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 0;
    padding: 0 0 34px;
  }

  .video-card {
    width: calc(100% + 20px);
    min-height: 0;
    max-height: none;
    margin: 0 -10px;
    border-radius: 0;
  }

  .hero-copy {
    margin-top: -76px;
    padding: 0 10px;
    z-index: 2;
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 5.65rem);
  }

  .booking {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .video-card,
  .booking,
  .calendly-inline-widget {
    border-radius: 20px;
  }

  .calendly-inline-widget {
    min-width: 0 !important;
    height: 700px !important;
  }
}
