:root {
  --cream: #f7f2ee;
  --paper: #fffdfb;
  --blush: #eadbd7;
  --rose: #bd356d;
  --plum: #2d1623;
  --muted: #796a70;
  --line: rgba(45, 22, 35, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--plum);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  background: var(--plum);
  color: white;
  overflow: hidden;
}

.hero-photo {
  position: relative;
  min-height: 620px;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(45, 22, 35, 0.9) 100%),
    linear-gradient(0deg, rgba(45, 22, 35, 0.7), transparent 50%);
}

.hero-signature {
  position: absolute;
  left: clamp(24px, 5vw, 70px);
  bottom: clamp(28px, 6vw, 70px);
  display: grid;
  gap: 4px;
}

.hero-signature span {
  font-size: 11px;
  letter-spacing: 0.32em;
}

.hero-signature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 110px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.kicker {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .kicker {
  color: #efb0c9;
}

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 em {
  display: block;
  margin-top: 14px;
  color: #f0bed1;
  font-weight: 400;
}

.hero-copy > p:not(.kicker) {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.start-link {
  align-self: flex-start;
  margin-top: 38px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.start-link span {
  margin-left: 12px;
}

.chooser {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 130px) 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.direct-contact h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 63px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.direct-contact > p:not(.kicker) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.door-list {
  display: grid;
  gap: 14px;
}

.door {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 18px;
  align-items: center;
  padding: clamp(23px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--plum);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.door:hover,
.door:focus-visible {
  border-color: rgba(189, 53, 109, 0.55);
  outline: none;
  transform: translateY(-2px);
}

.door.active {
  border-color: var(--plum);
  background: var(--plum);
  color: white;
}

.door-copy {
  display: grid;
}

.door-copy small {
  margin-bottom: 7px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.door.active .door-copy small {
  color: #efb0c9;
}

.door-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 3.2vw, 30px);
  font-weight: 500;
  line-height: 1.22;
}

.door-copy > span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.door.active .door-copy > span {
  color: rgba(255, 255, 255, 0.68);
}

.door-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 19px;
}

.answer {
  margin: 0 10px;
  padding: 28px 28px 32px;
  background: var(--blush);
  animation: reveal 220ms ease both;
}

.body-flow {
  padding: clamp(24px, 5vw, 42px);
  background: #eee4df;
}

.flow-heading {
  max-width: 650px;
  margin-bottom: 22px;
}

.flow-eyebrow {
  margin: 0 0 7px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.flow-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.flow-heading > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.body-flow textarea {
  width: 100%;
  min-height: 118px;
  padding: 17px 18px;
  border: 1px solid rgba(45, 22, 35, 0.12);
  border-radius: 2px;
  outline: none;
  background: var(--paper);
  color: var(--plum);
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  resize: vertical;
}

.body-flow textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(189, 53, 109, 0.09);
}

.body-flow textarea::placeholder {
  color: #9b8e93;
}

.need-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 15px;
}

.need-grid button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(45, 22, 35, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.need-grid button:hover,
.need-grid button:focus-visible {
  border-color: var(--rose);
  outline: none;
}

.need-grid button.selected {
  border-color: var(--plum);
  background: var(--plum);
  color: white;
}

.reveal-button {
  width: 100%;
  margin-top: 17px;
  min-height: 56px;
  padding: 17px 22px;
  border: 0;
  border-radius: 2px;
  background: var(--rose);
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background 150ms ease, transform 150ms ease;
}

.reveal-button:hover:not(:disabled),
.reveal-button:focus-visible:not(:disabled) {
  background: var(--plum);
  outline: none;
  transform: translateY(-1px);
}

.reveal-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.recommendation-results {
  margin-top: 28px;
  scroll-margin-top: 20px;
  animation: reveal 220ms ease both;
}

.discount-banner {
  padding: 26px;
  background: var(--plum);
  color: white;
  text-align: center;
}

.discount-banner > span {
  display: block;
  color: #efb0c9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.discount-banner > strong {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.08em;
}

.discount-banner > p {
  max-width: 560px;
  margin: 9px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.discount-banner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 17px;
}

.discount-banner a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 11px 19px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.discount-banner a:first-child {
  border-color: white;
  background: white;
  color: var(--plum);
}

.wish-echo {
  margin: 18px 3px 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.recommendation-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(45, 22, 35, 0.1);
  background: var(--paper);
}

.recommendation-card > p {
  margin: 0;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.recommendation-card h4 {
  margin: 9px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.recommendation-card > span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.recommendation-card > a {
  margin-top: auto;
  padding-top: 19px;
  color: var(--rose);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.health-note {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.guided-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guided-divider::before,
.guided-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(45, 22, 35, 0.16);
}

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

.guided-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(45, 22, 35, 0.14);
  background: rgba(255, 253, 251, 0.55);
  color: var(--plum);
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.guided-grid a:hover,
.guided-grid a:focus-visible {
  background: var(--paper);
  outline: none;
  transform: translateY(-2px);
}

.guided-grid small {
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guided-grid strong {
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
}

.guided-grid span {
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.simple-answer {
  padding-top: 28px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.answer-intro {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
}

.route-grid {
  display: grid;
  gap: 10px;
}

.route-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 19px 20px;
  border: 1px solid rgba(45, 22, 35, 0.1);
  background: var(--paper);
  color: var(--plum);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: var(--rose);
  outline: none;
  transform: translateX(3px);
}

.route-card > span {
  display: grid;
  gap: 5px;
}

.route-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
}

.route-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.route-card b {
  flex: 0 0 auto;
  color: var(--rose);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.personal-note {
  position: relative;
  padding: clamp(82px, 12vw, 150px) 24px;
  overflow: hidden;
  background: var(--plum);
  color: white;
  text-align: center;
}

.note-mark {
  position: absolute;
  top: -28px;
  left: 50%;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 280px;
  line-height: 1;
  transform: translateX(-50%);
}

.personal-note blockquote {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  color: #fff8f4;
  font-size: clamp(29px, 4.8vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.personal-note p {
  margin: 30px 0 0;
  color: #efb0c9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
}

.direct-contact {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 11vw, 140px) 0;
  text-align: center;
}

.direct-contact a {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--rose);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  background: var(--plum);
  outline: none;
  transform: translateY(-2px);
}

footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 40px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

footer > span {
  color: var(--muted);
  font-size: 12px;
}

footer nav {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

footer a {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 58svh;
    order: 1;
  }

  .hero-copy {
    min-height: 48svh;
    order: 2;
    padding: 45px 26px 54px;
  }

  .photo-shade {
    background: linear-gradient(0deg, rgba(45, 22, 35, 0.82), transparent 58%);
  }

  .hero-signature {
    left: 24px;
    bottom: 24px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .chooser {
    width: min(100% - 28px, 660px);
  }

  .door {
    grid-template-columns: 1fr 34px;
    gap: 10px;
    padding: 22px 16px;
  }

  .door-arrow {
    width: 32px;
    height: 32px;
  }

  .door-copy small {
    font-size: 12px;
  }

  .door-copy > span {
    font-size: 16px;
  }

  .answer {
    margin: 0 4px;
    padding: 18px 12px 22px;
  }

  .body-flow {
    padding: 28px 16px;
  }

  .flow-eyebrow {
    font-size: 12px;
    line-height: 1.6;
  }

  .flow-heading h3 {
    font-size: 32px;
    line-height: 1.15;
  }

  .flow-heading > p:last-child {
    font-size: 17px;
    line-height: 1.55;
  }

  .body-flow textarea {
    min-height: 150px;
    padding: 18px;
    font-size: 17px;
  }

  .need-grid {
    gap: 7px;
  }

  .need-grid button {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .reveal-button {
    min-height: 60px;
    font-size: 17px;
    line-height: 1.35;
  }

  .discount-banner {
    padding: 28px 18px;
  }

  .discount-banner > span {
    font-size: 12px;
    line-height: 1.6;
  }

  .discount-banner > p {
    font-size: 16px;
  }

  .discount-banner a {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    font-size: 16px;
  }

  .wish-echo {
    font-size: 18px;
  }

  .recommendation-card > p {
    font-size: 12px;
    line-height: 1.5;
  }

  .recommendation-card h4 {
    font-size: 29px;
  }

  .recommendation-card > span {
    font-size: 17px;
  }

  .recommendation-card > a {
    font-size: 16px;
  }

  .health-note {
    font-size: 14px;
  }

  .guided-divider {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }

  .guided-grid small {
    font-size: 12px;
  }

  .guided-grid strong {
    font-size: 25px;
  }

  .guided-grid span {
    font-size: 15px;
  }

  .recommendation-grid,
  .guided-grid {
    grid-template-columns: 1fr;
  }

  .recommendation-card,
  .guided-grid a {
    min-height: 0;
  }

  .route-card strong {
    font-size: 24px;
  }

  .route-card small {
    font-size: 17px;
  }

  .route-card b {
    font-size: 16px;
  }

  .route-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
}

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

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