/* ============================================
   Tokens
   ============================================ */
:root {
  --bg: #14110e;
  --surface: #1e1a15;
  --surface-2: #262019;
  --gold: #c9a24b;
  --gold-soft: #e2c583;
  --cream: #f4ecdd;
  --muted: #a89a85;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --rule: rgba(244, 236, 221, 0.12);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --content-width: 480px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* subtle film-grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; }

/* ============================================
   Hero / Carousel
   ============================================ */
.hero {
  padding-top: 28px;
}

.carousel {
  position: relative;
  margin: 0 -20px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0 20px;
}

.video-frame {
  position: relative;
  padding-top: 177.78%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.video-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 64px;
  z-index: 2;
  pointer-events: none;
}

.video-caption span {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 21px;
  line-height: 1.3;
  color: var(--cream);
  background: rgba(20, 17, 14, 0.72);
  border: 1px solid rgba(244, 236, 221, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(3px);
}

.video-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6) 70%);
  pointer-events: none;
  z-index: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-copy {
  text-align: center;
  padding: 28px 0 8px;
}

.pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto 26px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #08240f;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-submit {
  background: var(--gold);
  color: #241b08;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--gold-soft); }
.btn-submit:disabled { opacity: 0.6; cursor: default; }

.link-form {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: var(--gold-soft);
  text-decoration: none;
}
.link-form:hover { text-decoration: underline; }

/* ============================================
   Social proof
   ============================================ */
.proof {
  padding: 36px 4px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 36px;
}
.proof p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--gold-soft);
  margin: 0;
}

/* ============================================
   Info block (styles / currencies)
   ============================================ */
.info-block {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 13px;
  color: var(--cream);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 6px 13px;
}

/* ============================================
   Reviews
   ============================================ */
.reviews {
  padding: 40px 0 8px;
}

.reviews h2,
.form-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  margin: 0 0 24px;
  color: var(--cream);
}

.reviews-grid {
  columns: 1;
  column-gap: 12px;
}

.reviews-grid img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 12px;
  break-inside: avoid;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.7);
}

@media (min-width: 640px) {
  .reviews-grid { columns: 2; }
}

/* ============================================
   Form
   ============================================ */
.form-section {
  padding: 44px 0 8px;
}

.form-lede {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px;
}

#leadForm {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#leadForm label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

#leadForm input {
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
}

#leadForm input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

#leadForm input::placeholder {
  color: rgba(168, 154, 133, 0.6);
}

.form-note {
  min-height: 18px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
  margin: 0;
}
.form-note.error { color: #e2857a; }
.form-note.success { color: var(--gold-soft); }

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 40px 0 60px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  margin-top: 44px;
}
footer p { margin: 6px 0; }
footer a { text-decoration: underline; }
footer em { font-style: normal; color: #8a7a63; }

/* Desktop widening for the wrapper only, content stays narrow (phone-first read) */
@media (min-width: 720px) {
  body {
    background: linear-gradient(180deg, #1a1611, #0e0c0a 60%);
  }
}
