:root {
  --navy: #0b1f3a;
  --navy-light: #1a3558;
  --gold: #d4af6b;
  --gold-dark: #967440;
  --cream: #faf6ed;
  --sand: #f0e8d9;
  --muted: #6c7380;
  --line: #e3ded3;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", sans-serif;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--body);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button:disabled {
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 5px;
}
h1:focus,
main:focus {
  outline: none;
}
.icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
em {
  font-weight: 400;
}
.header {
  height: 118px;
  max-width: 1320px;
  margin: auto;
  padding: 0 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  position: relative;
  width: 126px;
  height: 112px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.brand img {
  position: absolute;
  width: 210px;
  max-width: none;
  left: -44px;
  top: -42px;
}
.header-label {
  font-size: 9px;
  letter-spacing: 2.6px;
  margin-left: 65px;
  color: #727581;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
}
.header-contact > span:last-child {
  font-size: 18px;
  margin-left: 6px;
}
.contact-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-dark);
  line-height: 1.8;
}
.small-line {
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}
.intro {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 35px 90px 78px 108px;
  position: relative;
}
.intro-copy {
  padding-top: 28px;
}
.intro h1 {
  font: 400 clamp(64px, 6.2vw, 88px)/0.99 var(--serif);
  letter-spacing: -2.5px;
  margin: 26px 0 26px;
  position: relative;
}
.intro h1 em {
  color: var(--gold-dark);
}
.title-flower {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 43%;
  right: 19%;
  color: var(--gold-dark);
}
.intro-description {
  font-size: 13px;
  line-height: 1.9;
  max-width: 350px;
  color: #67707b;
}
.button {
  min-height: 54px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  border-radius: 4px;
}
.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #0b1f3a12;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button-gold {
  background: var(--gold);
  color: var(--navy);
}
.button-gold:hover:not(:disabled) {
  background: #dfbd7c;
}
.button-navy {
  background: var(--navy);
  color: white;
}
.button-navy:hover:not(:disabled) {
  background: var(--navy-light);
}
.button:disabled {
  background: #e5e1d8;
  color: #8f9193;
  border-color: transparent;
  box-shadow: none;
}
.start-button {
  margin-top: 29px;
  min-width: 326px;
  justify-content: space-between;
}
.intro-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 17px;
  color: #737984;
  font-size: 10px;
}
.intro-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.intro-meta .icon {
  width: 14px;
  height: 14px;
}
.intro-meta i {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #b5afa2;
}
.intro-gift {
  margin-top: 35px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.intro-gift > .icon {
  width: 27px;
  height: 27px;
  color: var(--gold-dark);
}
.intro-gift p {
  font-size: 10px;
  color: #747985;
  line-height: 1.9;
}
.intro-gift strong {
  font-weight: 500;
  color: var(--navy);
}
.intro-visual {
  position: relative;
  min-width: 0;
  padding: 7px 0 0 9px;
  align-self: center;
}
.portrait-frame {
  height: 574px;
  position: relative;
  border-radius: 230px 230px 8px 8px;
  overflow: hidden;
  background: var(--sand);
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, #091a2a83);
}
.portrait-caption {
  position: absolute;
  bottom: 36px;
  left: 37px;
  color: white;
}
.portrait-caption > span {
  font-size: 8px;
  letter-spacing: 2.3px;
  color: #f4ddb5;
}
.portrait-caption p {
  font: 400 39px/1.06 var(--serif);
  margin-top: 13px;
}
.portrait-caption em {
  color: #efd6a6;
}
.orbit {
  position: absolute;
  border: 1px solid #cbaa6c55;
  pointer-events: none;
}
.orbit-one {
  inset: -9px -17px 17px -7px;
  border-radius: 250px 250px 10px 10px;
  transform: rotate(4deg);
}
.orbit-two {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  right: -38px;
  top: 32px;
}
.visual-seal {
  position: absolute;
  right: -29px;
  top: 40px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  transform: rotate(9deg);
  border: 5px solid var(--cream);
}
.visual-seal .icon {
  width: 26px;
  height: 26px;
}
.visual-seal span {
  max-width: 94px;
  font-size: 6px;
  letter-spacing: 0.8px;
  text-align: center;
  line-height: 1.8;
}
.floating-note {
  position: absolute;
  left: -45px;
  bottom: 152px;
  background: var(--cream);
  padding: 18px 21px 18px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 0 8px 28px #0b1f3a0e;
}
.note-icon {
  height: 37px;
  width: 37px;
  border: 1px solid #d8c095;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
}
.note-icon .icon {
  width: 19px;
}
.floating-note > div {
  font: 500 20px var(--serif);
}
.floating-note small {
  display: block;
  font: 400 8px var(--body);
  margin-top: 6px;
  color: #777d82;
}
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 29px 40px;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 0 67px;
  min-height: 45px;
}
.trust-strip > div + div {
  border-left: 1px solid #ffffff1c;
}
.trust-strip .icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.trust-strip span {
  font-size: 10px;
  line-height: 1.9;
  font-weight: 400;
  color: #e0e2e6;
}
.trust-strip strong {
  font-weight: 500;
  color: white;
}
.intro-bottom {
  padding: 28px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 1.8px;
  color: #747985;
}
.intro-bottom b {
  font-size: 12px;
  font-weight: 400;
  color: var(--gold-dark);
}
.footer {
  max-width: 1320px;
  padding: 27px 58px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: #717783;
  font-size: 9px;
}
.footer a:hover,
.text-button:hover {
  text-decoration: underline;
}
.text-button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.page-enter {
  animation: enter 0.6s ease both;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 20;
  padding: 14px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus {
  top: 16px;
}
.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;
}
/* The guided experience */
body:not([data-screen="intro"]) .header {
  border-bottom: 1px solid var(--line);
}
.quiz-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 50px 50px;
  min-height: calc(100svh - 190px);
}
.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.back-button {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  padding: 6px 0;
  font-size: 11px;
  color: #737985;
}
.back-button .icon {
  width: 16px;
  height: 16px;
}
.progress-header > span:nth-child(2) {
  font-size: 8px;
  letter-spacing: 2px;
  color: #737985;
}
.step-count {
  font-size: 12px;
}
.step-count > span {
  color: #9297a0;
}
.progress-track {
  height: 3px;
  background: #e6e0d6;
  border-radius: 2px;
  overflow: hidden;
}
.progress-track > div {
  height: 100%;
  background: var(--gold-dark);
  transition: width 0.4s;
}
.quiz-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: 65px;
  margin-top: 38px;
}
.question-content {
  padding: 3px 0;
}
.question-title {
  font: 500 45px/1.08 var(--serif);
  letter-spacing: -0.8px;
  margin-top: 16px;
  max-width: 490px;
}
.question-description {
  font-size: 11px;
  line-height: 1.8;
  color: #757b84;
  margin-top: 15px;
  max-width: 425px;
}
.options {
  display: grid;
  gap: 10px;
  margin-top: 27px;
}
.option {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
  width: 100%;
  padding: 16px 17px;
  background: #fff9;
  border: 1px solid var(--line);
  border-radius: 5px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  min-height: 77px;
}
.option:hover {
  border-color: #c8ae7c;
  background: white;
  transform: translateX(2px);
}
.option.selected {
  background: #f1e8d7;
  border-color: #b58f4d;
  box-shadow: inset 0 0 0 1px #b58f4d;
}
.option-icon {
  color: var(--gold-dark);
  display: flex;
}
.option-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.option-copy strong {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}
.option-copy > span {
  font-size: 10px;
  font-weight: 400;
  color: #737985;
  line-height: 1.5;
}
.radio-mark {
  width: 18px;
  height: 18px;
  border: 1px solid #cdc9c0;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.selected .radio-mark {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.radio-mark .icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}
.question-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 23px;
}
.question-actions > span {
  font-size: 8px;
  color: #7c8189;
  display: flex;
  align-items: center;
  gap: 6px;
}
.question-actions > span .icon {
  width: 12px;
  height: 12px;
}
.question-actions .button {
  min-height: 46px;
  padding: 12px 21px;
  font-size: 10px;
  gap: 18px;
}
.quiz-visual {
  position: relative;
  overflow: hidden;
  border-radius: 180px 180px 6px 6px;
  min-height: 565px;
  max-height: 660px;
}
.quiz-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  position: absolute;
}
.quiz-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 38%, #0b1f3abb 100%);
}
.quiz-visual-copy {
  position: absolute;
  bottom: 43px;
  left: 30px;
  right: 25px;
  color: white;
}
.quiz-visual-copy .eyebrow {
  color: #e0c48f;
  font-size: 8px;
}
.quiz-visual-copy > p {
  font: 400 36px/1.1 var(--serif);
  margin-top: 14px;
}
.quiz-visual-copy em {
  color: #e4c89a;
}
.visual-footnote {
  display: block;
  font-size: 8px;
  line-height: 1.6;
  margin-top: 17px;
  color: #e0e0de;
}
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 68px;
  margin-top: 48px;
  align-items: center;
}
.insight-image {
  height: 500px;
  border-radius: 200px 200px 6px 6px;
  overflow: hidden;
  position: relative;
}
.insight-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.insight-copy h1 {
  font: 400 51px/1.06 var(--serif);
  letter-spacing: -0.8px;
}
.large-sparkle {
  width: 35px;
  height: 35px;
  color: var(--gold-dark);
  margin: 20px 0;
}
.insight-copy > p {
  font-size: 12px;
  line-height: 1.9;
  color: #6d7480;
  margin-top: 23px;
}
.treatment-pill {
  padding: 15px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
  margin-top: 9px;
}
.treatment-pill .icon {
  color: var(--gold-dark);
  width: 21px;
}
.clinical-note {
  font-size: 9px !important;
  line-height: 1.8 !important;
  color: #6f7580 !important;
}
.insight-copy .button {
  margin-top: 24px;
  font-size: 11px;
}
.remaining-note {
  display: block;
  font-size: 9px;
  color: #747985;
  margin-top: 13px;
}
/* A real gift, made with CSS and opened on interaction */
.gift-screen {
  background: var(--navy);
  color: var(--cream);
  min-height: calc(100svh - 190px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 55px 24px 45px;
  overflow: hidden;
  position: relative;
}
.gift-screen > .eyebrow {
  color: var(--gold);
  font-size: 9px;
}
.gift-screen h1 {
  font: 400 58px/1.05 var(--serif);
  margin: 22px 0;
}
.gift-screen h1 em {
  color: var(--gold);
}
.gift-screen > p {
  font-size: 12px;
  line-height: 1.9;
  color: #bec6d1;
}
.gift-stage {
  position: relative;
  width: 280px;
  height: 245px;
  display: grid;
  place-items: center;
}
.gift-halo {
  position: absolute;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: radial-gradient(circle, #d4af6b19, transparent 65%);
  border: 1px solid #d4af6b13;
}
.gift-halo:after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid #d4af6b20;
  border-radius: 50%;
}
.gift-box {
  width: 113px;
  height: 105px;
  position: relative;
  transform: rotate(-7deg);
  animation: bob 3s ease-in-out infinite;
}
.gift-body {
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 105px;
  height: 88px;
  background: linear-gradient(100deg, #b48a49, #e4c893 70%, #bd995c);
  border-radius: 0 0 5px 5px;
  box-shadow: 10px 15px 25px #0004;
  overflow: hidden;
}
.gift-body > span {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font: italic 27px var(--serif);
  color: #806132;
}
.gift-ribbon {
  height: 100%;
  width: 20px;
  position: absolute;
  left: 42px;
  background: #f0dcb4;
  box-shadow: 2px 0 4px #82652b33;
}
.gift-lid {
  position: absolute;
  top: 9px;
  width: 113px;
  height: 23px;
  background: linear-gradient(100deg, #c39a59, #ead2a3);
  z-index: 3;
  border-radius: 3px;
  box-shadow: 0 3px 2px #75551f33;
  transform-origin: 0 50%;
}
.gift-lid:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 23px;
  left: 46px;
  background: #f0dcb4;
}
.bow {
  position: absolute;
  bottom: 23px;
  width: 36px;
  height: 24px;
  border: 6px solid #ebd3a3;
  border-radius: 50% 50% 0 50%;
  left: 22px;
  transform: rotate(15deg);
}
.bow-right {
  left: 54px;
  transform: rotate(-15deg);
  border-radius: 50% 50% 50% 0;
}
.gift-star {
  position: absolute;
  color: var(--gold);
}
.star-one {
  left: 45px;
  top: 40px;
  font-size: 23px;
}
.star-two {
  right: 32px;
  top: 83px;
  font-size: 30px;
}
.star-three {
  left: 44px;
  bottom: 40px;
  font-size: 12px;
}
.gift-screen > .button {
  min-width: 266px;
}
.gift-bottom-note {
  font-size: 9px;
  color: #aeb9c8;
  margin-top: 18px;
}
.confetti {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  background: var(--gold);
  opacity: 0;
}
.confetti:nth-of-type(3n) {
  background: #fbf1dd;
  border-radius: 50%;
}
.is-opening .gift-lid {
  animation: open-lid 1.3s ease forwards;
}
.is-opening .gift-box {
  animation: none;
}
.is-opening .gift-halo {
  animation: glow 1.4s ease forwards;
}
.is-opening .confetti {
  animation: confetti 1.4s ease-out forwards;
  animation-delay: calc(var(--i) * 12ms);
}
@keyframes bob {
  50% {
    transform: translateY(-9px) rotate(-3deg);
  }
}
@keyframes open-lid {
  40% {
    transform: translate(-12px, -60px) rotate(-23deg);
  }
  100% {
    transform: translate(-25px, -85px) rotate(-35deg);
    opacity: 0;
  }
}
@keyframes glow {
  70% {
    transform: scale(1.6);
    background: #d4af6b22;
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
@keyframes confetti {
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) rotate(var(--rotate));
  }
}
/* The personalized invitation */
.result-shell {
  max-width: 1130px;
  margin: auto;
  padding: 42px 55px 40px;
}
.result-heading {
  text-align: center;
  margin-bottom: 35px;
}
.unlocked-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #826738;
}
.unlocked-label .icon {
  width: 18px;
  height: 18px;
  padding: 3px;
  background: #e9e2d2;
  border-radius: 50%;
}
.result-heading h1 {
  font: 400 56px/1.04 var(--serif);
  margin: 16px 0;
}
.result-heading h1 em {
  color: var(--gold-dark);
}
.result-heading > p {
  font-size: 11px;
  color: #737985;
}
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 29px;
  align-items: start;
}
.result-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.result-card .eyebrow {
  font-size: 8px;
  letter-spacing: 1.6px;
}
.result-card h2 {
  font: 500 35px/1.08 var(--serif);
  margin: 13px 0 23px;
}
.result-photo {
  height: 190px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.result-treatment {
  margin-top: 24px;
}
.result-treatment > span {
  font-size: 7px;
  letter-spacing: 1.3px;
  color: var(--gold-dark);
}
.result-treatment h3 {
  font: 500 27px var(--serif);
  margin-top: 8px;
}
.result-treatment p {
  font-size: 11px;
  line-height: 1.9;
  color: #6e7681;
  margin-top: 10px;
}
.result-card > .clinical-note {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 14px;
}
.offer-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 7px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.offer-topline {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--gold);
  display: flex;
  gap: 10px;
  align-items: center;
}
.offer-topline .icon {
  width: 22px;
  height: 22px;
}
.offer-card h2 {
  font: 400 39px/1.1 var(--serif);
  margin-top: 20px;
  color: #e5c58b;
}
.offer-card > p {
  font-size: 11px;
  line-height: 1.9;
  color: #c0c9d4;
  margin-top: 16px;
}
.offer-benefits {
  padding: 0;
  list-style: none;
  margin: 20px 0 0;
  display: grid;
  gap: 11px;
}
.offer-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #e1e5eb;
  line-height: 1.7;
}
.offer-benefits .icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
}
.offer-divider {
  height: 1px;
  background: #ffffff20;
  margin: 24px 0;
}
.name-label {
  font-size: 10px;
  display: block;
  margin-bottom: 9px;
}
.name-label > span {
  color: #a8b5c6;
}
:is(#first-name, #lead-phone) {
  border: 1px solid #ffffff35;
  border-radius: 4px;
  background: #ffffff08;
  width: 100%;
  height: 45px;
  padding: 12px;
  color: white;
  font-size: 12px;
}
:is(#first-name, #lead-phone)::placeholder {
  color: #aab4c3;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 17px 0 20px;
  font-size: 9px;
  line-height: 1.8;
  color: #c3ccd8;
}
.consent-label > input {
  appearance: auto;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 3px 0;
}
.inline-link {
  background: none;
  border: 0;
  padding: 0;
  color: #e7c68a;
  text-decoration: underline;
  font-size: inherit;
}
.booking-button {
  width: 100%;
  font-size: 10px;
  gap: 10px;
  padding: 15px 12px;
}
.booking-button .icon {
  width: 18px;
}
.booking-button .icon:last-child {
  width: 16px;
  margin-left: auto;
}
.booking-note {
  display: block;
  font-size: 8px;
  text-align: center;
  line-height: 1.8;
  color: #acb8c8;
  margin-top: 12px;
}
.clinic-address {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  font-size: 9px;
  line-height: 1.9;
}
.clinic-address > .icon {
  color: var(--gold);
  width: 18px;
}
.clinic-address strong {
  display: block;
  font-size: 10px;
  font-weight: 500;
}
.clinic-address > span {
  color: #c0c9d5;
}
.map-link {
  display: block;
  color: #e1c18a;
  margin-top: 6px;
}
.offer-card .offer-terms {
  font-size: 8px;
  color: #aab7c9;
  margin-top: 20px;
  line-height: 1.8;
}
.restart-button {
  display: flex;
  margin: 28px auto 0;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #747c86;
}
.restart-button .icon {
  width: 15px;
}
.result-shell ~ .footer {
  border-top: 1px solid var(--line);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--navy);
  max-width: 570px;
  width: calc(100% - 32px);
  padding: 40px;
  box-shadow: 0 24px 80px #0003;
}
dialog::backdrop {
  background: #07192cb0;
  backdrop-filter: blur(5px);
}
dialog h2 {
  font: 400 37px/1.1 var(--serif);
  margin: 16px 0 22px;
}
dialog p {
  font-size: 12px;
  line-height: 1.8;
  color: #647080;
  margin-top: 14px;
}
dialog p a {
  text-decoration: underline;
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 7px;
  border: 0;
  background: none;
  font-size: 30px;
  padding: 5px 10px;
}
.noscript {
  padding: 30px;
  text-align: center;
}
.noscript a {
  text-decoration: underline;
}
@media (min-width: 1450px) {
  .intro {
    padding-top: 55px;
    padding-bottom: 90px;
  }
  .portrait-frame {
    height: 610px;
  }
  .intro-copy {
    padding-top: 5px;
  }
  .intro h1 {
    font-size: 93px;
  }
  .intro-description {
    font-size: 14px;
  }
  .start-button {
    margin-top: 35px;
  }
  .intro-gift {
    margin-top: 40px;
  }
}
@media (max-width: 1100px) {
  .header {
    padding: 0 35px;
  }
  .header-label {
    margin-left: 0;
    font-size: 8px;
  }
  .intro {
    padding: 25px 55px 65px;
    gap: 40px;
  }
  .intro h1 {
    font-size: 73px;
  }
  .portrait-frame {
    height: 550px;
  }
  .title-flower {
    right: 10%;
  }
  .trust-strip > div {
    padding: 0 40px;
  }
  .quiz-grid {
    gap: 35px;
  }
  .quiz-shell {
    padding-left: 35px;
    padding-right: 35px;
  }
  .question-title {
    font-size: 41px;
  }
  .quiz-visual {
    min-height: 555px;
  }
  .question-actions {
    flex-wrap: wrap;
  }
  .insight-grid {
    gap: 40px;
  }
  .insight-copy h1 {
    font-size: 44px;
  }
  .result-shell {
    padding-left: 35px;
    padding-right: 35px;
  }
  .offer-card {
    padding: 25px;
  }
  .result-card {
    padding: 24px;
  }
}
@media (max-width: 760px) {
  .header {
    height: 93px;
    padding: 0 24px;
  }
  .brand {
    transform: scale(0.83);
    transform-origin: left center;
    width: 111px;
  }
  .header-label {
    display: none;
  }
  .header-contact {
    font-size: 10px;
    gap: 7px;
  }
  .header-contact > span:last-child {
    margin-left: 1px;
  }
  .intro {
    padding: 24px 27px 41px;
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 520px;
  }
  .intro-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.9px;
  }
  .intro h1 {
    font-size: clamp(62px, 13vw, 82px);
    line-height: 0.99;
    margin-top: 23px;
    margin-bottom: 23px;
    letter-spacing: -1.6px;
  }
  .intro h1 br:nth-of-type(1) {
    display: initial;
  }
  .title-flower {
    width: 27px;
    height: 27px;
    top: 48%;
    right: 8%;
  }
  .intro-description {
    font-size: 12px;
    max-width: 350px;
  }
  .start-button {
    width: 100%;
    min-width: 0;
    margin-top: 25px;
    min-height: 55px;
    font-size: 11px;
  }
  .intro-meta {
    justify-content: center;
    margin-top: 14px;
    font-size: 9px;
  }
  .intro-gift {
    margin-top: 23px;
    justify-content: center;
  }
  .intro-gift p {
    font-size: 9px;
  }
  .intro-gift > .icon {
    width: 24px;
  }
  .intro-visual {
    margin: 0 15px 0 9px;
    padding: 0;
  }
  .portrait-frame {
    height: 430px;
    border-radius: 190px 190px 5px 5px;
  }
  .hero-portrait {
    object-position: 50% 31%;
  }
  .visual-seal {
    width: 90px;
    height: 90px;
    right: -27px;
    top: 35px;
  }
  .visual-seal span {
    font-size: 6px;
  }
  .visual-seal .icon {
    width: 21px;
    height: 21px;
  }
  .orbit-two {
    width: 90px;
    height: 90px;
    right: -28px;
  }
  .orbit-one {
    inset: -7px -12px 10px -5px;
  }
  .floating-note {
    left: -21px;
    bottom: 130px;
    padding: 13px 15px 13px 11px;
    gap: 10px;
  }
  .floating-note > div {
    font-size: 18px;
  }
  .floating-note small {
    font-size: 7px;
  }
  .note-icon {
    width: 32px;
    height: 32px;
  }
  .portrait-caption {
    left: 26px;
    bottom: 24px;
  }
  .portrait-caption p {
    font-size: 33px;
    margin-top: 8px;
  }
  .portrait-caption > span {
    font-size: 7px;
  }
  .trust-strip {
    padding: 24px 22px;
    gap: 23px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .trust-strip > div {
    padding: 0;
    flex: 1 1 125px;
    gap: 12px;
    min-height: 40px;
  }
  .trust-strip > div + div {
    border: 0;
  }
  .trust-strip > div:last-child {
    flex-basis: 100%;
    border-top: 1px solid #ffffff1c;
    padding-top: 20px;
  }
  .trust-strip span {
    font-size: 9px;
  }
  .trust-strip .icon {
    width: 23px;
    height: 23px;
  }
  .intro-bottom {
    gap: 15px 20px;
    flex-wrap: wrap;
    font-size: 6px;
    letter-spacing: 1.3px;
    padding: 24px 20px;
  }
  .intro-bottom b {
    font-size: 8px;
  }
  .intro-bottom b:nth-of-type(2) {
    display: none;
  }
  .footer {
    padding: 25px 22px;
    flex-wrap: wrap;
    font-size: 8px;
    gap: 15px;
    justify-content: center;
    text-align: center;
  }
  .footer > span {
    width: 100%;
  }
  .quiz-shell {
    padding: 22px 22px 35px;
    min-height: calc(100svh - 205px);
  }
  .progress-header > span:nth-child(2) {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .progress-header {
    margin-bottom: 12px;
  }
  .back-button {
    font-size: 10px;
  }
  .step-count {
    font-size: 10px;
  }
  .quiz-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 29px;
  }
  .question-title {
    font-size: 37px;
    max-width: 430px;
    line-height: 1.09;
    margin-top: 12px;
  }
  .question-description {
    font-size: 11px;
    margin-top: 12px;
  }
  .options {
    margin-top: 23px;
    gap: 9px;
  }
  .option {
    padding: 15px 13px;
    gap: 12px;
    min-height: 77px;
  }
  .option-copy strong {
    font-size: 11px;
  }
  .option-copy > span {
    font-size: 9px;
  }
  .option-icon .icon {
    width: 22px;
    height: 22px;
  }
  .question-actions {
    margin-top: 22px;
    gap: 13px;
  }
  .question-actions .button {
    font-size: 11px;
    min-height: 48px;
  }
  .question-actions > span {
    font-size: 8px;
  }
  .quiz-visual {
    min-height: 190px;
    height: 190px;
    border-radius: 5px;
    max-height: 190px;
  }
  .quiz-visual > img {
    object-position: 50% 34%;
  }
  .quiz-visual-shade {
    background: linear-gradient(90deg, #0b1f3ae0, transparent);
  }
  .quiz-visual-copy {
    bottom: 25px;
    left: 24px;
    right: 20px;
  }
  .quiz-visual-copy > p {
    font-size: 28px;
    line-height: 1.03;
    margin-top: 10px;
  }
  .quiz-visual-copy > p br:nth-child(2) {
    display: initial;
  }
  .visual-footnote {
    font-size: 7px;
    margin-top: 12px;
    max-width: 180px;
  }
  .quiz-visual-copy .eyebrow {
    font-size: 7px;
  }
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 28px;
  }
  .insight-image {
    height: 250px;
    border-radius: 130px 130px 5px 5px;
    margin: 0 32px;
    grid-row: 2;
  }
  .insight-image img {
    object-position: 50% 32%;
  }
  .insight-copy h1 {
    font-size: 41px;
    max-width: 390px;
  }
  .large-sparkle {
    width: 28px;
    height: 28px;
    margin: 16px 0;
  }
  .insight-copy > p {
    font-size: 11px;
    margin-top: 15px;
  }
  .insight-copy .button {
    width: 100%;
  }
  .remaining-note {
    text-align: center;
  }
  .gift-screen {
    padding: 42px 23px 40px;
    min-height: calc(100svh - 205px);
  }
  .gift-screen > .eyebrow {
    font-size: 7px;
    letter-spacing: 1.4px;
  }
  .gift-screen h1 {
    font-size: 43px;
    margin: 22px 0 18px;
  }
  .gift-screen > p {
    font-size: 11px;
  }
  .gift-stage {
    height: 230px;
  }
  .gift-screen > .button {
    font-size: 11px;
  }
  .gift-bottom-note {
    font-size: 8px;
  }
  .result-shell {
    padding: 31px 21px;
  }
  .result-heading h1 {
    font-size: 43px;
  }
  .result-heading > p {
    font-size: 10px;
  }
  .unlocked-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .result-heading {
    margin-bottom: 27px;
  }
  .result-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .result-card {
    padding: 24px;
  }
  .result-card h2 {
    font-size: 33px;
  }
  .result-photo {
    height: 180px;
  }
  .offer-card {
    padding: 27px 24px;
  }
  .offer-card h2 {
    font-size: 38px;
  }
  .booking-button {
    font-size: 10px;
  }
  .offer-benefits li {
    font-size: 10px;
  }
  dialog {
    padding: 34px 25px;
  }
  dialog h2 {
    font-size: 33px;
  }
  dialog p {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .header {
    padding: 0 16px;
  }
  .intro {
    padding-left: 22px;
    padding-right: 22px;
  }
  .intro h1 {
    font-size: 60px;
  }
  .title-flower {
    right: 3%;
  }
  .question-actions > span {
    width: 100%;
  }
  .question-actions .button {
    width: 100%;
  }
  .gift-screen h1 {
    font-size: 38px;
  }
  .progress-header > span:nth-child(2) {
    letter-spacing: 0.5px;
  }
  .booking-button {
    font-size: 9px;
    gap: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .page-enter {
    animation: none;
  }
  .gift-box {
    animation: none;
  }
}

/* Comfortable reading sizes for the questions and invitation. */
.option-copy strong {
  font-size: 13px;
}
.option-copy > span {
  font-size: 11px;
}
.question-description {
  font-size: 12px;
}
.result-treatment p,
.offer-card > p {
  font-size: 12px;
}
.offer-benefits li {
  font-size: 11px;
}
.consent-label {
  font-size: 10px;
}
@media (max-width: 760px) {
  .intro h1 {
    font-size: clamp(56px, 15.5vw, 76px);
  }
  .title-flower {
    right: 4%;
    top: 43%;
  }
  .intro-description {
    font-size: 13px;
  }
  .option-copy strong {
    font-size: 12px;
  }
  .option-copy > span {
    font-size: 11px;
  }
  .question-description {
    font-size: 12px;
  }
  .result-treatment p,
  .offer-card > p {
    font-size: 13px;
  }
  .offer-benefits li {
    font-size: 12px;
  }
  .consent-label {
    font-size: 11px;
  }
  .name-label {
    font-size: 12px;
  }
  :is(#first-name, #lead-phone) {
    font-size: 16px;
  }
  .booking-button {
    font-size: 11px;
  }
  .clinical-note {
    font-size: 10px !important;
  }
  .quiz-visual-copy > p {
    font-size: 26px;
  }
  .quiz-visual-copy {
    bottom: 22px;
  }
  .visual-footnote {
    max-width: 160px;
  }
}
@media (max-width: 360px) {
  .booking-button {
    font-size: 10px;
  }
  .offer-card {
    padding: 25px 20px;
  }
  .title-flower {
    width: 20px;
    height: 20px;
    right: 1%;
  }
}

/* Lead registration and delivery feedback. */
#lead-fields {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.phone-label {
  margin-top: 17px;
}
.field-help {
  display: block;
  font-size: 10px;
  line-height: 1.7;
  color: #bcc7d5;
  margin-top: 7px;
}
.lead-status {
  font-size: 12px;
  line-height: 1.7;
  color: #e5c58b;
  margin-top: 12px;
}
.lead-status:empty {
  display: none;
}
.lead-error {
  font-size: 12px;
  line-height: 1.7;
  color: #ffd4bd;
  margin-top: 12px;
}
.booking-fallback {
  display: block;
  text-align: center;
  font-size: 11px;
  line-height: 1.8;
  color: #e5c58b;
  margin-top: 17px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lead-success {
  padding: 8px 0 22px;
}
.lead-success > .icon {
  color: #e5c58b;
  vertical-align: middle;
  margin-right: 9px;
}
.lead-success strong {
  font-size: 14px;
  font-weight: 600;
}
.lead-success p {
  font-size: 12px;
  line-height: 1.8;
  color: #c0c9d4;
  margin-top: 12px;
}

/* Visual answer cards: a single tap chooses and advances. */
.visual-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.visual-option {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 185px;
  padding: 20px;
  gap: 15px;
  background: #fffaf2;
  border-radius: 12px;
  overflow: hidden;
}
.visual-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px #0b1f3a09;
}
.visual-option .option-copy {
  gap: 7px;
}
.visual-option .option-copy strong {
  font-size: 13px;
  line-height: 1.5;
}
.visual-option .option-copy > span {
  font-size: 11px;
  line-height: 1.6;
}
.visual-option .radio-mark {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 23px;
  height: 23px;
  border: 0;
  color: #8a7759;
}
.visual-option .radio-mark .icon {
  width: 15px;
  height: 15px;
}
.visual-option.selected {
  background: #f2e6ce;
}
.visual-option.selected .radio-mark {
  background: var(--navy);
  color: var(--gold);
}
.visual-option[aria-disabled="true"] {
  cursor: default;
}
.option-art {
  display: grid;
  place-items: center;
  position: relative;
  width: 78px;
  height: 67px;
  border-radius: 26px 26px 24px 8px;
  background: #e9dfca;
  color: #8a693b;
}
.option-art > .icon {
  width: 39px;
  height: 39px;
  stroke-width: 1.15;
}
.art-1 {
  background: #e2e9e9;
  color: #375c66;
  border-radius: 50%;
}
.art-2 {
  background: #f0dfd3;
  color: #9b694b;
  border-radius: 25px 9px 25px 25px;
}
.art-3 {
  background: #e4e6d8;
  color: #6b774e;
  border-radius: 50% 50% 10px 10px;
}
.art-spark {
  position: absolute;
  right: -4px;
  top: 5px;
  font-size: 13px;
  color: var(--gold-dark);
}
.options-concern .visual-option:last-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  min-height: 98px;
}
.options-concern .visual-option:last-child .option-art {
  flex-shrink: 0;
  width: 60px;
  height: 56px;
}
.options-concern .visual-option:last-child .option-copy {
  padding-right: 14px;
}
.options-timing .visual-option:last-child {
  grid-column: 1 / -1;
}
.options-availability .visual-option {
  min-height: 226px;
}
.options-availability .option-art {
  width: 100px;
  height: 88px;
}
.options-availability .option-art > .icon {
  width: 50px;
  height: 50px;
}
.options-availability .option-copy strong {
  font-family: var(--serif);
  font-size: 29px;
}
.auto-advance-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #747b83;
  line-height: 1.7;
  margin-top: 20px;
}
.auto-advance-hint .icon {
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
}
@media (max-width: 760px) {
  .visual-options {
    gap: 10px;
  }
  .visual-option {
    min-height: 185px;
    padding: 15px 13px;
    gap: 12px;
  }
  .option-art {
    width: 64px;
    height: 57px;
  }
  .option-art > .icon {
    width: 34px;
    height: 34px;
  }
  .visual-option .option-copy strong {
    font-size: 12px;
  }
  .visual-option .option-copy > span {
    font-size: 10px;
  }
  .visual-option .radio-mark {
    top: 13px;
    right: 9px;
  }
  .options-availability .visual-option {
    min-height: 215px;
  }
  .options-availability .option-art {
    width: 80px;
    height: 75px;
  }
  .options-availability .option-art > .icon {
    width: 43px;
    height: 43px;
  }
}

.quiz-grid.page-enter {
  animation-duration: 220ms;
}
