/* ============================================
   JUBILÉ VIỆT NAM — LM#1 Landing Page Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Be+Vietnam+Pro:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

/* ---- Variables ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #e8cc6a;
  --navy: #1A1A2E;
  --cream: #FDF8F3;
  --text: #2D2D2D;
  --accent-bg: #F5EFE6;
  --teal: #4A9B8E;
  --red-cta: #C0392B;
  --red-hover: #a93226;
  --border: #e8e0d5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}
.accent-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.sticky-header.scrolled { box-shadow: var(--shadow); }
.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.header-logo span { color: var(--gold); }
.header-label {
  font-size: 0.75rem;
  color: #888;
  display: none;
}
.header-cta {
  background: var(--red-cta);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.header-cta:hover { background: var(--red-hover); transform: translateY(-1px); }
@media(min-width: 768px) { .header-label { display: block; } }

/* ============================================
   SECTION BASE
   ============================================ */
section { padding: 64px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.hero {
  background: var(--cream);
  padding-top: 100px;
  padding-bottom: 64px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.hero-text { flex: 1; }
.hero-image { flex: 1; max-width: 480px; width: 100%; }
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent-bg) 0%, #ede4d8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gold);
  gap: 12px;
  color: #999;
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}
.hero-image-placeholder .img-icon { font-size: 2.5rem; }
.pre-headline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.7;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #666;
  background: white;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.trust-item .trust-icon { font-size: 1rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-cta);
  color: white;
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(192,57,43,0.45);
}
.btn-primary:active { transform: translateY(0); }
@media(min-width: 900px) {
  .hero-inner { flex-direction: row; gap: 60px; }
  .hero-text { order: 1; }
  .hero-image { order: 2; }
}

/* ============================================
   SECTION 2 — VẤN ĐỀ
   ============================================ */
.section-pain { background: var(--accent-bg); }
.section-pain .section-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 36px;
  text-align: center;
}
.pain-list { list-style: none; margin-bottom: 36px; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  font-size: 1.05rem;
  color: #444;
}
.pain-list li:last-child { border-bottom: none; }
.pain-x {
  width: 26px; height: 26px; min-width: 26px;
  background: #fde8e6;
  color: #c0392b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}
.founder-quote-block {
  background: white;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.founder-avatar {
  width: 64px; height: 64px; min-width: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
}
.founder-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #444;
  line-height: 1.65;
}
.founder-name {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

/* ============================================
   SECTION 3 — GIẢI PHÁP / KIT
   ============================================ */
.section-solution { background: white; }
.section-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 44px;
  line-height: 1.7;
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media(min-width: 640px) { .kit-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .kit-grid { grid-template-columns: repeat(4, 1fr); } }
.kit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.kit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.kit-icon { font-size: 2rem; margin-bottom: 12px; }
.kit-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.kit-desc { font-size: 0.82rem; color: #777; line-height: 1.55; }
.kit-price-block {
  text-align: center;
  margin-top: 40px;
  padding: 28px;
  background: var(--accent-bg);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold);
}
.kit-price-original {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.kit-price-actual {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--red-cta);
  font-weight: 700;
}
.kit-price-note { font-size: 0.8rem; color: #888; margin-top: 4px; }

/* ============================================
   SECTION 4 — CÁCH HOẠT ĐỘNG
   ============================================ */
.section-how { background: var(--navy); color: white; }
.section-how .section-headline { color: white; }
.section-how .section-sub { color: rgba(255,255,255,0.65); }
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
@media(min-width: 768px) {
  .steps-container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.step-item {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  position: relative;
}
.step-number {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 10px;
}
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.step-arrow {
  display: none;
  align-self: center;
  color: var(--gold);
  font-size: 1.5rem;
}
@media(min-width: 768px) { .step-arrow { display: block; } }
.how-cta { text-align: center; margin-top: 44px; }

/* ============================================
   SECTION 5 — SOCIAL PROOF
   ============================================ */
.section-proof { background: var(--accent-bg); }
.proof-count {
  text-align: center;
  margin-bottom: 48px;
}
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.proof-label { color: #666; font-size: 0.9rem; margin-top: 4px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-info { font-size: 0.78rem; color: #999; margin-top: 2px; }

/* ============================================
   SECTION 6 — FORM ĐĂNG KÝ
   ============================================ */
.section-form { background: white; }
.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media(min-width: 900px) { .form-layout { grid-template-columns: 1fr 1fr; } }
.form-benefits-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 28px;
}
.benefit-list { list-style: none; margin-bottom: 32px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid var(--border);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-check {
  color: var(--teal);
  font-weight: 700;
  margin-top: 2px;
  font-size: 1rem;
}
.price-summary {
  background: var(--accent-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #777;
}
.price-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.price-total .label {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.price-total .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--red-cta);
  font-weight: 700;
}
/* Form styles */
.form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-input::placeholder { color: #bbb; }
.form-note { font-size: 0.75rem; color: #aaa; margin-top: 4px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: #555;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.radio-label:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.radio-label input[type="radio"] {
  accent-color: var(--gold);
  width: 18px; height: 18px;
  cursor: pointer;
}
.radio-label.selected { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.btn-submit {
  width: 100%;
  background: var(--red-cta);
  color: white;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(192,57,43,0.3);
  margin-top: 8px;
  font-family: 'Be Vietnam Pro', sans-serif;
}
.btn-submit:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(192,57,43,0.4);
}
.form-security {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #aaa;
}

/* ============================================
   SECTION 7 — THANH TOÁN 50K
   ============================================ */
.section-payment { background: var(--navy); color: white; }
.section-payment .section-headline { color: var(--gold); }
.section-payment .section-sub { color: rgba(255,255,255,0.65); }
.payment-explanation {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-size: 0.95rem;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media(min-width: 640px) { .payment-grid { grid-template-columns: 1fr 1fr; } }
.payment-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.payment-box-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.bank-info { display: flex; flex-direction: column; gap: 12px; }
.bank-row { display: flex; flex-direction: column; gap: 2px; }
.bank-key { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.bank-val { font-size: 0.95rem; color: white; font-weight: 600; }
.bank-stk { font-size: 1.4rem; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; }
.after-payment-steps { display: flex; flex-direction: column; gap: 14px; }
.after-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.after-step-num {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.qr-placeholder {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  text-align: center;
  gap: 6px;
  margin-top: 16px;
}
.qr-placeholder .qr-icon { font-size: 2rem; }
.commitments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.commit-icon { font-size: 1.1rem; }

/* ============================================
   SECTION 8 — FAQ
   ============================================ */
.section-faq { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 56px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* Final CTA */
.final-cta-block {
  text-align: center;
  padding: 56px 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.final-cta-title {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.final-cta-title span { color: var(--gold); }
.final-cta-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 32px; }
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  font-family: 'Be Vietnam Pro', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,175,55,0.5);
}
.final-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
}
.final-trust-item { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.5);
  padding: 32px 20px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}
footer a { color: var(--gold); text-decoration: underline; }
footer .footer-brand {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 12px 16px;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.sticky-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red-cta);
  color: white;
  padding: 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}
@media(max-width: 767px) { .sticky-mobile-cta.visible { display: block; } }

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #bbb;
  line-height: 1;
}
.popup-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.popup-sub { color: #777; font-size: 0.9rem; margin-bottom: 28px; }
.popup-dismiss {
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 0.8rem;
  color: #bbb;
  cursor: pointer;
  font-family: 'Be Vietnam Pro', sans-serif;
}
.popup-dismiss:hover { color: #999; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
