/* Scentimental Deodorant Launch — VIP Waitlist
   Mobile-first. Brand: black + warm beige + gold accents. */

:root {
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --bone: #f5efe7;
  --cream: #faf6f2;
  --beige: #cdbcb0;
  --beige-dark: #b4a294;
  --gold: #d4a851;
  --gold-bright: #e9c66a;
  --red: #e64225;
  --green: #1a8754;
  --white: #ffffff;
  --muted: #8a8581;
  --line: #2a2520;
  --serif: 'Cinzel', serif;
  --sans: 'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--black);
  color: var(--bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── Top banner (image) ──────────────────────────────── */
.top-banner {
  display: block;
  background: var(--black);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: opacity .25s ease;
}
.top-banner:hover { opacity: .92; }
.top-banner img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}

/* ─── CTAs ────────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.cta--primary {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(212, 168, 81, .25);
}
.cta--primary:hover {
  background: linear-gradient(180deg, var(--gold) 0%, #b48d3a 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(212, 168, 81, .35);
}
.cta--xl { padding: 20px 44px; font-size: 14px; }
.cta--ghost {
  background: transparent; color: var(--bone);
  border-color: rgba(245, 239, 231, .35);
}
.cta--ghost:hover { border-color: var(--bone); background: rgba(245, 239, 231, .06); }

/* ─── VIP spot counter ────────────────────────────────── */
.cta-counter {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 14px 0 0;
  padding: 8px 14px;
  background: rgba(212, 168, 81, .1);
  border: 1px solid rgba(212, 168, 81, .35);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone);
}
.cta-counter::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(233, 198, 106, .5);
  animation: pulseSpot 1.6s ease-out infinite;
}
.cta-counter__num {
  font-family: var(--serif); font-weight: 900;
  font-size: 16px; letter-spacing: 0;
  color: var(--gold-bright);
  margin-right: 2px;
}
.cta-counter__label { color: rgba(245, 239, 231, .75); font-weight: 500; }
.cta-counter--inline { color: var(--ink); background: rgba(212, 168, 81, .12); border-color: rgba(212, 168, 81, .4); }
.cta-counter--large { padding: 12px 22px; font-size: 13px; }
.cta-counter--large .cta-counter__num { font-size: 20px; }

.cta-counter--low::before {
  background: var(--red);
  animation-duration: .9s;
}
.cta-counter--low .cta-counter__num { color: #ff8a85; }

.cta-counter--full { padding: 10px 18px; background: rgba(140, 140, 140, .12); border-color: rgba(180, 180, 180, .3); }
.cta-counter--full::before { background: #9a9a9a; animation: none; }
.cta-counter--full .cta-counter__num { display: none; }

@keyframes pulseSpot {
  0% { box-shadow: 0 0 0 0 rgba(233, 198, 106, .55); }
  70% { box-shadow: 0 0 0 10px rgba(233, 198, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 198, 106, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-counter::before { animation: none; }
}

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  /* Match the natural aspect ratio of top-banner.png (1600x480) so the image fills edge to edge with no letterbox */
  aspect-ratio: 1600 / 480;
  display: flex; align-items: center;
  background: var(--black);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('img/top-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  /* Subtle left-to-right vignette so headline reads cleanly against the dark side of the image */
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 24px 28px;
  text-align: left;
}
.hero__inner > * { max-width: 560px; }
.hero__eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 10px;
}
.hero__heading {
  font-family: var(--serif); font-weight: 900;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(22px, 3.4vw, 50px); line-height: .95;
  margin: 0 0 12px; color: var(--white);
}
.hero__heading--accent {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, #b48d3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(13px, 1.05vw, 15px); line-height: 1.5;
  margin: 0 0 18px; max-width: 540px;
  color: rgba(245, 239, 231, .88);
}

/* Countdown */
.hero__countdown {
  display: flex; gap: 8px; justify-content: flex-start;
  margin: 0 0 18px;
}
.cd-block {
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(212, 168, 81, .3);
  border-radius: 4px;
  padding: 7px 10px;
  min-width: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  backdrop-filter: blur(2px);
}
.cd-num {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px); color: var(--gold-bright);
  line-height: 1;
}
.cd-label {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245, 239, 231, .65);
}

.hero__fine {
  font-size: 11px; margin: 10px 0 0;
  color: rgba(245, 239, 231, .65);
}

/* Compact CTA + counter in the hero so they fit inside the image height */
.hero__inner .cta { padding: 12px 24px; font-size: 12px; letter-spacing: .12em; }
.hero__inner .cta-counter { padding: 6px 12px; font-size: 11px; margin: 10px 0 0; }
.hero__inner .cta-counter__num { font-size: 13px; }
.hero__inner .cta-counter::before { width: 6px; height: 6px; }

/* ─── Trust strip ─────────────────────────────────────── */
.trust-strip {
  background: var(--ink);
  padding: 22px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.trust-strip__line {
  font-size: 13px; margin: 0; color: rgba(245, 239, 231, .75);
  letter-spacing: .04em;
}
.trust-strip__hl { color: var(--gold-bright); font-weight: 600; }
.trust-strip__divider { color: var(--gold); padding: 0 8px; }

/* ─── VIP offer ───────────────────────────────────────── */
.vip {
  background: linear-gradient(180deg, var(--black) 0%, #1a0e08 50%, var(--black) 100%);
  padding: 80px 20px;
}
.vip__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.vip__media img {
  width: 100%; border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.vip__eyebrow {
  font-family: var(--sans); font-size: 12px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 14px;
}
.vip__heading {
  font-family: var(--serif); font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  margin: 0 0 24px; color: var(--white);
}
.vip__price {
  display: flex; align-items: baseline; gap: 14px;
  margin: 0 0 8px;
}
.vip__price-amt {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(48px, 8vw, 82px); line-height: 1;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vip__price-label {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: rgba(245, 239, 231, .85);
  text-transform: uppercase; letter-spacing: .12em;
}
.vip__strike {
  font-size: 13px; margin: 0 0 24px;
  color: rgba(245, 239, 231, .55);
}
.vip__bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.vip__bullets li {
  position: relative; padding-left: 28px;
  font-size: 15px; color: rgba(245, 239, 231, .9);
  line-height: 1.5;
}
.vip__bullets li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700; font-size: 16px;
}
.vip__fine {
  font-size: 12px; margin: 14px 0 0;
  color: rgba(245, 239, 231, .55);
}

/* ─── Why this is different ───────────────────────────── */
.why {
  background: var(--cream);
  color: var(--ink);
  padding: 80px 20px;
}
.why__inner { max-width: 1240px; margin: 0 auto; }
.why__head { text-align: center; margin: 0 0 48px; }
.why__eyebrow {
  font-family: var(--sans); font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--beige-dark);
  margin: 0 0 12px;
}
.why__heading {
  font-family: var(--serif); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px; color: var(--ink); line-height: 1.1;
}
.why__sub {
  font-size: 16px; line-height: 1.65; color: #5a5550;
  margin: 0 auto; max-width: 640px;
}
.why__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(180, 162, 148, .25);
  border-radius: 6px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: var(--gold);
}
.why-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--cream);
  color: var(--gold);
  font-size: 22px;
  border-radius: 50%;
  margin: 0 0 18px;
}
.why-card__title {
  font-family: var(--sans); font-weight: 700;
  font-size: 16px; letter-spacing: .03em;
  margin: 0 0 10px; color: var(--ink);
}
.why-card__body {
  font-size: 14px; line-height: 1.6;
  margin: 0; color: #6b6760;
}

/* ─── Lifestyle banner ────────────────────────────────── */
.lifestyle {
  background: var(--black);
  display: block;
}
.lifestyle img {
  width: 100%; height: auto; display: block;
}

/* ─── Final signup ────────────────────────────────────── */
.signup {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 81, .15) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #1a0e08 60%, var(--black) 100%);
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signup__inner { max-width: 720px; margin: 0 auto; }
.signup__eyebrow {
  font-family: var(--sans); font-size: 12px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 18px;
}
.signup__heading {
  font-family: var(--serif); font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(30px, 5vw, 56px); line-height: 1.05;
  margin: 0 0 22px; color: var(--white);
}
.signup__sub {
  font-size: 16px; line-height: 1.65;
  margin: 0 auto 36px; max-width: 540px;
  color: rgba(245, 239, 231, .85);
}
.signup__fine {
  font-size: 12px; margin: 18px 0 0;
  color: rgba(245, 239, 231, .55);
}
.signup__trust {
  list-style: none; padding: 0;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin: 36px 0 0;
}
.signup__trust li {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245, 239, 231, .55); font-weight: 600;
}
.signup__trust li::before {
  content: '✦ '; color: var(--gold); margin-right: 4px;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq {
  background: var(--cream);
  color: var(--ink);
  padding: 80px 20px;
}
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__heading {
  font-family: var(--serif); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(24px, 3.4vw, 36px);
  margin: 0 0 32px; text-align: center;
}
.faq__item {
  border-bottom: 1px solid rgba(180, 162, 148, .35);
  padding: 18px 0;
}
.faq__item summary {
  font-family: var(--sans); font-weight: 600;
  font-size: 16px; cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 8px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px; color: var(--beige-dark);
  transition: transform .25s ease;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  font-size: 14px; line-height: 1.65;
  margin: 12px 0 0; color: #5a5550;
}

/* ─── Final CTA strip ─────────────────────────────────── */
.final-cta {
  background: var(--black);
  padding: 32px 20px;
  border-top: 1px solid var(--line);
}
.final-cta__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.final-cta__line {
  font-family: var(--sans); font-weight: 600;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  margin: 0;
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 40px 20px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.site-footer__brand {
  font-family: var(--serif); font-weight: 700;
  letter-spacing: .2em; font-size: 16px;
  margin: 0 0 8px; color: var(--bone);
}
.site-footer__line {
  font-size: 13px; margin: 0 0 16px; color: rgba(245, 239, 231, .6);
}
.site-footer__legal {
  font-size: 11px; margin: 0; color: rgba(245, 239, 231, .35);
  letter-spacing: .08em;
}

/* ─── Mobile breakpoints ──────────────────────────────── */
@media (max-width: 989px) {
  .vip__inner { grid-template-columns: 1fr; gap: 36px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  /* Mobile: drop the wide aspect-ratio (would be a thin sliver) and use a
     stacked hero with the image as a cover backdrop instead */
  .hero { aspect-ratio: auto; min-height: 600px; }
  .hero__inner { padding: 56px 20px 64px; text-align: center; }
  .hero__inner > * { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__countdown { gap: 6px; justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__bg { background-size: cover; background-position: center; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.7) 100%); }
  /* Reset the compact CTA/counter sizes to the bigger ones for mobile */
  .hero__inner .cta { padding: 14px 22px; font-size: 12px; }
  .hero__inner .cta-counter { padding: 8px 14px; font-size: 12px; }
  .hero__inner .cta-counter__num { font-size: 16px; }
  .hero__heading { font-size: clamp(28px, 8vw, 44px); }
  .hero__sub { font-size: 14px; }
  .cd-num { font-size: 22px; }
  .cd-block { min-width: 60px; padding: 10px 12px; }
  .cd-label { font-size: 10px; }
  .cd-block { min-width: 52px; padding: 10px 10px; }
  .cd-num { font-size: 22px; }
  .cd-label { font-size: 9px; }
  .cta { padding: 14px 22px; font-size: 12px; letter-spacing: .12em; }
  .cta--xl { padding: 18px 28px; font-size: 13px; }
  .vip { padding: 56px 18px; }
  .vip__bullets li { font-size: 14px; }
  .why { padding: 56px 18px; }
  .why__grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 22px 20px; }
  .signup { padding: 64px 18px; }
  .signup__trust { gap: 14px; }
  .signup__trust li { font-size: 11px; }
  .faq { padding: 56px 18px; }
  .final-cta__inner { flex-direction: column; gap: 14px; text-align: center; }
}
