:root {
  --color-base: #f4f1ec;
  --color-bg: #fff;
  --color-text: #202326;
  --color-muted: #626463;
  --color-line: #ddd5c9;
  --color-gold: #a9864e;
  --color-red: #c93f26;
  --color-pink: #e87524;
  --color-sage: #3f5f64;
  --shadow: 0 14px 34px rgba(31, 36, 40, .11);
  --radius: 8px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pricePop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(.96);
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowSweep {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }
  to {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes pulseCta {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(137, 82, 20, .2);
  }
  50% {
    box-shadow: 0 16px 34px rgba(219, 77, 106, .28);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  35% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  36% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.l-container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.l-container--narrow {
  width: min(1080px, calc(100% - 40px));
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.l-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.l-header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
  font-size: 14px;
}

.l-header__nav a {
  transition: color .2s;
}

.l-header__nav a:hover {
  color: var(--color-sage);
}

.l-header__cta,
.p-hero__buttons {
  display: flex;
  gap: 10px;
}

.p-hero__buttons .c-button {
  flex: 1 1 260px;
  padding-inline: 20px;
}

.l-footer {
  padding: 42px 0 54px;
  color: #5f5750;
  font-size: 13px;
  background: linear-gradient(180deg, #fff 0, #fff8f3 100%);
  border-top: 1px solid var(--color-line);
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px 44px;
}

.l-footer__brand p,
.l-footer__notes p {
  margin: 12px 0 0;
}

.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-weight: 800;
}

.l-footer__nav a {
  transition: color .2s, transform .2s;
}

.l-footer__nav a:hover {
  color: var(--color-pink);
  transform: translateY(-2px);
}

.l-footer__notes,
.l-footer__copy {
  grid-column: 1 / -1;
}

.l-footer__copy {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  color: #8a7d72;
}

.c-logo {
  display: inline-flex;
  align-items: baseline;
  color: #171717;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
}

.c-logo--footer {
  font-size: 18px;
}

.c-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(137, 82, 20, .2);
  transition: transform .2s, box-shadow .2s;
}

.c-button::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% 0;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  animation: glowSweep 5.6s ease-in-out infinite;
  pointer-events: none;
}

.c-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 28px rgba(137, 82, 20, .27);
}

.c-button::after {
  content: ">";
  margin-left: 12px;
}

.c-button__mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.c-button--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.c-button--amazon {
  background: linear-gradient(135deg, #363b3f, #14171a);
}

.c-button--rakuten {
  background: linear-gradient(135deg, #e87524, #ad3f19);
}

.c-kicker {
  margin: 0 0 4px;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 500;
}

.c-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
}

.c-heading::before,
.c-heading::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--color-gold);
}

.c-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(107, 74, 47, .06);
}

.c-media {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

.c-media img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.c-media h3,
.p-shop h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.c-media p,
.p-feature p,
.p-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.c-note {
  margin: 18px 0 0;
  color: #786e66;
  font-size: 12px;
  text-align: center;
}

.p-section {
  padding: 34px 0;
  scroll-margin-top: 86px;
}

[id] {
  scroll-margin-top: 86px;
}

.p-section:nth-of-type(even) {
  background: #fff;
}

.p-hero {
  overflow: hidden;
  min-height: calc(100svh - 72px);
  padding: 0;
  background: #f4f1ec;
}

.p-hero__inner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  min-height: calc(100svh - 72px);
  display: block;
}

.p-hero__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(760px, 62vw);
  background: linear-gradient(90deg, rgba(244, 241, 236, .99) 0%, rgba(244, 241, 236, .9) 58%, rgba(244, 241, 236, 0) 100%);
  pointer-events: none;
}

.p-hero__copy {
  position: relative;
  z-index: 3;
  width: min(620px, 54%);
  padding-top: clamp(34px, 7vh, 84px);
}

.p-hero__copy > * {
  opacity: 0;
  animation: titleReveal 1.05s cubic-bezier(.2, .8, .2, 1) forwards;
}

.p-hero__copy > *:nth-child(1) {
  animation-delay: .16s;
}

.p-hero__copy > *:nth-child(2) {
  animation-delay: .38s;
}

.p-hero__copy > *:nth-child(3) {
  animation-delay: .6s;
}

.p-hero__copy > *:nth-child(4) {
  animation-delay: .82s;
}

.p-hero__copy > *:nth-child(5) {
  animation-delay: 1.05s;
}

.p-hero__copy > *:nth-child(6) {
  animation-delay: 1.28s;
}

.p-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(46px, 4.7vw, 66px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.p-hero__title span {
  color: var(--color-pink);
  white-space: nowrap;
}

.p-hero__name {
  margin: 8px 0 24px;
  font-weight: 800;
}

.p-hero__lead {
  max-width: 430px;
  margin: 0 0 26px;
  color: #514b45;
  font-weight: 600;
  line-height: 1.85;
}

.p-price {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin: 0 0 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.p-price__sub {
  display: grid;
  gap: 2px;
  font-size: 13px;
}

.p-price__sub del {
  color: #5d554d;
}

.p-price__sub em {
  display: inline-block;
  width: fit-content;
  background: var(--color-pink);
  color: #fff;
  border-radius: 4px;
  padding: 5px 14px;
  font-style: normal;
  font-weight: 800;
}

.p-price__main {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--color-pink);
  line-height: 1;
}

.p-price__main span {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.p-price__main strong {
  font-family: Georgia, serif;
  font-size: clamp(58px, 6vw, 82px);
  font-weight: 500;
  line-height: .9;
  animation: pricePop 1s cubic-bezier(.2, .8, .2, 1) 1.32s both;
}

.p-price__main small {
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 800;
}

.p-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-hero__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  animation: floatSoft 9s ease-in-out infinite;
}

.p-hero__buttons .c-button {
  animation: pulseCta 4.8s ease-in-out infinite;
}

.p-scrollCue {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 18px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #8f5e1c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .2s, color .2s;
}

.p-scrollCue:hover {
  color: var(--color-pink);
  transform: translateY(3px);
}

.p-scrollCue i {
  position: relative;
  width: 1px;
  height: 42px;
  background: rgba(143, 94, 28, .22);
  overflow: hidden;
}

.p-scrollCue i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  animation: scrollLine 2.5s ease-in-out infinite;
}

.p-scrollCue i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.p-twoGrid,
.p-featureList,
.p-shopGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.p-reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.p-problems {
  position: relative;
  z-index: 5;
  margin-top: -42px;
  padding-top: 88px;
  background: #fff;
}

.p-feature {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 10px 28px rgba(107, 74, 47, .07);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}

.p-feature img {
  width: 220px;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform .35s;
}

.p-feature:hover,
.c-card:hover,
.p-shop:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 130, 44, .48);
  box-shadow: 0 16px 34px rgba(107, 74, 47, .12);
}

.p-feature:hover img {
  transform: scale(1.035);
}

.p-feature span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--color-sage);
  color: #fff;
  font-weight: 800;
}

.p-feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.45;
}

.p-review {
  padding: 26px;
  display: grid;
  gap: 18px;
  align-content: start;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}

.p-review img {
  width: 58px;
  height: 58px;
}

.p-review span {
  color: var(--color-pink);
  font-size: 12px;
  font-weight: 900;
}

.p-review h3 {
  margin: 4px 0 8px;
  font-size: 19px;
}

.p-review p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.p-caution {
  margin-top: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #fff8f3, #fff);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.p-caution h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.p-caution ul {
  margin: 0;
  padding-left: 1.2em;
  color: #5d554d;
  font-size: 14px;
}

.p-caution li + li {
  margin-top: 8px;
}

.p-caution p {
  margin: 14px 0 0;
  color: #8a7d72;
  font-size: 12px;
}

.p-stepList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-step {
  padding: 24px;
  text-align: center;
}

.p-step b {
  color: var(--color-pink);
  font-size: 13px;
}

.p-step h3 {
  margin: 6px 0 8px;
}

.p-contentsGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.p-contentsGrid figure {
  margin: 0;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  text-align: center;
}

.p-contentsGrid img {
  height: 90px;
  margin: auto;
  object-fit: contain;
}

.p-contentsGrid figcaption {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.p-shop {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.p-shop__mark {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.p-shop--amazon .p-shop__mark {
  color: #111;
}

.p-shop--rakuten .p-shop__mark {
  color: var(--color-red);
}

.p-shop ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
  color: #5d554d;
  font-size: 14px;
}

.p-bottomCta {
  padding: 36px 0 26px;
  background: #fff;
}

.p-bottomCta__inner {
  display: grid;
  grid-template-columns: 300px 1fr 310px;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: #f4f1ec;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.p-bottomCta__inner > img {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 12px 20px rgba(107, 74, 47, .14));
}

.p-bottomCta h2 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.45;
}

.p-bottomCta p {
  margin: 0;
  color: var(--color-muted);
}

.p-bottomCta__buttons {
  display: grid;
  gap: 10px;
}

.p-faq details {
  margin-bottom: 10px;
  padding: 0 22px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.p-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 800;
}

.p-faq summary::after {
  content: "+";
  float: right;
}

.p-faq details[open] summary::after {
  content: "-";
}

.p-faq p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .l-header__nav {
    display: none;
  }

  .l-header__cta {
    margin-left: auto;
  }

  .p-hero__inner {
    min-height: calc(100svh - 66px);
  }

  .p-hero__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
  }

  .p-hero__image {
    width: calc(100% + 20px);
    max-width: none;
    margin-left: -10px;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: none;
  }

  .p-scrollCue {
    left: auto;
    right: 24px;
    bottom: 12px;
  }

  .p-hero__copy {
    width: 100%;
    padding-top: 0;
  }

  .p-feature {
    grid-template-columns: 160px 1fr;
  }

  .p-feature img {
    width: 160px;
  }

  .p-contentsGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-bottomCta__inner {
    grid-template-columns: 240px 1fr;
  }

  .p-bottomCta__buttons {
    grid-column: 1 / -1;
  }

  .p-reviewGrid {
    grid-template-columns: 1fr;
  }

  .l-footer__inner {
    grid-template-columns: 1fr;
  }

  .l-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .l-container,
  .l-container--narrow {
    width: min(100% - 28px, 480px);
  }

  .l-header__inner {
    min-height: 66px;
    gap: 12px;
  }

  .l-header__cta .c-button--amazon {
    display: none;
  }

  .c-logo {
    max-width: 190px;
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;
  }

  .c-button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .c-heading {
    gap: 10px;
  }

  .c-heading::before,
  .c-heading::after {
    width: 26px;
  }

  .p-section {
    padding: 48px 0;
  }

  .p-problems {
    margin-top: -36px;
    padding-top: 76px;
  }

  .p-hero {
    min-height: calc(100svh - 66px);
    padding: 0;
  }

  .p-hero__inner {
    width: 100%;
    margin-left: 0;
    min-height: calc(100svh - 66px);
    padding-left: 14px;
    padding-right: 14px;
  }

  .p-hero__inner::before {
    display: block;
    inset: auto 0 0 0;
    width: 100%;
    height: 58%;
    background: linear-gradient(180deg, rgba(244, 241, 236, 0) 0%, rgba(244, 241, 236, .9) 34%, rgba(244, 241, 236, .99) 100%);
  }

  .p-hero__copy > * {
    opacity: 0;
    animation: titleReveal 1.2s cubic-bezier(.2, .8, .2, 1) forwards;
  }

  .p-hero__copy {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 144px;
    z-index: 3;
    width: auto;
    padding-top: 0;
    animation: none;
    text-shadow: none;
  }

  .p-price__main strong {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .p-hero__title {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .p-hero .c-kicker,
  .p-hero__title,
  .p-hero__name {
    translate: 0 -24px;
  }

  .p-hero .c-kicker,
  .p-hero__name {
    display: block;
  }

  .p-hero .c-kicker,
  .p-hero__title {
    width: fit-content;
    max-width: 100%;
    padding: 2px 8px;
    background: rgba(244, 241, 236, .78);
    border-radius: 5px;
  }

  .p-hero__name {
    width: fit-content;
    max-width: 100%;
    padding: 3px 9px;
    background: rgba(244, 241, 236, .86);
    border-radius: 5px;
  }

  .p-hero__title {
    text-shadow: none;
  }

  .p-hero__lead {
    margin-bottom: 14px;
    padding: 0;
    width: auto;
    max-width: 430px;
    background: transparent;
    border-radius: 0;
    line-height: 1.65;
    text-shadow: none;
  }

  .p-price,
  .p-hero__buttons {
    display: grid;
  }

  .p-price {
    gap: 10px;
    margin-bottom: 20px;
  }

  .p-price,
  .p-hero__buttons {
    translate: 0 56px;
  }

  .p-price__main strong {
    font-size: 46px;
  }

  .p-hero__buttons {
    gap: 8px;
  }

  .p-hero__buttons .c-button {
    box-shadow: none;
    text-shadow: none;
  }

  .p-hero__buttons .c-button:hover {
    box-shadow: none;
  }

  .p-hero__copy > .c-note {
    display: none;
  }

  .p-scrollCue {
    left: 50%;
    right: auto;
    bottom: 8px;
    transform: translateX(-50%) scale(.82);
  }

  .p-twoGrid,
  .p-featureList,
  .p-shopGrid,
  .p-reviewGrid,
  .p-stepList {
    grid-template-columns: 1fr;
  }

  .c-media {
    padding: 22px;
    gap: 16px;
  }

  .p-feature {
    grid-template-columns: 118px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .p-feature img {
    width: 118px;
  }

  .p-feature h3 {
    font-size: 17px;
  }

  .p-contentsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-shop {
    grid-template-columns: 62px 1fr;
    padding: 22px;
  }

  .p-shop > div {
    min-width: 0;
  }

  .p-shop .c-button {
    padding-inline: 14px;
    white-space: normal;
  }

  .p-shop__mark {
    font-size: 54px;
  }

  .p-bottomCta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .p-bottomCta__inner img {
    margin: auto;
    max-width: 320px;
  }

  .l-footer {
    padding: 36px 0 44px;
  }
}

@media (max-width: 640px) and (max-height: 720px) {
  .p-hero__copy {
    bottom: 108px;
  }

  .p-hero__title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .p-hero__name {
    margin: 4px 0 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  .p-hero__lead {
    display: none;
  }

  .p-price {
    gap: 6px;
    margin-bottom: 16px;
  }

  .p-price,
  .p-hero__buttons {
    translate: 0 40px;
  }

  .p-price__sub {
    font-size: 12px;
  }

  .p-price__sub em {
    padding: 4px 10px;
  }

  .p-price__main span {
    font-size: 13px;
  }

  .p-price__main strong {
    font-size: 40px;
  }

  .p-price__main small {
    font-size: 18px;
  }

  .p-hero__buttons .c-button {
    min-height: 48px;
    font-size: 14px;
  }

  .p-scrollCue {
    bottom: 2px;
    gap: 1px;
    font-size: 9px;
  }

  .p-scrollCue i {
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product-photo hero and restored local image assets */
@media (min-width: 981px) {
  .p-hero__inner::before {
    width: min(720px, 58vw);
  }

  .p-hero__visual {
    inset: 0 0 0 auto;
    width: 58%;
    background: #fff;
  }

  .p-hero__visual picture {
    display: grid;
    place-items: center;
  }

  .p-hero__image {
    object-fit: contain;
    object-position: center;
    animation: none;
  }
}

@media (max-width: 980px) {
  .p-hero__visual {
    background: #fff;
  }

  .p-hero__image {
    width: 100%;
    margin-left: 0;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 640px) {
  .p-hero__visual {
    height: 52%;
  }

  .p-hero__inner::before {
    height: 66%;
  }
}

.c-reviewLink {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 14px;
  border-radius: 4px;
  background: var(--color-pink);
  color: #fff;
  font-style: normal;
  font-weight: 800;
  transition: background-color .2s, transform .2s;
}

.c-reviewLink::after {
  content: ">";
  margin-left: 7px;
}

.c-reviewLink:hover,
.c-reviewLink:focus-visible {
  background: #b84c17;
  transform: translateY(-1px);
}

.p-reviewAction {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.c-button--review {
  background: linear-gradient(135deg, #e87524, #ad3f19);
}
