@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Baliana";
  src: url("assets/Baliana.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #f6f2ea;
  --bg-soft: #fbf7f1;
  --bg-warm: #efe7da;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-deep: rgba(255, 255, 255, 0.9);
  --ink: #2f261f;
  --ink-soft: #66584a;
  --ink-muted: #897968;
  --accent: #a87445;
  --accent-strong: #7f5630;
  --line: rgba(58, 43, 29, 0.16);
  --line-soft: rgba(58, 43, 29, 0.09);
  --radius-xl: 30px;
  --radius-l: 20px;
  --radius-m: 14px;
  --shadow-soft: 0 10px 24px rgba(57, 41, 27, 0.07);
  --shadow-card: 0 14px 30px rgba(57, 41, 27, 0.08);
  --shadow-strong: 0 22px 48px rgba(44, 30, 20, 0.11);
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Baliana", "Playfair Display", serif;
  --hero-offer-blend: #f4ebe8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 100% -12%, rgba(176, 122, 71, 0.11), transparent 42%),
    linear-gradient(180deg, #f8f5ef 0%, #f3ede3 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.62;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

.page-aura {
  background:
    radial-gradient(30% 20% at 80% 10%, rgba(196, 145, 94, 0.12), transparent 70%),
    radial-gradient(28% 18% at 20% 75%, rgba(176, 122, 71, 0.09), transparent 72%);
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

body::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
  content: "";
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  width: min(1160px, 90vw);
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.88), rgba(247, 241, 232, 0.88));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.soin-section {
  padding: 0;
  scroll-margin-top: 156px;
}

.soin-section .container {
  width: 100%;
  max-width: none;
}

.site-header {
  backdrop-filter: blur(8px);
  background: rgba(248, 244, 237, 0.86);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  transition: box-shadow 0.22s ease, background 0.22s ease;
  z-index: 40;
}

.site-header .container {
  margin: 0;
  padding: 0 clamp(14px, 2.6vw, 40px);
  width: 100%;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 237, 0.95);
  box-shadow: 0 8px 18px rgba(55, 38, 22, 0.06);
}

.site-announcement {
  background: linear-gradient(90deg, #6d123f 0%, #8a0946 52%, #6d123f 100%);
  border-top: 1px solid rgba(249, 231, 239, 0.2);
  padding: 5px 16px;
}

.site-announcement-inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.site-announcement-badge {
  background: rgba(249, 231, 239, 0.22);
  border-radius: 999px;
  color: #f9e7ef;
  font-size: clamp(0.45rem, 0.55vw, 0.55rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 0;
  padding: 9px 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-announcement-copy {
  color: #f9e7ef;
  font-size: clamp(0.58rem, 1.15vw, 0.92rem);
  line-height: 1.2;
  margin: 0;
}

.site-announcement-copy strong {
  color: #fff;
  font-weight: 800;
}

.site-announcement-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: clamp(0.56rem, 0.82vw, 0.78rem);
  font-weight: 700;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.site-announcement-link span:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-announcement-link:hover {
  opacity: 0.86;
}

.site-announcement-link span:last-child {
  font-size: 1.12em;
  line-height: 1;
  text-decoration: none;
}

.site-announcement-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.84);
  outline-offset: 3px;
}

.site-announcement-link span {
  display: inline-block;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 112px;
}

.header-left {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.header-right {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 9, 70, 0.32);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(138, 9, 70, 0.12);
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 0;
  place-items: center;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  width: 42px;
  z-index: 70;
}

.menu-toggle span {
  background: #8a0946;
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 3px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 18px;
}

.menu-toggle:hover {
  box-shadow: 0 8px 16px rgba(138, 9, 70, 0.16);
  transform: translateY(-1px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav-backdrop {
  background: rgba(30, 20, 12, 0.36);
  border: 0;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 55;
}

body.is-mobile-menu-open {
  overflow: hidden;
}

body.is-mobile-menu-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.header-icon-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(138, 9, 70, 0.38);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(138, 9, 70, 0.1);
  color: #8a0946;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: 42px;
}

.header-icon-link svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.header-icon-link:hover {
  box-shadow: 0 8px 16px rgba(138, 9, 70, 0.18);
  transform: translateY(-1px);
}

.header-icon-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(138, 9, 70, 0.2);
  outline: none;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline-flex;
  flex: 0 0 auto;
  height: 108px;
  justify-content: center;
  width: 108px;
}

.brand-mark img {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.brand-name {
  color: #8a0946;
  font-family: var(--font-display);
  font-size: clamp(1.56rem, 2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  position: relative;
  text-transform: uppercase;
  transition: color 0.24s ease;
}

.main-nav a::after {
  background: #8a0946;
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0.24s ease;
  width: 100%;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: transparent;
  border: 1px solid #8a0946;
  border-radius: 999px;
  box-shadow: none;
  color: #8a0946;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-cta:hover {
  box-shadow: 0 8px 16px rgba(138, 9, 70, 0.22);
  transform: translateY(-2px);
}

.hero {
  padding-top: 126px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 62px;
  grid-template-columns: 1.06fr 0.94fr;
}

.hero-script {
  color: #8a0946;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.85vw, 4.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.24rem, 1.6vw, 1.62rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.02vw, 1rem);
  margin: 0;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hero-signals li {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #665747;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 11px 18px;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #a87445;
  border: 1px solid rgba(90, 59, 31, 0.26);
  box-shadow: 0 10px 20px rgba(145, 97, 47, 0.22);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(145, 97, 47, 0.3);
}

.hero-actions .btn-primary {
  background: #8a0946;
  border: 1px solid rgba(138, 9, 70, 0.42);
  box-shadow: 0 10px 20px rgba(138, 9, 70, 0.22);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 14px 24px rgba(138, 9, 70, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(93, 66, 40, 0.23);
  color: var(--ink);
}

.btn-large {
  font-size: 0.84rem;
  padding: 13px 22px;
}

.hero-stage {
  display: grid;
  gap: 16px;
  justify-self: end;
  max-width: 500px;
  width: 100%;
}

.hero-product-card {
  background: transparent;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero-product {
  animation: none;
  border: 1px solid rgba(90, 64, 38, 0.16);
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(61, 41, 24, 0.1);
}

.hero-product-bundle {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 62%;
  width: 100%;
}

.hero-badge {
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(91, 64, 39, 0.16);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(65, 45, 28, 0.08);
  min-width: 116px;
  padding: 8px 10px;
  position: absolute;
  text-align: center;
}

.hero-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
}

.hero-badge small {
  color: var(--ink-muted);
  display: block;
  font-size: 0.7rem;
  margin-top: 3px;
}

.hero-badge-top {
  right: 14px;
  top: 14px;
}

.hero-badge-bottom {
  bottom: 14px;
  left: 14px;
}

.stat-line {
  padding: 8px 0 0;
}

.stats-grid {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(84, 58, 34, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px;
}

.stats-grid article {
  align-items: center;
  border-right: 1px solid rgba(84, 58, 34, 0.13);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px;
  text-align: center;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stat-value {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 1.9vw, 1.78rem);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 6px;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  margin: 0;
}

.hero-showcase {
  padding-bottom: 0;
  padding-top: 0;
}

.hero-showcase .container {
  margin: 0;
  width: 100%;
}

.hero-showcase-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero-showcase-card::after {
  background:
    linear-gradient(
      90deg,
      rgba(247, 242, 239, 0.96) 0%,
      rgba(247, 242, 239, 0.88) 34%,
      rgba(247, 242, 239, 0.54) 62%,
      rgba(247, 242, 239, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(244, 235, 232, 0) 0%,
      rgba(244, 235, 232, 0) 58%,
      rgba(244, 235, 232, 0.42) 78%,
      var(--hero-offer-blend) 100%
    );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-showcase-image {
  display: block;
  height: auto;
  width: 100%;
}

@media (min-width: 981px) {
  .hero-showcase-card {
    height: clamp(760px, 58vw, 1080px);
    --hero-top-crop: 170px;
  }

  .hero-showcase-image {
    height: calc(100% + var(--hero-top-crop));
    inset: calc(-1 * var(--hero-top-crop)) 0 0 0;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    width: 100%;
  }
}

.hero-showcase-content {
  left: clamp(120px, 14vw, 250px);
  max-width: min(860px, 60vw);
  position: absolute;
  top: clamp(46px, 5.2vw, 96px);
  transform: none;
  z-index: 2;
}

.hero-showcase-kicker {
  color: #8a0946;
  font-size: clamp(0.82rem, 1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.hero-showcase h1 {
  color: #5f0f3b;
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
  max-width: 24ch;
}

.hero-showcase .hero-sublead {
  color: #6d4f5d;
  font-size: clamp(1rem, 1.22vw, 1.24rem);
  line-height: 1.58;
  margin: 20px 0 2.8em;
  margin-bottom: 2lh;
  max-width: min(52ch, 100%);
  text-align: justify;
}

.hero-duo-proof {
  column-gap: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  margin: 18px 0 2.8em;
  margin-bottom: 2lh;
  padding: 0 0 1lh;
  transform: none;
}

.hero-duo-proof li {
  align-items: center;
  color: #6b5060;
  display: flex;
  font-size: clamp(0.84rem, 0.9vw, 0.98rem);
  gap: 8px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-duo-proof-icon {
  color: #8a0946;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.96em;
  font-weight: 700;
  justify-content: center;
  width: auto;
}

.hero-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.hero-showcase-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.hero-showcase-btn:hover {
  transform: translateY(-1px);
}

.hero-showcase-btn:focus-visible {
  outline: 2px solid rgba(138, 9, 70, 0.32);
  outline-offset: 2px;
}

.hero-showcase-btn-primary {
  background: #8a0946;
  border: 1px solid #8a0946;
  box-shadow: 0 12px 24px rgba(138, 9, 70, 0.24);
  color: #f8f4f0;
}

.hero-showcase-btn-primary:hover {
  background: #74083c;
  border-color: #74083c;
}

.hero-showcase-btn-ghost {
  background: rgba(248, 241, 245, 0.76);
  border: 1px solid rgba(138, 9, 70, 0.28);
  color: #7f1149;
}

.hero-showcase-btn-ghost:hover {
  background: rgba(248, 241, 245, 0.94);
}

.hero-bottom-stats {
  background: transparent;
  border-top: 0;
  bottom: 2lh;
  display: grid;
  gap: 14px clamp(28px, 3vw, 56px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 50%;
  padding: clamp(12px, 1.8vw, 20px) clamp(16px, 2.8vw, 30px);
  position: absolute;
  transform: translateX(-50%);
  width: min(930px, 88%);
  z-index: 3;
}

.hero-bottom-stats article {
  padding: 0;
  text-align: center;
}

.hero-bottom-stat-value {
  color: #8a0946;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 clamp(8px, 1vw, 14px);
}

.hero-bottom-stat-label {
  color: #7a676c;
  font-size: clamp(0.78rem, 1.05vw, 1.2rem);
  line-height: 1.22;
  margin: 0;
}

.hero-benefits-section {
  margin-top: -280px;
  padding-bottom: 84px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.hero-benefits-head {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.hero-benefits-head h2 {
  color: #7f1149;
  font-size: clamp(2.3rem, 4vw, 4.35rem);
  line-height: 1.06;
  margin: 0;
}

.hero-benefits-head::after {
  background: linear-gradient(90deg, transparent, rgba(171, 126, 103, 0.62), transparent);
  content: "";
  display: block;
  height: 2px;
  margin: 20px auto 0;
  width: min(420px, 70%);
}

.hero-benefits-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.hero-benefits-grid article {
  text-align: center;
}

.hero-benefit-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(171, 126, 103, 0.36);
  border-radius: 999px;
  color: #b07d5f;
  display: inline-flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.hero-benefit-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  height: 34px;
  width: 34px;
}

.hero-benefits-grid h3 {
  color: #3f2f2e;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.85rem);
  margin: 14px 0 6px;
}

.hero-benefits-grid p {
  color: #4d3f3f;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.26rem);
  line-height: 1.35;
  margin: 0;
}

.story-section {
  padding-top: 42px;
  scroll-margin-top: 156px;
}

.story-immersive {
  align-items: stretch;
  background: var(--bg);
  border: 0;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  display: flex;
  justify-content: flex-end;
  height: calc(100vh - 198px);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.story-immersive::before {
  background:
    linear-gradient(120deg, rgba(26, 18, 12, 0), rgba(26, 18, 12, 0)),
    url("assets/celine 3.png") -68% 24% / cover no-repeat;
  content: "";
  inset: 0 auto 0 -16%;
  width: min(74%, 860px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.story-immersive::after {
  background: url("assets/celine 3.png") -68% 24% / cover no-repeat;
  content: "";
  inset: 0 auto 0 -16%;
  width: min(74%, 860px);
  -webkit-mask-image: radial-gradient(
    ellipse 24% 30% at 34% 34%,
    #000 0%,
    rgba(0, 0, 0, 0.62) 58%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: radial-gradient(
    ellipse 24% 30% at 34% 34%,
    #000 0%,
    rgba(0, 0, 0, 0.62) 58%,
    transparent 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  opacity: 0.01;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.story-panel {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  max-width: 980px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px) clamp(26px, 3.5vw, 46px) clamp(28px, 4vw, 52px) clamp(56px, 7vw, 104px);
  position: relative;
  width: min(68%, 900px);
  z-index: 1;
}

.story-panel::before {
  content: none;
}

.story-panel > * {
  position: relative;
  z-index: 1;
}

.story-text {
  margin-left: auto;
  margin-right: 0;
  max-width: 68ch;
  width: min(100%, 68ch);
}

.story-text h2 {
  color: #5f0f3b;
  font-family: var(--font-display);
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 16px;
  white-space: nowrap;
}

.story-text p {
  color: var(--ink-soft);
  margin: 0 0 12px;
  text-align: justify;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  color: #8a0946;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.story-copy .eyebrow {
  color: #8a0946;
}

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

.soin-layout {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 156px);
  min-height: 0;
  overflow: hidden;
}

.soin-copy {
  background: #f8f2e8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: clamp(30px, 3.6vw, 68px) clamp(30px, 3.4vw, 60px) clamp(24px, 2.4vw, 36px) clamp(52px, 5.4vw, 96px);
  position: relative;
}

.soin-copy > * {
  position: relative;
  width: min(100%, 680px);
  z-index: 1;
}

.soin-copy::before,
.soin-copy::after {
  background: radial-gradient(circle, rgba(255, 247, 223, 0.72) 0%, rgba(255, 247, 223, 0.28) 42%, rgba(255, 247, 223, 0) 74%);
  border-radius: 999px;
  content: "";
  filter: blur(8px);
  pointer-events: none;
  position: absolute;
}

.soin-copy::before {
  height: clamp(220px, 24vw, 320px);
  left: min(2.4vw, 28px);
  top: 12%;
  width: clamp(220px, 24vw, 320px);
}

.soin-copy::after {
  bottom: 1%;
  height: clamp(180px, 20vw, 280px);
  left: clamp(120px, 14vw, 220px);
  width: clamp(180px, 20vw, 280px);
}

.soin-eyebrow {
  color: #a4376f;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.soin-title {
  color: #5f0f3b;
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 2.7vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0 0 4px;
  max-width: 24ch;
}

.soin-benefits {
  display: grid;
  gap: 12px;
}

.soin-benefit {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  grid-template-columns: 50px minmax(0, 1fr);
}

.soin-benefit-icon {
  color: #8a0946;
  display: flex;
  font-size: 1.75rem;
  justify-content: center;
  line-height: 0.7;
  padding-top: 2px;
}

.soin-benefit-copy h3 {
  color: #a4376f;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.82vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.soin-benefit-copy p {
  color: #6d4f5d;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.22vw, 1.24rem);
  font-weight: 400;
  line-height: 1.58;
  margin: 0;
  max-width: min(52ch, 100%);
  text-align: justify;
}

.soin-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  width: 100%;
}

.soin-cta-button {
  align-items: center;
  background: #9a0c54;
  border: 1px solid #9a0c54;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(154, 12, 84, 0.18);
  color: #fff8fb;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 58px;
  min-width: min(100%, 400px);
  padding: 0 24px;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.soin-cta-button:hover {
  background: #870847;
  box-shadow: 0 20px 38px rgba(154, 12, 84, 0.24);
  transform: translateY(-1px);
}

.soin-cta-button:focus-visible {
  outline: 2px solid rgba(154, 12, 84, 0.3);
  outline-offset: 4px;
}

.soin-cta-button span:last-child {
  font-size: 1.28em;
  line-height: 1;
}

.soin-visual {
  align-self: stretch;
  background: #f4b7c6;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.soin-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.pillar-card {
  background: var(--surface);
  border: 1px solid rgba(138, 9, 70, 0.16);
  border-radius: var(--radius-l);
  box-shadow: 0 14px 30px rgba(96, 8, 49, 0.1);
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pillar-card::before {
  background: linear-gradient(90deg, rgba(138, 9, 70, 0.9), rgba(138, 9, 70, 0));
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.pillar-card:hover {
  box-shadow: 0 18px 30px rgba(96, 8, 49, 0.18);
  transform: translateY(-2px);
}

.pillar-index {
  color: #8a0946;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pillar-card p {
  color: var(--ink-soft);
  margin: 0;
}

.ingredients-luxe {
  background: linear-gradient(180deg, rgba(246, 239, 229, 0.9), rgba(251, 247, 240, 0.9));
  padding: 0;
}

.ingredients-luxe .container {
  max-width: none;
  width: 100%;
}

.ingredients-layout {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 156px);
  min-height: 0;
}

.ingredients-visual {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.ingredients-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.ingredients-panel {
  background:
    radial-gradient(circle at 44% 22%, rgba(252, 246, 233, 0.95), rgba(252, 246, 233, 0.2) 24%, rgba(252, 246, 233, 0) 52%),
    linear-gradient(180deg, rgba(250, 244, 235, 0.98), rgba(248, 241, 231, 0.98));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(26px, 2.6vw, 42px) clamp(22px, 2.4vw, 40px);
  position: relative;
}

.ingredients-script {
  color: #8a0946;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 26px;
  text-align: left;
  text-transform: uppercase;
}

.ingredients-head {
  margin: 0 auto 18px;
  max-width: 760px;
  text-align: left;
}

.ingredients-head h2 {
  color: #5f0f3b;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
  max-width: 24ch;
}

.ingredients-lead {
  color: #6d4f5d;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.22vw, 1.24rem);
  font-weight: 400;
  line-height: 1.58;
  margin: 8px 0 0;
  max-width: min(52ch, 100%);
  text-align: justify;
}

.ingredients-premium {
  --core-size: clamp(250px, 26vw, 320px);
  --mini-size: clamp(136px, 13vw, 178px);
  --orbit-radius: clamp(164px, 18vw, 236px);
  height: calc((var(--orbit-radius) * 2) + var(--mini-size) + 10px);
  margin: 10px auto 0;
  max-width: 860px;
  position: relative;
  width: min(860px, 100%);
}

.ingredients-premium::before {
  content: "";
  background:
    radial-gradient(circle, rgba(138, 9, 70, 0.09) 0%, rgba(138, 9, 70, 0) 68%),
    radial-gradient(circle, rgba(175, 107, 63, 0.09) 0%, rgba(175, 107, 63, 0) 72%);
  border: 1px dashed rgba(138, 9, 70, 0.2);
  border-radius: 999px;
  height: calc((var(--orbit-radius) * 2) + 22px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--orbit-radius) * 2) + 22px);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.ingredient-mini {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(138, 9, 70, 0.18);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(96, 8, 49, 0.14);
  height: var(--mini-size);
  left: 50%;
  padding: 14px 12px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform:
    translate3d(-50%, -50%, 0)
    rotate(var(--orbit-angle))
    translateY(calc(-1 * var(--orbit-radius)))
    rotate(calc(-1 * var(--orbit-angle)));
  transform-origin: center center;
  width: var(--mini-size);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: orbitIngredients 24s linear infinite running;
  backface-visibility: hidden;
  contain: layout paint;
  will-change: transform;
}

.ingredient-mini::before {
  content: none;
}

.ingredient-mini-top {
  --orbit-angle: -90deg;
}

.ingredient-mini-left {
  --orbit-angle: 198deg;
}

.ingredient-mini-right {
  --orbit-angle: -18deg;
}

.ingredient-mini-bottom-left {
  --orbit-angle: 126deg;
}

.ingredient-mini-bottom-right {
  --orbit-angle: 54deg;
}

.ingredient-mini-icon {
  align-items: center;
  background: rgba(250, 240, 245, 0.96);
  border: 1px solid rgba(138, 9, 70, 0.22);
  border-radius: 999px;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin-bottom: 8px;
  width: 28px;
}

.ingredient-mini-icon svg {
  fill: none;
  height: 13px;
  stroke: #8a0946;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 13px;
}

.ingredient-mini h3 {
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  line-height: 1.24;
  margin: 0 0 4px;
}

.ingredient-mini p {
  color: #6f5566;
  font-size: 0.68rem;
  line-height: 1.42;
  margin: 0;
}

.ingredient-core {
  align-items: center;
  background: linear-gradient(170deg, #fff8fc 0%, #f7e9f1 68%, #f1dce8 100%);
  border: 1px solid rgba(138, 9, 70, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(247, 234, 241, 0.92),
    0 18px 30px rgba(96, 8, 49, 0.18);
  display: flex;
  flex-direction: column;
  height: var(--core-size);
  justify-content: center;
  left: 50%;
  min-height: 0;
  padding: 28px 30px 24px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--core-size);
  z-index: 3;
}

.ingredient-core::before {
  content: none;
}

.ingredient-core-icon {
  align-items: center;
  background: rgba(138, 9, 70, 0.08);
  border: 1px solid rgba(138, 9, 70, 0.22);
  border-radius: 999px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  margin-bottom: 8px;
  width: 58px;
}

.ingredient-core-icon svg {
  fill: none;
  height: 17px;
  stroke: #8a0946;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 17px;
}

.ingredient-core-eyebrow {
  color: #8a0946;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.ingredient-core h3 {
  font-size: clamp(2.12rem, 2.9vw, 2.72rem);
  line-height: 1.12;
  margin: 0 0 5px;
}

.ingredient-core-title {
  color: #8a0946;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.ingredient-core-benefits {
  color: #6f5e4d;
  display: grid;
  font-size: 0.78rem;
  gap: 4px;
  line-height: 1.35;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ingredient-core-benefits li {
  margin: 0;
}

.ingredients-premium:hover .ingredient-mini,
.ingredients-premium:focus-within .ingredient-mini {
  animation-play-state: paused;
}

@keyframes orbitIngredients {
  from {
    transform:
      translate3d(-50%, -50%, 0)
      rotate(var(--orbit-angle))
      translateY(calc(-1 * var(--orbit-radius)))
      rotate(calc(-1 * var(--orbit-angle)));
  }

  to {
    transform:
      translate3d(-50%, -50%, 0)
      rotate(calc(var(--orbit-angle) + 360deg))
      translateY(calc(-1 * var(--orbit-radius)))
      rotate(calc((-1 * var(--orbit-angle)) - 360deg));
  }
}

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

.pillar-card:hover,
.review-card:hover {
  transform: none;
}

.ritual-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.03fr 0.97fr;
}

.ritual-media {
  max-width: 470px;
  position: relative;
  width: 100%;
}

.ritual-main-image {
  border: 1px solid rgba(89, 62, 35, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.ritual-secondary-image {
  border: 1px solid rgba(89, 62, 35, 0.16);
  border-radius: 14px;
  bottom: -26px;
  box-shadow: 0 6px 14px rgba(60, 42, 25, 0.1);
  max-width: 46%;
  position: absolute;
  right: -10px;
}

.ritual-steps {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ritual-steps li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(138, 9, 70, 0.18);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 36px 1fr;
  padding: 11px;
}

.ritual-steps li > span {
  align-items: center;
  background: #a87445;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.ritual-steps h3 {
  font-size: 1.18rem;
  margin-bottom: 2px;
}

.ritual-steps p {
  color: var(--ink-soft);
  margin: 0;
}

.section-headline {
  margin-bottom: 24px;
  max-width: 760px;
}

.reviews-grid {
  display: grid;
  gap: 14px;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  grid-template-columns: none;
}

.reviews-strip {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
}

.reviews-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(127, 86, 48, 0.35) transparent;
  scrollbar-width: thin;
}

.reviews-viewport::-webkit-scrollbar {
  height: 8px;
}

.reviews-viewport::-webkit-scrollbar-thumb {
  background: rgba(127, 86, 48, 0.35);
  border-radius: 999px;
}

.reviews-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 9, 70, 0.38);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(138, 9, 70, 0.1);
  color: #8a0946;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.6rem;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 42px;
}

.reviews-nav:hover {
  box-shadow: 0 8px 16px rgba(138, 9, 70, 0.16);
  transform: translateY(-1px);
}

.reviews-nav:disabled {
  box-shadow: none;
  cursor: default;
  opacity: 0.35;
}

.review-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(138, 9, 70, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(96, 8, 49, 0.1);
  padding: 18px;
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover {
  box-shadow: 0 18px 28px rgba(96, 8, 49, 0.16);
  transform: none;
}

.review-rating {
  color: #cb8f4d;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0 0 8px;
}

.review-card p {
  margin: 0;
}

.review-meta {
  color: var(--ink-muted);
  font-size: 0.82rem;
  margin-top: 10px !important;
}

.review-card-action {
  background: #8a0946;
  border: 0;
  box-shadow: 0 16px 28px rgba(96, 8, 49, 0.22);
  color: #f9ebef;
  padding: 0;
}

.review-action-tile {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 16px;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 132px;
  padding: 18px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.review-action-tile:hover,
.review-action-tile:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.review-action-title {
  color: #f9ebef;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.review-card-empty {
  align-content: center;
  display: grid;
}

.review-feedback {
  border-radius: 12px;
  margin: 0 0 16px;
  padding: 10px 13px;
}

.review-feedback p {
  margin: 0;
}

.review-feedback ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.review-feedback-success {
  background: rgba(48, 122, 78, 0.1);
  border: 1px solid rgba(48, 122, 78, 0.25);
  color: #26603e;
}

.review-feedback-error {
  background: rgba(152, 46, 46, 0.08);
  border: 1px solid rgba(152, 46, 46, 0.24);
  color: #7b2f2f;
}

body.is-modal-open {
  overflow: hidden;
}

.review-modal[hidden] {
  display: none !important;
}

.review-modal {
  display: grid;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  place-items: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  z-index: 80;
}

.review-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.review-modal-overlay {
  background: rgba(21, 14, 9, 0.45);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
  z-index: 0;
}

.review-modal-dialog {
  background: rgba(253, 249, 243, 0.98);
  border: 1px solid rgba(90, 66, 43, 0.25);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(28, 19, 12, 0.26);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 22px;
  position: relative;
  width: min(580px, 94vw);
  z-index: 1;
}

.review-modal-dialog h3 {
  margin-top: 0;
}

.review-modal-close {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 10px;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.review-field {
  display: grid;
  gap: 6px;
}

.review-field span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-field input,
.review-field select,
.review-field textarea {
  background: #fff;
  border: 1px solid rgba(90, 66, 43, 0.2);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 11px 12px;
}

.review-field textarea {
  resize: vertical;
}

.review-field input:focus,
.review-field select:focus,
.review-field textarea:focus {
  border-color: rgba(138, 9, 70, 0.52);
  box-shadow: 0 0 0 3px rgba(138, 9, 70, 0.14);
  outline: none;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(138, 9, 70, 0.2);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(96, 8, 49, 0.11);
  padding: 14px 16px;
}

.faq-grid summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.faq-grid p {
  color: var(--ink-soft);
  margin: 10px 0 2px;
}

.faq-grid .ritual-steps {
  margin-top: 12px;
}

.faq-grid .ritual-steps p {
  margin: 0;
}

.faq-grid .ritual-steps li > span {
  background: #8a0946;
}

.blog-card-actions {
  margin-top: 16px;
}

.blog-post-wrap {
  max-width: 920px;
}

.blog-post-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(138, 9, 70, 0.18);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(96, 8, 49, 0.1);
  padding: clamp(22px, 4vw, 40px);
}

.blog-post-meta {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.blog-post-card h2 {
  margin-bottom: 12px;
  margin-top: 26px;
}

.blog-post-card h2:first-of-type {
  margin-top: 0;
}

.blog-post-card p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.blog-post-list {
  color: var(--ink-soft);
  margin: 0 0 16px;
  padding-left: 22px;
}

.blog-post-list li {
  margin-bottom: 8px;
}

.blog-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-wrap {
  padding-top: 68px;
}

.cta-card {
  background: linear-gradient(160deg, #5f0f3b 0%, #8a0946 100%);
  border: 1px solid rgba(249, 224, 236, 0.28);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(96, 8, 49, 0.3);
  color: #f6e7d3;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 4vw, 46px) clamp(20px, 4.5vw, 46px);
  text-align: center;
}

.cta-script {
  color: #d4a271;
  font-family: var(--font-script);
  font-size: clamp(1.62rem, 2.8vw, 2.35rem);
  line-height: 1;
  margin: 0 0 8px;
}

.cta-card h2 {
  color: #f9eddc;
  font-size: clamp(1.56rem, 2.45vw, 2.1rem);
  margin-bottom: 14px;
}

.cta-card p {
  color: #d8c6b4;
  margin: 0 auto 20px;
  max-width: 56ch;
}

.cta-card .btn-primary {
  background: rgb(245 242 236);
  border: 1px solid rgba(138, 9, 70, 0.26);
  box-shadow: 0 10px 20px rgba(62, 8, 38, 0.2);
  color: #8a0946;
}

.cta-card .btn-primary:hover {
  box-shadow: 0 12px 22px rgba(62, 8, 38, 0.28);
}

.offer-cards-section {
  background: linear-gradient(
    180deg,
    var(--hero-offer-blend) 0%,
    rgba(246, 240, 236, 0.92) 56%,
    rgba(246, 240, 236, 0.72) 100%
  );
  position: relative;
  padding-bottom: 96px;
  padding-top: 58px;
  z-index: 2;
}

.offer-cards-section::before {
  background: linear-gradient(
    180deg,
    rgba(244, 235, 232, 0) 0%,
    rgba(244, 235, 232, 0.58) 62%,
    var(--hero-offer-blend) 100%
  );
  content: "";
  height: clamp(90px, 12vw, 180px);
  inset: auto 0 100% 0;
  pointer-events: none;
  position: absolute;
}

.offer-cards-head {
  margin: 0 auto clamp(30px, 4vw, 56px);
  max-width: 1100px;
  text-align: center;
}

.offer-cards-kicker {
  color: #8a0946;
  font-size: clamp(0.72rem, 0.86vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.offer-cards-head h2 {
  color: #5f0f3b;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
}

.offer-cards-lead {
  color: #6d4f5d;
  font-size: clamp(1rem, 1.22vw, 1.24rem);
  line-height: 1.58;
  margin: clamp(14px, 2vw, 26px) auto 0;
  max-width: min(52ch, 100%);
}

.offer-cards-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid rgba(138, 9, 70, 0.24);
  border-radius: 40px;
  box-shadow: 0 18px 34px rgba(84, 58, 43, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 30px 24px;
  position: relative;
}

.offer-card-popular {
  border-color: rgba(138, 9, 70, 0.62);
}

.offer-card-badge {
  background: #8a0946;
  border-radius: 999px;
  color: #f9e7ef;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 8px 16px;
  position: absolute;
  right: 52px;
  text-transform: uppercase;
  top: 34px;
  z-index: 1;
}

.offer-card-image-wrap {
  aspect-ratio: 3 / 2;
  background: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  overflow: visible;
}

.offer-card-image {
  border-radius: 38px;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.offer-card-discovery .offer-card-image {
  object-position: center 68%;
}

.offer-card h2 {
  color: #5f0f3b;
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 2.16vw, 2.08rem);
  margin: 0 0 10px;
}

.offer-card-subtitle {
  color: #8d7c76;
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  margin: 0 0 28px;
}

.offer-card-price {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  margin: 0 0 24px;
}

.offer-card-price-value {
  color: #8a0946;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 2.95vw, 3.2rem);
  font-weight: 700;
  line-height: 0.95;
}

.offer-card-price-detail {
  color: #8e7f79;
  font-size: clamp(0.9rem, 1.04vw, 1rem);
  padding-bottom: 8px;
}

.offer-card-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.offer-card-list li {
  color: #5c4b46;
  font-size: clamp(0.94rem, 1.05vw, 1.04rem);
  line-height: 1.3;
  padding-left: 34px;
  position: relative;
}

.offer-card-list li::before {
  color: #8a0946;
  content: "\2713";
  font-size: 1.16rem;
  font-weight: 600;
  left: 0;
  position: absolute;
  top: 0.05em;
}

.offer-card-btn {
  align-items: center;
  background: #8a0946;
  border: 1px solid rgba(138, 9, 70, 0.88);
  border-radius: 999px;
  box-shadow: 0 11px 22px rgba(96, 8, 49, 0.24);
  color: #fbf6f4;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.11em;
  margin-top: auto;
  min-height: 58px;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: 100%;
}

.offer-card-btn:hover {
  box-shadow: 0 14px 24px rgba(96, 8, 49, 0.32);
  transform: translateY(-1px);
}

.offer-card-btn:focus-visible {
  outline: 2px solid rgba(138, 9, 70, 0.36);
  outline-offset: 3px;
}

.site-footer {
  background: #5f0f3b;
  border-top: 1px solid rgba(249, 224, 236, 0.22);
  margin-top: 24px;
  padding: 42px 0 24px;
}

.site-footer h3,
.site-footer h4 {
  color: #f2dfc8;
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: #cdb9a4;
  margin: 0;
}

.site-footer a:hover {
  color: #f2dfc8;
}

.footer-grid {
  border-bottom: 1px solid rgba(220, 183, 138, 0.18);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 24px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  align-items: center;
  color: #bfa995;
  display: flex;
  font-size: 0.9rem;
  gap: 10px;
  justify-content: space-between;
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  filter: blur(2px);
  opacity: 0;
  transform: translateY(18px) scale(0.992);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .ritual-layout {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .soin-layout {
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 156px);
    min-height: 0;
  }

  .soin-copy {
    padding: 26px 22px 24px 40px;
  }

  .soin-title {
    max-width: 16ch;
  }

  .soin-benefit-copy p {
    max-width: 20ch;
  }

  .soin-cta-button {
    min-width: min(100%, 360px);
  }

  .hero-copy,
  .section-headline {
    max-width: 760px;
  }

  .ingredients-layout {
    height: calc(100vh - 156px);
    min-height: 0;
  }

  .ingredients-panel {
    padding: 24px 18px;
  }

  .ingredients-premium {
    --core-size: clamp(230px, 28vw, 288px);
    --mini-size: clamp(122px, 12vw, 152px);
    --orbit-radius: clamp(150px, 16vw, 208px);
    max-width: 760px;
  }

  .ingredients-premium::before {
    height: calc((var(--orbit-radius) * 2) + 18px);
    width: calc((var(--orbit-radius) * 2) + 18px);
  }

  .ingredients-head {
    margin-bottom: 30px;
  }

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

  .hero-stage {
    margin-inline: auto;
    max-width: 460px;
  }

  .story-immersive {
    min-height: clamp(520px, 76vh, 760px);
  }

  .story-panel {
    padding-left: clamp(44px, 6vw, 84px);
    width: min(76%, 900px);
  }

  .ritual-media {
    margin-inline: auto;
    max-width: 460px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    align-items: flex-start;
    background: rgba(248, 244, 237, 0.98);
    border-right: 1px solid rgba(138, 9, 70, 0.18);
    box-shadow: 0 18px 36px rgba(38, 27, 18, 0.16);
    display: flex;
    flex-direction: column;
    gap: 18px;
    inset: 0 auto 0 0;
    padding: 108px 24px 24px;
    pointer-events: none;
    position: fixed;
    transform: translateX(-104%);
    transition: transform 0.24s ease;
    width: min(82vw, 320px);
    z-index: 60;
  }

  .main-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
  }

  .header-inner {
    min-height: 94px;
  }

  .site-announcement {
    padding: 7px 10px;
  }

  .site-announcement-inner {
    gap: 10px;
  }

  .site-announcement-badge {
    font-size: 0.39rem;
    padding: 10px 18px;
  }

  .site-announcement-copy {
    font-size: clamp(0.47rem, 1.1vw, 0.56rem);
    text-transform: none;
  }

  .site-announcement-link {
    font-size: clamp(0.45rem, 1vw, 0.53rem);
    gap: 8px;
  }

  .brand-mark {
    height: 90px;
    width: 90px;
  }

  .header-right {
    gap: 8px;
  }

  .header-icon-link {
    height: 38px;
    width: 38px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    justify-content: center;
    width: 100%;
  }

  .header-inner .header-cta {
    font-size: 0.62rem;
    padding: 8px 12px;
    width: auto;
  }

  .hero-actions .header-cta {
    width: 100%;
  }

  .story-immersive {
    align-items: flex-end;
    min-height: 640px;
  }

  .story-panel {
    background: linear-gradient(180deg, rgba(246, 242, 234, 0) 0%, rgba(246, 242, 234, 0.86) 28%, var(--bg) 100%);
    max-width: 100%;
    padding: 28px 24px;
    width: 100%;
  }

  .story-text h2 {
    white-space: nowrap;
  }

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

  .stats-grid article:nth-child(2n) {
    border-right: 0;
  }

  .ingredients-layout {
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ingredients-visual {
    max-height: 520px;
    order: 1;
  }

  .ingredients-panel {
    order: 2;
    padding: 38px 20px 30px;
  }

  .ingredients-premium {
    --core-size: 248px;
    --mini-size: 134px;
    --orbit-radius: 154px;
    height: calc((var(--orbit-radius) * 2) + var(--mini-size) + 18px);
    max-width: 420px;
  }

  .ingredients-premium::before {
    opacity: 0.76;
  }

  .ingredient-core {
    min-height: 0;
    padding: 22px 20px 18px;
    box-shadow:
      0 0 0 8px rgba(246, 239, 229, 0.84),
      0 14px 24px rgba(58, 40, 24, 0.14);
  }

  .ingredient-mini {
    padding: 11px 10px 9px;
  }

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

  .soin-layout {
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .soin-visual {
    margin-inline: auto;
    min-height: 440px;
    order: 2;
    width: 100%;
  }

  .soin-copy {
    order: 1;
    padding: 26px 24px;
  }

  .soin-copy > * {
    margin-left: 0;
    width: 100%;
  }

  .soin-copy::before,
  .soin-copy::after {
    opacity: 0.7;
  }

  .soin-title {
    margin-bottom: 30px;
    max-width: none;
  }

  .soin-benefits {
    gap: 28px;
  }

  .soin-benefit {
    gap: 14px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .soin-benefit-icon {
    font-size: 3.2rem;
  }

  .soin-benefit-copy p {
    max-width: none;
  }

  .soin-cta-wrap {
    margin-top: 40px;
  }

  .soin-cta-button {
    min-height: 56px;
    min-width: 100%;
    padding: 0 20px;
  }

  .reviews-strip {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-grid {
    grid-auto-columns: minmax(84vw, 1fr);
  }

  .review-form-row {
    grid-template-columns: 1fr;
  }

  .blog-post-card {
    padding: 22px 18px;
  }

  .blog-post-actions .btn {
    width: 100%;
  }

  .ritual-secondary-image {
    bottom: -18px;
    max-width: 44%;
    right: 0;
  }

  .cta-card {
    border-radius: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1160px, 92vw);
  }

  .header-inner {
    gap: 10px;
    min-height: 88px;
  }

  .site-announcement {
    padding: 6px 10px;
  }

  .site-announcement-inner {
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .site-announcement-badge {
    font-size: 0.36rem;
    letter-spacing: 0.1em;
    padding: 9px 14px;
  }

  .site-announcement-copy {
    font-size: 0.48rem;
    line-height: 1.25;
    text-align: center;
    width: 100%;
  }

  .site-announcement-link {
    font-size: 0.45rem;
    gap: 6px;
  }

  .main-nav {
    padding-top: 98px;
    width: min(88vw, 300px);
  }

  .brand-mark {
    height: 84px;
    width: 84px;
  }

  .brand-name {
    display: none;
  }

  .header-right {
    gap: 6px;
  }

  .header-icon-link {
    height: 36px;
    width: 36px;
  }

  .header-inner .header-cta {
    font-size: 0.58rem;
    padding: 7px 9px;
  }

  .story-immersive {
    border-radius: 24px;
    min-height: 600px;
  }

  .story-panel {
    padding: 22px 16px;
  }

  .story-text h2 {
    max-width: none;
    white-space: normal;
  }

  .ingredients-head {
    margin-bottom: 24px;
  }

  .ingredients-premium {
    --core-size: 210px;
    --mini-size: 112px;
    --orbit-radius: 126px;
    height: calc((var(--orbit-radius) * 2) + var(--mini-size) + 12px);
    max-width: 340px;
  }

  .ingredient-core {
    min-height: 0;
    padding: 16px 14px 12px;
  }

  .ingredient-core h3 {
    font-size: clamp(1.62rem, 7.5vw, 2.06rem);
  }

  .ingredient-core-eyebrow,
  .ingredient-core-title {
    font-size: 0.56rem;
  }

  .ingredient-core-benefits {
    font-size: 0.64rem;
    gap: 2px;
  }

  .ingredient-mini {
    padding: 8px 7px 7px;
  }

  .ingredient-mini-icon {
    height: 20px;
    margin-bottom: 4px;
    width: 20px;
  }

  .ingredient-mini h3 {
    font-size: 0.82rem;
    margin-bottom: 2px;
  }

  .ingredient-mini p {
    font-size: 0.66rem;
    line-height: 1.32;
  }

  .hero-signals li {
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .hero-badge {
    min-width: 96px;
  }

  .hero-badge span {
    font-size: 0.9rem;
  }

  .stats-grid {
    gap: 8px;
    padding: 12px;
  }

  .stats-grid article {
    padding: 8px;
  }

  .ritual-steps li {
    grid-template-columns: 36px 1fr;
  }

  .ritual-steps li > span {
    height: 36px;
    width: 36px;
  }
}

@media (min-width: 981px) and (max-height: 900px) {
  .hero-showcase-content {
    left: clamp(90px, 10vw, 170px);
    top: 28px;
  }

  .hero-showcase-kicker {
    margin-bottom: 14px;
  }

  .hero-showcase h1 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
  }

  .hero-showcase .hero-sublead {
    font-size: clamp(0.86rem, 1vw, 1.05rem);
    margin-top: 12px;
  }

  .hero-duo-proof {
    gap: 6px 14px;
    margin-top: 10px;
  }

  .hero-duo-proof li {
    font-size: clamp(0.78rem, 0.8vw, 0.9rem);
  }

  .hero-showcase-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-showcase-btn {
    font-size: 0.66rem;
    min-height: 44px;
    padding: 0 16px;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-showcase-content {
    left: clamp(70px, 8vw, 130px);
    top: 18px;
  }

  .hero-showcase h1 {
    font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  }

  .hero-showcase .hero-sublead {
    font-size: 0.8rem;
    line-height: 1.52;
    margin-top: 8px;
  }

  .hero-duo-proof {
    gap: 4px 10px;
    margin-top: 8px;
  }

  .hero-duo-proof li {
    font-size: 0.72rem;
    gap: 4px;
  }

  .hero-showcase-actions {
    margin-top: 14px;
  }

  .hero-showcase-btn {
    font-size: 0.6rem;
    min-height: 38px;
    padding: 0 12px;
  }
}

@media (max-width: 1180px) {
  .hero-showcase-content {
    left: clamp(110px, 15vw, 220px);
    max-width: min(720px, 66vw);
  }

  .hero-benefits-grid {
    gap: 14px;
  }
}

@media (max-width: 980px) {
  .hero-showcase {
    padding-top: 0;
  }

  .hero-showcase-card {
    min-height: 720px;
  }

  .hero-showcase-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
  }

  .hero-showcase-content {
    background: rgba(249, 243, 238, 0.82);
    border-radius: 22px;
    bottom: auto;
    left: 50%;
    max-width: min(780px, 94vw);
    padding: 18px 16px;
    text-align: left;
    top: clamp(18px, 4.8vw, 48px);
    transform: translateX(-50%);
  }

  .hero-showcase-kicker {
    margin-bottom: 14px;
  }

  .hero-showcase h1 {
    font-size: clamp(1.7rem, 5.2vw, 2.5rem);
    margin: 0;
    max-width: 24ch;
  }

  .hero-showcase .hero-sublead {
    font-size: clamp(0.9rem, 2.1vw, 1.04rem);
    margin-top: 14px;
    max-width: 100%;
  }

  .hero-duo-proof {
    column-gap: 14px;
    gap: 6px 14px;
    margin-top: 12px;
    max-width: 100%;
  }

  .hero-duo-proof li {
    font-size: clamp(0.8rem, 2.2vw, 0.92rem);
    justify-content: flex-start;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-showcase-actions {
    gap: 8px;
    margin-top: 20px;
    width: 100%;
  }

  .hero-showcase-btn {
    flex: 1 1 240px;
    justify-content: center;
    font-size: 0.7rem;
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-bottom-stats {
    bottom: 2lh;
    gap: 8px 16px;
    padding: 10px 12px;
    width: min(760px, 94%);
  }

  .hero-bottom-stats article {
    padding: 0;
  }

  .hero-bottom-stat-value {
    font-size: clamp(1.12rem, 3vw, 1.7rem);
    margin-bottom: 3px;
  }

  .hero-bottom-stat-label {
    font-size: clamp(0.62rem, 1.5vw, 0.82rem);
    line-height: 1.2;
  }

  .hero-benefits-section {
    margin-top: 0;
    padding-top: 14px;
  }

  .hero-benefits-grid {
    grid-template-columns: 1fr;
  }

  .offer-cards-section {
    padding-bottom: 78px;
    padding-top: 48px;
  }

  .offer-cards-head {
    margin-bottom: 24px;
  }

  .offer-cards-head h2 {
    font-size: clamp(1.7rem, 5.2vw, 2.5rem);
  }

  .offer-cards-lead {
    font-size: clamp(0.9rem, 2.1vw, 1.04rem);
    line-height: 1.56;
    margin-top: 10px;
  }

  .offer-cards-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .offer-card {
    border-radius: 30px;
    padding: 20px 18px 18px;
  }

  .offer-card-badge {
    right: 36px;
    top: 22px;
  }

  .offer-card-image-wrap {
    border-radius: 0;
    margin-bottom: 16px;
  }

  .offer-card-image {
    border-radius: 30px;
  }

  .offer-card-subtitle {
    margin-bottom: 20px;
  }

  .offer-card-price {
    margin-bottom: 18px;
  }

  .offer-card-list {
    gap: 12px;
    margin-bottom: 20px;
  }

  .offer-card-btn {
    font-size: 0.9rem;
    min-height: 54px;
  }
}

@media (max-width: 640px) {
  .hero-showcase {
    padding-top: 0;
  }

  .hero-showcase-card {
    min-height: 620px;
  }

  .hero-showcase h1 {
    font-size: clamp(1.62rem, 8vw, 2.2rem);
    line-height: 1.08;
    margin-bottom: 0;
  }

  .hero-showcase-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.17em;
    margin-bottom: 12px;
  }

  .hero-showcase .hero-sublead {
    font-size: 0.84rem;
    line-height: 1.56;
    margin-top: 10px;
  }

  .hero-duo-proof {
    column-gap: 10px;
    gap: 5px 10px;
    margin-top: 10px;
  }

  .hero-duo-proof li {
    font-size: 0.74rem;
    gap: 5px;
    line-height: 1.2;
  }

  .hero-showcase-actions {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-showcase-btn {
    flex-basis: 100%;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    min-height: 42px;
    width: 100%;
  }

  .hero-bottom-stats {
    bottom: 2lh;
    gap: 10px 0;
    grid-template-columns: 1fr;
    padding: 10px 12px;
    width: min(420px, 92%);
  }

  .hero-bottom-stats article {
    padding: 0;
  }

  .hero-bottom-stat-value {
    font-size: clamp(1.05rem, 6vw, 1.32rem);
    margin-bottom: 2px;
  }

  .hero-bottom-stat-label {
    font-size: 0.68rem;
  }

  .hero-benefits-head h2 {
    font-size: clamp(2rem, 9.6vw, 2.8rem);
  }

  .hero-benefits-grid h3 {
    font-size: 1.26rem;
  }

  .hero-benefits-grid p {
    font-size: 1.03rem;
  }

  .offer-card h2 {
    font-size: clamp(1.72rem, 8.2vw, 2.15rem);
  }

  .offer-cards-head h2 {
    font-size: clamp(1.62rem, 8vw, 2.2rem);
  }

  .offer-cards-lead {
    font-size: 0.84rem;
    line-height: 1.56;
    margin-top: 8px;
  }

  .offer-card-price {
    flex-wrap: wrap;
    gap: 2px 10px;
  }

  .offer-card-price-value {
    font-size: clamp(2.2rem, 13vw, 2.9rem);
  }

  .offer-card-price-detail {
    font-size: 0.98rem;
    padding-bottom: 3px;
  }

  .offer-card-list li {
    font-size: 1rem;
    padding-left: 28px;
  }

  .offer-card-btn {
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  .offer-card-badge {
    font-size: 0.56rem;
    padding: 7px 13px;
  }
}
