:root {
  --beauty-berry: #a62862;
  --beauty-pink: #f2b7cc;
  --beauty-blush: #fff0f4;
  --beauty-violet: #7954b8;
}

.beauty-business-page {
  background: var(--beauty-blush);
}

.beauty-business-page .brand__mark {
  background: var(--beauty-pink);
  color: var(--ink);
}

.beauty-business-page .signal-dot {
  background: var(--beauty-pink);
  box-shadow: 0 0 0 3px rgba(242, 183, 204, 0.42);
}

.beauty-business-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(34rem, 1.14fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  min-height: 100svh;
  padding: clamp(8.2rem, 13vh, 9.5rem) var(--page-pad) 4rem;
  align-items: center;
}

.beauty-business-hero__copy {
  max-width: 800px;
}

.beauty-wordmark {
  margin-top: 1.8rem;
  color: var(--beauty-berry);
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.beauty-business-hero h1 {
  max-width: 8.5ch;
  margin-top: 0.65rem;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.7vw, 8.5rem);
  font-variation-settings: "wdth" 86;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.79;
}

.beauty-business-hero__intro {
  max-width: 38rem;
  margin-top: clamp(2rem, 3.5vw, 2.8rem);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.beauty-business-hero .button--ink {
  box-shadow: 5px 5px 0 var(--beauty-berry);
}

.beauty-business-hero .button--ink:hover {
  box-shadow: 8px 8px 0 var(--beauty-pink);
}

.storefront-window {
  position: relative;
  border: var(--line);
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--beauty-berry);
  overflow: hidden;
  scroll-margin-top: 6rem;
}

.storefront-window__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  align-items: center;
  border-bottom: var(--line);
  font-size: 0.72rem;
  font-weight: 700;
}

.storefront-window__bar > span {
  display: flex;
  gap: 0.35rem;
}

.storefront-window__bar i {
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--beauty-pink);
}

.storefront-window__bar i:nth-child(2) {
  background: var(--lime);
}

.storefront-window__bar i:nth-child(3) {
  background: var(--lilac);
}

.storefront-window__bar > a {
  justify-self: end;
  border-bottom: 1px solid currentColor;
}

.storefront-window__image {
  display: block;
  aspect-ratio: 1.44;
  background: #fff8fa;
  overflow: hidden;
}

.storefront-window__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.storefront-window__image:hover img {
  transform: scale(1.025);
}

.storefront-window__sticker {
  position: absolute;
  right: 4%;
  bottom: 5%;
  display: grid;
  width: clamp(5.2rem, 8vw, 7.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(8deg);
}

.beauty-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--white);
}

.beauty-facts div {
  display: flex;
  min-height: 9.5rem;
  padding: 1.35rem var(--page-pad);
  flex-direction: column;
  justify-content: space-between;
  border-right: var(--line);
}

.beauty-facts div:last-child {
  border-right: 0;
}

.beauty-facts strong {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.beauty-facts span {
  max-width: 12rem;
  font-size: 0.78rem;
  font-weight: 650;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(26rem, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--white);
  scroll-margin-top: 5.5rem;
}

.brand-story__visual {
  position: relative;
  min-height: 48rem;
  border: 2px solid var(--white);
  border-radius: 48% 48% 1.5rem 1.5rem;
  background: var(--beauty-pink);
  box-shadow: 10px 10px 0 var(--beauty-berry);
  overflow: hidden;
}

.brand-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.brand-story__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(23, 23, 23, 0.72));
}

.brand-story__visual p {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.brand-story__copy {
  padding-top: 1rem;
}

.brand-story .section-kicker::before {
  border-color: var(--white);
  background: var(--beauty-pink);
}

.brand-story__copy h2 {
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(4rem, 7.8vw, 8.3rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.brand-story__lead {
  max-width: 42rem;
  margin-top: 3rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.brand-story__copy > p:not(.section-kicker):not(.brand-story__lead) {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: rgba(255, 253, 248, 0.78);
}

.story-principles {
  margin-top: 4rem;
  border-top: 2px solid var(--white);
}

.story-principles article {
  display: grid;
  grid-template-columns: 0.35fr 0.9fr 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.65);
  align-items: start;
}

.story-principles span {
  color: var(--beauty-pink);
  font-size: 0.75rem;
  font-weight: 700;
}

.story-principles h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.story-principles p {
  font-size: 0.84rem;
}

.product-edit {
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
  border-bottom: var(--line);
  background: var(--beauty-blush);
  scroll-margin-top: 5.5rem;
}

.product-edit__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
  gap: 2rem 4rem;
  align-items: end;
}

.product-edit__heading .section-kicker {
  grid-column: 1 / -1;
}

.product-edit__heading .section-kicker::before {
  background: var(--beauty-berry);
}

.product-edit__heading h2 {
  font-family: var(--display);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.product-edit__heading > p:last-child {
  max-width: 32rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.ritual-card {
  position: relative;
  min-height: 38rem;
  border: var(--line);
  border-radius: 1.35rem;
  background: var(--white);
  overflow: hidden;
}

.ritual-card--precision,
.ritual-card--treatment {
  grid-column: span 7;
}

.ritual-card--complexion,
.ritual-card--skin {
  grid-column: span 5;
}

.ritual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-card--precision img {
  object-position: center 28%;
}

.ritual-card--complexion img,
.ritual-card--skin img {
  object-position: center 35%;
}

.ritual-card > div:last-child {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1.2rem;
  border: var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
}

.ritual-card span {
  font-size: 0.72rem;
  font-weight: 700;
}

.ritual-card h3 {
  margin-top: 0.7rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.ritual-card p {
  max-width: 33rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
}

.ritual-card--treatment {
  background: var(--beauty-berry);
  color: var(--white);
}

.ritual-card--treatment > div:last-child {
  background: var(--ink);
  color: var(--white);
}

.ritual-card__shape {
  position: absolute;
  inset: 0;
}

.ritual-card__shape i {
  position: absolute;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.ritual-card__shape i:nth-child(1) {
  top: 10%;
  left: 8%;
  width: 45%;
  aspect-ratio: 1;
  background: var(--beauty-pink);
}

.ritual-card__shape i:nth-child(2) {
  top: 20%;
  right: 7%;
  width: 32%;
  aspect-ratio: 1;
  background: var(--blue);
}

.ritual-card__shape i:nth-child(3) {
  top: 40%;
  left: 37%;
  width: 22%;
  aspect-ratio: 1;
  background: var(--lime);
}

.image-note {
  max-width: 43rem;
  margin: 1.25rem 0 0 auto;
  font-size: 0.72rem;
  text-align: right;
}

.retail-experience {
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
  background: var(--ink);
  color: var(--white);
  scroll-margin-top: 5.5rem;
}

.retail-experience__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
  gap: 2rem 4rem;
  align-items: end;
}

.retail-experience__heading .section-kicker {
  grid-column: 1 / -1;
}

.retail-experience__heading .section-kicker::before {
  border-color: var(--white);
  background: var(--beauty-pink);
}

.retail-experience__heading h2 {
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(4rem, 8.2vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.retail-experience__heading > p:last-child {
  max-width: 31rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.experience-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border: 2px solid var(--white);
}

.experience-path article {
  display: flex;
  min-height: 25rem;
  padding: 1.25rem;
  flex-direction: column;
  border-right: 2px solid var(--white);
}

.experience-path article:last-child {
  border-right: 0;
}

.experience-path span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--beauty-pink);
  font-size: 0.7rem;
  font-weight: 700;
}

.experience-path h3 {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.experience-path p {
  margin-top: 1.2rem;
  font-size: 0.82rem;
}

.retail-promise {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.7rem;
  border: 2px solid var(--white);
  background: var(--beauty-pink);
  color: var(--ink);
  align-items: center;
}

.retail-promise p {
  font-size: 0.76rem;
  font-weight: 700;
}

.retail-promise strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.3vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.visit-beauty {
  position: relative;
  display: flex;
  min-height: 82svh;
  padding: clamp(6rem, 11vw, 11rem) var(--page-pad);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: var(--line);
  background: var(--beauty-pink);
  text-align: center;
  overflow: hidden;
}

.visit-beauty::before,
.visit-beauty::after {
  position: absolute;
  width: 26vw;
  min-width: 14rem;
  aspect-ratio: 1;
  border: var(--line);
  border-radius: 50%;
  content: "";
}

.visit-beauty::before {
  top: -18%;
  left: -7%;
  background: var(--beauty-berry);
}

.visit-beauty::after {
  right: -8%;
  bottom: -29%;
  background: var(--lime);
}

.visit-beauty > * {
  position: relative;
  z-index: 2;
}

.visit-beauty > p {
  margin-bottom: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.visit-beauty h2 {
  font-family: var(--display);
  font-size: clamp(5.5rem, 14vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.72;
}

.visit-beauty__link {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  margin-top: 3.5rem;
  padding: 1rem 1.2rem;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 700;
}

.visit-beauty__seal {
  position: absolute;
  top: 15%;
  right: 9%;
  display: grid;
  width: clamp(6rem, 10vw, 9rem);
  aspect-ratio: 1;
  place-items: center;
  padding: 1rem;
  border: var(--line);
  border-radius: 50%;
  background: var(--white);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(9deg);
}

.beauty-business-hero__copy,
.storefront-window {
  opacity: 0;
  animation: hero-in 640ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.storefront-window {
  animation-name: storefront-in;
  animation-delay: 140ms;
}

@keyframes storefront-in {
  from {
    opacity: 0;
    transform: translate(1.25rem, 1.25rem);
    box-shadow: 0 0 0 var(--beauty-berry);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
    box-shadow: 12px 12px 0 var(--beauty-berry);
  }
}

@media (max-width: 1100px) {
  .beauty-business-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
    gap: 2.5rem;
  }

  .brand-story {
    grid-template-columns: minmax(22rem, 0.75fr) 1.25fr;
  }

  .brand-story__visual {
    min-height: 44rem;
  }

  .story-principles article {
    grid-template-columns: 0.3fr 1fr;
  }

  .story-principles p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .beauty-business-hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }

  .storefront-window {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .beauty-facts {
    grid-template-columns: 1fr 1fr;
  }

  .beauty-facts div:nth-child(2) {
    border-right: 0;
  }

  .beauty-facts div:nth-child(-n + 2) {
    border-bottom: var(--line);
  }

  .brand-story {
    grid-template-columns: 1fr;
  }

  .brand-story__visual {
    min-height: 40rem;
  }

  .product-edit__heading,
  .retail-experience__heading {
    grid-template-columns: 1fr;
  }

  .product-edit__heading > p:last-child,
  .retail-experience__heading > p:last-child {
    margin-top: 0;
  }

  .ritual-card--precision,
  .ritual-card--complexion,
  .ritual-card--skin,
  .ritual-card--treatment {
    grid-column: span 6;
  }

  .experience-path {
    grid-template-columns: 1fr 1fr;
  }

  .experience-path article:nth-child(2) {
    border-right: 0;
  }

  .experience-path article:nth-child(-n + 2) {
    border-bottom: 2px solid var(--white);
  }
}

@media (max-width: 560px) {
  .beauty-business-hero {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .beauty-business-hero h1 {
    font-size: clamp(4.1rem, 21.5vw, 6.5rem);
  }

  .storefront-window {
    box-shadow: 7px 7px 0 var(--beauty-berry);
  }

  .storefront-window__bar {
    grid-template-columns: 1fr auto;
  }

  .storefront-window__bar > span {
    display: none;
  }

  .storefront-window__bar strong {
    justify-self: start;
  }

  .storefront-window__sticker {
    right: 3%;
    bottom: 4%;
    width: 4.6rem;
    font-size: 0.68rem;
  }

  .beauty-facts div {
    min-height: 8rem;
    padding: 1rem;
  }

  .beauty-facts strong {
    font-size: 2.3rem;
  }

  .brand-story,
  .product-edit,
  .retail-experience {
    padding-block: 5rem;
  }

  .brand-story__visual {
    min-height: 34rem;
    box-shadow: 6px 6px 0 var(--beauty-berry);
  }

  .brand-story__copy h2,
  .product-edit__heading h2,
  .retail-experience__heading h2 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .story-principles article {
    grid-template-columns: 1fr;
  }

  .story-principles p {
    grid-column: 1;
  }

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

  .ritual-card--precision,
  .ritual-card--complexion,
  .ritual-card--skin,
  .ritual-card--treatment {
    grid-column: 1;
  }

  .ritual-card {
    min-height: 34rem;
  }

  .ritual-card h3 {
    font-size: 2.65rem;
  }

  .image-note {
    text-align: left;
  }

  .experience-path {
    grid-template-columns: 1fr;
  }

  .experience-path article,
  .experience-path article:nth-child(2) {
    min-height: 16rem;
    border-right: 0;
    border-bottom: 2px solid var(--white);
  }

  .experience-path article:last-child {
    border-bottom: 0;
  }

  .retail-promise {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .visit-beauty {
    min-height: 72svh;
  }

  .visit-beauty h2 {
    font-size: clamp(5rem, 25vw, 7.5rem);
  }

  .visit-beauty__seal {
    top: 10%;
    right: 3%;
  }

  .visit-beauty__link {
    font-size: 0.8rem;
  }
}
