:root {
  --blush: #fff0ef;
  --blush-strong: #f7c6c8;
  --rose: #d77c88;
  --rose-dark: #9d4d56;
  --gold: #b7832f;
  --gold-light: #f4d394;
  --ink: #261816;
  --muted: #765f5b;
  --cream: #fffaf7;
  --white: #ffffff;
  --black: #140c0b;
  --line: rgba(183, 131, 47, 0.22);
  --shadow: 0 24px 70px rgba(91, 43, 37, 0.15);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(247, 198, 200, 0.6), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(244, 211, 148, 0.38), transparent 26%),
    linear-gradient(180deg, #fff7f5 0%, #fffaf7 38%, #fff1ef 100%);
  line-height: 1.65;
  text-align: left;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 247, 0.78);
  border-bottom: 1px solid rgba(183, 131, 47, 0.16);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(183, 131, 47, 0.22);
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a,
.menu-toggle {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  color: #4b3430;
  font-weight: 700;
  font-size: 0.92rem;
  background: transparent;
}

.menu a:hover,
.menu a:focus-visible,
.menu-toggle:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.cart-link {
  background: linear-gradient(135deg, #ffffff, #fff1ef) !important;
  border-color: rgba(183, 131, 47, 0.2) !important;
  box-shadow: 0 8px 25px rgba(183, 131, 47, 0.1);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.65;
}

.orb-one {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(247, 198, 200, 0.7), transparent 68%);
  left: -80px;
  top: 80px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244, 211, 148, 0.42), transparent 68%);
  right: -100px;
  bottom: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.media-panel,
.product-copy,
.included-card,
.benefit-card,
.quote-card,
.faq-list details,
.related-card {
  border: 1px solid rgba(183, 131, 47, 0.2);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.media-panel {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-lg);
  padding: 14px;
}

.product-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 5;
  border-radius: 999px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fffdf8;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(183, 131, 47, 0.3);
}

.main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  background: var(--blush);
}

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

.thumb {
  border: 1px solid rgba(183, 131, 47, 0.22);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  padding: 5px;
  cursor: pointer;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 13px;
  opacity: 0.78;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.thumb.active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(183, 131, 47, 0.25);
}

.thumb.active img,
.thumb:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.product-copy {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.breadcrumbs a {
  color: var(--rose-dark);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  margin: 22px 0;
  font-size: 1.13rem;
  color: #5c4641;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  color: var(--gold);
}

.rating-row strong {
  color: var(--ink);
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin: 18px 0 20px;
}

.price {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 950;
  color: var(--rose-dark);
}

.price-note {
  color: var(--muted);
  font-weight: 800;
}

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

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: #4e3935;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.buy-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.buy-box label {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 800;
}

.quantity-row {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
  min-height: 52px;
}

.qty-btn {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.quantity-row input {
  width: 100%;
  border: 0;
  text-align: center;
  font-weight: 900;
  color: var(--ink);
  background: transparent;
  appearance: textfield;
}

.quantity-row input::-webkit-outer-spin-button,
.quantity-row input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.primary-btn,
.secondary-btn,
.mobile-order-bar a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #1c100f, #5a312d 52%, #b7832f);
  color: #fffdf8;
  box-shadow: 0 18px 38px rgba(91, 43, 37, 0.28);
}

.secondary-btn {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff, #fff4ef);
  color: var(--rose-dark);
  border: 1px solid rgba(183, 131, 47, 0.25);
}

.primary-btn:hover,
.secondary-btn:hover,
.mobile-order-bar a:hover {
  transform: translateY(-2px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  border: 1px solid rgba(183, 131, 47, 0.18);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
  color: #684f48;
  font-size: 0.83rem;
  font-weight: 850;
  text-align: center;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(183, 131, 47, 0.18);
  background: rgba(255, 255, 255, 0.48);
}

.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

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

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.split-grid,
.ritual-grid,
.faq-grid,
.proof-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.split-grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
}

.rich-copy p,
.seo-content p,
.faq-grid > div > p {
  color: var(--muted);
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.included-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.included-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.included-card div {
  padding: 22px;
}

.included-card span,
.related-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.included-card p,
.benefit-card p,
.quote-card p,
.step-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.wide-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: stretch;
}

.wide-card img {
  height: 100%;
  aspect-ratio: auto;
}

.benefits-section,
.faq-section,
.related-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255, 240, 239, 0.48));
}

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

.benefit-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.benefit-card span,
.step-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 950;
  margin-bottom: 18px;
}

.ritual-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.ritual-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(183, 131, 47, 0.2);
}

.ritual-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steps-copy {
  padding: 12px 0 12px 18px;
}

.step-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.step-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}

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

.quote-card {
  border-radius: var(--radius-md);
  padding: 26px;
}

.quote-card div {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #3d2925;
}

.quote-card span {
  color: var(--rose-dark);
  font-weight: 900;
}

.featured-quote {
  transform: translateY(-18px);
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255, 241, 239, 0.72));
}

.narrow {
  max-width: 860px;
}

.seo-content {
  background:
    linear-gradient(rgba(38, 24, 22, 0.78), rgba(38, 24, 22, 0.82)),
    url('/assets/images/ritual-flatlay.jpg') center / cover fixed;
  color: var(--white);
}

.seo-content h2,
.seo-content .eyebrow {
  color: var(--white);
}

.seo-content p {
  color: rgba(255, 250, 247, 0.86);
}

.faq-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

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

.faq-list details {
  border-radius: 18px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

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

.related-card {
  border-radius: var(--radius-md);
  padding: 12px;
  display: grid;
  gap: 12px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.related-card span {
  padding: 0 8px 8px;
  color: var(--rose-dark);
}

.site-footer {
  padding: 68px 0 120px;
  color: rgba(255, 250, 247, 0.76);
  background: linear-gradient(135deg, #150c0b, #39201d 52%, #6f4038);
}

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

.site-footer h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 250, 247, 0.88);
}

.footer-brand {
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 36px;
  padding-top: 24px;
  font-size: 0.88rem;
}

.mobile-order-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(183, 131, 47, 0.25);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(38, 24, 22, 0.2);
}

.mobile-order-bar strong,
.mobile-order-bar span {
  display: block;
}

.mobile-order-bar span {
  color: var(--rose-dark);
  font-weight: 900;
}

.mobile-order-bar a {
  min-height: 44px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--ink), var(--gold));
  color: var(--white);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .ritual-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-panel {
    position: relative;
    top: auto;
  }

  .included-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: auto;
    display: flex;
  }

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

  .featured-quote {
    transform: none;
  }

  .steps-copy {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .nav {
    min-height: 68px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(183, 131, 47, 0.2);
    border-radius: 22px;
    padding: 12px;
    background: rgba(255, 250, 247, 0.96);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    text-align: center;
  }

  .product-hero {
    padding-top: 34px;
  }

  .hero-grid {
    gap: 22px;
  }

  .product-copy,
  .media-panel {
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .buy-box {
    grid-template-columns: 1fr;
  }

  .quantity-row {
    max-width: 170px;
  }

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

  .included-grid,
  .benefit-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .thumb-row {
    grid-template-columns: repeat(3, minmax(82px, 1fr));
  }

  .section {
    padding: 58px 0;
  }

  .section-heading.centered {
    text-align: left;
  }

  .marquee-track {
    animation-duration: 18s;
  }

  .mobile-order-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 130px;
  }
}

@media (max-width: 430px) {
  .container,
  .nav {
    width: min(100% - 22px, var(--max));
  }

  .product-copy {
    padding: 22px;
  }

  .main-image {
    border-radius: 20px;
  }

  .product-badge {
    left: 22px;
    top: 22px;
    font-size: 0.72rem;
  }

  .step-list article {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
