:root {
  --ink: #1c211e;
  --paper: #f5f1e9;
  --white: #ffffff;
  --orange: #b84b2b;
  --soft-orange: #f1c7b8;
  --line: rgba(28, 33, 30, 0.14);
  --shadow: 0 24px 70px rgba(28, 33, 30, 0.11);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  overflow-x: clip;
}

a {
  color: inherit;
}

.skip-link {
  background: var(--white);
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -100px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  align-items: center;
  background: rgba(245, 241, 233, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  position: relative;
  z-index: 10;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.83;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark__sauna {
  color: var(--orange);
  font-size: 25px;
}

.wordmark__marketplace {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-top: 7px;
}

.header-cta {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.header-cta {
  background: var(--ink);
  color: var(--white);
  padding: 13px 19px;
  text-decoration: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange);
}

.marketplace-summary,
.lead-screen,
.choose,
.scheduler,
footer {
  margin-inline: auto;
  max-width: 1180px;
  width: calc(100% - 48px);
}

.marketplace-summary {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 82px 0;
}

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.marketplace-summary h1,
.choose h2,
.scheduler h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.marketplace-summary__copy {
  align-self: end;
}

.marketplace-summary__copy p,
.lede,
.scheduler__heading > p:last-child {
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.marketplace-summary__copy p.brand-list {
  font-size: 15px;
  line-height: 1.55;
  margin-top: 20px;
}

.booking-hero {
  align-items: end;
  background: var(--ink);
  display: grid;
  isolation: isolate;
  margin-inline: auto;
  max-width: 1440px;
  min-height: min(74vh, 760px);
  overflow: hidden;
  position: relative;
}

.booking-hero__image,
.booking-hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.booking-hero__image {
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}

.booking-hero__shade {
  background: linear-gradient(180deg, rgba(10, 13, 11, 0.06) 24%, rgba(10, 13, 11, 0.9) 100%);
  z-index: -1;
}

.booking-hero__content {
  color: var(--white);
  margin-inline: auto;
  max-width: 1180px;
  padding: 90px 0 70px;
  width: calc(100% - 48px);
}

.eyebrow--light {
  color: var(--soft-orange);
}

.booking-hero h2 {
  color: inherit;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.booking-hero__lede {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  margin: 30px 0 0;
  max-width: 720px;
}

.booking-hero__service-area {
  border-left: 3px solid var(--soft-orange);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 650px;
  padding-left: 14px;
}

.lead-screen {
  padding: 84px 0 72px;
  scroll-margin-top: 20px;
}

.lead-screen__intro {
  max-width: 860px;
}

.lead-screen h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.lead-screen__intro > p:last-child {
  font-size: 18px;
  line-height: 1.65;
  margin: 24px 0 0;
}

.project-screen,
.project-ready {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 36px;
  padding: 32px;
}

.project-screen {
  display: grid;
  gap: 28px 34px;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
}

.screen-field label,
.shopping-field legend {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.shopping-field {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.shopping-field legend span {
  color: #676b68;
  font-size: 13px;
  font-weight: 500;
}

.screen-field input,
.project-ready textarea {
  background: #fff;
  border: 1px solid rgba(28, 33, 30, 0.28);
  border-radius: 2px;
  color: var(--ink);
  font: inherit;
  padding: 14px;
  width: 100%;
}

.screen-field input:focus,
.project-ready textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(184, 75, 43, 0.16);
  outline: 0;
}

.screen-field input[aria-invalid="true"] {
  border-color: #a2291d;
}

.shopping-options {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shopping-options label {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
  min-height: 52px;
  padding: 12px 14px;
}

.shopping-options label:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(184, 75, 43, 0.14);
}

.shopping-options input {
  accent-color: var(--orange);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.design-link-field,
.screen-submit,
.screen-error--form {
  grid-column: 1 / -1;
}

.screen-hint,
.screen-error {
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 0;
}

.screen-hint {
  color: #5f635f;
}

.screen-hint a {
  color: var(--orange);
  font-weight: 800;
}

.screen-error {
  color: #9a251b;
  font-weight: 700;
  min-height: 1.5em;
}

.screen-submit,
.project-ready__actions button {
  appearance: none;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 15px 20px;
  text-transform: uppercase;
}

.screen-submit {
  justify-self: start;
}

.screen-submit:hover,
.screen-submit:focus-visible,
.project-ready__actions button:hover,
.project-ready__actions button:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
}

.project-ready {
  max-width: 860px;
}

.project-ready h3 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.035em;
  margin: 0;
}

.project-ready > p:not(.eyebrow):not(.screen-hint) {
  font-size: 16px;
  line-height: 1.6;
  margin: 14px 0 20px;
}

.project-ready textarea {
  line-height: 1.5;
  resize: vertical;
}

.project-ready__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.project-ready__actions .button-link {
  background: transparent;
  color: var(--ink);
}

.screening-active:not(.screening-complete) .booking-gated {
  display: none;
}

.choose {
  padding: 92px 0 74px;
}

.lede {
  margin-top: 25px;
  max-width: 800px;
}

blockquote {
  border: 0;
  margin: 48px 0 0;
  padding: 0;
}

blockquote p {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0;
}

blockquote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 15px;
  text-transform: uppercase;
}

.choices {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.choice {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  min-height: 225px;
  min-width: 0;
  padding: 30px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.choice:hover,
.choice:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 14px 34px rgba(28, 33, 30, 0.11);
  outline: 0;
  transform: translateY(-3px);
}

.choice.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(184, 75, 43, 0.2);
}

.choice__number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.choice h3 {
  font-size: 25px;
  margin: 46px 0 12px;
}

.choice p {
  line-height: 1.55;
  margin: 0;
}

.choice > strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 24px;
  text-transform: uppercase;
}

.choice--either {
  background: var(--ink);
  color: var(--white);
}

.choice--either h3 {
  color: var(--white);
}

.choice--either .choice__number {
  color: var(--soft-orange);
}

.scheduler {
  padding: 14px 0 94px;
  scroll-margin-top: 24px;
}

.scheduler__heading {
  margin-bottom: 35px;
}

.scheduler__heading > p:last-child {
  margin-top: 25px;
  max-width: 820px;
}

.frame-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.frame-loading {
  color: #666;
  font-size: 14px;
  inset: 36px auto auto 50%;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
}

.frame-wrap:not(.is-loading) .frame-loading {
  display: none;
}

.frame-wrap iframe {
  border: 0;
  display: block;
  height: 1480px;
  position: relative;
  width: 100%;
}

.fallback {
  font-size: 14px;
  margin: 18px 0 0;
  text-align: center;
}

.fallback a {
  color: var(--orange);
  font-weight: 800;
  text-underline-offset: 4px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 28px 0 36px;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-inline: 15px;
  }

  .header-cta {
    padding: 11px 14px;
  }

  .marketplace-summary,
  .lead-screen,
  .choose,
  .scheduler,
  footer {
    width: calc(100% - 30px);
  }

  .marketplace-summary {
    gap: 25px;
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .marketplace-summary h1,
  .lead-screen h2,
  .choose h2,
  .scheduler h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .booking-hero {
    min-height: 570px;
  }

  .booking-hero__image {
    object-position: 48% center;
  }

  .booking-hero__content {
    padding-bottom: 46px;
    width: calc(100% - 30px);
  }

  .booking-hero h2 {
    font-size: clamp(55px, 18vw, 76px);
  }

  .choose {
    padding: 62px 0 52px;
  }

  .lead-screen {
    padding: 58px 0 52px;
  }

  .project-screen,
  .project-ready {
    padding: 22px 18px;
  }

  .project-screen,
  .shopping-options {
    grid-template-columns: 1fr;
  }

  .screen-submit {
    justify-self: stretch;
  }

  .choices {
    grid-template-columns: 1fr;
  }

  .choice {
    min-height: 0;
  }

  .choice h3 {
    margin-top: 25px;
  }

  .scheduler {
    padding-bottom: 65px;
  }

  .frame-wrap {
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  .frame-wrap iframe {
    height: 1640px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  .choice {
    transition: none;
  }
}
