/* =============================================================
   Travel Hack — Free VIP Training Website
   Design: Dark Luxury — Deep Black/Navy, Gold, Champagne White
   Fonts: Playfair Display (headings) + Lato (body)
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:         #080c10;
  --dark:          #0d1117;
  --dark-card:     #111820;
  --dark-border:   #1e2a38;
  --navy:          #0a1628;
  --gold:          #c9a84c;
  --gold-light:    #e4c97a;
  --gold-dark:     #a07830;
  --champagne:     #f5efe0;
  --white:         #ffffff;
  --text-light:    rgba(255,255,255,0.88);
  --text-muted:    rgba(255,255,255,0.5);
  --text-dim:      rgba(255,255,255,0.3);
  --red-accent:    #c0392b;

  --shadow-gold:   0 4px 30px rgba(201,168,76,0.25);
  --shadow-dark:   0 8px 40px rgba(0,0,0,0.6);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);

  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     18px;
  --radius-full:   9999px;

  --font-display:  'Playfair Display', serif;
  --font-body:     'Lato', sans-serif;
  --transition:    all 0.3s ease;

  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e4c97a 50%, #a07830 100%);
  --dark-gradient: linear-gradient(180deg, #080c10 0%, #0d1117 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Gold divider line ── */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1rem 0;
}
.gold-line.centered { margin: 1rem auto; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg  { padding: 1.1rem 2.75rem; font-size: 0.9rem; }
.btn-md  { padding: 0.85rem 2rem; font-size: 0.85rem; }
.btn-sm  { padding: 0.6rem 1.5rem; font-size: 0.78rem; }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-dark:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* ── Section label ── */
.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Section shared ── */
.section { padding: 5.5rem 0; }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }
.section-card  { background: var(--dark-card); }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 580px;
  line-height: 1.75;
}
.section-header.centered .section-desc { margin-left: auto; margin-right: auto; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(8,12,16,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: var(--black); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 1rem 0;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--dark-border);
}
.nav-mobile ul li a:hover { color: var(--gold); }
.nav-mobile .btn { margin: 1.25rem 1.5rem; width: calc(100% - 3rem); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,12,16,0.92) 0%,
    rgba(8,12,16,0.75) 50%,
    rgba(8,12,16,0.5) 100%
  );
}
/* Extra bottom fade for seamless transition */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 6rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle-line {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--champagne);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.5s infinite;
  color: var(--gold);
  opacity: 0.6;
}
.hero-scroll svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ── */
#stats {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 2.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item:not(:last-child) { border-right: 1px solid var(--dark-border); }
}
.stat-item { text-align: center; padding: 0.5rem 1rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* ── What You'll Learn ── */
#learn { background: var(--dark); }
.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .learn-grid { grid-template-columns: 1fr 1fr; } }
.learn-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.learn-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.learn-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,16,0.7) 0%, transparent 60%);
}
.learn-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
}
.learn-list { display: flex; flex-direction: column; gap: 1.25rem; }
.learn-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.learn-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.learn-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.learn-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.learn-item-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.learn-item-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── Savings Showcase ── */
#savings { background: var(--black); }
.savings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .savings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .savings-grid { grid-template-columns: repeat(3, 1fr); } }
.savings-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.savings-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.savings-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.savings-card:hover::before { opacity: 1; }
.savings-pct {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.savings-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.savings-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Bonuses ── */
#bonuses { background: var(--dark); }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.bonus-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
}
.bonus-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.bonus-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  position: absolute;
  top: 1rem; right: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.bonus-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.bonus-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.bonus-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.bonus-value {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── Objections ── */
#objections { background: var(--black); }
.obj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .obj-grid { grid-template-columns: 5fr 7fr; } }
.obj-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.obj-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.obj-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,16,0.6) 0%, transparent 60%);
}
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion-item.open { border-color: var(--gold-dark); }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}
.accordion-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  flex: 1;
}
.accordion-icon {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 200px; }
.accordion-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--dark-border);
  padding-top: 1rem;
}

/* ── Testimonials ── */
#testimonials { background: var(--dark); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.testi-quote {
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars svg { width: 14px; height: 14px; fill: var(--gold); stroke: var(--gold); stroke-width: 1; }
.testi-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: var(--white); }
.testi-location { font-size: 0.75rem; color: var(--text-dim); }

/* ── Webinar CTA ── */
#webinar-cta {
  background: var(--black);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.webinar-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.webinar-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.webinar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.webinar-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
.webinar-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.webinar-title .gold { color: var(--gold); }
.webinar-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--champagne);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}
.webinar-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.webinar-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e74c3c;
  letter-spacing: 0.05em;
}
.webinar-urgency svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.webinar-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* ── Footer ── */
#footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 0.75rem;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.75rem; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}
