/* ============================================================
   Alter Café — Theme
   Solid black · Gold gradient system · Bebas Neue headings
   No red anywhere. No textures. No gradients on background.
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #e8e0d0;
  --muted: #7a726a;
  --muted-light: #9a9088;

  --gold-1: #a47a1e;
  --gold-2: #d3a84c;
  --gold-3: #ffec94;
  --gold-4: #e6be69;
  --gold-5: #ffd87c;
  --gold-6: #b58f3e;
  --gold-7: #956d13;

  --gold-gradient: linear-gradient(135deg,
    #a47a1e 0%, #d3a84c 25%, #ffec94 50%,
    #e6be69 65%, #ffd87c 80%, #b58f3e 92%, #956d13 100%
  );
  --gold-gradient-h: linear-gradient(90deg,
    #a47a1e 0%, #d3a84c 25%, #ffec94 50%,
    #e6be69 65%, #ffd87c 80%, #b58f3e 92%, #956d13 100%
  );
  --gold-text: linear-gradient(135deg, #d3a84c 0%, #ffec94 45%, #e6be69 70%, #d3a84c 100%);

  --blue: #30a4be;
  --border: rgba(212, 165, 66, 0.15);
  --border-sub: rgba(255,255,255,0.05);

  --font-display: 'Bebas Neue', 'Roboto Condensed', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --max-w: 1140px;
  --pad-x: 40px;
  --section-y: 100px;
  --ease: 0.22s ease;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Age Gate
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: opacity 0.4s ease;
}
.age-gate.exiting { opacity: 0; pointer-events: none; }

.age-gate__inner {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.age-gate__logo {
  width: 180px;
  margin: 0 auto 40px;
}

.age-gate__question {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 12px;
}

.age-gate__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.age-gate__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.age-gate__disclaimer {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.btn--gold {
  background: var(--gold-gradient-h);
  color: var(--black);
  font-weight: 700;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 216, 124, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: rgba(230, 190, 105, 0.5);
  color: var(--gold-4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid rgba(122, 114, 106, 0.3);
  font-size: 0.82rem;
}
.btn--ghost:hover {
  color: var(--off-white);
  border-color: var(--muted-light);
}

.btn--sm { font-size: 0.75rem; padding: 10px 20px; }

.btn--full { width: 100%; margin-top: 8px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  padding: 0 var(--pad-x);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-sub);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { height: 34px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  position: relative;
  transition: color var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-gradient-h);
  transition: width var(--ease);
}
.nav__link:hover { color: var(--gold-4); }
.nav__link:hover::after { width: 100%; }

/* ============================================================
   Section Utilities
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}
.wrap--narrow { max-width: 760px; }
.wrap--center { text-align: center; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(211, 165, 66, 0.28);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 1.0;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted-light);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
}

/* Section dividers */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, rgba(212, 165, 66, 0.3) 50%, var(--border) 80%, transparent 100%);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Radial glow behind bottle only */
.hero__glow {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 680px;
  background: radial-gradient(ellipse, rgba(211, 168, 76, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  letter-spacing: 0.01em;
  line-height: 0.93;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.08em;
  color: var(--off-white);
  opacity: 0.88;
  margin-bottom: 14px;
}

.hero__body {
  font-size: 0.95rem;
  color: var(--muted-light);
  max-width: 420px;
  margin-bottom: 38px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bottle {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) drop-shadow(0 0 40px rgba(211,168,76,0.12));
  transition: transform 0.6s ease, filter 0.6s ease;
}
.hero__bottle:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.9)) drop-shadow(0 0 60px rgba(211,168,76,0.2));
}

/* ============================================================
   Subscribe Section
   ============================================================ */
.s-subscribe {
  background: var(--black);
  position: relative;
}
.s-subscribe::before, .s-subscribe::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, rgba(212, 165, 66, 0.3) 50%, var(--border) 80%, transparent 100%);
}
.s-subscribe::before { top: 0; }
.s-subscribe::after { bottom: 0; }

.subscribe__fine {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
  letter-spacing: 0.06em;
}

/* ============================================================
   Forms
   ============================================================ */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-row .form-field { margin-bottom: 0; }

.form-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}

.form-input {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(211, 165, 66, 0.18);
  color: var(--off-white);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-input::placeholder { color: rgba(122, 114, 106, 0.5); }
.form-input:focus {
  border-color: rgba(230, 190, 105, 0.55);
  box-shadow: 0 0 0 3px rgba(211, 168, 76, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-msg {
  margin-top: 14px;
  min-height: 22px;
  font-size: 0.86rem;
  text-align: center;
  letter-spacing: 0.03em;
}
.form-msg--ok { color: var(--gold-4); }
.form-msg--err { color: #e07070; }

/* ============================================================
   What It Is
   ============================================================ */
.s-what {
  background: var(--black);
}

.what-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 8px;
}

.what-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.what-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

.what-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold-4);
  margin-bottom: 4px;
}

.what-item p {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.6;
}

.what-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
}

/* ============================================================
   How People Use It
   ============================================================ */
.s-how {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 48px;
}

.how-card {
  padding: 36px 26px;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.how-card:last-child { border-right: none; }
.how-card:hover { background: rgba(211, 168, 76, 0.03); }

.how-n {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  margin-bottom: 16px;
}

.how-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 10px;
}

.how-body {
  font-size: 0.86rem;
  color: var(--muted-light);
  line-height: 1.65;
}

/* ============================================================
   Wholesale Section
   ============================================================ */
.s-wholesale {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
}

/* ============================================================
   Brand Section
   ============================================================ */
.s-brand {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
}

.brand-body {
  font-size: 1.05rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-top: 8px;
  max-width: 640px;
}

/* ============================================================
   Final CTA
   ============================================================ */
.s-cta {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  position: relative;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 52px var(--pad-x);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo {
  height: 38px;
  width: auto;
  opacity: 0.7;
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

.footer__copy {
  font-size: 0.7rem;
  color: rgba(122, 114, 106, 0.45);
  letter-spacing: 0.06em;
}

/* ============================================================
   Wholesale Page — Sell Sheet
   ============================================================ */
.ws-hero {
  padding: 80px var(--pad-x) 72px;
  padding-top: calc(64px + 80px);
  background: var(--black);
}

.ws-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ws-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.ws-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  color: var(--off-white);
  margin-bottom: 22px;
}

.ws-hero__title .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-hero__sub {
  font-size: 1rem;
  color: var(--muted-light);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.ws-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ws-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(211, 165, 66, 0.22);
  padding: 6px 12px;
}

.ws-hero__img {
  display: flex;
  justify-content: center;
  position: relative;
}

.ws-bottle {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) drop-shadow(0 0 40px rgba(211,168,76,0.12));
}

/* Product Specs */
.ws-specs {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
}

.ws-specs__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--pad-x);
}

.ws-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.ws-spec-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.ws-spec-card:last-child { border-right: none; }

.ws-spec-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 10px;
}

.ws-spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 8px;
}

.ws-spec-note {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Why Stock ALTER */
.ws-why {
  background: var(--black);
  padding: 80px var(--pad-x);
}

.ws-why__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ws-section-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(211, 166, 66, 0.28);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.ws-section-h {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 48px;
}

.ws-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.ws-why-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ws-why-card:nth-child(2n) { border-right: none; }
.ws-why-card:nth-child(3),
.ws-why-card:nth-child(4) { border-bottom: none; }

.ws-why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.ws-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold-4);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ws-why-card p {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.7;
}

/* Venue Use Cases */
.ws-venues {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  padding: 80px var(--pad-x);
}

.ws-venues__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ws-venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.ws-venue-card {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}

.ws-venue-card:last-child { border-right: none; }

.ws-venue-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1;
}

.ws-venue-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}

.ws-venue-desc {
  font-size: 0.83rem;
  color: var(--muted-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ws-venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ws-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(122, 114, 106, 0.2);
  padding: 3px 8px;
}

/* Competitive Callout */
.ws-comp {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  padding: 72px var(--pad-x);
}

.ws-comp__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ws-comp__callout {
  border: 1px solid rgba(211, 165, 66, 0.3);
  padding: 48px 52px;
  text-align: center;
  position: relative;
}

.ws-comp__callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(211, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ws-comp__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.ws-comp__body {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Pricing */
.ws-pricing {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  padding: 80px var(--pad-x);
}

.ws-pricing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ws-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 0;
}

.ws-pricing-block {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}

.ws-pricing-block:last-child { border-right: none; }

.ws-pricing-format {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 10px;
}

.ws-pricing-detail {
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.6;
}

.ws-pricing-block--cta .ws-pricing-format { color: var(--gold-4); }

/* Inquiry Form */
.ws-form-section {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  padding: 80px var(--pad-x);
}

.ws-form-section__inner {
  max-width: 760px;
  margin: 0 auto;
}

.ws-form-intro {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: -8px;
}

.ws-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ws-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ws-form-row .ws-form-field { margin-bottom: 0; }

.ws-form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}

.ws-form-field input,
.ws-form-field select,
.ws-form-field textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(211, 165, 66, 0.18);
  color: var(--off-white);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.ws-form-field input::placeholder,
.ws-form-field textarea::placeholder { color: rgba(122, 114, 106, 0.5); }
.ws-form-field input:focus,
.ws-form-field select:focus,
.ws-form-field textarea:focus {
  border-color: rgba(230, 190, 105, 0.55);
  box-shadow: 0 0 0 3px rgba(211, 168, 76, 0.08);
}

.ws-form-field textarea { resize: vertical; min-height: 100px; }

.ws-form-check { margin: 8px 0; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--muted-light);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-2);
  flex-shrink: 0;
}

.ws-form-actions { margin-top: 8px; }

.ws-form-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.ws-form-success,
.ws-form-error {
  text-align: center;
  padding: 16px 0;
  font-size: 0.9rem;
}

.ws-form-success { color: var(--gold-4); }
.ws-form-error { color: #e07070; }

.ws-form-success-msg {
  text-align: center;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--gold-4);
}

/* Nav active state */
.nav__link--active {
  color: var(--gold-4) !important;
}

.nav__link--active::after { width: 100% !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  :root { --pad-x: 28px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero__body { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__img-wrap { order: -1; }
  .hero__bottle { max-width: 300px; }
  .hero__glow { display: none; }

  .what-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .what-img { max-width: 100%; }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-card { border-right: none; border-bottom: 1px solid var(--border); }
  .how-card:last-child { border-bottom: none; }

  .nav__links .btn--sm { display: none; }
}

@media (max-width: 640px) {
  :root { --section-y: 72px; --pad-x: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-card { border-right: none; }
  .how-card:not(:last-child) { border-bottom: 1px solid var(--border); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .age-gate__buttons { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto 28px; }
  .nav__links { gap: 16px; }
}
