/* MUSHY. LUXURY CHOCOLATES — static site styles
   Deep burgundy + magenta luxury identity with floating mushroom imagery. */
:root {
  /* Brand */
  --wine:       #6B0F2A;
  --wine-700:   #4F0820;
  --wine-900:   #2E0613;
  --magenta:    #8D2C72;
  --magenta-700:#6B1E58;
  --magenta-900:#4A1340;
  --gold:       #C9A66B;
  --gold-light: #E8C997;

  /* Surfaces */
  --cream:      #F5EFE6;
  --ink:        #1A0710;

  /* Text on dark */
  --on-dark:    rgba(255,255,255,0.92);
  --on-dark-muted: rgba(255,255,255,0.66);
  --border-dark:rgba(255,255,255,0.18);
  --border-soft:rgba(255,255,255,0.10);

  --error:      #FF7AA3;
  --radius:     10px;
  --radius-lg:  18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--wine);
  color: var(--on-dark);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--wine-900); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
@media (min-width: 768px)  { .container { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) { .container { padding-left: 2.5rem; padding-right: 2.5rem; } }

/* ---------- Brand wordmark ---------- */
.brand {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  color: var(--cream);
}
.brand__name {
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.brand__name .dot { color: var(--gold); }
.brand__sub {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
@media (min-width: 640px) {
  .brand__name { font-size: 26px; }
  .brand__sub  { font-size: 10px; letter-spacing: 0.46em; }
}

/* The CSS-built product "card" (used in hero & order) */
.bar-card {
  position: relative;
  background: var(--cream);
  color: var(--wine-900);
  border: 1px solid rgba(201,166,107,0.4);
  padding: 2.5rem 2.5rem 1.6rem;
  width: min(86vw, 380px);
  text-align: center;
  border-radius: 4px;
  box-shadow:
    0 50px 80px -30px rgba(0,0,0,0.5),
    0 20px 40px -20px rgba(141,44,114,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.5);
  transform: rotate(-1deg);
}
.bar-card::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(201,166,107,0.45);
  pointer-events: none;
}
.bar-card__star {
  position: absolute; left: 50%; top: 14px;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 14px;
}
.bar-card__name {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: 0.05em;
  color: var(--wine-900);
  line-height: 1;
  margin: 0;
}
.bar-card__name .dot { color: var(--gold); }
.bar-card__sub {
  margin-top: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--wine-700);
  font-weight: 500;
}
.bar-card__weight {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wine);
}

/* ---------- Typography ---------- */
.display {
  font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
}
.display em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.display--xl  { font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 1.02; letter-spacing: 0.01em; }
.display--lg  { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.display--md  { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.display--sm  { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--cream { color: var(--cream); }

.lede {
  margin-top: 1.25rem;
  color: var(--on-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  font-weight: 300;
}
.lede--muted { color: var(--on-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--gold   { background: var(--gold); color: var(--wine-900); }
.btn--gold:hover   { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 14px 32px -14px rgba(201,166,107,0.7); }
.btn--cream  { background: var(--cream); color: var(--wine-900); }
.btn--cream:hover  { background: #fff; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--cream); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--wine-900); }
.btn--ghost   { background: transparent; color: var(--cream); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover   { background: rgba(255,255,255,0.1); border-color: var(--cream); }
.btn--ink     { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover     { background: #000; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- Background atmosphere (wine + mushroom haze) ---------- */
.bg-wine {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(141,44,114,0.45) 0%, transparent 55%),
    radial-gradient(80% 60% at 50% 100%, rgba(46,6,19,0.85) 0%, transparent 60%),
    linear-gradient(180deg, var(--wine) 0%, var(--wine-700) 100%);
}
.bg-magenta {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(141,44,114,0.85) 0%, transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(74,19,64,0.9) 0%, transparent 60%),
    linear-gradient(180deg, var(--magenta) 0%, var(--magenta-700) 100%);
}
.bg-haze::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("../img/hero-mushrooms.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.22;
  filter: saturate(0.6) contrast(1.05);
}
.bg-haze > * { position: relative; z-index: 1; }

/* Decorative mushrooms layer: heavy background blend using hero-mushrooms.jpg.
   Kept simple — no extra cutout assets needed. */
.bg-haze-strong::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("../img/hero-mushrooms.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.18;
  filter: hue-rotate(280deg) saturate(0.7) brightness(1.2);
}
.bg-haze-strong > * { position: relative; z-index: 1; }

/* Stars/dots decorative */
.dec-star {
  position: absolute; width: 14px; height: 14px;
  color: var(--gold);
  pointer-events: none; opacity: 0.55;
}
.dec-star::before {
  content: "✦";
  font-size: 14px; line-height: 1;
}

/* Dashed divider strip (like reference) */
.dashed-strip {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0;
  color: rgba(255,255,255,0.32);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.dashed-strip::before, .dashed-strip::after {
  content: ""; flex: 1; height: 1px;
  background-image: linear-gradient(to right, rgba(255,255,255,0.35) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(46,6,19,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header__top {
  background: var(--wine-900);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 1rem;
}
.site-header__top a { color: var(--gold); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.nav { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .nav { gap: 1.75rem; } }
.nav__link {
  display: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  transition: color .2s ease;
}
.nav__link:hover { color: var(--cream); }
.nav__link--active { color: var(--gold); }
@media (min-width: 640px) { .nav__link { display: inline-block; } }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--wine-900);
  padding: 0.55rem 1rem;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease;
}
.nav__phone:hover { background: var(--gold-light); transform: translateY(-1px); }
@media (min-width: 640px) { .nav__phone { font-size: 12px; padding: 0.65rem 1.1rem; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
@media (min-width: 1024px) { .hero { padding: 6rem 0 7rem; } }
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 2.5rem;
}
.hero__bar-wrap {
  position: relative; z-index: 3;
  display: flex; justify-content: center;
}
.hero__bar-wrap .bar-card { transform: rotate(-1.5deg); }
.hero__copy { max-width: 42rem; }
.hero__title { color: var(--cream); }
.hero__cta {
  display: flex; flex-direction: column; gap: 0.75rem;
  justify-content: center; align-items: center;
}
@media (min-width: 480px) { .hero__cta { flex-direction: row; } }
.hero__meta {
  margin-top: 1rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section--magenta { background: var(--magenta); color: var(--cream); }
.section--magenta-bg { /* applied alongside .bg-magenta */ }
.section--wine-dark { background: var(--wine-900); color: var(--cream); }

.section__head { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.section__head--left { margin-left: 0; margin-right: auto; text-align: left; }

/* ---------- Product showcase ---------- */
.showcase {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .showcase { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.showcase__media { position: relative; display: flex; justify-content: center; }
.showcase__copy .lede { margin-left: 0; }
.bullets {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: 1fr; gap: 0.9rem;
  font-size: 0.95rem;
}
@media (min-width: 640px) { .bullets { grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; } }
.bullets li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--on-dark); font-weight: 300; }
.bullets li::before {
  content: "✦"; flex: 0 0 auto; color: var(--gold);
  font-size: 12px; line-height: 1; margin-top: 4px;
}

/* ---------- Info / hours strip ---------- */
.info-strip {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 3rem 0;
  text-align: center;
}
@media (min-width: 768px) { .info-strip { grid-template-columns: repeat(3, 1fr); text-align: left; padding: 4rem 0; } }
.info-strip__item .eyebrow { display: block; margin-bottom: 0.5rem; }
.info-strip__item .value {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--cream);
}
@media (min-width: 768px) { .info-strip__item .value { font-size: 2.1rem; } }
.info-strip__item p {
  color: var(--on-dark-muted); font-size: 0.9rem; line-height: 1.65; font-weight: 300;
  margin: 0.4rem 0 0;
}

/* ---------- Policy / numbered list (order page) ---------- */
.policies {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .policies { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.policy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  backdrop-filter: blur(6px);
}
.policy-card .eyebrow { display: block; margin-bottom: 0.65rem; }
.policy-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--cream);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}
.policy-card p, .policy-card li {
  color: var(--on-dark-muted); font-size: 0.92rem; line-height: 1.7; font-weight: 300;
  margin: 0;
}
.policy-card ul { padding-left: 1rem; margin: 0.4rem 0 0; }
.policy-card ul li { margin-bottom: 0.35rem; }

.notice {
  display: block;
  margin: 2rem auto 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  max-width: 38rem;
}
.notice strong { color: var(--cream); font-style: normal; font-weight: 500; }

/* ---------- Order form ---------- */
.order-section {
  position: relative;
  padding: 4rem 0 6rem;
}
@media (min-width: 768px) { .order-section { padding: 5rem 0 7rem; } }

.order-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .order-form { padding: 2.75rem; } }

.checkout-heading {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.steps-list {
  list-style: none; padding: 0; margin: 0 auto 2rem;
  max-width: 36rem;
  text-align: center;
  color: var(--on-dark);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.steps-list li { padding: 0.15rem 0; }
.steps-list .step-n {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  margin-right: 0.4rem;
}

.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: "Manrope", sans-serif;
  font-weight: 500; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field textarea {
  margin-top: 0.55rem;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font: inherit; font-size: 0.95rem;
  color: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(201,166,107,0.18);
}
.field--err input, .field--err textarea { border-color: var(--error); }
.field__err {
  margin-top: 0.35rem; font-size: 11px; color: var(--error); min-height: 1em; font-weight: 500;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.order-form__footer {
  margin-top: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: stretch;
  justify-content: space-between;
}
@media (min-width: 640px) { .order-form__footer { flex-direction: row; align-items: center; } }
.order-form__footer p { font-size: 0.8rem; color: var(--on-dark-muted); max-width: 22rem; line-height: 1.65; font-weight: 300; margin: 0; }

.order-success {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--cream);
}
.order-success svg { color: var(--gold); }
.order-success p { color: var(--on-dark-muted); font-weight: 300; max-width: 30rem; margin: 1rem auto 2rem; }

.form-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--error);
  background: rgba(255,122,163,0.12);
  color: var(--error);
  font-size: 0.875rem;
  border-radius: 8px;
}

/* Cash on delivery banner */
.cash-banner {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold);
  color: var(--wine-900);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq { max-width: 56rem; margin: 0 auto; }
.faq__list { display: grid; gap: 0.75rem; }
.faq__list details {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  transition: border-color .2s ease, background-color .2s ease;
}
.faq__list details[open] { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.faq__list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: 1.2rem; color: var(--cream);
  letter-spacing: 0.01em;
}
@media (min-width: 640px) { .faq__list summary { font-size: 1.35rem; padding: 1.4rem 1.75rem; } }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__icon {
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative; flex-shrink: 0;
  transition: background-color .2s ease, transform .2s ease;
}
details[open] .faq__icon { background: var(--gold); transform: rotate(45deg); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--gold);
  transition: background-color .2s ease;
}
.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 10px; }
details[open] .faq__icon::before, details[open] .faq__icon::after { background: var(--wine-900); }
.faq__list p {
  margin: 0;
  padding: 0 1.75rem 1.4rem;
  color: var(--on-dark-muted); font-size: 0.95rem; line-height: 1.7; font-weight: 300;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-dark); background: var(--wine-900); position: relative; }
.footer__grid {
  padding: 3rem 0;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer__tag { color: var(--on-dark-muted); font-size: 0.875rem; margin-top: 0.85rem; max-width: 24rem; line-height: 1.75; font-weight: 300; }
.footer__links { list-style: none; padding: 0; margin-top: 0.85rem; display: grid; gap: 0.55rem; font-size: 0.9rem; }
.footer__links a { color: var(--on-dark); }
.footer__links a:hover { color: var(--gold); }
.footer__phone {
  display: inline-block; margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.7rem; color: var(--gold);
}
.footer__phone:hover { color: var(--gold-light); }
.footer__hours { font-size: 0.8rem; color: var(--on-dark-muted); margin-top: 0.4rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__bottom { border-top: 1px solid var(--border-soft); }
.footer__bottom-inner {
  padding: 1.25rem 0;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem;
  font-size: 0.72rem; color: var(--on-dark-muted);
}
@media (min-width: 640px) { .footer__bottom-inner { flex-direction: row; } }
.up { letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.age-gate.is-open { opacity: 1; pointer-events: auto; }
.age-gate__backdrop {
  position: absolute; inset: 0;
  background: rgba(46,6,19,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.age-gate__panel {
  position: relative;
  width: min(92vw, 480px);
  background: var(--wine);
  border: 1px solid var(--gold);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 50px 90px rgba(0,0,0,0.6);
  transform: translateY(16px);
  transition: transform .45s cubic-bezier(0.22,1,0.36,1);
}
.age-gate.is-open .age-gate__panel { transform: translateY(0); }
.age-gate__panel::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(201,166,107,0.4);
  pointer-events: none;
}
.age-gate__logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 28px; color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.age-gate__logo .dot { color: var(--gold); }
.age-gate__logo-sub {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.age-gate__title {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  color: var(--cream); margin: 1rem 0 0;
  line-height: 1.1;
}
.age-gate__copy { color: var(--on-dark-muted); font-size: 0.9rem; max-width: 22rem; margin: 1rem auto 0; line-height: 1.7; font-weight: 300; }
.age-gate__actions {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem; justify-content: center;
}
@media (min-width: 480px) { .age-gate__actions { flex-direction: row; } }
.age-gate__denied {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--border-dark);
  background: rgba(0,0,0,0.25);
  font-size: 0.9rem; color: var(--on-dark); line-height: 1.7; font-weight: 300;
}
.age-gate__foot {
  margin-top: 1.75rem;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 500;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(0.22,1,0.36,1), transform .8s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .bar-card, .hero__bar-wrap .bar-card { transform: none; }
}

/* small star scatter helper */
.scatter-stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.scatter-stars span {
  position: absolute;
  color: rgba(201,166,107,0.45);
  font-size: 14px;
  user-select: none;
}
