/* ============================================================
   AFRICA BUILD BRIEFING — Digital Magazine
   Premium Editorial Design System
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0A0F1A;
  --warm-accent: #D4A574;
  --secondary-accent: #C75B2E;
  --light-bg: #F8F5F0;
  --text-light: #F5F3EF;
  --text-dark: #1A1A1A;
  --text-muted: #6B7280;
  --glass-white: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-heavy: 0 25px 60px rgba(0,0,0,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.15);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'DM Sans', 'Source Sans 3', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--primary-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === READING PROGRESS BAR === */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--warm-accent), var(--secondary-accent));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 2rem;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212, 165, 116, 0.15);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--warm-accent);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.nav-brand-text {
  display: none;
}

@media (min-width: 768px) {
  .nav-brand-text { display: inline; }
}

.nav-links {
  display: none;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: rgba(245, 243, 239, 0.7);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm-accent);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--warm-accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(245, 243, 239, 0.6);
  transition: all 0.3s;
  background: transparent;
}

.share-btn:hover {
  color: var(--warm-accent);
  background: rgba(212, 165, 116, 0.1);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-light);
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile nav overlay */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(30px);
  padding: 3rem 2rem;
  gap: 1.5rem;
  z-index: 9998;
  animation: fadeSlideDown 0.4s var(--ease-out-expo);
}

.nav-links.mobile-open a {
  font-size: 1.1rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(10, 15, 26, 0.4) 0%, 
      rgba(10, 15, 26, 0.2) 30%, 
      rgba(10, 15, 26, 0.5) 70%, 
      rgba(10, 15, 26, 0.92) 100%),
    linear-gradient(135deg, 
      rgba(199, 91, 46, 0.1) 0%, 
      transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-masthead {
  margin-bottom: 3rem;
}

.masthead-line {
  width: 60px;
  height: 1px;
  background: var(--warm-accent);
  margin: 0 auto 1.25rem;
}

.masthead-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-accent);
  margin-bottom: 0.5rem;
}

.masthead-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.5);
  margin-bottom: 0.3rem;
}

.masthead-date {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.4);
}

.hero-headline {
  margin-top: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 243, 239, 0.75);
  max-width: 650px;
  margin: 0 auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 243, 239, 0.4);
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === CONTAINERS & SECTIONS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: var(--primary-dark);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--secondary-accent);
}

.section-label-light {
  color: var(--warm-accent);
}

.section-label-light::before {
  background: var(--warm-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section-title-light {
  color: var(--text-light);
}

/* === EDITOR'S NOTE === */
.editorial-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.editorial-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.editorial-lead {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-dark);
}

.editorial-lead::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.05em;
  color: var(--secondary-accent);
}

.editorial-body p {
  margin-bottom: 1.5rem;
}

.editorial-divider {
  width: 60px;
  height: 1px;
  background: var(--warm-accent);
  margin-top: 3rem;
}

/* === FEATURE SECTIONS (Image + Text) === */
.section-feature {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

@media (min-width: 1024px) {
  .section-feature {
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
  }
}

.feature-image-wrap {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .feature-image-wrap {
    min-height: 100%;
  }
}

.feature-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.feature-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.3), rgba(10, 15, 26, 0.15));
}

.feature-image-overlay-warm {
  background: linear-gradient(135deg, rgba(199, 91, 46, 0.15), rgba(10, 15, 26, 0.2));
}

.feature-content {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .feature-content {
    padding: 5rem 0;
  }
}

.section-feature-alt .feature-content {
  order: -1;
}

@media (max-width: 1023px) {
  .section-feature-alt .feature-content {
    order: 1;
  }
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.feature-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--warm-accent);
  padding-left: 1.25rem;
}

.feature-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2A2A2A;
}

.feature-body p {
  margin-bottom: 1.5rem;
}

/* === PULL QUOTES === */
.pullquote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--warm-accent);
  background: rgba(212, 165, 116, 0.06);
  position: relative;
}

.pullquote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0 !important;
}

.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.pullquote-light {
  border-left-color: var(--warm-accent);
  background: rgba(212, 165, 116, 0.08);
}

.pullquote-light p {
  color: var(--text-light);
}

.pullquote-light cite {
  color: rgba(245, 243, 239, 0.6);
}

/* === CINEMATIC SECTIONS (Full-bleed dark) === */
.section-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  overflow: hidden;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  transform: scale(1.05);
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(10, 15, 26, 0.75) 0%, 
      rgba(10, 15, 26, 0.6) 30%, 
      rgba(10, 15, 26, 0.7) 70%, 
      rgba(10, 15, 26, 0.88) 100%);
}

.cinematic-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cinematic-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.cinematic-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 243, 239, 0.6);
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--warm-accent);
  padding-left: 1.25rem;
}

.cinematic-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 243, 239, 0.85);
}

.cinematic-body p {
  margin-bottom: 1.5rem;
}

/* === STAT CALLOUTS === */
.stat-callout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(212, 165, 116, 0.3);
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--warm-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}

.stat-callout-light .stat-label {
  color: rgba(245, 243, 239, 0.6);
}

/* === MARKET CARDS === */
.market-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .market-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.market-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-smooth);
}

.market-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.market-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.market-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,26,0.2) 100%);
}

.market-card-image-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2332 50%, #0f1923 100%);
}

.market-card-image-gradient::after {
  background: none;
}

.market-card-image-gradient-2 {
  background: linear-gradient(135deg, #1a1520 0%, #2a1f2d 50%, #0f1520 100%);
}

.market-card-image-gradient-2::after {
  background: none;
}

.market-card-body {
  padding: 1.75rem;
}

.market-card-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.flag-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.flag-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.market-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.market-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

/* === SOURCES === */
.sources {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-style: italic;
}

.sources-light {
  color: rgba(245, 243, 239, 0.4);
  border-top-color: rgba(255,255,255,0.1);
}

/* === DATA DASHBOARD === */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .data-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.data-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--warm-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.data-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 165, 116, 0.2);
}

.data-card:hover::before {
  opacity: 1;
}

.data-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--warm-accent);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.data-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(245, 243, 239, 0.55);
}

/* === TIMELINE / WEEK AHEAD === */
.timeline {
  margin-top: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--warm-accent), rgba(212, 165, 116, 0.1));
}

.timeline-item {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 1.85rem;
  width: 8px;
  height: 8px;
  background: var(--warm-accent);
  border-radius: 50%;
  transform: translateX(-3.5px);
}

.timeline-date {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-accent);
  margin-bottom: 0.35rem;
}

.timeline-content {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* === SUBSCRIBE === */
.section-subscribe {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #111827 100%);
  padding: 6rem 0;
}

.subscribe-inner {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.subscribe-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.6);
  margin-bottom: 2.5rem;
}

.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.subscribe-form:focus-within {
  border-color: var(--warm-accent);
}

.subscribe-input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.subscribe-input::placeholder {
  color: rgba(245, 243, 239, 0.3);
}

.subscribe-btn {
  padding: 1rem 2rem;
  background: var(--warm-accent);
  color: var(--primary-dark);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #e0b68a;
}

/* === FOOTER === */
.footer {
  background: #060a12;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-accent);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 243, 239, 0.3);
  margin-top: 0.25rem;
}

.footer-info p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.4);
}

.footer-copy p {
  font-size: 0.75rem;
  color: rgba(245, 243, 239, 0.25);
}

/* === ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Parallax images */
.parallax-img {
  will-change: transform;
}

/* === RESPONSIVE FINE-TUNING === */
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-masthead {
    margin-bottom: 2rem;
  }
  
  .masthead-title {
    font-size: 0.7rem;
  }
  
  .feature-body, .cinematic-body, .editorial-body {
    font-size: 1rem;
  }
  
  .pullquote {
    padding: 1.5rem 1.5rem;
    margin: 2rem 0;
  }
  
  .pullquote p {
    font-size: 1.1rem;
  }
  
  .section-cinematic {
    min-height: auto;
    padding: 5rem 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .data-grid {
    gap: 1rem;
  }
  
  .data-card {
    padding: 1.25rem 1rem;
  }
  
  .data-number {
    font-size: 1.6rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-btn {
    width: 100%;
  }
  
  .market-card-image {
    height: 180px;
  }
  
  .share-buttons {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .market-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Print styles */
@media print {
  .nav, .progress-bar, .scroll-indicator, .subscribe-form, .share-buttons, .hamburger {
    display: none !important;
  }
  
  .hero { min-height: auto; height: auto; padding: 2rem 0; }
  .section-cinematic { min-height: auto; }
  .reveal-up { opacity: 1 !important; transform: none !important; }
}