:root {
  color-scheme: light;
  --ink: #2a1f1a;
  --muted: #7a6558;
  --paper: #f8f2e8;
  --paper-deep: #ede0cc;
  --sand: #dcc9ad;
  --clay: #8f2e24;
  --clay-dark: #6b1f18;
  --wine: #3d1214;
  --gold: #b8894f;
  --gold-soft: #d4a96a;
  --amber: #a8742e;
  --sage: #5c6d52;
  --charcoal: #181412;
  --line: rgba(61, 18, 20, 0.1);
  --shadow: 0 24px 72px rgba(42, 31, 26, 0.14);
  --shadow-soft: 0 12px 40px rgba(42, 31, 26, 0.08);
  --shadow-warm: 0 10px 32px rgba(143, 46, 36, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(184, 137, 79, 0.14), transparent 50%),
    var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.discount-banner {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 10px 18px;
  background: linear-gradient(180deg, #f5ead8 0%, #efe2cc 100%);
  border-bottom: 1px solid rgba(184, 137, 79, 0.28);
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.discount-banner[hidden] {
  display: none;
}

.discount-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clay) 0%, var(--amber) 100%);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-warm);
}

.discount-copy {
  font-family: Caveat, "Cormorant Garamond", cursive;
  font-size: 20px;
  font-weight: 600;
  color: var(--clay-dark);
}

.discount-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 4px 10px;
  border: 1px solid rgba(79, 20, 22, 0.18);
  border-radius: 8px;
  background: rgba(250, 244, 232, 0.9);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 15px;
  color: var(--wine);
  letter-spacing: 0.04em;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

.discount-banner.is-active ~ .site-header {
  top: 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(250, 244, 232, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: padding 320ms var(--ease-out), background 320ms var(--ease-out), border-color 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(250, 244, 232, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(36, 24, 21, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--wine) 0%, var(--clay) 100%);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(79, 20, 22, 0.28);
  transition: transform 400ms var(--ease-spring);
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.04);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  transition: color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease-out);
}

.nav-links a:hover {
  color: var(--clay);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(250, 244, 232, 0.9);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--wine);
  transition: transform 280ms var(--ease-out), opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 280ms var(--ease-spring), background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--clay) 0%, var(--clay-dark) 100%);
  color: white;
  box-shadow: 0 10px 28px rgba(163, 50, 40, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button.secondary {
  background: rgba(250, 244, 232, 0.8);
  border-color: var(--line);
  color: var(--wine);
  backdrop-filter: blur(8px);
}

.button.ghost {
  color: var(--wine);
  border-color: transparent;
  background: transparent;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(163, 50, 40, 0.34);
}

.button.secondary:hover {
  box-shadow: 0 8px 24px rgba(36, 24, 21, 0.08);
}

.button:active {
  transform: translateY(-1px);
}

.button.full {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(32px, 5vw, 80px) clamp(18px, 4vw, 56px) 48px;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
}

.product-buy {
  position: relative;
  max-width: 620px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(243, 201, 135, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(255, 250, 242, 0.98) 0%, rgba(243, 230, 210, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.product-buy::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(163, 50, 40, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.hero-media-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 243, 223, 0.12);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 16, 0.45) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s var(--ease-out) infinite alternate;
  filter: saturate(1.06) contrast(1.02);
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 243, 223, 0.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: heroShimmer 8s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding-inline: 28px;
  color: var(--muted);
  font-family: Caveat, "Cormorant Garamond", cursive;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-dot {
  color: var(--gold);
  font-size: 12px;
}

.section-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

.steps-section {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(184, 137, 79, 0.1), transparent 55%),
    var(--paper);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out), border-color 360ms ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 46, 36, 0.18);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--wine) 0%, var(--clay) 100%);
  box-shadow: var(--shadow-warm);
}

.step-stick {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #080707 0%, #201a18 100%);
}

.step-stick.left {
  left: 18px;
  width: 22px;
  transform: rotate(-8deg);
  animation: stepPullLeft 3s var(--ease-out) infinite;
}

.step-stick.right {
  right: 18px;
  width: 22px;
  transform: rotate(8deg);
  animation: stepPullRight 3s var(--ease-out) infinite;
}

.step-stick.whole {
  position: static;
  width: 36px;
  animation: stepPulse 3s ease-in-out infinite;
}

.step-icon.wish .step-spark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 24px rgba(212, 169, 106, 0.8);
  animation: stepSpark 3s ease-in-out infinite;
}

.showcase-section {
  padding-block: clamp(56px, 8vw, 100px);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
  filter: saturate(1.04);
}

.showcase-card:hover img {
  transform: scale(1.05);
}

.showcase-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(24, 20, 18, 0.72);
  color: #fff3df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.showcase-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
}

.showcase-grid .showcase-card:nth-child(2) {
  grid-column: span 5;
  min-height: 200px;
}

.showcase-grid .showcase-card:nth-child(3) {
  grid-column: span 5;
  min-height: 200px;
}

.showcase-quote {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(184, 137, 79, 0.12), transparent 55%),
    rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow-soft);
}

.showcase-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--wine);
}

.showcase-quote em {
  font-style: italic;
  color: var(--clay-dark);
}

.showcase-quote cite {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.cta-section {
  padding-block: clamp(48px, 8vw, 88px);
}

.cta-panel {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(143, 46, 36, 0.08), transparent 60%),
    linear-gradient(165deg, rgba(255, 250, 242, 0.98) 0%, rgba(237, 224, 204, 0.9) 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel .hero-actions {
  justify-content: center;
  margin: 8px 0 0;
}

.cta-price {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 800;
  color: var(--clay-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-price.has-discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-price .price-was {
  font-size: 0.55em;
}

.cta-price .price-now {
  font-size: 1em;
}

.ritual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
}

.wish-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 223, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(243, 201, 135, 0.38), transparent 38%),
    linear-gradient(155deg, #1e1210 0%, var(--wine) 52%, var(--clay) 100%);
  box-shadow: var(--shadow);
}

.wish-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 201, 135, 0.55) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: wishGlow 4.2s ease-in-out infinite;
  pointer-events: none;
}

.wish-stage::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 243, 223, 0.14);
  border-radius: 14px;
}

.wish-stage p {
  position: absolute;
  bottom: 34px;
  margin: 0;
  color: #fff3df;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 34px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.92;
  animation: textPulse 4.2s ease-in-out infinite;
}

.wish-stick {
  position: relative;
  width: min(520px, 82%);
  height: 92px;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.4));
}

.stick-half {
  position: absolute;
  top: 28px;
  width: 51%;
  height: 28px;
  background:
    radial-gradient(ellipse at 30% 45%, rgba(255, 255, 255, 0.18) 0 7%, transparent 8%),
    radial-gradient(ellipse at 72% 48%, rgba(255, 255, 255, 0.14) 0 9%, transparent 10%),
    linear-gradient(180deg, #080707 0%, #201a18 45%, #050505 100%);
  border-radius: 999px 28px 999px 28px;
}

.stick-half::before,
.stick-half::after {
  content: "";
  position: absolute;
  height: 18px;
  background: #080707;
  border-radius: 999px;
}

.stick-half::before {
  left: 10%;
  right: 12%;
  top: -12px;
  transform: rotate(-5deg);
}

.stick-half::after {
  left: 18%;
  right: 6%;
  bottom: -12px;
  transform: rotate(4deg);
}

.stick-half.left {
  left: 0;
  transform-origin: 95% 50%;
  animation: breakLeft 4.2s var(--ease-out) infinite;
}

.stick-half.right {
  right: 0;
  transform-origin: 5% 50%;
  animation: breakRight 4.2s var(--ease-out) infinite;
}

.spark {
  position: absolute;
  left: 50%;
  top: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0;
}

.spark.one {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 10px rgba(243, 201, 135, 0.16), 0 0 36px rgba(243, 201, 135, 0.85);
  animation: sparkOne 4.2s ease-in-out infinite;
}

.spark.two {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 24px rgba(243, 201, 135, 0.7);
  animation: sparkTwo 4.2s ease-in-out infinite;
}

.spark.three {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 18px rgba(212, 165, 116, 0.6);
  animation: sparkThree 4.2s ease-in-out infinite;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--wine);
  overflow-wrap: anywhere;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--clay-dark);
}

h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--wine);
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  line-height: 1.7;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.trust-strip::before {
  content: "✦";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 8px;
  background: var(--paper);
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.trust-strip div {
  padding: 20px 18px;
  background: rgba(250, 244, 232, 0.88);
  transition: background 280ms ease;
}

.trust-strip div:hover {
  background: rgba(255, 250, 242, 0.98);
}

.trust-strip dt {
  font-weight: 700;
  font-size: 15px;
}

.trust-strip dt.has-discount,
[data-price-main].has-discount,
.sticky-cta-copy span.has-discount {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-was {
  font-size: 0.72em;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(163, 50, 40, 0.45);
}

.price-now {
  color: var(--clay-dark);
  font-weight: 800;
}

.trust-strip dt .price-was {
  font-size: 12px;
}

.trust-strip dt .price-now {
  font-size: 15px;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.notice {
  display: flex;
  gap: 12px;
  margin: 0 clamp(18px, 4vw, 56px);
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.88);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
}

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

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  transition: transform 280ms var(--ease-out), color 280ms ease;
}

.feature-list li:hover {
  transform: translateX(4px);
  color: var(--ink);
}

.feature-list span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--gold) 100%);
  box-shadow: 0 0 0 4px rgba(90, 107, 79, 0.12);
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1.25;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--sand);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 320ms var(--ease-out), transform 320ms var(--ease-out);
}

.gallery-main:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out), opacity 180ms ease;
  filter: sepia(0.06) saturate(1.04);
}

.gallery-main img.is-changing {
  opacity: 0.4;
  transform: scale(1.02);
}

.gallery-main:hover img:not(.is-changing) {
  transform: scale(1.04);
}

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

.thumb {
  aspect-ratio: 1.4;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: border-color 240ms ease, transform 280ms var(--ease-spring), box-shadow 240ms ease;
}

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

.thumb.is-active {
  border-color: var(--clay);
  box-shadow: 0 8px 24px rgba(163, 50, 40, 0.18);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.thumb:hover img {
  transform: scale(1.06);
}

.band {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(143, 46, 36, 0.14), transparent 55%),
    linear-gradient(165deg, var(--wine) 0%, #2e0c0d 100%);
  color: #fff3df;
}

.band h2,
.band .eyebrow {
  color: #fff3df;
}

.band-head {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.value-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 243, 223, 0.18);
  border-radius: 18px;
  background: rgba(255, 243, 223, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 360ms var(--ease-out), background 360ms ease, border-color 360ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 243, 223, 0.12);
  border-color: rgba(255, 243, 223, 0.32);
}

.icon {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
}

.hero-media-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 100px rgba(36, 24, 21, 0.24);
}

.gallery-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.media-link-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 17, 16, 0.72);
  color: #fff3df;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms var(--ease-out);
}

.hero-media-link:hover .media-link-label,
.gallery-link:hover .media-link-label {
  opacity: 1;
  transform: translateY(0);
}

.price-block {
  margin: 0 0 8px;
}

.price-main {
  display: block;
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 800;
  color: var(--clay-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.price-main.has-discount {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-main .price-was {
  font-size: 0.65em;
}

.price-main .price-now {
  font-size: 1em;
}

.price-block small,
.price small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.price-approx,
.price-trust {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-trust {
  margin-bottom: 18px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.trust-badges li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 244, 232, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(640px, calc(100% - 28px));
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 244, 232, 0.96);
  box-shadow: 0 18px 50px rgba(36, 24, 21, 0.16);
  backdrop-filter: blur(16px);
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 420ms var(--ease-out), opacity 420ms var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sticky-cta-copy strong {
  font-size: 14px;
}

.sticky-cta-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.sticky-cta-copy span.has-discount .price-was {
  font-size: 11px;
}

.sticky-cta-copy span.has-discount .price-now {
  font-size: 13px;
  color: var(--clay-dark);
}

.sticky-cta .button {
  flex-shrink: 0;
  min-height: 42px;
  padding-inline: 18px;
}

.section-copy .button {
  margin-top: 28px;
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: var(--clay-dark);
  letter-spacing: -0.02em;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-specs span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 244, 232, 0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 240ms ease, border-color 240ms ease;
}

.mini-specs span:hover {
  background: white;
  border-color: rgba(163, 50, 40, 0.25);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.9);
  overflow: hidden;
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

details[open] {
  border-color: rgba(163, 50, 40, 0.22);
  box-shadow: var(--shadow-soft);
}

summary {
  padding: 20px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 220ms ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--clay);
  font-size: 20px;
  font-weight: 400;
  transition: transform 320ms var(--ease-out);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] summary {
  color: var(--clay-dark);
}

details p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
  animation: faqOpen 360ms var(--ease-out);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: #fff3df;
  font-size: 14px;
}

.site-footer a {
  opacity: 0.78;
  transition: opacity 220ms ease;
}

.site-footer a:hover {
  opacity: 1;
}

.center-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
}

.status-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.status-panel h1 {
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.04;
}

.status-panel .button {
  margin-top: 8px;
}

.status-panel .button + .button {
  margin-left: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes heroShimmer {
  0%, 100% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes stepPullLeft {
  0%, 30%, 100% {
    transform: translateX(0) rotate(-8deg);
  }
  50%, 70% {
    transform: translateX(-8px) rotate(-12deg);
  }
}

@keyframes stepPullRight {
  0%, 30%, 100% {
    transform: translateX(0) rotate(8deg);
  }
  50%, 70% {
    transform: translateX(8px) rotate(12deg);
  }
}

@keyframes stepPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes stepSpark {
  0%, 25%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes breakLeft {
  0%, 22%, 100% {
    transform: translateX(0) rotate(0);
  }
  38%, 68% {
    transform: translateX(-42px) rotate(-10deg);
  }
}

@keyframes breakRight {
  0%, 22%, 100% {
    transform: translateX(0) rotate(0);
  }
  38%, 68% {
    transform: translateX(42px) rotate(10deg);
  }
}

@keyframes sparkOne {
  0%, 24%, 78%, 100% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.4);
  }
  42%, 62% {
    opacity: 1;
    transform: translate(-50%, -44px) scale(1.1);
  }
}

@keyframes sparkTwo {
  0%, 30%, 80%, 100% {
    opacity: 0;
    transform: translate(calc(-50% + 18px), 0) scale(0.4);
  }
  48%, 66% {
    opacity: 0.9;
    transform: translate(calc(-50% + 28px), 32px) scale(0.9);
  }
}

@keyframes sparkThree {
  0%, 32%, 82%, 100% {
    opacity: 0;
    transform: translate(calc(-50% - 22px), 0) scale(0.3);
  }
  50%, 68% {
    opacity: 0.75;
    transform: translate(calc(-50% - 34px), -18px) scale(0.8);
  }
}

@keyframes wishGlow {
  0%, 22%, 100% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(0.8);
  }
  42%, 62% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

@keyframes textPulse {
  0%, 22%, 100% {
    opacity: 0.72;
  }
  42%, 62% {
    opacity: 1;
  }
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 80px 24px 40px;
    background: rgba(250, 244, 232, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 320ms var(--ease-out), visibility 320ms;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav a {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 600;
    color: var(--wine);
    transition: color 220ms ease;
  }

  .mobile-nav a:hover {
    color: var(--clay);
  }

  .hero,
  .split,
  .product-page,
  .ritual-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-media {
    min-height: 320px;
    order: -1;
  }

  .wish-stage {
    min-height: 300px;
  }

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

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

  .showcase-large,
  .showcase-grid .showcase-card:nth-child(2),
  .showcase-grid .showcase-card:nth-child(3),
  .showcase-quote {
    grid-column: span 12;
    min-height: 240px;
  }

  .showcase-large {
    min-height: 300px;
  }

  h1 {
    font-size: clamp(42px, 11vw, 72px);
  }

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

  .product-buy {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand span:last-child {
    display: inline;
    font-size: 13px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .discount-banner {
    gap: 6px 12px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .discount-banner.is-active ~ .site-header {
    top: 72px;
  }

  .discount-copy {
    font-size: 18px;
  }

  .discount-timer {
    min-width: 56px;
    font-size: 14px;
  }

  .hero {
    padding: 20px 16px 32px;
    gap: 24px;
  }

  .hero-media {
    min-height: 260px;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 56px);
    margin-bottom: 14px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    margin: 24px 0;
    flex-direction: column;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .trust-strip div {
    padding: 16px 18px;
  }

  .notice,
  .site-footer {
    flex-direction: column;
    margin-inline: 16px;
  }

  .section {
    padding: 56px 16px;
  }

  .marquee-track {
    font-size: 18px;
  }

  .step-card {
    min-height: auto;
  }

  .cta-panel {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .cta-panel .hero-actions {
    flex-direction: column;
  }

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

  .wish-stage {
    min-height: 260px;
    border-radius: 16px;
  }

  .wish-stage p {
    font-size: 22px;
    bottom: 24px;
  }

  .wish-stick {
    width: 88%;
  }

  .product-buy {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .price-main {
    font-size: 28px;
  }

  .trust-badges {
    gap: 6px;
  }

  .trust-badges li {
    font-size: 11px;
    padding: 6px 10px;
  }

  .mini-specs {
    gap: 8px;
  }

  .mini-specs span {
    font-size: 11px;
    padding: 7px 12px;
  }

  .thumbs {
    gap: 8px;
  }

  .gallery-main {
    border-radius: 16px;
  }

  .status-panel h1 {
    font-size: 30px;
    line-height: 1.04;
  }

  .sticky-cta {
    flex-direction: row;
    align-items: center;
    border-radius: 16px;
    padding: 12px 14px;
    width: calc(100% - 20px);
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta .button {
    width: auto;
    min-height: 38px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .sticky-cta-copy strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
