:root {
  --paper: #fffdf8;
  --white: #fff;
  --beige: #f7f0e7;
  --sage: #e8ede3;
  --amber: #f1ddcc;
  --ink: #28251f;
  --body: #57524b;
  --muted: #81786e;
  --cta: #34463a;
  --cta-hover: #28372e;
  --accent: #b9794e;
  --line: #e5dcd1;
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --shell: min(1220px, calc(100vw - 64px));
  --header-height: 74px;
  --section-space: clamp(112px, 10vw, 160px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--body);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.shell,
.container {
  width: var(--shell);
  margin-inline: auto;
}

.shell--narrow {
  max-width: 900px;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 10px 14px;
  color: #fff;
  background: var(--cta);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  backdrop-filter: blur(15px);
  transition: background .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 34px;
}

.brand {
  color: var(--ink);
  font-family: Georgia, var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.5vw, 40px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 10px;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease, opacity .25s ease;
}

.menu-icon {
  top: 23px;
}

.menu-icon::before,
.menu-icon::after {
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-overlay,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid var(--cta);
  border-radius: 5px;
  color: #fff;
  background: var(--cta);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--cta-hover);
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.button--outline {
  color: var(--cta);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: #fff;
}

.section-label {
  margin: 0 0 20px;
  color: var(--cta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 20px;
  margin-bottom: clamp(58px, 7vw, 86px);
}

.section-heading > * {
  margin: 0;
}

.section-heading h2,
.empathy-copy h2,
.brand-copy h2,
.compare-intro h2,
.final-copy h2,
.revive-copy h2,
.serum-copy h2,
.butter-copy h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.3vw, 56px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.hero {
  min-height: calc(100svh - 26px);
  padding-top: calc(var(--header-height) + clamp(46px, 6vh, 78px));
  padding-bottom: clamp(54px, 7vh, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(241, 221, 204, .55), transparent 27%),
    linear-gradient(106deg, var(--paper) 0 44%, rgba(247, 240, 231, .72) 44% 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.hero-kicker {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: Georgia, var(--serif);
  font-size: 14px;
  letter-spacing: .06em;
}

.hero h1 {
  width: min(700px, 70vw);
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -.055em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-line .72s var(--ease) .12s forwards;
}

.hero-title-line + .hero-title-line {
  animation-delay: .28s;
}

.hero-lead {
  margin: clamp(32px, 4vw, 48px) 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.8;
}

.hero-description {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.scroll-sign {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 42px 0 0;
  color: var(--muted);
}

.scroll-sign span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

.scroll-sign b {
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-visual .72s var(--ease) .38s forwards;
}

.hero-visual::before {
  position: absolute;
  inset: -7% -7% 7% 10%;
  z-index: -1;
  background: rgba(241, 221, 204, .38);
  content: "";
}

.hero-visual img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.hero-visual-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.hero-visual-note i {
  width: 58px;
  height: 1px;
  background: var(--line);
}

@keyframes hero-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.empathy {
  position: relative;
  padding-top: clamp(128px, 12vw, 190px);
  background: var(--paper);
}

.empathy-layout {
  position: relative;
  min-height: 720px;
}

.empathy-photo {
  width: 59%;
}

.empathy-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.empathy-copy {
  position: absolute;
  top: 21%;
  right: 0;
  z-index: 2;
  width: 49%;
  padding: clamp(42px, 5vw, 74px);
  background: color-mix(in srgb, var(--paper) 95%, transparent);
}

.empathy-copy h2 {
  margin: 0 0 30px;
}

.empathy-copy p:not(.section-label) {
  max-width: 520px;
  margin: 0 0 16px;
}

.empathy-texture {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 24%;
  border: 10px solid var(--paper);
}

.empathy-texture img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.brand-story {
  background: var(--beige);
}

.brand-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.brand-copy {
  position: relative;
  z-index: 2;
}

.brand-copy h2 {
  margin: 0 0 32px;
}

.brand-intro {
  color: var(--ink);
  font-weight: 600;
}

.brand-facts {
  display: grid;
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
}

.brand-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.brand-facts dt {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.brand-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.brand-scene {
  position: relative;
}

.brand-scene img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 62% center;
}

.brand-scene > p {
  position: absolute;
  right: -1px;
  bottom: -1px;
  margin: 0;
  padding: 24px 28px;
  color: var(--ink);
  background: var(--beige);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
}

.brand-products {
  position: absolute;
  right: 46%;
  bottom: -48px;
  width: 26%;
  border: 8px solid var(--beige);
}

.brand-products img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.sets-section {
  background: var(--paper);
}

.set-basic {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  border: 1px solid var(--line);
}

.set-basic-image {
  min-height: 460px;
}

.set-basic-image picture,
.set-basic-image img {
  height: 100%;
}

.set-basic-image img {
  object-fit: cover;
}

.set-basic-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(46px, 6vw, 80px);
}

.set-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.set-basic h3,
.set-feature h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
}

.set-catch {
  margin: 16px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.65;
}

.set-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.set-contents li {
  position: relative;
  padding-left: 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.set-contents li::before {
  position: absolute;
  top: .85em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.set-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 8px 0 24px;
}

.set-price strong {
  color: var(--ink);
  font-size: 22px;
}

.set-price span {
  color: var(--muted);
  font-size: 13px;
}

.featured-sets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(42px, 5vw, 66px);
}

.set-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.set-feature--moisture {
  background: color-mix(in srgb, var(--amber) 78%, var(--paper));
}

.set-feature--volume {
  display: grid;
  align-items: end;
  min-height: 100%;
  background: var(--sage);
}

.set-feature-scene img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 58% center;
}

.set-feature-content {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 4vw, 54px);
}

.shipping-label {
  display: inline-block;
  margin-bottom: 17px;
  padding: 5px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line));
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.set-confirmation {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.set-confirmation img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.set-confirmation .set-contents {
  display: grid;
  margin: 0;
  padding-block: 12px;
}

.set-volume-air {
  position: absolute;
  inset: 20px 20px auto auto;
  display: flex;
  flex-direction: column;
  color: rgba(52, 70, 58, .14);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 74px);
  line-height: .9;
  writing-mode: vertical-rl;
}

.url-pending-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.routine-section {
  background: var(--beige);
}

.routine-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.routine-timeline::before {
  position: absolute;
  top: calc(clamp(210px, 21vw, 290px) + 49px);
  right: 14%;
  left: 14%;
  z-index: 0;
  height: 1px;
  background: var(--line);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s var(--ease);
}

.routine-timeline.is-drawn::before {
  transform: scaleX(1);
}

.routine-step {
  position: relative;
  z-index: 1;
}

.routine-image {
  height: clamp(210px, 21vw, 290px);
  margin-bottom: 37px;
  overflow: hidden;
}

.routine-image img {
  height: 100%;
  object-fit: cover;
}

.routine-image--morning img {
  object-position: 76% center;
}

.routine-step::before {
  position: absolute;
  top: calc(clamp(210px, 21vw, 290px) + 44px);
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--beige);
  background: var(--accent);
  content: "";
}

.routine-time {
  margin: 0 0 5px;
  color: var(--cta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.routine-step h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.routine-step ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.routine-step li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 14px;
}

.basic-products {
  background: var(--beige);
}

.basic-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(64px, 8vw, 100px);
}

.basic-products-heading > * {
  margin: 0;
}

.basic-products-heading h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.3vw, 56px);
  font-weight: 500;
}

.product-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(58px, 8vw, 116px);
}

.product-editorial + .product-editorial {
  margin-top: clamp(120px, 13vw, 180px);
}

.product-editorial-image {
  background: var(--white);
}

.product-editorial-image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.product-editorial h3 {
  margin: 16px 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.35;
}

.product-for {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.7;
}

.use-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: var(--cta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.use-badge span {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .02em;
}

.product-catch {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.6;
}

.product-points {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-points li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.product-points li::before {
  position: absolute;
  top: 23px;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.purchase-block {
  display: grid;
  justify-items: start;
  gap: 15px;
  margin-top: 30px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0;
}

.product-price span {
  color: var(--muted);
  font-size: 13px;
}

.product-price strong {
  color: var(--ink);
  font-size: 24px;
}

.product-price small {
  font-size: 12px;
  font-weight: 500;
}

.revive-section {
  position: relative;
  background: var(--sage);
}

.revive-section::after {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 24vw;
  height: 24vw;
  max-width: 330px;
  max-height: 330px;
  border: 1px solid rgba(52, 70, 58, .12);
  content: "";
  transform: rotate(8deg);
}

.revive-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.revive-image {
  position: relative;
}

.revive-image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.revive-keywords {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: grid;
  gap: 1px;
}

.revive-keywords span {
  padding: 9px 15px;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 600;
}

.revive-copy h2 {
  margin: 18px 0 20px;
}

.finish-compare {
  background: var(--paper);
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.compare-intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.compare-intro h2 {
  margin: 0 0 22px;
}

.compare-scene {
  grid-column: 2;
}

.compare-scene img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 66% center;
}

.compare-columns {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.compare-item {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.compare-timing {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.compare-item h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.compare-item dl {
  margin: 0;
}

.compare-item dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.compare-item dt {
  color: var(--muted);
}

.compare-item dd {
  margin: 0;
  color: var(--ink);
}

.serum-section {
  background: color-mix(in srgb, var(--amber) 58%, var(--paper));
}

.serum-layout {
  display: grid;
  grid-template-columns: minmax(0, 57fr) minmax(0, 43fr);
  align-items: center;
  gap: clamp(50px, 7vw, 94px);
}

.serum-scene img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% center;
}

.serum-copy h2,
.butter-copy h2 {
  margin: 16px 0 20px;
}

.product-mini-purchase {
  display: grid;
  grid-template-columns: 154px 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.product-mini-purchase img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.butter-section {
  background: var(--paper);
}

.butter-layout {
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  align-items: center;
  gap: clamp(58px, 8vw, 116px);
}

.butter-copy {
  max-width: 580px;
}

.butter-visual {
  position: relative;
  background: var(--beige);
}

.butter-visual img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.butter-visual p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 22px 28px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  font-family: var(--serif);
  line-height: 1.7;
}

.purchase-guide {
  background: var(--beige);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-grid > div {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.guide-grid > div:last-child {
  border-right: 0;
}

.guide-grid span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.guide-grid strong {
  display: block;
  margin-top: 25px;
  color: var(--ink);
}

.guide-grid p {
  margin: 12px 0 0;
  font-size: 13px;
}

.legal-inline-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--cta);
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: transform .25s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 760px;
  padding: 0 40px 25px 0;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  background: var(--amber);
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.final-copy h2 {
  margin: 0 0 24px;
}

.final-copy > p:not(.section-label) {
  max-width: 520px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.final-image img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.site-footer {
  padding: 62px 0 34px;
  color: var(--body);
  background: var(--paper);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer-brand {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, var(--serif);
  font-size: 17px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
}

.footer-links a {
  color: var(--body);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.mobile-fixed-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 110;
  display: none;
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(12px);
}

.mobile-fixed-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-fixed-cta .button {
  width: 100%;
}

.js .reveal,
.js .image-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-visible,
.js .image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-capture .reveal,
.review-capture .image-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Legal pages */
.legal-home,
.back-link {
  color: var(--cta);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.legal-main {
  min-height: 70vh;
  padding: calc(var(--header-height) + 70px) 0 110px;
}

.legal-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--cta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-heading h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
}

.legal-content {
  max-width: 900px;
}

.transaction-list {
  margin: 0 0 48px;
  border-top: 1px solid var(--line);
}

.transaction-list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.transaction-list dt {
  color: var(--ink);
  font-weight: 600;
}

.transaction-list dd {
  margin: 0;
}

.legal-section {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
}

.legal-section p,
.legal-section ul {
  margin-block: 8px;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero h1 {
    width: min(650px, 72vw);
    font-size: clamp(46px, 5vw, 56px);
  }

  .featured-sets {
    grid-template-columns: 1fr;
  }

  .set-feature {
    display: grid;
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  }

  .set-feature--volume {
    grid-template-columns: 1fr;
  }

  .set-feature--volume .set-feature-content {
    max-width: 720px;
  }

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

  .guide-grid > div:nth-child(2) {
    border-right: 0;
  }

  .guide-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
    --section-space: 92px;
    --shell: calc(100% - 44px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .menu-overlay {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 116;
    display: block;
    background: rgba(40, 37, 31, .28);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    z-index: 130;
    display: block;
    width: min(86vw, 370px);
    height: calc(100dvh - var(--header-height));
    padding: 38px 30px;
    background: var(--paper);
    transform: translateX(105%);
    transition: transform .35s var(--ease);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-brand {
    margin: 0 0 28px;
    color: var(--ink);
    font-family: Georgia, var(--serif);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 72px;
    background:
      radial-gradient(circle at 85% 9%, rgba(241, 221, 204, .54), transparent 24%),
      var(--paper);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-kicker {
    order: 1;
    margin-bottom: 4px;
  }

  .hero h1 {
    order: 2;
    width: auto;
    font-size: clamp(35px, 6.5vw, 48px);
  }

  .hero-visual {
    order: 3;
    width: calc(100% + 22px);
    margin: 2px -22px 0 0;
  }

  .hero-lead {
    order: 4;
    margin-top: 2px;
  }

  .hero-description {
    order: 5;
    margin-top: 0;
  }

  .scroll-sign {
    order: 6;
    margin-top: 8px;
  }

  .empathy-layout {
    min-height: 690px;
  }

  .empathy-photo {
    width: 82%;
  }

  .empathy-copy {
    top: 35%;
    width: 64%;
    padding: 38px;
  }

  .empathy-copy h2,
  .brand-copy h2,
  .section-heading h2,
  .compare-intro h2,
  .final-copy h2,
  .revive-copy h2,
  .serum-copy h2,
  .butter-copy h2 {
    font-size: clamp(34px, 5.5vw, 46px);
  }

  .empathy-texture {
    width: 28%;
  }

  .brand-layout,
  .set-basic,
  .product-editorial,
  .revive-layout,
  .serum-layout,
  .butter-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .brand-copy {
    max-width: 660px;
  }

  .brand-scene {
    width: 82%;
    margin-left: auto;
  }

  .brand-scene img {
    aspect-ratio: 4 / 5;
  }

  .brand-products {
    right: auto;
    bottom: -35px;
    left: 0;
    width: 36%;
  }

  .set-basic-image {
    min-height: 0;
  }

  .set-basic-image img {
    aspect-ratio: 4 / 3;
  }

  .set-feature {
    grid-template-columns: 1fr;
  }

  .routine-timeline {
    gap: 28px;
  }

  .routine-timeline::before {
    top: calc(clamp(170px, 23vw, 220px) + 49px);
  }

  .routine-image {
    height: clamp(170px, 23vw, 220px);
  }

  .routine-step::before {
    top: calc(clamp(170px, 23vw, 220px) + 44px);
  }

  .product-editorial--treatment .product-editorial-copy {
    order: 2;
  }

  .product-editorial--treatment .product-editorial-image {
    order: 1;
  }

  .product-editorial-image {
    width: 80%;
  }

  .product-editorial--treatment .product-editorial-image {
    margin-left: auto;
  }

  .revive-image {
    width: 76%;
  }

  .compare-layout {
    grid-template-columns: 1fr;
  }

  .compare-intro {
    position: static;
  }

  .compare-scene,
  .compare-columns {
    grid-column: 1;
  }

  .serum-scene {
    width: 82%;
  }

  .butter-visual {
    width: 78%;
    margin-left: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-fixed-cta {
    display: block;
  }
}

@media (max-width: 620px) {
  :root {
    --section-space: 80px;
    --shell: calc(100% - 40px);
  }

  body {
    font-size: 15px;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 38px);
    letter-spacing: -.1em;
    line-height: 1.36;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-visual {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual-note {
    padding-inline: 20px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-description br {
    display: none;
  }

  .empathy {
    padding-top: 92px;
  }

  .empathy-layout {
    min-height: 0;
    padding-bottom: 46px;
  }

  .empathy-photo {
    width: calc(100% + 20px);
    margin-left: -20px;
  }

  .empathy-photo img {
    aspect-ratio: 4 / 5;
    object-position: 48% center;
  }

  .empathy-copy {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 12px);
    margin: -66px 0 0 auto;
    padding: 31px 26px;
  }

  .empathy-copy h2,
  .brand-copy h2,
  .section-heading h2,
  .compare-intro h2,
  .final-copy h2,
  .revive-copy h2,
  .serum-copy h2,
  .butter-copy h2 {
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1.48;
  }

  .empathy-texture {
    right: auto;
    bottom: 0;
    left: 0;
    width: 31%;
    border-width: 6px;
  }

  .brand-layout {
    gap: 48px;
  }

  .brand-facts div {
    grid-template-columns: 85px 1fr;
  }

  .brand-scene {
    width: calc(100% + 20px);
    margin-right: -20px;
  }

  .brand-scene > p {
    position: static;
    padding: 20px 0 0 20px;
    background: transparent;
  }

  .brand-products {
    bottom: 60px;
    width: 42%;
  }

  .set-basic-copy,
  .set-feature-content {
    padding: 32px 24px;
  }

  .set-confirmation {
    grid-template-columns: 1fr;
  }

  .set-confirmation .set-contents {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .routine-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-left: 22px;
  }

  .routine-timeline::before {
    top: 36px;
    right: auto;
    bottom: 36px;
    left: 5px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .routine-timeline.is-drawn::before {
    transform: scaleY(1);
  }

  .routine-image {
    width: calc(100% + 18px);
    height: auto;
    margin: 0 -18px 24px 0;
  }

  .routine-image img {
    aspect-ratio: 16 / 10;
  }

  .routine-step::before {
    top: 34px;
    left: -22px;
  }

  .basic-products-heading {
    display: grid;
    gap: 10px;
  }

  .basic-products-heading h2 {
    font-size: 36px;
  }

  .product-editorial {
    gap: 42px;
  }

  .product-editorial-image,
  .serum-scene,
  .revive-image,
  .butter-visual {
    width: calc(100% + 20px);
  }

  .product-editorial-image,
  .serum-scene,
  .revive-image {
    margin-left: -20px;
  }

  .product-editorial--treatment .product-editorial-image,
  .butter-visual {
    margin-right: -20px;
    margin-left: 0;
  }

  .product-editorial + .product-editorial {
    margin-top: 116px;
  }

  .revive-keywords {
    right: -20px;
  }

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

  .compare-scene {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .product-mini-purchase {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .product-mini-purchase .purchase-block {
    display: contents;
  }

  .product-mini-purchase .product-price {
    grid-column: 2;
  }

  .product-mini-purchase .button {
    grid-column: 1 / -1;
    width: 100%;
    transform: none;
  }

  .butter-visual p {
    padding: 17px 20px;
    font-size: 14px;
  }

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

  .guide-grid > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-grid > div:last-child {
    border-bottom: 0;
  }

  .final-actions {
    display: grid;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transaction-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 52px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-title-line,
  .hero-visual,
  .js .reveal,
  .js .image-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ROUND4 IMAGE & LAYOUT FIX
   Only image placement, image framing, text wrapping, and the image-free
   routine/final CTA layouts are adjusted here. */

h1,
h2,
h3,
.product-catch,
.product-for,
.set-catch {
  word-break: auto-phrase;
  text-wrap: pretty;
}

p,
li,
dd {
  line-break: strict;
  text-wrap: pretty;
}

.keep-together {
  white-space: nowrap;
}

.revive-copy h2 {
  font-size: clamp(38px, 3.25vw, 48px);
}

.empathy-layout {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
  min-height: 0;
}

.empathy-photo {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.empathy-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 48%;
}

.empathy-copy {
  position: static;
  width: 100%;
  padding: 0;
  background: transparent;
}

.brand-scene {
  overflow: hidden;
  border-radius: 12px;
}

.brand-scene img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 43%;
}

.set-basic-image {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: clamp(22px, 3vw, 40px);
  overflow: hidden;
  background: color-mix(in srgb, var(--beige) 78%, var(--paper));
}

.set-basic-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(8px, 2vw, 24px);
  width: 100%;
  height: 100%;
}

.set-basic-products picture {
  display: grid;
  height: 100%;
  place-items: end center;
}

.set-basic-products img {
  width: 100%;
  height: 100%;
  max-height: 410px;
  object-fit: contain;
}

.set-feature {
  grid-template-rows: auto 1fr;
}

.set-feature-media {
  padding: clamp(18px, 2.6vw, 30px);
  padding-bottom: 0;
}

.set-feature-media picture {
  display: block;
}

.set-feature-media img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
}

.set-feature--moisture .set-feature-media {
  background: color-mix(in srgb, var(--amber) 72%, var(--paper));
}

.set-feature--volume .set-feature-media {
  background: color-mix(in srgb, var(--sage) 90%, var(--paper));
}

.routine-timeline::before {
  top: 23px;
  right: 8%;
  left: 8%;
}

.routine-step {
  padding-top: 48px;
}

.routine-step::before {
  top: 18px;
}

.product-editorial-image {
  box-sizing: border-box;
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: color-mix(in srgb, var(--paper) 84%, var(--beige));
  place-items: center;
  padding: clamp(18px, 2.5vw, 32px);
}

.product-editorial-image picture {
  display: block;
  width: 100%;
}

.product-editorial-image img {
  width: 100%;
  max-height: 640px;
  border-radius: 8px;
  object-fit: contain;
}

.revive-image {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  padding: clamp(18px, 2.5vw, 30px);
  border-radius: 12px;
  background: rgba(255, 255, 255, .34);
}

.revive-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 650px;
  border-radius: 8px;
  object-fit: contain;
}

.revive-plant-line {
  position: absolute;
  top: 8%;
  right: -16%;
  z-index: 0;
  width: 42%;
  height: 76%;
  border-right: 1px solid rgba(52, 70, 58, .12);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.revive-plant-line::before,
.revive-plant-line::after {
  position: absolute;
  width: 34px;
  height: 15px;
  border: 1px solid rgba(52, 70, 58, .1);
  border-right: 0;
  border-bottom: 0;
  border-radius: 80% 0;
  content: "";
}

.revive-plant-line::before {
  top: 31%;
  right: -1px;
  transform: rotate(24deg);
}

.revive-plant-line::after {
  top: 53%;
  right: 2px;
  transform: rotate(-24deg) scaleX(-1);
}

.revive-keywords {
  z-index: 2;
}

.serum-scene {
  overflow: hidden;
  border-radius: 16px 16px 8px 16px;
}

.serum-scene img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.product-mini-purchase > img {
  width: 100%;
  max-height: 206px;
  border-radius: 8px;
  object-fit: contain;
}

.butter-visual {
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(20px, 3vw, 38px);
  border-radius: 12px;
  background: color-mix(in srgb, var(--amber) 52%, var(--paper));
}

.butter-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  object-fit: contain;
}

.final-layout {
  display: block;
}

.final-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.final-copy > p:not(.section-label) {
  margin-inline: auto;
}

.final-actions {
  justify-content: center;
}

@media (max-width: 1040px) {
  .set-feature-media {
    align-self: stretch;
  }

  .set-feature-media picture,
  .set-feature-media img {
    height: 100%;
  }
}

@media (max-width: 820px) {
  .empathy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .empathy-photo {
    width: 100%;
  }

  .empathy-copy {
    width: 100%;
  }

  .brand-scene {
    width: min(100%, 640px);
    margin-left: auto;
  }

  .brand-scene img {
    aspect-ratio: 4 / 3;
  }

  .set-basic-products img {
    max-height: 380px;
  }

  .product-editorial-image,
  .revive-image,
  .serum-scene,
  .butter-visual {
    border-radius: 12px;
  }
}

@media (max-width: 620px) {
  .empathy-photo {
    width: 100%;
    margin-left: 0;
  }

  .empathy-photo img {
    aspect-ratio: 4 / 3;
    object-position: 50% 48%;
  }

  .empathy-copy {
    margin: 0;
    padding: 0;
  }

  .brand-scene {
    width: 100%;
    margin-right: 0;
  }

  .set-basic-image {
    min-height: 340px;
    padding: 16px 12px;
  }

  .set-basic-products {
    gap: 4px;
  }

  .set-basic-products img {
    max-height: 320px;
  }

  .set-feature {
    grid-template-columns: 1fr;
  }

  .set-feature-media {
    padding: 16px 16px 0;
  }

  .routine-timeline {
    padding-left: 26px;
  }

  .routine-timeline::before {
    top: 9px;
    bottom: 12px;
    left: 5px;
  }

  .routine-step {
    padding-top: 0;
    padding-left: 5px;
  }

  .routine-step::before {
    top: 4px;
    left: -26px;
  }

  .product-editorial-image,
  .serum-scene,
  .butter-visual {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .revive-image {
    width: calc(100vw - 40px);
    margin-right: 0;
    margin-left: 0;
  }

  .revive-plant-line {
    right: -8%;
  }

  .revive-keywords {
    right: 8px;
    bottom: 20px;
  }

  .serum-scene img {
    aspect-ratio: 3 / 2;
  }

  .butter-visual {
    padding: 18px;
  }
}

/* TARGETED DESIGN FIX — 2026-07-25
   The current visual system is preserved; only the user-specified sections
   receive layout, copy-wrap, imagery, and botanical-background adjustments. */

.hero {
  min-height: auto;
  padding-top: calc(var(--header-height) + clamp(48px, 6vh, 72px));
  padding-bottom: clamp(56px, 5vw, 72px);
}

.hero-layout {
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  gap: clamp(30px, 4vw, 58px);
}

.hero h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(44px, 3.45vw, 52px);
}

.empathy-copy h2 {
  font-size: clamp(38px, 3.25vw, 48px);
}

.empathy {
  padding-top: clamp(84px, 7vw, 104px);
}

.empathy-nowrap {
  display: block;
  white-space: nowrap;
}

.brand-copy h2 {
  font-size: clamp(40px, 3vw, 44px);
}

.brand-title-balanced span,
.brand-statement span {
  display: block;
}

.brand-statement {
  display: grid;
  gap: 4px;
  margin: 42px 0 0;
  padding: 22px 0 20px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.8;
}

.brand-scene img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: center;
}

.revive-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 14%, rgba(255, 255, 255, .48) 0 12%, transparent 34%),
    radial-gradient(ellipse at 92% 88%, rgba(92, 119, 88, .12) 0 10%, transparent 34%),
    var(--sage);
}

.revive-section::before {
  position: absolute;
  top: -3%;
  right: -1%;
  z-index: 0;
  width: min(38vw, 560px);
  height: 78%;
  background-image: url("data:image/svg+xml,%3Csvg width='520' height='760' viewBox='0 0 520 760' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2334463a' stroke-width='1.6' opacity='.34'%3E%3Cpath d='M470 12C380 158 397 280 260 376S106 590 46 748'/%3E%3Cpath d='M388 230c-46-8-87-34-114-76M307 342c60-7 104-35 137-82M216 421c-46-4-85-26-112-65M157 506c44-2 82-20 115-56'/%3E%3Cellipse cx='318' cy='168' rx='40' ry='15' transform='rotate(35 318 168)'/%3E%3Cellipse cx='424' cy='250' rx='44' ry='16' transform='rotate(-36 424 250)'/%3E%3Cellipse cx='145' cy='358' rx='38' ry='14' transform='rotate(31 145 358)'/%3E%3Cellipse cx='265' cy='451' rx='42' ry='15' transform='rotate(-29 265 451)'/%3E%3Cellipse cx='87' cy='585' rx='41' ry='15' transform='rotate(35 87 585)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: .9;
  pointer-events: none;
}

.revive-section::after {
  top: auto;
  right: -7%;
  bottom: -19%;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  max-width: none;
  max-height: none;
  border: 1px solid rgba(52, 70, 58, .13);
  border-radius: 61% 39% 58% 42%;
  transform: rotate(18deg);
}

.serum-section {
  background: var(--paper);
}

.serum-layout {
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  gap: clamp(58px, 8vw, 116px);
}

.serum-copy {
  max-width: 580px;
}

.serum-visual {
  box-sizing: border-box;
  display: grid;
  overflow: hidden;
  padding: clamp(20px, 3vw, 38px);
  border-radius: 12px;
  background: color-mix(in srgb, var(--amber) 52%, var(--paper));
  place-items: center;
}

.serum-visual picture {
  display: block;
  width: 100%;
}

.serum-visual img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  object-fit: contain;
}

.final-cta {
  background: var(--beige);
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.final-copy {
  max-width: none;
  margin: 0;
  text-align: left;
}

.final-copy > p:not(.section-label) {
  margin-inline: 0;
}

.final-actions {
  justify-content: flex-start;
}

.final-image {
  overflow: hidden;
  border-radius: 12px;
}

.final-image img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1040px) and (min-width: 821px) {
  .hero h1 {
    font-size: clamp(38px, 4.2vw, 44px);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 68px;
  }

  .hero-layout,
  .serum-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(35px, 6.5vw, 48px);
  }

  .empathy-copy h2 {
    font-size: clamp(34px, 5.5vw, 46px);
  }

  .brand-scene {
    width: 100%;
  }

  .brand-scene img {
    aspect-ratio: 8 / 5;
  }

  .serum-visual {
    width: 78%;
    margin-left: auto;
  }

  .final-copy {
    max-width: 660px;
  }

  .final-image {
    width: min(100%, 640px);
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 58px;
  }

  .brand-copy h2 {
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .empathy-nowrap {
    font-size: clamp(25px, 7.4vw, 30px);
    letter-spacing: -.045em;
    white-space: nowrap;
  }

  .brand-title-balanced span {
    display: inline;
  }

  .brand-title-balanced span:not(:last-child)::after {
    content: " ";
  }

  .brand-statement {
    margin-top: 32px;
    padding: 18px 0 18px 18px;
    font-size: 17px;
  }

  .brand-statement span {
    display: inline;
  }

  .revive-section::before {
    top: 0;
    right: -22%;
    width: 82vw;
    height: 52%;
    opacity: .7;
  }

  .serum-visual {
    width: calc(100% + 20px);
    margin-right: -20px;
    padding: 18px;
  }

  .final-layout {
    gap: 46px;
  }

  .final-image {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
}

/* EDITORIAL CTA & SELECTED SURFACE UPDATE — 2026-07-25
   Scope: hero background, the three set surfaces, repair treatment image
   surface, and the existing CTA system. Content and layout are unchanged. */

.hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(241, 221, 204, .32) 0 12%, transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(232, 237, 227, .22) 0 10%, transparent 32%),
    radial-gradient(circle at 64% 54%, rgba(255, 253, 248, .72) 0 16%, transparent 42%),
    var(--paper);
  background-position:
    calc(82% - 5px) calc(12% - 4px),
    calc(18% + 5px) calc(78% + 4px),
    calc(64% - 4px) calc(54% + 5px),
    center;
  background-repeat: no-repeat;
  background-size: 112% 112%, 110% 110%, 108% 108%, auto;
  animation: hero-background-drift 16s ease-in-out infinite alternate;
}

@keyframes hero-background-drift {
  to {
    background-position:
      calc(82% + 5px) calc(12% + 4px),
      calc(18% - 5px) calc(78% - 4px),
      calc(64% + 4px) calc(54% - 5px),
      center;
  }
}

.set-basic {
  background: linear-gradient(118deg, #fffdf8 0%, rgba(247, 240, 231, .74) 100%);
}

.set-basic-image {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.set-basic-image::before {
  position: absolute;
  inset: 7% 8% 6%;
  z-index: -1;
  border-radius: 58px 18px 72px 26px;
  background: rgba(247, 240, 231, .84);
  content: "";
  pointer-events: none;
}

.set-basic-products {
  position: relative;
  z-index: 1;
}

.set-feature--moisture {
  background: linear-gradient(142deg, #fff 0%, rgba(241, 221, 204, .7) 100%);
}

.set-feature--volume {
  background: linear-gradient(142deg, #fff 0%, rgba(232, 237, 227, .86) 100%);
}

.set-feature-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.set-feature--moisture .set-feature-media,
.set-feature--volume .set-feature-media {
  background: transparent;
}

.set-feature-media picture {
  position: relative;
  z-index: 1;
}

.set-feature--moisture .set-feature-media::before {
  position: absolute;
  inset: 7% 8% 0;
  z-index: -1;
  border-radius: 48% 48% 12px 12px / 27% 27% 12px 12px;
  background: rgba(255, 255, 255, .46);
  content: "";
  pointer-events: none;
}

.set-feature--volume .set-feature-media::before {
  position: absolute;
  top: 4%;
  bottom: -18%;
  left: 50%;
  z-index: -1;
  width: 66%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.set-feature--volume .set-feature-media::after {
  position: absolute;
  top: 12%;
  right: 4%;
  z-index: 0;
  width: 34%;
  height: 76%;
  border-right: 1px solid rgba(52, 70, 58, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-8deg);
}

.product-editorial--treatment .product-editorial-image {
  position: relative;
  isolation: isolate;
  background: linear-gradient(155deg, #fffdf8 0%, rgba(247, 240, 231, .88) 100%);
}

.product-editorial--treatment .product-editorial-image::before {
  position: absolute;
  inset: 5% 10% 3%;
  z-index: -1;
  border-radius: 48% 48% 12px 12px / 25% 25% 12px 12px;
  background: rgba(255, 255, 255, .68);
  content: "";
  pointer-events: none;
}

.product-editorial--treatment .product-editorial-image picture {
  position: relative;
  z-index: 1;
  width: 107%;
  margin-inline: -3.5%;
}

.product-editorial--treatment .product-editorial-image img {
  max-height: 684px;
  transform-origin: center;
}

.js .product-editorial--treatment .product-editorial-image img {
  transform: scale(1.03);
  transition: transform 800ms var(--ease);
}

.js .product-editorial--treatment .product-editorial-image.is-visible img,
.review-capture .product-editorial--treatment .product-editorial-image img {
  transform: scale(1);
}

.button {
  position: relative;
  display: inline-grid;
  min-height: 58px;
  grid-template-columns: minmax(0, auto) 56px;
  align-items: stretch;
  justify-content: stretch;
  column-gap: 20px;
  overflow: hidden;
  padding: 0 0 0 20px;
  border: 1px solid #2c2924;
  border-radius: 1px;
  color: #fffdf8 !important;
  background-color: #2c2924 !important;
  background-image: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .04em;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  -webkit-text-fill-color: #fffdf8;
  transform: none;
  transition:
    color 220ms ease-out,
    background-color 220ms ease-out,
    border-color 220ms ease-out;
}

.button::after {
  display: block;
  align-self: stretch;
  width: 56px;
  min-height: 56px;
  border-left: 1px solid rgba(255, 253, 248, .36);
  background-color: #b9794e;
  background-image:
    linear-gradient(#fffdf8, #fffdf8),
    linear-gradient(45deg, transparent 42%, #fffdf8 43% 56%, transparent 57%),
    linear-gradient(135deg, transparent 42%, #fffdf8 43% 56%, transparent 57%);
  background-position:
    calc(50% - 1px) 50%,
    calc(50% + 6px) calc(50% - 3px),
    calc(50% + 6px) calc(50% + 3px);
  background-repeat: no-repeat;
  background-size: 18px 1px, 8px 8px, 8px 8px;
  content: "";
  transition:
    background-color 220ms ease-out,
    border-color 220ms ease-out,
    background-position 220ms ease-out;
}

.button:hover {
  border-color: #1f1d1a;
  color: #fffdf8 !important;
  background-color: #1f1d1a !important;
  box-shadow: none;
  transform: none;
}

.button:hover::after {
  border-left-color: rgba(255, 253, 248, .56);
  background-color: #a76542;
  background-position:
    calc(50% + 3px) 50%,
    calc(50% + 10px) calc(50% - 3px),
    calc(50% + 10px) calc(50% + 3px);
}

.button:focus-visible {
  border-color: #2c2924;
  outline: 2px solid #b9794e;
  outline-offset: 3px;
  color: #fffdf8 !important;
  background-color: #2c2924 !important;
  box-shadow: none;
  transform: none;
}

.button--outline {
  border-color: #2c2924;
  color: #2c2924 !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #2c2924;
}

.button--outline:hover {
  border-color: #2c2924;
  color: #fffdf8 !important;
  background-color: #2c2924 !important;
  -webkit-text-fill-color: #fffdf8;
}

.button--outline:focus-visible {
  color: #2c2924 !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #2c2924;
}

.mobile-fixed-cta {
  padding: 0 0 env(safe-area-inset-bottom);
  border-top: 1px solid rgba(185, 121, 78, .5);
  background: #2c2924;
  box-shadow: none;
  backdrop-filter: none;
}

.mobile-fixed-cta .button {
  width: 100%;
  min-height: 56px;
  grid-template-columns: minmax(0, 1fr) 56px;
  column-gap: 0;
  padding-left: 20px;
  border: 0;
  border-radius: 0;
}

.mobile-fixed-cta .button::after {
  min-height: 56px;
}

@media (max-width: 820px) {
  body:has(.mobile-fixed-cta) {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .button {
    min-height: 56px;
    grid-template-columns: minmax(0, auto) 56px;
  }
}

@media (max-width: 620px) {
  .button {
    width: 100%;
    min-height: 54px;
    grid-template-columns: minmax(0, 1fr) 54px;
    column-gap: 18px;
    padding-left: 18px;
    font-size: 14px;
  }

  .button::after {
    width: 54px;
    min-height: 54px;
  }

  .mobile-fixed-cta .button {
    min-height: 56px;
    grid-template-columns: minmax(0, 1fr) 56px;
    column-gap: 0;
    padding-left: 18px;
  }

  .mobile-fixed-cta .button::after {
    width: 56px;
    min-height: 56px;
  }

  .set-basic-image::before {
    inset: 6% 5% 5%;
    border-radius: 38px 12px 48px 18px;
  }

  .set-feature--moisture .set-feature-media::before {
    inset: 6% 5% 0;
  }

  .set-feature--volume .set-feature-media::before {
    width: 72%;
  }

  .product-editorial--treatment .product-editorial-image::before {
    inset: 5% 7% 3%;
  }

  .product-editorial--treatment .product-editorial-image picture {
    width: 106%;
    margin-inline: -3%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none !important;
  }

  .product-editorial--treatment .product-editorial-image img {
    transform: none !important;
  }
}

/* RECOMMENDED SET CTA */
.sets-section .button[data-event-name="select_set"] {
  position: relative;
  z-index: 0;
  display: flex;
  width: min(100%, 350px);
  max-width: 350px;
  height: 50px;
  min-height: 50px;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0;
  isolation: isolate;
  overflow: hidden;
  margin-top: 18px;
  padding: 0 52px 0 20px;
  border: 1px solid #2c2924;
  border-radius: 1px;
  color: #fffdf8 !important;
  background-color: #2c2924 !important;
  background-image: none !important;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  text-align: left;
  white-space: nowrap;
  -webkit-text-fill-color: #fffdf8;
  transform: none;
  transition: background-color 200ms ease-out;
}

.sets-section .button[data-event-name="select_set"]::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #2c2924;
  content: "";
  pointer-events: none;
  transition: background-color 200ms ease-out;
}

.sets-section .button[data-event-name="select_set"]::after {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  display: block;
  align-self: auto;
  width: 20px;
  min-height: 0;
  height: 12px;
  margin-top: -6px;
  border: 0;
  background: #fffdf8;
  clip-path: polygon(0 45%, 70% 45%, 55% 0, 65% 0, 100% 50%, 65% 100%, 55% 100%, 70% 55%, 0 55%);
  content: "";
  pointer-events: none;
  transform: none;
  transition: transform 200ms ease-out;
}

.sets-section .button[data-event-name="select_set"]:hover {
  border-color: #211f1b;
  color: #fffdf8 !important;
  background-color: #211f1b !important;
  background-image: none !important;
  box-shadow: none;
  transform: none;
}

.sets-section .button[data-event-name="select_set"]:hover::before {
  background-color: #211f1b;
}

.sets-section .button[data-event-name="select_set"]:hover::after {
  border: 0;
  background: #fffdf8;
  transform: translateX(3px);
}

.sets-section .button[data-event-name="select_set"]:focus-visible {
  border-color: #2c2924;
  outline: 2px solid #b9794e;
  outline-offset: 3px;
  color: #fffdf8 !important;
  background-color: #2c2924 !important;
  background-image: none !important;
  box-shadow: none;
  transform: none;
}

.sets-section .button[data-event-name="select_set"]:focus-visible::before {
  background-color: #2c2924;
}

@media (max-width: 620px) {
  .sets-section .button[data-event-name="select_set"] {
    width: 100%;
    max-width: none;
    height: 52px;
    min-height: 52px;
    padding: 0 52px 0 20px;
    font-size: 14px;
  }

  .sets-section .button[data-event-name="select_set"]::after {
    right: 20px;
    width: 20px;
    min-height: 0;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sets-section .button[data-event-name="select_set"],
  .sets-section .button[data-event-name="select_set"]::before,
  .sets-section .button[data-event-name="select_set"]::after {
    transition: none !important;
  }

  .sets-section .button[data-event-name="select_set"]:hover::after {
    transform: none;
  }
}

/* PRODUCT PHOTO & CTA CONSISTENCY — 2026-07-27
   Uses the supplied photography without cropping products or changing content. */

.product-editorial-image,
.revive-image,
.serum-visual,
.butter-visual {
  aspect-ratio: 4 / 5;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.product-editorial-image > .updated-product-photo,
.revive-image > .updated-product-photo,
.serum-visual > .updated-product-photo,
.butter-visual > .updated-product-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100% !important;
  max-width: none;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: auto;
  margin: 0 !important;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: none !important;
}

.js .product-editorial--treatment .product-editorial-image > .updated-product-photo,
.js .product-editorial--treatment .product-editorial-image.is-visible > .updated-product-photo {
  transform: none !important;
  transition: none;
}

.set-basic-image,
.set-feature-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
}

.set-basic-image > .updated-set-photo,
.set-feature-media > .updated-set-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.button,
.sets-section .button[data-event-name="select_set"] {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  width: min(100%, 350px);
  max-width: 350px;
  height: 50px;
  min-height: 50px;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0;
  overflow: hidden;
  margin-top: 18px;
  padding: 0 52px 0 20px;
  border: 1px solid #2c2924;
  border-radius: 1px;
  color: #fffdf8 !important;
  background: #2c2924 !important;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  text-align: left;
  white-space: nowrap;
  -webkit-text-fill-color: #fffdf8;
  transform: none;
  transition: background-color 200ms ease-out, border-color 200ms ease-out;
}

.button {
  margin-top: 0;
}

.sets-section .button[data-event-name="select_set"] {
  margin-top: 18px;
}

.button::before,
.sets-section .button[data-event-name="select_set"]::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #2c2924;
  content: "";
  pointer-events: none;
  transition: background-color 200ms ease-out;
}

.button::after,
.sets-section .button[data-event-name="select_set"]::after {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  display: block;
  align-self: auto;
  width: 20px;
  min-height: 0;
  height: 12px;
  margin-top: -6px;
  border: 0;
  background: #fffdf8;
  clip-path: polygon(0 45%, 70% 45%, 55% 0, 65% 0, 100% 50%, 65% 100%, 55% 100%, 70% 55%, 0 55%);
  content: "";
  pointer-events: none;
  transform: none;
  transition: transform 200ms ease-out;
}

.button:hover,
.sets-section .button[data-event-name="select_set"]:hover {
  border-color: #211f1b;
  color: #fffdf8 !important;
  background: #211f1b !important;
  box-shadow: none;
  transform: none;
}

.button:hover::before,
.sets-section .button[data-event-name="select_set"]:hover::before {
  background: #211f1b;
}

.button:hover::after,
.sets-section .button[data-event-name="select_set"]:hover::after {
  border: 0;
  background: #fffdf8;
  transform: translateX(3px);
}

.button:focus-visible,
.sets-section .button[data-event-name="select_set"]:focus-visible {
  border-color: #2c2924;
  outline: 2px solid #b9794e;
  outline-offset: 3px;
  color: #fffdf8 !important;
  background: #2c2924 !important;
  box-shadow: none;
  transform: none;
}

.final-actions .button {
  margin-top: 0;
}

.mobile-fixed-cta .button {
  width: 100%;
  max-width: none;
  height: 56px;
  min-height: 56px;
  margin-top: 0;
  padding: 0 52px 0 20px;
  border: 0;
  border-radius: 0;
}

@media (max-width: 620px) {
  .button,
  .sets-section .button[data-event-name="select_set"] {
    width: 100%;
    max-width: none;
    height: 52px;
    min-height: 52px;
    padding: 0 52px 0 20px;
    font-size: 14px;
  }

  .button::after,
  .sets-section .button[data-event-name="select_set"]::after {
    right: 20px;
    width: 20px;
    min-height: 0;
    height: 12px;
  }

  .mobile-fixed-cta .button {
    height: 56px;
    min-height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before,
  .button::after {
    transition: none !important;
  }

  .button:hover::after {
    transform: none;
  }
}

/* FROM OUR SALON — 2026-07-27 */

.salon-origin {
  position: relative;
  overflow: hidden;
  background: linear-gradient(132deg, #fffdf8 0%, #f7f0e7 100%);
}

.salon-origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.salon-origin-copy {
  max-width: 590px;
}

.salon-origin-copy .section-label {
  margin-bottom: 24px;
}

.salon-origin-copy h2 {
  margin: 0;
  font-size: clamp(40px, 3.25vw, 52px);
  line-height: 1.5;
  letter-spacing: -.035em;
}

.salon-origin-copy h2 span {
  display: block;
}

.salon-origin-body {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.salon-origin-body p {
  margin: 0;
}

.salon-origin-statement {
  display: grid;
  gap: 5px;
  margin: 34px 0 0;
  padding: 22px 0 0 22px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.75;
}

.salon-origin-statement strong {
  font-weight: 600;
}

.salon-origin-visual {
  overflow: hidden;
  border-radius: 14px;
}

.salon-origin-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .salon-origin-layout {
    grid-template-columns: minmax(0, 49fr) minmax(0, 51fr);
    gap: 44px;
  }

  .salon-origin-copy h2 {
    font-size: clamp(34px, 4vw, 42px);
  }
}

@media (max-width: 820px) {
  .salon-origin-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .salon-origin-copy {
    max-width: 680px;
  }

  .salon-origin-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .salon-origin-copy .section-label {
    margin-bottom: 18px;
  }

  .salon-origin-copy h2 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.55;
  }

  .salon-origin-copy h2 span {
    display: inline;
  }

  .salon-origin-copy h2 span:first-child::after {
    content: " ";
  }

  .salon-origin-body {
    gap: 13px;
    margin-top: 28px;
  }

  .salon-origin-statement {
    margin-top: 30px;
    padding: 18px 0 0 18px;
    font-size: 17px;
  }

  .salon-origin-visual {
    width: 100%;
  }
}

/* UNIFIED SET CARDS — 2026-07-27 */

.featured-sets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.set-feature,
.set-feature--volume {
  display: grid;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  min-height: 100%;
}

.set-feature--basic {
  background: linear-gradient(142deg, #fffdf8 0%, rgba(247, 240, 231, .82) 100%);
}

.set-feature-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(28px, 2.6vw, 38px);
}

.sets-section .set-feature h3 {
  font-size: clamp(27px, 2.05vw, 32px);
}

.set-feature-content .set-contents {
  width: 100%;
  margin-top: auto;
}

.set-feature-content .set-price {
  width: 100%;
}

@media (max-width: 1040px) {
  .featured-sets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .featured-sets {
    grid-template-columns: 1fr;
  }

  .set-feature-content {
    padding: 32px 24px;
  }
}
