:root {
  --cream: #f7f0e7;
  --paper: #fffaf4;
  --ink: #211820;
  --muted: #74666e;
  --wine: #6f2443;
  --wine-dark: #2b101d;
  --rose: #dc8792;
  --peach: #f0c7b5;
  --line: rgba(64, 35, 49, 0.15);
  --night: #172237;
  --shadow: 0 24px 70px rgba(43, 16, 29, 0.13);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 400 16px/1.6 var(--sans);
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, select { font: inherit; }
button:focus-visible, a:focus-visible, select:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

.mode-bar {
  padding: 9px 5vw;
  text-align: center;
  background: #f8d9a3;
  color: #563412;
  font-size: 13px;
  font-weight: 700;
}

.site-header {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(22px, 5vw, 76px);
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.wordmark {
  width: fit-content;
  color: var(--wine-dark);
  text-decoration: none;
  font: 400 clamp(23px, 2.1vw, 31px)/0.9 var(--serif);
  letter-spacing: -0.025em;
}
.wordmark span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font: 700 9px/1 var(--sans);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.site-header nav a:hover { color: var(--wine); }
.header-pill {
  justify-self: end;
  padding: 9px 17px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.store-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  padding: clamp(70px, 9vw, 130px) clamp(22px, 8vw, 130px);
  color: var(--paper);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 83% 25%, rgba(220, 135, 146, 0.28), transparent 25%),
    radial-gradient(circle at 62% 88%, rgba(240, 199, 181, 0.14), transparent 24%),
    var(--wine-dark);
}
.store-hero::after {
  content: "";
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  position: absolute;
  right: -190px;
  top: -180px;
}
.overline {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.store-hero h1 {
  max-width: 760px;
  margin: 0;
  font: 400 clamp(58px, 7.5vw, 112px)/0.92 var(--serif);
  letter-spacing: -0.045em;
}
.store-hero h1 em { color: var(--peach); font-weight: 400; }
.hero-lede {
  max-width: 590px;
  margin: 30px 0 34px;
  color: rgba(255, 250, 244, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  appearance: none;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(43,16,29,.2); }
.button-light { background: var(--paper); color: var(--wine-dark); }
.text-link {
  color: var(--paper);
  text-underline-offset: 5px;
  font-weight: 700;
}
.hero-art {
  height: 460px;
  position: relative;
  z-index: 1;
}
.floating-card {
  width: min(350px, 75vw);
  min-height: 410px;
  padding: 42px 38px;
  border-radius: 22px;
  position: absolute;
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
}
.floating-card span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
}
.floating-card p {
  margin: 100px 0 0;
  font: 400 37px/1.13 var(--serif);
  letter-spacing: -.025em;
}
.floating-card small { display: block; margin-top: 40px; color: var(--muted); }
.card-back {
  right: 95px;
  top: 8px;
  color: var(--ink);
  background: #dca3a5;
  transform: rotate(-9deg);
}
.card-front {
  right: 0;
  top: 35px;
  color: var(--ink);
  background: var(--paper);
  transform: rotate(5deg);
}
.hero-seal {
  width: 105px;
  height: 105px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--wine-dark);
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
  font: 400 31px/.75 var(--serif);
  transform: rotate(-8deg);
}
.hero-seal span { font: 700 9px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; }

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.promise-strip div { padding: 25px clamp(22px, 5vw, 70px); border-right: 1px solid var(--line); }
.promise-strip div:last-child { border: 0; }
.promise-strip strong, .promise-strip span { display: block; }
.promise-strip strong { color: var(--wine-dark); font: 400 20px var(--serif); }
.promise-strip span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.store-section { padding: clamp(80px, 10vw, 140px) clamp(22px, 7vw, 110px); }
.emotional-section { background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  gap: 50px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading h2, .how-section h2, .faq-section h2 {
  margin: 0;
  color: var(--wine-dark);
  font: 400 clamp(48px, 6vw, 78px)/1 var(--serif);
  letter-spacing: -.035em;
}
.section-heading > p { margin: 0; color: var(--muted); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.merch-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(43, 16, 29, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-visual { background: #2b101d; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.digital-cover {
  width: 58%;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 21px;
  border-radius: 8px 16px 16px 8px;
  color: var(--paper);
  background: var(--wine);
  box-shadow: 14px 18px 30px rgba(43,16,29,.22);
  transform: rotate(-3deg);
}
.digital-cover.rose { background: #ad5d6c; }
.digital-cover.wine { background: #641f3e; }
.digital-cover.night { background: var(--night); }
.digital-cover span { font-size: 8px; font-weight: 700; letter-spacing: .17em; }
.digital-cover strong { font: 400 clamp(23px, 2.4vw, 38px)/.98 var(--serif); }
.digital-cover small { color: rgba(255,255,255,.7); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.product-info { padding: 24px; }
.product-eyebrow {
  min-height: 18px;
  margin: 0 0 7px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-info h3 { min-height: 58px; margin: 0; font: 400 27px/1.05 var(--serif); }
.product-description { min-height: 74px; margin: 13px 0 20px; color: var(--muted); font-size: 13px; }
.digital-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}
.digital-consent[hidden] { display: none; }
.digital-consent input { margin: 2px 0 0; accent-color: var(--wine); }
.product-buy { display: flex; align-items: end; gap: 10px; flex-wrap: wrap; }
.product-price { margin-right: auto; color: var(--wine-dark); font: 400 26px var(--serif); }
.shipping-note { width: 100%; margin-top: -6px; color: var(--muted); font-size: 9px; }
.size-wrap label { display: grid; gap: 2px; color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.size-select {
  min-width: 64px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
}
.buy-button { min-height: 46px; padding: 10px 17px; font-size: 13px; }
.buy-button:disabled { opacity: .48; cursor: not-allowed; transform: none; box-shadow: none; }
.buy-message { min-height: 20px; margin: 10px 0 0; color: var(--wine); font-size: 11px; }

.editorial-break {
  padding: clamp(70px, 9vw, 120px) clamp(22px, 14vw, 230px);
  color: var(--paper);
  background: var(--wine);
  text-align: center;
}
.editorial-break .overline { color: var(--peach); }
.editorial-break blockquote {
  max-width: 1020px;
  margin: 0 auto;
  font: 400 clamp(36px, 5vw, 67px)/1.07 var(--serif);
  letter-spacing: -.025em;
}

.how-section {
  padding: clamp(80px, 10vw, 140px) clamp(22px, 7vw, 110px);
  color: var(--paper);
  background: var(--night);
}
.how-section .overline { color: #9fb4d7; }
.how-section h2 { color: var(--paper); }
.how-section ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
}
.how-section li { padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; }
.how-section li span { display: block; margin-bottom: 60px; color: #9fb4d7; font-size: 11px; letter-spacing: .16em; }
.how-section li strong { display: block; font: 400 31px var(--serif); }
.how-section li p { margin: 9px 0 0; color: rgba(255,255,255,.65); font-size: 13px; }

.faq-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  padding: clamp(80px, 10vw, 140px) clamp(22px, 7vw, 110px);
  background: var(--paper);
}
.faq-list details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; color: var(--wine-dark); font-weight: 700; }
.faq-list p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  padding: 60px clamp(22px, 7vw, 110px) 35px;
  color: rgba(255,255,255,.65);
  background: #130b10;
}
.footer-mark { color: var(--paper); }
.site-footer p { max-width: 470px; font-size: 13px; }
.footer-links { display: flex; gap: 24px; align-items: start; font-size: 13px; }
.site-footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }

.legal-shell, .thanks-shell { min-height: 100vh; background: var(--paper); }
.simple-header { padding: 24px clamp(22px, 7vw, 110px); border-bottom: 1px solid var(--line); }
.legal-content, .thanks-card {
  width: min(760px, calc(100% - 44px));
  margin: 70px auto;
}
.legal-content h1, .thanks-card h1 { margin: 0 0 25px; font: 400 clamp(44px, 7vw, 74px)/1 var(--serif); }
.legal-content h2 { margin: 36px 0 8px; font: 400 28px var(--serif); }
.legal-content p, .legal-content li { color: var(--muted); }
.thanks-card {
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.thanks-card .button { display: inline-flex; }
.status-note { color: var(--muted); }

@media (max-width: 1050px) {
  .store-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { width: min(520px, 100%); margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  .site-header nav { display: none; }
  .wordmark span { display: none; }
  .store-hero { padding-top: 70px; gap: 15px; }
  .store-hero h1 { font-size: clamp(52px, 17vw, 75px); }
  .hero-art { height: 390px; transform: scale(.88); transform-origin: center top; }
  .card-back { right: 80px; }
  .promise-strip, .section-heading, .how-section ol, .faq-section { grid-template-columns: 1fr; }
  .promise-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading { gap: 20px; }
  .product-grid, .merch-grid { grid-template-columns: 1fr; }
  .digital-cover { width: 48%; }
  .product-info h3, .product-description { min-height: 0; }
  .faq-section { gap: 35px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .site-footer small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
