:root {
  --bg: #04110d;
  --bg-soft: #092019;
  --panel: rgba(8, 28, 23, 0.78);
  --panel-strong: rgba(8, 23, 19, 0.92);
  --panel-highlight: rgba(17, 49, 41, 0.88);
  --mint: #8fcfb3;
  --mint-deep: #5faa8a;
  --silver: #d4dde0;
  --silver-deep: #95a5ab;
  --gold: #d4b265;
  --gold-soft: #f2e1b4;
  --text: #f8f4eb;
  --muted: #bfd1c9;
  --border: rgba(212, 221, 224, 0.18);
  --border-strong: rgba(255, 240, 197, 0.24);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  --font-display: "Didot", "Bodoni 72", "Iowan Old Style", "Times New Roman", serif;
  --font-body: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --font-accent: "Optima", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-brand: "Cinzel Decorative", "Cinzel", "Didot", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 178, 101, 0.1), transparent 0 20%),
    radial-gradient(circle at 82% 10%, rgba(143, 207, 179, 0.05), transparent 0 18%),
    radial-gradient(circle at 14% 76%, rgba(143, 207, 179, 0.06), transparent 0 20%),
    linear-gradient(145deg, #03100c 0%, #061712 34%, #03100c 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 245, 214, 0.018) 0 2px,
      rgba(255, 245, 214, 0) 2px 18px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(5, 18, 14, 0.16) 0 12px,
      rgba(18, 50, 42, 0.02) 12px 24px
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.01) 22%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(255, 255, 255, 0.012) 74%,
      rgba(0, 0, 0, 0.12) 100%
    );
  background-size: 220px 220px, 220px 220px, cover;
  mix-blend-mode: soft-light;
  opacity: 0.55;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.008) 18%,
      rgba(0, 0, 0, 0.08) 40%,
      rgba(255, 255, 255, 0.012) 62%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    radial-gradient(circle at 22% 18%, rgba(255, 239, 196, 0.028), transparent 0 12%),
    radial-gradient(circle at 76% 28%, rgba(255, 239, 196, 0.018), transparent 0 10%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1), transparent 62%);
  mix-blend-mode: soft-light;
  opacity: 0.42;
}

body.age-gate-active {
  overflow: hidden;
}

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

button {
  font: inherit;
}

button,
a,
summary,
video {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid rgba(242, 225, 180, 0.88);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(6, 18, 15, 0.96);
  border: 1px solid rgba(255, 240, 197, 0.24);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.tapestry-frame {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(180deg, rgba(3, 16, 12, 0.12), rgba(3, 16, 12, 0.36)),
    url("assets/tapestry.png");
  background-repeat: repeat-y;
  background-size: 100% auto, 88px auto;
  filter: drop-shadow(0 0 18px rgba(212, 178, 101, 0.18));
}

.tapestry-frame-left {
  left: 0;
  background-position: center top, left top;
}

.tapestry-frame-right {
  right: 0;
  background-position: center top, right top;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.sub-brand-badge {
  position: relative;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 16, 13, 0.92), rgba(9, 24, 20, 0.72));
  border: 1px solid rgba(212, 221, 224, 0.12);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 239, 196, 0.05);
  overflow: hidden;
}

.sub-brand-badge::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 239, 196, 0.12);
}

.sub-brand-badge-image {
  position: relative;
  z-index: 1;
  width: 52px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 16px rgba(212, 178, 101, 0.08));
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 24, 20, 0.55);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.brand-mark,
h1,
h2,
h3,
.stat-number,
.point-label,
.detail-label {
  font-family: var(--font-display);
}

.brand-mark {
  font-family: var(--font-brand);
  letter-spacing: 0.34rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #f0c86f;
  text-shadow:
    0 0 18px rgba(240, 200, 111, 0.2),
    0 1px 0 rgba(255, 245, 214, 0.28);
}

.brand-slogan {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240, 200, 111, 0.92);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: rgba(242, 225, 180, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-video-section {
  padding: 1rem 0 1.5rem;
}

.hero-copy,
.video-card,
.feature-card,
.experience-panel,
.buy-panel,
.faq-list details,
.stat-band article,
.launch-aside-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-card-hero {
  padding: 1rem;
  border-radius: 36px;
}

.hero-video {
  display: block;
  width: 100%;
  min-height: 72vh;
  max-height: 860px;
  object-fit: cover;
  border: 1px solid rgba(212, 221, 224, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, #0d3029, #06110d);
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0.2rem 0.1rem;
}

.video-note,
.video-status,
.hero-lead,
.feature-card p,
.panel-copy p,
.panel-points p,
.buy-panel p,
.faq-list p,
.stat-band p,
.launch-footnote,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 400;
}

.video-note,
.video-status {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-status {
  text-align: right;
  color: rgba(242, 225, 180, 0.76);
}

.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 1.2rem;
}

.hero-title-block,
.launch-aside-card {
  border-radius: 32px;
}

.hero-title-block {
  padding: 2rem 0.4rem 0.5rem 0;
}

.launch-aside {
  display: flex;
}

.launch-aside-card {
  width: 100%;
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(212, 178, 101, 0.14), transparent 0 32%),
    linear-gradient(180deg, rgba(13, 39, 33, 0.96), rgba(7, 22, 18, 0.96));
}

.launch-kicker,
.detail-label {
  margin: 0 0 0.9rem;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.launch-points {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.launch-points li + li {
  margin-top: 0.7rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--gold-soft);
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #d0a44a;
  text-shadow: 0 1px 0 rgba(255, 239, 196, 0.1);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  line-height: 1;
  color: #d7ad58;
}

.hero-lead {
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  max-width: 55ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #102019;
  box-shadow: 0 16px 32px rgba(212, 178, 101, 0.25);
}

.button-secondary {
  border-color: rgba(212, 221, 224, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver);
}

.button-large {
  min-width: 14rem;
}

.button.is-placeholder {
  border-color: var(--border-strong);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 4rem;
}

.stat-band article {
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.stat-band h2 {
  font-size: 1.65rem;
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.stat-number {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  font-size: 1.7rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  line-height: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 225, 180, 0.08), rgba(10, 22, 19, 0.32));
  border: 1px solid rgba(212, 221, 224, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 245, 214, 0.12);
  width: fit-content;
}

.stat-number span {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 24, 20, 0.92) 0 52%, transparent 53%),
    conic-gradient(
      from 0deg,
      rgba(212, 221, 224, 0.34) 0deg 12deg,
      transparent 12deg 24deg,
      rgba(212, 221, 224, 0.2) 24deg 36deg,
      transparent 36deg 48deg,
      rgba(212, 221, 224, 0.3) 48deg 60deg,
      transparent 60deg 72deg,
      rgba(212, 221, 224, 0.22) 72deg 84deg,
      transparent 84deg 96deg,
      rgba(212, 221, 224, 0.28) 96deg 108deg,
      transparent 108deg 120deg,
      rgba(212, 221, 224, 0.2) 120deg 132deg,
      transparent 132deg 144deg,
      rgba(212, 221, 224, 0.3) 144deg 156deg,
      transparent 156deg 168deg,
      rgba(212, 221, 224, 0.22) 168deg 180deg,
      transparent 180deg 192deg,
      rgba(212, 221, 224, 0.3) 192deg 204deg,
      transparent 204deg 216deg,
      rgba(212, 221, 224, 0.2) 216deg 228deg,
      transparent 228deg 240deg,
      rgba(212, 221, 224, 0.28) 240deg 252deg,
      transparent 252deg 264deg,
      rgba(212, 221, 224, 0.22) 264deg 276deg,
      transparent 276deg 288deg,
      rgba(212, 221, 224, 0.3) 288deg 300deg,
      transparent 300deg 312deg,
      rgba(212, 221, 224, 0.2) 312deg 324deg,
      transparent 324deg 336deg,
      rgba(212, 221, 224, 0.34) 336deg 348deg,
      transparent 348deg 360deg
    ),
    linear-gradient(180deg, #c9a754, #8e6b29);
  border: 1px solid rgba(255, 240, 197, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 221, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.18);
}

.section-grid {
  padding: 1rem 0 4rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  border-radius: 28px;
  padding: 1.7rem;
}

.experience-panel,
.buy-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
  margin-bottom: 4rem;
}

.panel-points {
  display: grid;
  gap: 1.2rem;
}

.point-label {
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.buy-panel {
  background:
    radial-gradient(circle at top right, rgba(212, 178, 101, 0.16), transparent 0 28%),
    linear-gradient(160deg, rgba(9, 31, 26, 0.92), rgba(7, 22, 18, 0.92));
}

.launch-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.launch-details > div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 240, 197, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.launch-details p {
  margin: 0;
}

.buy-actions {
  display: grid;
  align-content: center;
  gap: 1rem;
  justify-items: start;
}

.launch-footnote {
  max-width: 34ch;
  margin: 0;
}

.faq-section {
  padding-bottom: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border-radius: 22px;
  padding: 1.2rem 1.3rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-accent);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}

.faq-list details[open] summary {
  margin-bottom: 0.7rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0 2.5rem;
}

.footer-link {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 239, 196, 0.82);
  border-bottom: 1px solid rgba(255, 239, 196, 0.22);
  padding-bottom: 0.3rem;
}

.footer-copy {
  margin: 0;
  text-align: center;
  max-width: 34ch;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(255, 239, 196, 0.45);
}

.footer-sub-brand {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 16, 13, 0.92), rgba(9, 24, 20, 0.72));
  border: 1px solid rgba(212, 221, 224, 0.12);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 239, 196, 0.05);
}

.footer-sub-brand-image {
  width: 44px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 16px rgba(212, 178, 101, 0.08));
}

.contact-page {
  padding: 2rem 0 5rem;
}

.about-page {
  padding-top: 2rem;
}

.contact-panel,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-panel {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 3rem;
  border-radius: 32px;
}

.contact-card {
  margin: 2rem 0 2.5rem;
  padding: 1.8rem;
  border-radius: 28px;
}

.contact-label {
  margin: 0 0 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.contact-address {
  margin: 0 0 1.4rem;
  font-size: 1.15rem;
  color: var(--text);
  word-break: break-word;
}

.contact-button {
  min-width: 11rem;
}

.about-panel {
  width: min(100%, 960px);
}

.waitlist-panel {
  width: min(100%, 760px);
}

.waitlist-form {
  display: grid;
  gap: 1rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.about-story-card,
.about-founder-card {
  border-radius: 28px;
}

.about-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.inline-link {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(255, 239, 196, 0.28);
}

.inline-link:hover,
.inline-link:focus-visible {
  color: #fff1c9;
  border-color: rgba(255, 239, 196, 0.58);
}

.about-founder-card {
  margin-bottom: 2rem;
}

.about-quote {
  margin: 1.2rem 0 0;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.about-actions {
  margin-top: 0;
}

.reviews-page {
  padding: 2rem 0 5rem;
}

body.embed-mode {
  background: transparent;
}

body.embed-mode::before,
body.embed-mode::after {
  display: none;
}

.reviews-hero,
.review-form-panel,
.review-feed-panel,
.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.reviews-hero {
  padding: 2.5rem;
  border-radius: 32px;
  margin-bottom: 1.5rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.embed-layout {
  grid-template-columns: 1fr;
}

body.embed-mode .reviews-page {
  padding: 0;
}

.review-form-panel,
.review-feed-panel {
  border-radius: 32px;
  padding: 2rem;
}

.review-form {
  display: grid;
  gap: 1rem;
}

.honey-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span,
.star-field legend,
.review-name,
.review-date {
  font-family: var(--font-accent);
}

.form-field span,
.star-field legend {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 221, 224, 0.22);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.star-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.star-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.star-inputs label {
  position: relative;
}

.star-inputs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-inputs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 221, 224, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  cursor: pointer;
}

.star-inputs input:checked + span {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #102019;
  border-color: transparent;
}

.photo-preview-grid,
.review-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
}

.photo-preview-card,
.review-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212, 221, 224, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.photo-preview-card img,
.review-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.form-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--silver-deep);
  line-height: 1.5;
}

.form-message.is-success {
  color: var(--mint);
}

.form-message.is-info {
  color: var(--gold-soft);
}

.form-message.is-error {
  color: #f4b0a9;
}

.review-feed {
  display: grid;
  gap: 1rem;
}

.review-card {
  border-radius: 28px;
  padding: 1.4rem;
}

.review-card-empty {
  text-align: center;
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.review-name,
.review-date,
.review-stars,
.review-text {
  margin: 0;
}

.review-name {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.review-date {
  margin-top: 0.35rem;
  color: var(--silver-deep);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-stars {
  color: var(--gold-soft);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.review-text {
  color: var(--muted);
  line-height: 1.7;
}

.review-text {
  margin-bottom: 1rem;
}

.review-status {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 221, 224, 0.16);
}

.review-status.is-approved {
  color: var(--mint);
}

.review-status.is-pending {
  color: var(--gold-soft);
}

.review-status.is-rejected {
  color: #f4b0a9;
}

.moderation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 10, 8, 0.78);
  backdrop-filter: blur(16px);
  z-index: 30;
}

.age-gate[hidden] {
  display: none;
}

.age-gate-card {
  width: min(100%, 34rem);
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 43, 37, 0.96), rgba(8, 21, 17, 0.96));
  border: 1px solid rgba(212, 221, 224, 0.18);
  box-shadow: var(--shadow);
}

.floating-buy-button {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.2rem;
  min-height: 3rem;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: rgba(212, 178, 101, 0.14);
  color: rgba(246, 228, 179, 0.94);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 240, 197, 0.18);
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 240, 197, 0.05);
  opacity: 0.86;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.floating-buy-button:hover,
.floating-buy-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(212, 178, 101, 0.22);
  opacity: 1;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 240, 197, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .site-nav a::after,
  .floating-buy-button,
  .skip-link,
  .reveal {
    transition: none;
  }

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

@media (max-width: 960px) {
  .tapestry-frame {
    width: 30px;
    background-size: 100% auto, 60px auto;
    opacity: 0.22;
  }

  .hero-title-row,
  .experience-panel,
  .buy-panel,
  .feature-grid,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
  }

  .hero-title-block {
    padding-right: 0;
  }

  .video-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-status {
    text-align: left;
  }

  .contact-panel {
    padding: 2rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .sub-brand-badge {
    width: 58px;
    height: 58px;
  }

  .sub-brand-badge-image {
    width: 42px;
  }

  h1 {
    max-width: 10ch;
  }
}

@media (max-width: 640px) {
  .tapestry-frame {
    display: none;
  }

  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .sub-brand-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .sub-brand-badge::before {
    inset: 0.4rem;
    border-radius: 11px;
  }

  .sub-brand-badge-image {
    width: 36px;
  }

  .footer-sub-brand {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .footer-sub-brand-image {
    width: 36px;
  }

  .site-nav {
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .video-card,
  .feature-card,
  .experience-panel,
  .buy-panel,
  .review-form-panel,
  .review-feed-panel,
  .review-card,
  .age-gate-card,
  .faq-list details,
  .stat-band article,
  .launch-aside-card {
    border-radius: 24px;
  }

  .hero-video {
    min-height: 58vh;
  }

  .floating-buy-button {
    right: 1rem;
    bottom: 1rem;
    min-width: 8.8rem;
  }

  .buy-actions {
    justify-items: stretch;
  }

  .button-large {
    width: 100%;
  }
}
