@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Inter:wght@400;500;600;700&family=Lora:ital,wght@1,400;1,500&family=Montserrat:wght@700&family=Playfair+Display:ital,wght@0,700;1,500&display=swap");


:root {
  --ink: #191815;
  --cream: #f6f0df;
  --paper: #292723;
  --oxblood: #6d28d9;
  --plum: #4f214c;
  --olive: #62713a;
  --mustard: #d4a848;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100dvh;
  background:
    radial-gradient(60rem 35rem at 50% -20%, rgba(109, 40, 217, .2), transparent 60%),
    var(--ink);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 240, 223, .96);
  color: var(--ink);
  border-bottom: 1px solid rgba(25, 24, 21, .1);
  backdrop-filter: blur(10px);
}

.nav-row {
  width: min(80rem, 100%);
  height: 4.65rem;
  margin: 0 auto;
  padding: 0 max(1.25rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(25, 24, 21, .78);
}

.nav-links a,
.footer a {
  text-decoration: none;
}

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

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: min(9.7rem, 34vw);
  height: 2.65rem;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.bag-button,
.icon-button {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
}

.bag-button:hover,
.icon-button:hover {
  color: var(--oxblood);
  background: rgba(25, 24, 21, .05);
}

.bag-button svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: .3rem;
  right: .28rem;
  min-width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--oxblood);
  color: var(--cream);
  font-size: .6rem;
  font-weight: 700;
}

.cart-count.is-empty {
  display: none;
}

.icon-button span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.mobile-only {
  display: none;
}

.mobile-nav {
  display: none;
  padding: .8rem 1.25rem 1rem;
  border-top: 1px solid rgba(25, 24, 21, .08);
}

.mobile-nav a {
  display: block;
  padding: .75rem 0;
  color: rgba(25, 24, 21, .82);
  text-decoration: none;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.menu-open .mobile-nav {
  display: block;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--oxblood);
  color: var(--cream);
  padding: .38rem 0;
}

.marquee div {
  width: max-content;
  display: flex;
  animation: marquee-left 20s linear infinite;
}

.marquee span {
  padding: 0 1rem;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.marquee b {
  opacity: .55;
  padding: 0 .45rem;
}

.hero {
  width: min(48rem, 100%);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  text-align: center;
}

.status-pill {
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(246, 240, 223, .14);
  border-radius: 999px;
  padding: .35rem .8rem;
  background: rgba(246, 240, 223, .04);
  color: rgba(246, 240, 223, .75);
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.status-pill i {
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, .7);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
}

.hero h1 {
  margin-top: .75rem;
  color: var(--cream);
  font-size: clamp(2.5rem, 9vw, 4.25rem);
  line-height: .95;
  letter-spacing: 0;
}

.shipping-banner {
  width: 100%;
  aspect-ratio: 1930 / 815;
  height: auto;
  margin: 1.25rem auto 0;
  object-fit: cover;
  object-position: center;
}

.hero p {
  width: min(27rem, 100%);
  margin: 1.1rem auto 0;
  color: rgba(246, 240, 223, .65);
  font-size: .95rem;
  line-height: 1.7;
}

.primary-cta {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: .9rem 1.8rem;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.primary-cta:hover {
  background: var(--oxblood);
  color: var(--cream);
}

.benefits {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  color: rgba(246, 240, 223, .55);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.benefits b {
  color: rgba(246, 240, 223, .3);
}

.stories {
  margin-top: 1.45rem;
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.story {
  width: 4.15rem;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .42rem;
}

.story > span {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  padding: 3px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, var(--mustard), #6d28d9, #a78bfa, #6d28d9, var(--mustard));
  box-shadow: 0 0 0 1px rgba(246, 240, 223, .18), 0 0 12px rgba(109, 40, 217, .42);
}

.story img {
  width: 3.45rem;
  height: 3.45rem;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.story small {
  color: rgba(246, 240, 223, .6);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.section {
  width: min(80rem, 100%);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-heading {
  text-align: center;
}

.section-heading span,
.about-band span {
  color: var(--mustard);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.section-heading h2,
.about-band h2 {
  margin-top: .4rem;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.section-heading p {
  margin: .75rem auto 0;
  color: rgba(246, 240, 223, .58);
}

.filters {
  margin: 1.5rem auto 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.filters button {
  border: 1px solid rgba(246, 240, 223, .14);
  border-radius: 999px;
  background: rgba(246, 240, 223, .04);
  color: rgba(246, 240, 223, .72);
  padding: .55rem .85rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.filters button:first-child,
.filters button:hover,
.filters button.is-active {
  background: var(--cream);
  color: var(--ink);
}

.catalog-filter-panel {
  width: min(36rem, 100%);
  margin: 0 auto 1.05rem;
  padding: .6rem 0 1rem;
  text-align: center;
  border-bottom: 2px solid rgba(246, 240, 223, .78);
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem .5rem;
}

.filter-row + .filter-row {
  margin-top: .55rem;
}

.filter-row button {
  min-height: 1.95rem;
  border: 1px solid rgba(246, 240, 223, .16);
  border-radius: 999px;
  background: rgba(246, 240, 223, .02);
  color: rgba(246, 240, 223, .72);
  padding: .45rem .95rem;
  font-family: "Montserrat", sans-serif;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.gender-filter {
  gap: .6rem;
}

.gender-filter button {
  min-width: 5.25rem;
  border-color: rgba(246, 240, 223, .18);
}

.gender-filter button.is-active {
  border-color: #6d28d9;
  background: #6d28d9;
  color: var(--cream);
}

.category-filter {
  width: min(19rem, 100%);
  margin-inline: auto;
}

.category-filter button {
  min-height: 1.55rem;
  border-style: dashed;
  padding: .3rem .58rem;
  font-size: .52rem;
  letter-spacing: .12em;
}

.category-filter button.is-active {
  border-color: #d1a43a;
  border-style: solid;
  color: var(--cream);
}

.size-filter {
  margin-top: .95rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
}

.size-filter::-webkit-scrollbar {
  display: none;
}

.size-filter button {
  min-width: 2rem;
  min-height: 1.55rem;
  padding: .25rem .5rem;
  font-size: .68rem;
  letter-spacing: .04em;
}

.size-filter button.is-active {
  border-color: rgba(246, 240, 223, .78);
  color: var(--cream);
}

.catalog-count {
  margin: .75rem 0 0;
  color: rgba(246, 240, 223, .46);
  font-family: "Montserrat", sans-serif;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  min-width: 0;
  background: rgba(246, 240, 223, .035);
  border: 1px solid rgba(246, 240, 223, .1);
}

.product-card.is-hidden-product {
  display: none;
}

.products-more {
  display: flex;
  justify-content: center;
  padding: 2.1rem 0 .4rem;
}

.products-more button {
  min-width: min(16rem, calc(100vw - 3rem));
  height: 3rem;
  border: 1px solid rgba(246, 240, 223, .82);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.products-more button:hover {
  background: rgba(246, 240, 223, .08);
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f0e0d;
  cursor: zoom-in;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.discount,
.sold-label {
  position: absolute;
  top: .65rem;
  left: .65rem;
  padding: .28rem .48rem;
  background: var(--oxblood);
  color: var(--cream);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.sold-label {
  inset: auto .65rem .65rem auto;
  background: rgba(25, 24, 21, .86);
}

.sold-out img {
  filter: grayscale(.95) brightness(.65);
}

.product-info {
  padding: .85rem;
}

.meta-row,
.product-foot {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  color: rgba(246, 240, 223, .48);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.product-info h3 {
  min-height: 2.8rem;
  margin-top: .45rem;
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: zoom-in;
}

.product-info p {
  min-height: 2.45rem;
  margin: .4rem 0 0;
  color: rgba(246, 240, 223, .56);
  font-size: .78rem;
  line-height: 1.45;
}

.price-row {
  margin-top: .7rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.price-row strong {
  color: var(--cream);
  font-size: 1.05rem;
}

.price-row del {
  color: rgba(246, 240, 223, .38);
  font-size: .78rem;
}

.product-foot {
  margin-top: .55rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(246, 240, 223, .08);
}

.product-info button {
  width: 100%;
  height: 2.75rem;
  margin-top: .85rem;
  border: 1px solid rgba(246, 240, 223, .82);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.product-info button:hover {
  border-color: var(--cream);
  background: rgba(246, 240, 223, .08);
}

.product-info button:disabled {
  cursor: not-allowed;
  background: transparent;
  border-color: rgba(246, 240, 223, .18);
  color: rgba(246, 240, 223, .4);
}

.about-band {
  margin-top: 1rem;
  padding: 4rem max(1.25rem, calc((100vw - 80rem) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--paper);
  border-block: 1px solid rgba(246, 240, 223, .08);
}

.about-band p {
  margin: 0;
  align-self: end;
  color: rgba(246, 240, 223, .62);
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
}

.instagram {
  width: min(80rem, 100%);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.footer {
  padding: 3rem max(1.25rem, calc((100vw - 80rem) / 2));
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  background: var(--cream);
  color: var(--ink);
}

.footer-brand img {
  width: 10rem;
  max-height: 4rem;
  object-fit: contain;
  object-position: left center;
}

.footer h3 {
  margin-bottom: .7rem;
  color: var(--oxblood);
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.footer a,
.footer p {
  display: block;
  margin: .35rem 0;
  color: rgba(25, 24, 21, .68);
  font-size: .9rem;
}

.footer form {
  display: flex;
  gap: .45rem;
}

.footer input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(25, 24, 21, .18);
  padding: .75rem;
  background: rgba(25, 24, 21, .04);
  color: var(--ink);
}

.footer form button {
  border: 0;
  padding: 0 .9rem;
  background: var(--oxblood);
  color: var(--cream);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.proof-strip,
.reviews-section,
.story-section,
.faq-section,
.info-section,
.newsletter-section,
.site-footer {
  width: min(44rem, 100%);
  margin: 0 auto;
  padding: 2.2rem 1.25rem;
  background: #080706;
  border-top: 1px solid rgba(246, 240, 223, .1);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  padding: 1.8rem 1.2rem;
}

.metrics-grid strong {
  display: block;
  color: var(--mustard);
  font-size: 1.8rem;
  line-height: 1;
}

.metrics-grid span {
  color: rgba(246, 240, 223, .5);
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-card {
  margin-inline: -1.25rem;
  padding: 2rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
  background: #151515;
  border-block: 1px solid rgba(246, 240, 223, .08);
}

.trust-card > span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(109, 40, 217, .18);
  color: var(--oxblood);
}

.trust-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
}

.trust-card em {
  display: block;
  color: rgba(246, 240, 223, .65);
  font-family: "Lora", Georgia, serif;
  font-size: .78rem;
}

.trust-card i {
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  background: rgba(246, 240, 223, .25);
}

.trust-card i:first-of-type {
  width: 1.05rem;
  border-radius: 999px;
  background: var(--oxblood);
}

.ticker {
  width: min(44rem, 100%);
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.ticker span {
  display: inline-block;
  min-width: 200%;
  padding: .72rem 0;
  animation: marquee-left 24s linear infinite;
}

.ticker-dark {
  background: #070605;
  color: rgba(246, 240, 223, .8);
}

.ticker-violet {
  background: #6d28d9;
  color: var(--cream);
}

.reviews-section,
.story-section,
.faq-section,
.newsletter-section,
.site-footer {
  text-align: center;
}

.reviews-section > span,
.story-section > span,
.faq-section > span,
.newsletter-section > span {
  color: rgba(246, 240, 223, .45);
  font-family: "Montserrat", sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .24em;
}

.reviews-section h2,
.story-section h2,
.faq-section h2,
.newsletter-section h2 {
  margin-top: .8rem;
  color: var(--cream);
  font-size: clamp(1.65rem, 8vw, 2.5rem);
  line-height: 1.05;
}

.rating-row {
  margin: 1.2rem 0 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem;
}

.rating-row strong {
  color: #79bd63;
  font-size: 3rem;
  line-height: 1;
}

.rating-row b,
.review-grid b {
  color: #f5c542;
}

.rating-row small {
  color: rgba(246, 240, 223, .58);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  text-align: left;
}

.review-grid article {
  min-width: 0;
}

.review-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.review-grid p {
  margin: .25rem 0;
  color: rgba(246, 240, 223, .75);
  font-family: "Lora", Georgia, serif;
  font-size: .82rem;
  font-style: italic;
  line-height: 1.35;
}

.review-grid strong,
.review-grid small {
  margin-right: .35rem;
  color: rgba(246, 240, 223, .75);
  font-size: .68rem;
  font-weight: 800;
}

.instagram-button {
  width: fit-content;
  margin: 2.4rem auto 0;
  display: block;
  border: 1px solid rgba(246, 240, 223, .24);
  padding: .85rem 2rem;
  color: rgba(246, 240, 223, .72);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.story-section p {
  width: min(19rem, 100%);
  margin: 1.4rem auto;
  color: rgba(246, 240, 223, .6);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.6;
}

.story-section strong {
  color: rgba(246, 240, 223, .45);
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  letter-spacing: .25em;
}

.faq-section {
  text-align: left;
}

.faq-section > span,
.faq-section > h2 {
  display: block;
  text-align: center;
}

.faq-section details {
  border-top: 1px solid rgba(246, 240, 223, .12);
}

.faq-section details:last-child {
  border-bottom: 1px solid rgba(246, 240, 223, .12);
}

.faq-section summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem .25rem;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.faq-section summary::after {
  content: "+";
  float: right;
  color: rgba(246, 240, 223, .7);
  font-family: "Inter", sans-serif;
}

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

.faq-section p {
  margin: -.35rem 0 1rem;
  color: rgba(246, 240, 223, .62);
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  line-height: 1.55;
}

.info-section {
  padding-block: 1.75rem;
  scroll-margin-top: 5.5rem;
}

.info-section span {
  color: var(--mustard);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .28em;
}

.info-section h2 {
  margin: .55rem 0 .65rem;
  color: var(--cream);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.05;
}

.info-section p {
  margin: 0;
  color: rgba(246, 240, 223, .62);
  line-height: 1.65;
}

.newsletter-section {
  background: #171717;
}

.newsletter-section p {
  margin: .6rem auto 1.5rem;
  color: rgba(246, 240, 223, .68);
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  line-height: 1.45;
}

.newsletter-section form {
  display: grid;
  gap: .65rem;
}

.newsletter-section input {
  width: 100%;
  border: 1px solid rgba(246, 240, 223, .18);
  background: transparent;
  color: var(--cream);
  padding: 1rem;
}

.newsletter-section button {
  border: 0;
  background: var(--oxblood);
  color: var(--cream);
  padding: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.content-shell .topbar {
  position: static;
}

.content-page {
  width: min(44rem, 100%);
  margin: 0 auto;
  padding: 4.2rem 1.25rem 3rem;
  background: #080706;
  border-top: 1px solid rgba(246, 240, 223, .1);
  text-align: center;
}

.content-logo {
  width: 7rem;
  max-height: 5rem;
  margin: 0 auto 2rem;
  object-fit: contain;
}

.content-page > span {
  color: var(--mustard);
  font-family: "Montserrat", sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.content-page h1 {
  width: min(36rem, 100%);
  margin: .75rem auto .9rem;
  color: var(--cream);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.9rem);
  line-height: 1;
}

.content-intro,
.content-updated {
  width: min(36rem, 100%);
  margin: 0 auto;
  color: rgba(246, 240, 223, .62);
  line-height: 1.65;
}

.content-blocks {
  width: min(36rem, 100%);
  margin: 2.2rem auto 0;
  display: grid;
  gap: 1.35rem;
  text-align: left;
}

.content-blocks article {
  border-top: 1px solid rgba(246, 240, 223, .12);
  padding-top: 1.1rem;
}

.content-blocks h2 {
  margin: 0 0 .55rem;
  color: var(--cream);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.2rem, 4vw, 1.65rem);
}

.content-blocks div,
.content-blocks li,
.content-blocks a {
  color: rgba(246, 240, 223, .62);
  line-height: 1.65;
}

.content-blocks ul,
.content-blocks ol {
  margin: 0;
  padding-left: 1.1rem;
}

.content-updated {
  margin-top: 2rem;
  font-size: .78rem;
}

.content-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: 2.8rem;
  margin-top: 1.4rem;
  border: 1px solid rgba(246, 240, 223, .75);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer {
  width: min(58rem, 100%);
  padding-top: 2rem;
  display: grid;
  gap: 1.55rem;
  text-align: left;
  border-radius: 0 0 28px 28px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 6.8rem;
  max-height: 4.4rem;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.footer-logo p,
.footer-legal {
  color: rgba(246, 240, 223, .5);
  font-size: .82rem;
  line-height: 1.55;
}

.footer-logo p {
  width: min(31rem, 100%);
  margin: 0 auto;
}

.footer-columns {
  border-top: 1px solid rgba(246, 240, 223, .1);
  padding-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 8vw, 8rem);
}

.footer-links {
  display: grid;
  gap: .55rem;
}

.footer-links h3,
.footer-legal strong {
  color: rgba(246, 240, 223, .72);
  font-family: "Montserrat", sans-serif;
  font-size: .62rem;
  letter-spacing: .35em;
}

.footer-links a {
  color: rgba(246, 240, 223, .48);
  text-decoration: none;
  font-weight: 700;
  font-size: .76rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--cream);
}

.footer-legal {
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 240, 223, .1);
  text-align: center;
}

.footer-legal a {
  color: rgba(246, 240, 223, .5);
  text-decoration: none;
}

.modal-layer,
.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(10, 9, 8, .72);
  backdrop-filter: blur(8px);
}

.story-open .story-layer,
.product-open .product-layer,
.checkout-open .checkout-layer,
.confirm-open .confirm-layer,
.cart-open .cart-scrim {
  display: grid;
  place-items: center;
}

.launch-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 3, 3, .78);
  backdrop-filter: blur(6px);
}

.launch-open .launch-popup-layer {
  display: grid;
}

.modal-close,
.cart-head button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
}

.launch-popup {
  position: relative;
  width: min(18.1rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  padding: 1.75rem 1.5rem 1.65rem;
  text-align: center;
  color: #fff7e8;
  border: 1px solid rgba(255, 247, 232, .12);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(55, 24, 104, .72), rgba(12, 10, 18, .98) 75%),
    #150d1f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .7);
}

.launch-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 247, 232, .7);
  font-size: 1.15rem;
}

.launch-cherry {
  font-size: 1.65rem;
  line-height: 1;
}

.launch-kicker,
.launch-valid,
.launch-badge,
.launch-primary {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .35em;
}

.launch-kicker {
  margin: 1.05rem 0 1.35rem;
  color: #a78bfa;
  font-size: .62rem;
}

.launch-offer {
  display: grid;
  gap: .08rem;
}

.launch-offer strong,
.launch-offer b {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: .95;
}

.launch-offer strong {
  font-style: italic;
}

.launch-offer b {
  font-style: normal;
}

.launch-offer span {
  max-width: 13rem;
  margin: .28rem auto 0;
  color: rgba(255, 247, 232, .62);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.launch-divider {
  display: block;
  width: 2.4rem;
  height: 1px;
  margin: 1.08rem auto 1.18rem;
  background: rgba(255, 247, 232, .22);
}

.launch-valid {
  margin: 1.15rem 0 .72rem;
  color: rgba(255, 247, 232, .74);
  font-size: .64rem;
}

.launch-badge {
  width: fit-content;
  margin: 0 auto 1.08rem;
  padding: .65rem .95rem;
  background: #6d28d9;
  color: #fff7e8;
  font-size: .62rem;
  letter-spacing: .18em;
}

.launch-primary {
  width: 100%;
  min-height: 2.55rem;
  border: 0;
  border-radius: 7px;
  background: #fff7e8;
  color: #14100d;
  font-size: .65rem;
  letter-spacing: .26em;
}

.launch-note {
  width: min(13.5rem, 100%);
  margin: .9rem auto .3rem;
  color: rgba(255, 247, 232, .5);
  font-family: "Lora", Georgia, serif;
  font-size: .74rem;
  font-style: italic;
  line-height: 1.55;
}

.launch-skip {
  border: 0;
  background: transparent;
  color: rgba(255, 247, 232, .42);
  font-size: .76rem;
  font-style: italic;
}

.story-viewer,
.product-dialog {
  position: relative;
  width: min(26rem, calc(100vw - 2rem));
  overflow: hidden;
  background: var(--paper);
  color: var(--cream);
  border: 1px solid rgba(246, 240, 223, .16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.story-viewer {
  width: min(26.25rem, calc(100vw - 1.25rem));
  aspect-ratio: 9 / 16;
  max-height: calc(100dvh - 2rem);
  border-radius: 12px;
  background: #050403;
}

.story-viewer .modal-close,
.product-dialog .modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(25, 24, 21, .64);
}

.story-viewer .modal-close {
  z-index: 4;
  background: rgba(0, 0, 0, .28);
}

.story-tap {
  position: absolute;
  top: 4.3rem;
  bottom: 0;
  z-index: 3;
  width: 50%;
  border: 0;
  background: transparent;
}

.story-tap-prev {
  left: 0;
}

.story-tap-next {
  right: 0;
}

.story-progress {
  position: absolute;
  top: .72rem;
  left: .72rem;
  right: .72rem;
  z-index: 3;
  height: 3px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .25rem;
}

.story-progress span {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 240, 223, .35);
}

.story-progress i {
  display: block;
  height: 100%;
  background: var(--cream);
  width: 0;
}

.story-progress span.is-done i {
  width: 100%;
}

.story-progress span.is-active i {
  animation: story-fill 5s linear both;
}

.story-head {
  position: absolute;
  top: 1.75rem;
  left: .85rem;
  right: 3.4rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.story-head img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border: 2px solid rgba(246, 240, 223, .75);
  border-radius: 50%;
}

.story-head strong {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: .45rem;
  color: var(--cream);
  font-size: .74rem;
}

.story-head small {
  color: rgba(246, 240, 223, .58);
  font-size: .68rem;
  font-weight: 600;
}

.story-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-sticker {
  position: absolute;
  left: 1rem;
  bottom: 5.8rem;
  z-index: 3;
  max-width: calc(100% - 2rem);
  margin: 0;
  border-radius: 5px;
  padding: .35rem .5rem;
  background: #ff8a00;
  color: #5b21b6;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.story-viewer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 24%, transparent 68%, rgba(0, 0, 0, .18));
}

.product-dialog h2,
.cart-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  margin: 0;
}

.product-dialog p {
  color: rgba(246, 240, 223, .68);
  line-height: 1.6;
}

.product-dialog {
  width: min(56rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
}

.product-dialog > img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.product-dialog > div {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-dialog span {
  color: var(--mustard);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.product-dialog strong {
  margin: 1rem 0;
  font-size: 1.6rem;
}

.product-dialog button[data-product-add],
.checkout-button {
  border: 1px solid rgba(246, 240, 223, .82);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  padding: .95rem 1rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.checkout-dialog,
.confirm-dialog {
  position: relative;
  width: min(30rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  padding: 1.4rem;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(25, 24, 21, .12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.checkout-dialog .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.checkout-dialog h2,
.confirm-dialog h2 {
  color: var(--oxblood);
  font-size: 2rem;
}

.checkout-intro {
  margin: .35rem 0 1rem;
  color: rgba(25, 24, 21, .62);
}

.checkout-dialog form {
  display: grid;
  gap: .75rem;
}

.checkout-dialog label {
  display: grid;
  gap: .28rem;
  color: rgba(25, 24, 21, .66);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.checkout-dialog input,
.checkout-dialog select {
  width: 100%;
  min-height: 2.6rem;
  border: 1px solid rgba(25, 24, 21, .18);
  background: rgba(255, 255, 255, .42);
  color: var(--ink);
  padding: .7rem .75rem;
  font-size: .9rem;
  text-transform: none;
  letter-spacing: 0;
}

.checkout-row {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: .75rem;
}

.checkout-review {
  display: grid;
  gap: .25rem;
  margin-top: .15rem;
  padding: .85rem;
  background: rgba(109, 40, 217, .08);
  border: 1px solid rgba(109, 40, 217, .18);
}

.checkout-review strong,
.checkout-review b {
  color: var(--oxblood);
}

.checkout-review span {
  color: rgba(25, 24, 21, .65);
}

.checkout-confirm,
.confirm-actions button {
  min-height: 2.75rem;
  border: 0;
  background: var(--oxblood);
  color: var(--cream);
  padding: .85rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.confirm-dialog {
  text-align: center;
}

.confirm-mark {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto .85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.confirm-dialog p {
  color: rgba(25, 24, 21, .68);
  line-height: 1.65;
}

.confirm-actions {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}

.confirm-actions button:first-child {
  background: var(--ink);
}

.product-dialog button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(26rem, 100vw);
  height: 100dvh;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cream);
  color: var(--ink);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .25);
  transform: translateX(105%);
  transition: transform .28s ease;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head,
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-empty {
  color: rgba(25, 24, 21, .6);
}

.cart-promo-note {
  margin: 0;
  padding: .75rem;
  background: rgba(109, 40, 217, .08);
  border: 1px solid rgba(109, 40, 217, .16);
  color: var(--oxblood);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.35;
}

.cart-items {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  display: grid;
  gap: .9rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: .8rem;
}

.cart-line img {
  width: 4.5rem;
  height: 5.5rem;
  object-fit: cover;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: .2rem;
  color: rgba(25, 24, 21, .58);
  font-size: .78rem;
}

.cart-stepper {
  margin-top: .5rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.cart-stepper button {
  border: 1px solid rgba(25, 24, 21, .16);
  background: transparent;
  padding: .2rem .45rem;
  font-size: .72rem;
}

.cart-summary {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(25, 24, 21, .14);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 100;
  max-width: calc(100vw - 2rem);
  transform: translate(-50%, 1rem);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(246, 240, 223, .18);
  background: var(--paper);
  color: var(--cream);
  padding: .85rem 1rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes story-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .mobile-only {
    display: grid;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
  }

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

  .footer-columns {
    gap: 2rem;
  }
}

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

  .shipping-banner {
    width: calc(100% + 2.5rem);
    max-width: none;
    height: auto;
    margin-left: -1.25rem;
  }

  .benefits {
    font-size: .6rem;
  }

  .stories {
    gap: 1.1rem;
  }

  .section {
    padding-inline: .75rem;
  }

  .product-grid {
    gap: .7rem;
  }

  .product-info {
    padding: .65rem;
  }

  .product-info h3 {
    font-size: .82rem;
  }

  .product-info p {
    font-size: .7rem;
  }

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

  .product-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 2rem);
    overflow: auto;
  }

  .product-dialog > img {
    min-height: 18rem;
    max-height: 45vh;
  }

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

  .content-page {
    padding-top: 3rem;
  }

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

  .launch-popup {
    width: min(18rem, calc(100vw - 1.5rem));
    padding-inline: 1.25rem;
  }
}
