.where-begin {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 169, 110, .18), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(192, 173, 220, .24), transparent 32%),
    linear-gradient(145deg, #fffdf9 0%, #f8f5fb 54%, #f2f6f1 100%);
}

.where-begin::before,
.where-begin::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(74, 103, 65, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.where-begin::before {
  width: 340px;
  height: 340px;
  top: -190px;
  right: -80px;
}

.where-begin::after {
  width: 220px;
  height: 220px;
  bottom: -140px;
  left: -60px;
}

.where-begin__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.where-begin__intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.where-begin .where-begin__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.where-begin__eyebrow::before,
.where-begin__eyebrow::after {
  width: 24px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.where-begin .where-begin__title {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Aleo", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.where-begin .where-begin__lede {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.65;
}

.where-begin__panel {
  min-height: 430px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(26, 43, 60, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 24px 65px rgba(26, 43, 60, .1);
}

.where-begin__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.where-begin__progress-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #d8dce0;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.where-begin__progress-dot.is-current {
  width: 28px;
  border-radius: 8px;
  background: var(--green);
}

.where-begin__stage[hidden] {
  display: none;
}

.where-begin__stage {
  animation: whereBeginIn .28s ease both;
}

@keyframes whereBeginIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.where-begin__stage-heading {
  max-width: 760px;
  margin: 0 auto 10px;
  color: var(--navy);
  font-family: "Aleo", serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.where-begin__stage-heading:focus {
  outline: none;
}

.where-begin__stage-copy {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.where-begin__choices {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.where-begin__answers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.where-begin__choice {
  display: flex;
  min-height: 168px;
  padding: 22px 14px;
  border: 1px solid rgba(26, 43, 60, .16);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.where-begin__choice:hover {
  border-color: var(--green);
  background: #fbfdfb;
  box-shadow: 0 12px 28px rgba(26, 43, 60, .09);
  transform: translateY(-3px);
}

.where-begin__choice:focus-visible,
.where-begin__action:focus-visible,
.where-begin__text-action:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.where-begin__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 25px;
  line-height: 1;
  place-items: center;
}

.where-begin__choice:nth-child(2n) .where-begin__icon {
  background: var(--purple-pale);
  color: var(--purple-mid);
}

.where-begin__choice:nth-child(3n) .where-begin__icon {
  background: var(--gold-pale);
  color: #765b2e;
}

.where-begin__nav-row {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
}

.where-begin__text-action {
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.where-begin__text-action:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.where-begin__result {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: .78fr 1.22fr;
  border: 1px solid rgba(26, 43, 60, .1);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.where-begin__result-mark {
  display: grid;
  min-height: 310px;
  padding: 36px;
  background:
    linear-gradient(rgba(26, 43, 60, .18), rgba(26, 43, 60, .18)),
    url("graphics/studio-interior.jpg") center / cover;
  color: #fff;
  place-items: center;
  text-align: center;
}

.where-begin__result-symbol {
  display: grid;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: rgba(26, 43, 60, .42);
  font-size: 36px;
  place-items: center;
  backdrop-filter: blur(3px);
}

.where-begin__result-body {
  display: flex;
  padding: clamp(30px, 5vw, 54px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.where-begin__recommendation-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.where-begin .where-begin__result-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Aleo", serif;
  font-size: clamp(29px, 4vw, 42px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
}

.where-begin__result-copy {
  margin: 0 0 26px;
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.65;
}

.where-begin__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.where-begin__action {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  align-items: center;
  justify-content: center;
}

.where-begin__action:hover {
  border-color: var(--green-mid);
  background: var(--green-mid);
}

.where-begin__action--secondary {
  background: #fff;
  color: var(--navy);
}

.where-begin__action--secondary:hover {
  background: var(--green-pale);
  color: var(--navy);
}

.where-begin__visit {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: .86fr 1.14fr;
  border: 1px solid rgba(26, 43, 60, .1);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.where-begin__visit-image {
  min-height: 390px;
  background: url("graphics/studio-interior.jpg") center / cover;
}

.where-begin__visit-body {
  padding: clamp(28px, 5vw, 50px);
}

.where-begin .where-begin__visit-title {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: "Aleo", serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.where-begin__visit-list {
  display: grid;
  margin: 0 0 28px;
  gap: 16px;
}

.where-begin__visit-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text-mid);
  line-height: 1.5;
}

.where-begin__visit-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-mid);
  content: "✓";
  font-size: 14px;
  font-weight: 700;
  place-items: center;
}

.where-begin__reassurance {
  display: flex;
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--text-mid);
  font-size: 15px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .where-begin__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .where-begin__choices .where-begin__choice:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .where-begin__answers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .where-begin {
    padding-right: 16px;
    padding-left: 16px;
  }

  .where-begin__panel {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .where-begin__choices,
  .where-begin__answers {
    grid-template-columns: 1fr;
  }

  .where-begin__choices .where-begin__choice:last-child {
    grid-column: auto;
    width: auto;
  }

  .where-begin__choice {
    min-height: 0;
    padding: 18px;
    text-align: left;
    align-items: center;
    flex-direction: row;
    gap: 14px;
  }

  .where-begin__icon {
    width: 44px;
    height: 44px;
    margin: 0;
    flex: 0 0 auto;
  }

  .where-begin__result,
  .where-begin__visit {
    grid-template-columns: 1fr;
  }

  .where-begin__result-mark {
    min-height: 190px;
  }

  .where-begin__visit-image {
    min-height: 230px;
  }

  .where-begin__actions {
    flex-direction: column;
  }

  .where-begin__action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .where-begin__stage {
    animation: none;
  }

  .where-begin__choice {
    transition: none;
  }
}
