/* ============================================
   A Space in Spanish — Global Stylesheet
   The Maestro: Dark Cinematic Premium Design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #D85A30;
  --accent-dark: #a84020;
  --accent-light: #e87a50;
  --gold: #BA7517;
  --bg-base: #0d0d0d;
  --bg-surface: #111111;
  --bg-surface2: #161616;
  --bg-warm: #1a0c05;
  --border: #2a2a2a;
  --border-warm: #2a1508;
  --text-primary: #f0f0f0;
  --text-secondary: #888888;
  --text-muted: #444444;
  --text-accent: #D85A30;
  --green: #1D9E75;
  --green-bg: #0f1a10;
  --green-light: #9FE1CB;
  --purple: #7F77DD;
  --nav-height: 64px;
  --section-pad: 72px 24px;
  --section-pad-sm: 48px 24px;
  --radius: 8px;
  --radius-lg: 12px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Utility --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.serif { font-family: var(--font-serif); }
.accent { color: var(--accent); }
.mono { font-family: monospace; }

.eyebrow {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; font-family: var(--font-sans); font-weight: 500; }

p { color: var(--text-secondary); line-height: 1.7; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 10px 0;
  font-size: 14px;
}
.btn-ghost:hover { gap: 12px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border-bottom: none; color: var(--accent); }

.page-body { padding-top: var(--nav-height); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-base);
  padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(216,90,48,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(186,117,23,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(216,90,48,0.08);
  border: 1px solid rgba(216,90,48,0.2);
  padding: 6px 14px;
  border-radius: 999px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.hero h1 { color: #fff; margin-bottom: 12px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.hero-avatars .hero-avatar:first-child { margin-left: 0; }
.sp-text { font-size: 13px; color: var(--text-primary); }
.sp-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-sans);
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* --- AdSense Slots --- */
.ad-slot {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* Replace with: <ins class="adsbygoogle" ...></ins> after AdSense approval */

/* --- About Strip --- */
.about-strip {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.about-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-avatar-wrap {
  flex-shrink: 0;
}
.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1508, #4a2510);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--accent);
  overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card.featured { border-color: var(--accent); }
.card-badge {
  display: inline-block;
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: .04em;
}
.card-icon {
  width: 44px; height: 44px;
  background: rgba(216,90,48,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--accent);
}
.card h4 { color: #fff; margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.card-price { font-size: 15px; color: var(--accent); font-weight: 600; }
.card-arrow { float: right; color: var(--text-muted); font-size: 18px; }

/* --- Live Banner --- */
.live-banner {
  background: var(--green-bg);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.live-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(29,158,117,0.4);
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(29,158,117,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(29,158,117,0); }
  100% { box-shadow: 0 0 0 0 rgba(29,158,117,0); }
}
.live-text { font-size: 14px; color: var(--green-light); font-weight: 500; }
.live-sub { font-size: 12px; color: #3a6a50; margin-top: 2px; }
.live-btn {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  border: none;
  white-space: nowrap;
  transition: var(--transition);
}
.live-btn:hover { background: #1D9E75cc; }

/* --- Testimonials --- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-quote { font-size: 14px; color: #aaa; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testi-author { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.testi-flag { font-size: 16px; }

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.blog-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 20px; }
.blog-cat {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-card h4 { color: #fff; font-family: var(--font-sans); font-size: 15px; margin-bottom: 8px; line-height: 1.4; }
.blog-meta { font-size: 12px; color: var(--text-muted); display: flex; justify-content: space-between; margin-top: 12px; }

/* --- Podcast Player --- */
.pod-player {
  background: var(--bg-surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.pod-ep { font-size: 10px; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.pod-title { font-size: 18px; color: #fff; font-family: var(--font-serif); margin-bottom: 20px; line-height: 1.4; }
.pod-controls { display: flex; align-items: center; gap: 14px; }
.pod-play-btn {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition);
}
.pod-play-btn:hover { background: var(--accent-light); transform: scale(1.05); }
.pod-bar-wrap { flex: 1; }
.pod-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.pod-bar-fill {
  position: absolute;
  left: 0; top: 0;
  height: 4px;
  width: 38%;
  background: var(--accent);
  border-radius: 2px;
}
.pod-time { font-size: 11px; color: var(--text-muted); margin-top: 6px; text-align: right; }

.pod-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.pod-plat {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.pod-plat:hover { border-color: var(--accent); color: var(--accent); }

/* --- Newsletter --- */
.nl-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: 64px 24px;
  text-align: center;
}
.nl-section h2 { color: #fff; margin-bottom: 8px; }
.nl-section p { color: #664433; margin-bottom: 28px; }
.nl-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.nl-input {
  background: #0d0d0d;
  border: 1px solid var(--border-warm);
  color: var(--text-primary);
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  min-width: 260px;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
}
.nl-input:focus { border-color: var(--accent); }
.nl-input::placeholder { color: var(--text-muted); }

/* --- Footer --- */
.footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 24px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-top: 10px; max-width: 260px; }
.footer-logo { font-size: 18px; font-weight: 600; color: #fff; }
.footer-logo span { color: var(--accent); }
.footer-col h5 { font-size: 12px; color: var(--text-secondary); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-sans); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 18px; color: var(--text-muted); transition: color var(--transition); }
.footer-social a:hover { color: var(--accent); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(216,90,48,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 48px); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); max-width: 520px; }

/* --- Breadcrumb --- */
.breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.pricing-card.popular {
  border-color: var(--accent);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.pricing-price { font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 4px; font-family: var(--font-sans); }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 7px 0;
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 20px; color: var(--text-muted); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* --- Blog Article --- */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.article-content h2 { font-size: 24px; color: #fff; margin: 32px 0 12px; }
.article-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.8; }
.article-content ul { color: var(--text-secondary); font-size: 15px; margin-bottom: 18px; padding-left: 20px; }
.article-content ul li { margin-bottom: 6px; line-height: 1.7; }
.sidebar-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-widget h5 { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-sans); font-weight: 500; margin-bottom: 16px; }

/* --- Contact / Book --- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--bg-surface); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-top: 1px solid var(--border); }
  .cards-grid, .testi-grid, .blog-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { flex-direction: column; text-align: center; }
  .booking-grid, .article-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; padding: 60px 20px 40px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .nl-input { min-width: 100%; }
  .hero-btns { flex-direction: column; }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 2000;
  transition: width 0.1s linear;
}
