:root {
  --ivory: #fff8ec;
  --warm-ivory: #f8eddc;
  --powder: #edd7cf;
  --soft-rose: #e7c8c0;
  --burgundy: #7a0c2d;
  --burgundy-dark: #430716;
  --ink: #17110f;
  --near-black: #080605;
  --charcoal: #211a17;
  --taupe: #7e675e;
  --line: rgba(64, 38, 31, 0.16);
  --shadow: 0 18px 46px rgba(50, 29, 22, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--burgundy);
  color: var(--ivory);
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.section-pad {
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 248, 236, 0.88);
  border-bottom: 1px solid rgba(64, 38, 31, 0.1);
}

.brand {
  max-width: 420px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--burgundy-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--taupe);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--burgundy);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  background: var(--burgundy);
  color: var(--ivory);
}

.button {
  padding: 0 28px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--burgundy);
  color: var(--ivory);
  box-shadow: 0 12px 24px rgba(122, 12, 45, 0.22);
}

.button-primary:hover {
  background: var(--burgundy-dark);
}

.button-primary.light {
  background: var(--ivory);
  color: var(--burgundy-dark);
  box-shadow: 0 16px 30px rgba(255, 248, 236, 0.18);
}

.button-ghost {
  color: var(--ivory);
  border-color: rgba(255, 248, 236, 0.42);
  background: rgba(255, 248, 236, 0.08);
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--burgundy);
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 690px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: 52px;
  line-height: 0.98;
}

.section-heading p:not(.eyebrow) {
  max-width: 610px;
  margin: 16px auto 0;
  color: var(--taupe);
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--near-black);
  color: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.84), rgba(8, 6, 5, 0.48) 42%, rgba(8, 6, 5, 0.16)),
    linear-gradient(0deg, rgba(8, 6, 5, 0.7), rgba(8, 6, 5, 0.04) 45%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  background: #080605;
}

.hero-media img {
  z-index: 0;
  object-position: center center;
}

@media (min-width: 721px) {
  .hero-media {
    left: 42%;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center center;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 96px 0 28px;
}

.hero-copy .eyebrow,
.final-copy .eyebrow {
  color: #f0c8bb;
}

.hero-kicker-photo {
  width: 184px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.hero-kicker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero h1 {
  margin-top: 14px;
  font-size: 82px;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  color: #f4d8cd;
}

.hero-lead {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.08);
}

.media-frame,
.bottle-slot,
.avatar-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(122, 12, 45, 0.16), rgba(255, 248, 236, 0.28)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 12px, rgba(90, 47, 41, 0.08) 12px 24px),
    #d8c4b5;
}

.media-frame::after,
.bottle-slot::after,
.avatar-slot::after {
  content: attr(data-slot);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(82%, 460px);
  transform: translate(-50%, -50%);
  color: rgba(49, 28, 24, 0.76);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: none;
}

.media-frame img,
.bottle-slot img,
.avatar-slot img {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottle-slot img,
.final-bottles img {
  object-fit: contain;
}

.is-loaded::after {
  opacity: 0;
}

.desire-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  background:
    linear-gradient(180deg, #fff8ec 0%, #f5e6d6 100%);
}

.desire-copy {
  max-width: 650px;
}

.desire-copy h2 {
  margin-top: 12px;
  font-size: 58px;
  line-height: 0.94;
}

.desire-copy > p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--taupe);
  font-size: 18px;
}

.emotion-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.emotion-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid rgba(122, 12, 45, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.72);
}

.emotion-list span {
  grid-row: span 2;
  color: rgba(122, 12, 45, 0.4);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.emotion-list strong {
  font-size: 15px;
}

.emotion-list p {
  color: var(--taupe);
  font-size: 14px;
}

.desire-media {
  min-height: 620px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scenario-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: #2b070f;
  color: var(--ivory);
}

.scenario-item {
  min-height: 150px;
  padding: 34px 26px;
  background:
    linear-gradient(135deg, rgba(122, 12, 45, 0.9), rgba(44, 6, 15, 0.98));
}

.scenario-item span {
  display: block;
  color: rgba(255, 248, 236, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-item strong {
  display: block;
  max-width: 310px;
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.98;
}

.scent-section {
  background:
    linear-gradient(180deg, #f7e8de 0%, var(--ivory) 100%);
}

.scent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.scent-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 251, 241, 0.78);
  box-shadow: 0 10px 28px rgba(62, 36, 28, 0.08);
}

.scent-card.featured {
  background: #fffdf6;
  box-shadow: var(--shadow);
}

.bottle-slot {
  height: 250px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.scent-kicker {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.scent-card h3 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 0.95;
}

.scent-card p:last-child {
  margin-top: 12px;
  color: var(--taupe);
  font-size: 15px;
}

.offer-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 22px;
  background: #f5e8d8;
}

.offer-card {
  display: grid;
  align-content: center;
  gap: 34px;
  min-height: 520px;
  padding: 44px;
  border: 1px solid rgba(122, 12, 45, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 243, 0.94), rgba(247, 232, 217, 0.92));
  box-shadow: var(--shadow);
}

.offer-copy h2 {
  margin-top: 8px;
  font-size: 58px;
  line-height: 0.95;
}

.offer-sub {
  max-width: 390px;
  margin-top: 12px;
  color: var(--taupe);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.deal-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.deal-badges span,
.deal-badges strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.deal-badges span {
  border: 1px solid rgba(122, 12, 45, 0.16);
  background: rgba(255, 253, 247, 0.78);
  color: var(--burgundy-dark);
}

.deal-badges strong {
  background: var(--burgundy);
  color: var(--ivory);
  box-shadow: 0 10px 20px rgba(122, 12, 45, 0.18);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 24px;
}

.price-row del {
  color: rgba(23, 17, 15, 0.5);
  font-size: 26px;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.price-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 28px;
  line-height: 1;
}

.save-line {
  margin: -10px 0 18px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 900;
}

.offer-note {
  margin-top: 14px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.advantage {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px 12px;
  border: 1px solid rgba(122, 12, 45, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.advantage svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--burgundy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.offer-media {
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.how-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--ivory);
}

.how-section .section-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

.how-section .section-heading h2 {
  font-size: 44px;
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card {
  position: relative;
  padding: 14px 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.78);
  box-shadow: 0 10px 22px rgba(63, 38, 28, 0.07);
  text-align: center;
}

.step-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: var(--radius);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 {
  max-width: 260px;
  margin: 10px auto 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.memory-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
}

.memory-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
}

.memory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(90deg, rgba(23, 17, 15, 0.72), rgba(23, 17, 15, 0.2) 60%, rgba(23, 17, 15, 0.08));
  pointer-events: none;
}

.memory-overlay {
  position: relative;
  z-index: 5;
  max-width: 560px;
  padding: 96px max(20px, calc((100vw - 1180px) / 2));
}

.memory-overlay h2 {
  font-size: 60px;
  line-height: 0.94;
}

.memory-overlay p {
  margin-top: 18px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 17px;
}

.memory-section.product-memory-section {
  display: flex;
  justify-content: center;
  min-height: auto;
  background: #050303;
}

.memory-section.product-memory-section::before {
  display: none;
}

.product-memory-section .memory-media {
  position: relative;
  inset: auto;
  width: min(100%, 900px);
  min-height: 0;
  aspect-ratio: 900 / 1498;
  border-radius: 0;
  background: #050303;
}

.product-memory-section .memory-media img {
  object-fit: contain;
}

.reviews-section {
  background: var(--powder);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(122, 12, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 14px 28px rgba(82, 43, 35, 0.12);
}

.review-top {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.avatar-slot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.avatar-slot::after {
  width: 80%;
  font-size: 8px;
}

.review-name {
  font-size: 14px;
  font-weight: 800;
}

.stars {
  color: #c28b31;
  font-size: 14px;
  line-height: 1;
}

.verified {
  justify-self: end;
  max-width: 115px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(122, 12, 45, 0.08);
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.review-card > p {
  color: #352621;
  font-size: 15px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 46%, rgba(122, 12, 45, 0.72), transparent 32%),
    linear-gradient(135deg, #060706 0%, #160a0d 54%, #050504 100%);
  color: var(--ivory);
}

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

.final-copy h2 {
  margin-top: 10px;
  font-size: 62px;
  line-height: 0.94;
}

.final-copy p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(255, 248, 236, 0.8);
  font-size: 18px;
}

.limited-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 248, 236, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.order-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.form-offer {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.11);
}

.form-offer span {
  color: #f0c8bb;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-offer strong {
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.form-offer small {
  color: rgba(255, 248, 236, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.order-form input,
.order-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.1);
  color: var(--ivory);
  font: 700 14px Inter, Arial, sans-serif;
  outline: none;
  padding: 0 14px;
}

.order-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 248, 236, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 248, 236, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.order-form option {
  color: var(--ink);
}

.order-form input::placeholder {
  color: rgba(255, 248, 236, 0.48);
}

.order-form .button {
  width: 100%;
}

.form-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.form-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.74);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.final-bottles {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(122, 12, 45, 0.6), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.final-bottles::after {
  color: rgba(255, 248, 236, 0.66);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  padding: 28px 20px 36px;
  background: #060504;
  color: rgba(255, 248, 236, 0.72);
  font-size: 13px;
}

.site-footer p {
  flex-basis: 100%;
  color: rgba(255, 248, 236, 0.42);
  font-size: 11px;
  text-align: center;
}


@media (max-width: 980px) {
  .section-pad {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .scent-grid,
  .steps-grid,
  .review-grid,
  .desire-section,
  .offer-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .desire-media {
    min-height: 460px;
  }

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

  .scenario-item {
    min-height: 120px;
  }

  .scent-card {
    min-height: 0;
  }

  .offer-card,
  .offer-media,
  .final-bottles {
    min-height: 430px;
  }

  .advantages {
    grid-template-columns: repeat(3, 1fr);
  }

  .memory-overlay h2,
  .desire-copy h2,
  .final-copy h2,
  .offer-copy h2,
  .section-heading h2 {
    font-size: 46px;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    max-width: 220px;
    font-size: 10px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-copy {
    padding-top: 68px;
  }

  .hero-kicker-photo {
    width: 138px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead,
  .final-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

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

  .section-heading h2,
  .desire-copy h2,
  .offer-copy h2,
  .memory-overlay h2,
  .final-copy h2 {
    font-size: 38px;
  }

  .how-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .how-section .section-heading {
    max-width: none;
    margin-bottom: 18px;
    text-align: left;
  }

  .how-section .section-heading h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .steps-grid {
    gap: 10px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 74px 28px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 94px;
    padding: 10px;
    text-align: left;
  }

  .step-media {
    width: 74px;
    height: 74px;
    aspect-ratio: auto;
  }

  .step-media::after {
    content: "Р¤РѕС‚Рѕ";
    width: auto;
    font-size: 10px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    margin-top: 0;
    font-size: 12px;
  }

  .step-card h3 {
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.22;
  }

  .desire-copy > p {
    font-size: 16px;
  }

  .emotion-list div {
    grid-template-columns: 36px 1fr;
    padding: 16px;
  }

  .desire-media {
    min-height: 360px;
  }

  .scenario-strip {
    padding-left: 0;
    padding-right: 0;
  }

  .scenario-item {
    padding: 26px 20px;
  }

  .scenario-item strong {
    font-size: 28px;
  }

  .offer-card {
    padding: 28px 20px;
  }

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

  .offer-media,
  .final-bottles {
    min-height: 330px;
  }

  .memory-section {
    min-height: 560px;
  }

  .memory-overlay {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .review-top {
    grid-template-columns: 46px 1fr;
  }

  .verified {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 440px) {
  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-proof span {
    width: 100%;
    text-align: center;
  }

  .scent-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 36px 16px;
  }

  .site-header {
    min-height: 56px;
    padding: 9px 14px;
  }

  .brand {
    max-width: 205px;
    font-size: 10px;
  }

  .hero {
    min-height: 470px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 6, 5, 0.78), rgba(8, 6, 5, 0.3) 58%, rgba(8, 6, 5, 0.12)),
      linear-gradient(0deg, rgba(8, 6, 5, 0.7), rgba(8, 6, 5, 0.08) 55%);
  }

  .hero-copy {
    padding: 52px 0 0;
  }

  .hero-kicker-photo {
    width: 128px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  }

  .hero h1 {
    max-width: 360px;
    font-size: 40px;
  }

  .hero-lead {
    max-width: 340px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

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

  .hero-actions .button-ghost {
    display: none;
  }

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

  .hero-proof span {
    width: auto;
    padding: 6px 9px;
    font-size: 11px;
  }

  .offer-section {
    gap: 12px;
    padding-top: 26px;
    padding-bottom: 34px;
    background: #fbefe1;
  }

  .offer-card {
    min-height: 0;
    gap: 18px;
    padding: 22px 16px 18px;
    text-align: center;
  }

  .offer-copy h2 {
    font-size: 38px;
  }

  .price-row {
    justify-content: center;
    gap: 10px;
    margin: 12px 0 18px;
  }

  .price-row del {
    font-size: 26px;
  }

  .price-row strong {
    min-height: 38px;
    padding: 0 13px;
    font-size: 23px;
  }

  .advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .advantage {
    gap: 7px;
    min-height: 92px;
    padding: 10px 5px;
    font-size: 10.5px;
  }

  .advantage svg {
    width: 24px;
    height: 24px;
  }

  .offer-media {
    min-height: 245px;
  }

  .desire-section {
    gap: 16px;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .desire-copy h2 {
    font-size: 34px;
    line-height: 0.98;
  }

  .desire-copy > p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .emotion-list {
    gap: 8px;
    margin-top: 18px;
  }

  .emotion-list div {
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
    padding: 11px 12px;
  }

  .emotion-list span {
    font-size: 22px;
  }

  .emotion-list strong {
    font-size: 14px;
  }

  .emotion-list p {
    font-size: 12px;
    line-height: 1.35;
  }

  .desire-media {
    min-height: 220px;
  }

  .scenario-strip {
    gap: 1px;
    padding: 0;
  }

  .scenario-item {
    min-height: 0;
    padding: 16px;
  }

  .scenario-item span {
    font-size: 10px;
  }

  .scenario-item strong {
    max-width: none;
    font-size: 25px;
  }

  .how-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .memory-section {
    min-height: 360px;
  }

  .memory-overlay {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .memory-overlay h2 {
    font-size: 34px;
  }

  .memory-overlay p {
    max-width: 260px;
    font-size: 14px;
  }

  .scent-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .scent-section .section-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .scent-section .section-heading h2 {
    font-size: 30px;
  }

  .scent-section .section-heading p:not(.eyebrow) {
    display: none;
  }

  .scent-grid {
    gap: 9px;
  }

  .scent-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 4px 10px;
    min-height: 0;
    padding: 10px;
  }

  .bottle-slot {
    grid-row: span 3;
    width: 82px;
    height: 98px;
    margin: 0;
  }

  .scent-kicker {
    font-size: 10px;
  }

  .scent-card h3 {
    font-size: 25px;
  }

  .scent-card p:last-child {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .reviews-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .reviews-section .section-heading {
    margin-bottom: 18px;
  }

  .review-grid {
    gap: 10px;
  }

  .review-card {
    min-height: 0;
    padding: 12px;
  }

  .review-top {
    margin-bottom: 10px;
  }

  .review-card > p {
    font-size: 13px;
    line-height: 1.4;
  }

  .final-cta {
    gap: 18px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .final-copy h2 {
    font-size: 36px;
  }

  .final-bottles {
    min-height: 250px;
  }
}

/* Fixed mobile landing mode */
html {
  background: #eadfd3;
  overflow-x: hidden;
}

body {
  background: #eadfd3;
  overflow-x: hidden;
}

.site-header,
main,
.site-footer {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  grid-template-columns: 1fr;
  min-height: 58px;
  padding: 12px 18px;
  background: rgba(255, 248, 236, 0.96);
}

.brand {
  max-width: none;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
}

.nav-links,
.header-cta {
  display: none;
}

.section-pad {
  padding: 38px 18px;
}

.hero.section-pad {
  padding: 0 0 28px;
}

.hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #080605;
}

.hero::before {
  display: none;
}

.hero-media {
  position: relative;
  inset: auto;
  left: auto !important;
  order: 1;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  order: 2;
  max-width: none;
  padding: 26px 20px 0;
}

.hero-kicker-photo {
  display: none;
}

.hero h1 {
  max-width: 420px;
  margin-top: 0;
  font-size: 52px;
  line-height: 0.9;
}

.hero-lead {
  max-width: 410px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 22px;
}

.hero-actions .button-ghost {
  display: none;
}

.hero-actions .button,
.order-form .button {
  width: 100%;
}

.hero-proof {
  gap: 7px;
  margin-top: 16px;
}

.hero-proof span {
  width: auto;
  padding: 7px 10px;
  font-size: 11px;
}

.offer-section,
.desire-section,
.final-cta,
.scenario-strip,
.scent-grid,
.steps-grid,
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.offer-section {
  gap: 12px;
  padding-top: 30px;
  padding-bottom: 36px;
}

.offer-card {
  min-height: 0;
  gap: 18px;
  padding: 24px 18px 20px;
  text-align: center;
}

.offer-copy h2,
.section-heading h2,
.desire-copy h2,
.memory-overlay h2,
.final-copy h2 {
  font-size: 38px;
  line-height: 0.98;
}

.price-row {
  justify-content: center;
  margin: 12px 0 18px;
}

.price-row del {
  font-size: 26px;
  color: rgba(23, 17, 15, 0.5);
  text-decoration-thickness: 2px;
}

.price-row strong {
  min-height: 40px;
  font-size: 23px;
}

.advantages {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.advantage {
  min-height: 92px;
  padding: 10px 6px;
  font-size: 10.5px;
}

.advantage svg {
  width: 24px;
  height: 24px;
}

.offer-media,
.desire-media,
.final-bottles {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.desire-section {
  gap: 16px;
  padding-top: 34px;
  padding-bottom: 30px;
}

.desire-copy {
  max-width: none;
}

.desire-copy > p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.emotion-list {
  gap: 8px;
  margin-top: 18px;
}

.emotion-list div {
  grid-template-columns: 34px 1fr;
  gap: 2px 10px;
  padding: 14px;
}

.scenario-strip {
  gap: 1px;
  padding: 0;
}

.scenario-item {
  min-height: 112px;
  padding: 24px 20px;
}

.scenario-item strong {
  font-size: 28px;
}

.how-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.how-section .section-heading,
.section-heading {
  max-width: none;
  margin-bottom: 20px;
  text-align: left;
}

.how-section .section-heading h2 {
  font-size: 31px;
  line-height: 1.04;
}

.steps-grid {
  gap: 10px;
}

.step-card {
  display: grid;
  grid-template-columns: 82px 28px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 102px;
  padding: 10px;
  text-align: left;
}

.step-media {
  width: 82px;
  height: 82px;
  aspect-ratio: auto;
}

.step-number {
  width: 28px;
  height: 28px;
  margin-top: 0;
  font-size: 12px;
}

.step-card h3 {
  max-width: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.22;
}

.product-memory-section .memory-media {
  width: 100%;
}

.scent-section,
.reviews-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.scent-grid {
  gap: 12px;
}

.scent-card {
  min-height: 0;
  padding: 16px;
}

.bottle-slot {
  height: 230px;
}

.scent-card h3 {
  font-size: 32px;
}

.review-grid {
  gap: 12px;
}

.review-card {
  min-height: 0;
  padding: 16px;
}

.review-top {
  grid-template-columns: 46px 1fr;
}

.verified {
  grid-column: 1 / -1;
  justify-self: start;
}

.final-cta {
  gap: 18px;
  padding-top: 40px;
  padding-bottom: 36px;
}

.final-copy p:not(.eyebrow) {
  font-size: 16px;
}

.order-form {
  max-width: none;
}

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

.site-footer {
  gap: 14px 18px;
  padding: 24px 18px 30px;
}

.scent-section .section-heading h2 {
  font-size: 36px;
}

.scent-section .section-heading p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.48;
}

.scent-grid {
  gap: 10px;
}

.scent-card {
  position: relative;
  min-height: 0;
  padding: 18px 16px 17px;
  border-color: rgba(122, 12, 45, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(247, 232, 217, 0.92));
}

.scent-card.featured {
  border-color: rgba(122, 12, 45, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.98), rgba(237, 215, 207, 0.9));
}

.scent-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
}

.scent-card h3 {
  font-size: 31px;
}

.scent-card p:last-child {
  font-size: 14.5px;
  line-height: 1.45;
}

.scent-close {
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(122, 12, 45, 0.18), transparent 34%),
    #17080b;
  color: var(--ivory);
  box-shadow: 0 16px 34px rgba(67, 7, 22, 0.18);
}

.scent-close strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 0.98;
}

.scent-close p {
  margin-top: 10px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.scent-close .button {
  width: 100%;
  margin-top: 16px;
}

/* Always pinned mobile header */
html {
  scroll-padding-top: 58px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  width: 480px;
  max-width: 480px;
  margin: 0;
  transform: translateX(-50%);
  z-index: 100;
}

main {
  padding-top: 58px;
}

/* Hard lock the top label while the page scrolls */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  width: 480px !important;
  max-width: 480px !important;
  min-height: 64px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  z-index: 9999 !important;
}

main {
  padding-top: 64px !important;
}

/* Latest mobile header/chips correction */
body > .site-header {
  position: fixed !important;
  inset: 0 auto auto 50% !important;
  width: 480px !important;
  max-width: 480px !important;
  height: 64px !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  margin: 0 !important;
  transform: translateX(-50%) translateZ(0) !important;
  background: rgba(255, 248, 236, 0.98) !important;
  z-index: 2147483647 !important;
}

body > .site-header .brand {
  width: 100%;
  max-width: none !important;
  text-align: center;
}

html {
  scroll-padding-top: 64px !important;
}

main {
  padding-top: 64px !important;
}

.hero-proof {
  width: 100%;
  flex-wrap: nowrap !important;
  gap: 4px !important;
}

.hero-proof span {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  padding: 7px 5px !important;
  font-size: 10.8px !important;
  line-height: 1.12 !important;
  text-align: center;
}

/* Story update: header only at top, no sticky follow */
body > .site-header {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 480px !important;
  height: auto !important;
  min-height: 64px !important;
  margin: 0 auto !important;
  transform: none !important;
  z-index: 1 !important;
}

html {
  scroll-padding-top: 0 !important;
}

main {
  padding-top: 0 !important;
}

.desire-final {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--burgundy);
  border-radius: var(--radius);
  background: rgba(122, 12, 45, 0.06);
  color: var(--burgundy-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.media-frame.no-slot::after {
  display: none !important;
  content: none !important;
}

.offer-section .offer-copy h2 {
  font-size: 34px;
}

.offer-section .offer-sub {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.offer-section .save-line {
  margin-top: -8px;
}

.offer-section .offer-note {
  text-align: center;
}

.offer-section {
  display: block !important;
}

.offer-card {
  min-height: 0 !important;
}

/* Premium compact how-it-works block */
.how-section {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
  background:
    linear-gradient(180deg, #fff8ec 0%, #f7eadc 100%) !important;
}

.how-section .section-heading {
  max-width: none !important;
  margin-bottom: 18px !important;
  text-align: left !important;
}

.how-section .section-heading h2 {
  max-width: 390px;
  margin-top: 10px;
  font-size: 34px !important;
  line-height: 1.03 !important;
}

.how-section .section-heading p:not(.eyebrow) {
  max-width: 390px;
  margin: 10px 0 0 !important;
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.45;
}

.steps-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.step-card {
  display: grid !important;
  grid-template-columns: 118px 34px 1fr !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 126px !important;
  padding: 12px !important;
  border: 1px solid rgba(122, 12, 45, 0.13) !important;
  border-radius: 10px !important;
  background: rgba(255, 253, 246, 0.92) !important;
  box-shadow: 0 12px 26px rgba(64, 38, 31, 0.08) !important;
  text-align: left !important;
}

.step-media {
  width: 118px !important;
  height: 98px !important;
  aspect-ratio: auto !important;
  border-radius: 8px !important;
}

.step-media::after {
  display: none !important;
  content: none !important;
}

.step-number {
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  background: var(--burgundy) !important;
  box-shadow: 0 10px 20px rgba(122, 12, 45, 0.22);
}

.step-copy h3,
.step-card h3 {
  max-width: none !important;
  margin: 0 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.18 !important;
}

.step-copy p {
  margin-top: 6px;
  color: var(--taupe);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.32;
}

/* Lighter scent-scenario block */
.scent-section {
  padding-top: 34px !important;
  padding-bottom: 36px !important;
  background: linear-gradient(180deg, #fff8ec 0%, #f7ecdf 100%) !important;
}

.scent-section .section-heading {
  max-width: 390px !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.scent-section .section-heading h2 {
  max-width: 360px !important;
  margin-top: 8px !important;
  font-size: 31px !important;
  line-height: 1.04 !important;
}

.scent-section .section-heading p:not(.eyebrow) {
  display: block !important;
  max-width: 340px !important;
  margin: 10px 0 0 !important;
  color: var(--taupe) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.scent-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.scent-card,
.scent-card.featured {
  display: grid !important;
  grid-template-columns: 30px 1fr !important;
  grid-template-areas:
    "num title"
    "copy copy" !important;
  column-gap: 12px !important;
  row-gap: 0 !important;
  min-height: 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(122, 12, 45, 0.08) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 246, 0.7) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.scent-card.featured {
  border-color: rgba(122, 12, 45, 0.16) !important;
  background: rgba(255, 251, 244, 0.95) !important;
  box-shadow: 0 8px 20px rgba(63, 37, 28, 0.05) !important;
}

/* Number: quiet outlined marker, not a heavy filled disc */
.scent-number {
  grid-area: num !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  align-self: baseline !important;
  border-radius: 0 !important;
  background: none !important;
  color: rgba(122, 12, 45, 0.4) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

/* Kicker removed as redundant with the number */
.scent-kicker {
  display: none !important;
}

/* Heading is the single hero of the card */
.scent-card h3 {
  grid-area: title !important;
  margin: 2px 0 0 !important;
  max-width: 100% !important;
  font-size: 24px !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
}

.scent-card p:last-child {
  grid-area: copy !important;
  margin: 9px 0 0 !important;
  color: var(--taupe) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.scent-close {
  margin-top: 14px !important;
  padding: 20px 18px !important;
  border: none !important;
  border-radius: 12px !important;
  background: none !important;
  color: var(--ink) !important;
  box-shadow: none !important;
  text-align: center !important;
}

.scent-close strong {
  color: var(--ink) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
}

.scent-close p {
  margin-top: 8px !important;
  color: var(--taupe) !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

.scent-close .button {
  width: 100% !important;
  margin-top: 14px !important;
}

/* Cleaner UGC reviews */
.reviews-section {
  padding-top: 36px !important;
  padding-bottom: 38px !important;
  background: linear-gradient(180deg, #f1d8cf 0%, #efd4ca 100%) !important;
}

.reviews-section .section-heading {
  max-width: 390px !important;
  margin-bottom: 18px !important;
  text-align: left !important;
}

.reviews-section .section-heading h2 {
  font-size: 36px !important;
  line-height: 1.02 !important;
}

.review-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.review-card {
  min-height: 0 !important;
  padding: 16px !important;
  border: 1px solid rgba(122, 12, 45, 0.09) !important;
  border-radius: 10px !important;
  background: rgba(255, 253, 247, 0.92) !important;
  box-shadow: 0 10px 22px rgba(82, 43, 35, 0.08) !important;
}

.review-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.avatar-slot {
  display: none !important;
}

.review-name {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.stars {
  margin-top: 5px !important;
  color: #bd8428 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
}

.verified {
  grid-column: auto !important;
  justify-self: end !important;
  align-self: start !important;
  width: auto !important;
  max-width: none !important;
  padding: 6px 9px !important;
  border: 1px solid rgba(122, 12, 45, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(122, 12, 45, 0.07) !important;
  color: var(--burgundy) !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.review-card > p {
  margin: 0 !important;
  color: #332721 !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  line-height: 1.48 !important;
}

/* Compact final order block and legal-only footer */
.final-cta {
  display: block !important;
  padding-top: 38px !important;
  padding-bottom: 32px !important;
  background:
    radial-gradient(circle at 50% 38%, rgba(122, 12, 45, 0.55), transparent 34%),
    linear-gradient(180deg, #070404 0%, #15070a 58%, #050303 100%) !important;
}

.final-copy {
  width: 100% !important;
  max-width: none !important;
}

.final-copy h2 {
  font-size: 36px !important;
  line-height: 0.98 !important;
}

.final-copy p:not(.eyebrow) {
  margin-top: 10px !important;
  font-size: 15px !important;
}

.final-bottles {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 18px 0 14px !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(122, 12, 45, 0.36), transparent 54%),
    rgba(255, 248, 236, 0.035) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22) !important;
}

.final-copy > .final-bottles:first-of-type {
  margin-top: 18px !important;
}

.final-bottles img {
  object-fit: cover !important;
  object-position: center center !important;
}

.order-form {
  margin-top: 0 !important;
}

.limited-note {
  margin-top: 14px !important;
  text-align: center !important;
}

.site-footer {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  padding: 22px 20px 28px !important;
  background: #050303 !important;
  color: rgba(255, 248, 236, 0.62) !important;
  font-size: 12px !important;
  text-align: center !important;
}

.site-footer a {
  justify-self: center !important;
  color: rgba(255, 248, 236, 0.76) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.site-footer p {
  flex-basis: auto !important;
  margin: 0 !important;
  color: rgba(255, 248, 236, 0.44) !important;
  font-size: 10.5px !important;
  line-height: 1.35 !important;
}

.site-footer .footer-copy {
  color: rgba(255, 248, 236, 0.58) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

/* Hero and final price clarity */
.hero-price-line {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 7px !important;
  margin-top: 16px !important;
  color: var(--ivory) !important;
}

.hero-price-line span,
.hero-price-line strong,
.hero-price-line em,
.hero-price-line small {
  display: inline-flex !important;
  min-height: 32px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 11.5px !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.hero-price-line span {
  border: 1px solid rgba(255, 248, 236, 0.18) !important;
  background: rgba(255, 248, 236, 0.08) !important;
  color: rgba(255, 248, 236, 0.82) !important;
}

.hero-price-line strong {
  background: var(--ivory) !important;
  color: var(--burgundy-dark) !important;
  box-shadow: 0 12px 24px rgba(255, 248, 236, 0.16) !important;
}

.hero-price-line em {
  background: var(--burgundy) !important;
  color: var(--ivory) !important;
}

.final-price-line {
  margin-top: 14px !important;
}

.hero-price-line.final-price-line {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
}

.final-price-line strong,
.final-price-line em {
  order: initial !important;
  justify-self: auto !important;
}

.final-price-line span {
  border-color: rgba(255, 248, 236, 0.16) !important;
  background: rgba(255, 248, 236, 0.07) !important;
}

.hero-single-price {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 18px auto 0 !important;
}

.hero-single-price span {
  order: 1 !important;
  justify-self: end !important;
  min-height: 38px !important;
  padding: 0 13px !important;
  border-color: rgba(255, 248, 236, 0.22) !important;
  background: rgba(255, 248, 236, 0.1) !important;
  color: rgba(255, 248, 236, 0.8) !important;
  font-size: 17px !important;
  text-decoration: line-through !important;
  text-decoration-thickness: 2px !important;
}

.hero-single-price strong {
  order: 2 !important;
  justify-self: center !important;
  min-height: 58px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  background: var(--ivory) !important;
  color: var(--burgundy-dark) !important;
  font-size: 34px !important;
  letter-spacing: 0 !important;
  box-shadow: 0 16px 30px rgba(255, 248, 236, 0.22) !important;
}

.hero-single-price em {
  order: 3 !important;
  justify-self: start !important;
  min-height: 36px !important;
  padding: 0 13px !important;
  background: var(--burgundy) !important;
  color: var(--ivory) !important;
  font-size: 16px !important;
  box-shadow: 0 12px 24px rgba(122, 12, 45, 0.28) !important;
}

.volume-note {
  display: inline-flex !important;
  min-height: 32px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 12px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(122, 12, 45, 0.13) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 246, 0.72) !important;
  color: var(--burgundy) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.offer-section .deal-badges {
  justify-content: center !important;
  margin-top: 14px !important;
}

.offer-section .price-row {
  justify-content: center !important;
  gap: 14px !important;
  margin: 18px 0 14px !important;
}

.offer-section .save-line,
.offer-section .offer-note {
  text-align: center !important;
}

/* =========================================================
   FINAL SCENT CARDS FIX
   Keeps all three cards identical and prevents the featured
   card/title/notes from falling into the old mobile grid.
   HTML expected:
   <article class="scent-card [featured]">
     <div class="scent-head">
       <span class="scent-number">01</span>
       <h3>...</h3>
     </div>
     <p class="scent-notes">...</p>
     <p class="scent-description">...</p>
   </article>
   ========================================================= */

.scent-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.scent-card,
.scent-card.featured {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 16px 18px !important;
  box-sizing: border-box !important;

  /* Cancel every earlier grid declaration. */
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  grid-template-areas: none !important;
  column-gap: 0 !important;
  row-gap: 0 !important;

  border: 1px solid rgba(122, 12, 45, 0.10) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 246, 0.84) !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.scent-card.featured {
  border-color: rgba(122, 12, 45, 0.20) !important;
  background: rgba(255, 251, 244, 0.98) !important;
  box-shadow: 0 8px 20px rgba(63, 37, 28, 0.05) !important;
}

.scent-card .scent-head,
.scent-card.featured .scent-head {
  display: flex !important;
  position: static !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  transform: none !important;
  grid-area: auto !important;
}

.scent-card .scent-number,
.scent-card.featured .scent-number {
  display: inline-flex !important;
  position: static !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: baseline !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;

  color: rgba(122, 12, 45, 0.42) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1 !important;

  grid-area: auto !important;
  transform: none !important;
}

.scent-card .scent-head h3,
.scent-card.featured .scent-head h3,
.scent-card h3,
.scent-card.featured h3 {
  display: block !important;
  position: static !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;

  color: var(--ink) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;

  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;

  grid-area: auto !important;
  transform: none !important;
}

.scent-card .scent-notes,
.scent-card.featured .scent-notes,
.scent-card .scent-description,
.scent-card.featured .scent-description {
  display: block !important;
  position: static !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;

  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;

  grid-area: auto !important;
  transform: none !important;
}

.scent-card .scent-notes,
.scent-card.featured .scent-notes {
  margin-top: 0 !important;
  margin-bottom: 7px !important;
  color: var(--taupe) !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.scent-card .scent-description,
.scent-card.featured .scent-description,
.scent-card p:last-child,
.scent-card.featured p:last-child {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: var(--taupe) !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

/* The old kicker is intentionally hidden in this compact layout. */
.scent-card .scent-kicker,
.scent-card.featured .scent-kicker {
  display: none !important;
}

@media (max-width: 440px) {
  .scent-card,
  .scent-card.featured {
    padding: 15px 16px !important;
  }

  .scent-card .scent-head,
  .scent-card.featured .scent-head {
    gap: 12px !important;
  }

  .scent-card .scent-head h3,
  .scent-card.featured .scent-head h3,
  .scent-card h3,
  .scent-card.featured h3 {
    font-size: 24px !important;
  }
}
/* ===== Order form: aroma selection error ===== */
.order-form .field-error {
  color: #ff9b9b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1px;
}
.order-form select.has-error {
  border-color: #e5484d !important;
  box-shadow: 0 0 0 2px rgba(229, 72, 77, 0.25);
}
/* Center the hero-style price inside the form offer card */
.form-offer {
  justify-items: center;
  text-align: center;
}

/* ===== Button press + submitting feedback ===== */
.button {
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.button:active {
  transform: translateY(1px) scale(0.985);
}
/* Order button: clear colour change on press so the tap is obviously registered */
.order-form .button-primary.light:active {
  background: var(--burgundy) !important;
  color: var(--ivory) !important;
  box-shadow: 0 6px 16px rgba(122, 12, 45, 0.35) !important;
}
/* Submitting state stays coloured until the page navigates */
.order-form .button-primary.light.is-submitting {
  background: var(--burgundy) !important;
  color: var(--ivory) !important;
  opacity: 0.9;
  pointer-events: none;
  cursor: progress;
}
