/* ============================================================
   REGGAETRAVEL.COM — Global Stylesheet
   Follow the rhythm. Honor the roots.
   Mobile-first, responsive, all device types
   ============================================================ */

/* ---------- 1. CSS Reset & Custom Properties ---------- */
:root {
  /* Colors — Ethiopian flag / Rastafari palette, tastefully applied */
  --green-deep: #0d3b0d;
  --green: #1a6b1a;
  --green-light: #2d8f2d;
  --green-muted: #2a5a2a;
  --gold: #d4a017;
  --gold-light: #f4c430;
  --gold-warm: #c8952e;
  --red: #b22222;
  --red-deep: #8b1a1a;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark: #222;
  --warm-gray: #2e2a25;
  --earth: #3d2b1f;
  --cream: #f5f0e1;
  --cream-light: #faf7f0;
  --off-white: #f0ece4;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #f5f0e1;
  --text-muted: #6b6560;
  --overlay-dark: rgba(10, 10, 10, 0.7);
  --overlay-medium: rgba(10, 10, 10, 0.5);
  --overlay-light: rgba(10, 10, 10, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-accent: 'Oswald', 'Arial Narrow', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Sizing */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 860px;
  --section-pad: 5rem 1.5rem;
  --section-pad-mobile: 3rem 1rem;
  --nav-height: 70px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-short: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Focus & Accessibility */
  --focus-ring: 0 0 0 3px var(--gold-light);
  --focus-ring-dark: 0 0 0 3px rgba(244, 196, 48, 0.6);
  --touch-target-min: 44px;

  /* Semantic Colors */
  --color-success: #2d8f2d;
  --color-warning: #d4a017;
  --color-error: #b22222;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.3);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Global Focus States (Accessibility) ---------- */
:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0.5rem;
  text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: var(--touch-target-min);
  height: var(--touch-target-min);
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 900;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
  text-decoration: none;
}

.back-to-top:focus-visible {
  box-shadow: var(--focus-ring);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- 2. Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  background: rgba(212, 160, 23, 0.06);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ---------- 3. Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

.bg-dark { background-color: var(--charcoal); color: var(--text-light); }
.bg-green { background-color: var(--green-deep); color: var(--text-light); }
.bg-cream { background-color: var(--cream); }
.bg-earth { background-color: var(--earth); color: var(--text-light); }
.bg-black { background-color: var(--black); color: var(--text-light); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-outline-dark:hover {
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-green:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  box-shadow: var(--focus-ring);
  transform: translateY(-2px);
}

.btn:hover {
  text-decoration: none;
}

/* ---------- 5. Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-medium);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .logo-accent {
  color: var(--gold);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  min-height: var(--touch-target-min);
  display: inline-flex;
  align-items: center;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
  text-decoration: none;
}

.nav-links a:focus-visible {
  box-shadow: var(--focus-ring-dark);
  color: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.75rem;
  min-width: var(--touch-target-min);
  min-height: var(--touch-target-min);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  border: none;
  background: none;
  border-radius: var(--border-radius);
}

.nav-toggle:focus-visible {
  box-shadow: var(--focus-ring-dark);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: var(--charcoal);
  z-index: 999;
  transition: right var(--transition-slow);
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  color: var(--text-light);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem 0;
  min-height: var(--touch-target-min);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 1rem;
  text-decoration: none;
}

.mobile-menu a:focus-visible {
  color: var(--gold);
  box-shadow: var(--focus-ring-dark);
}

/* ---------- 6. Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: -1;
}

.hero-content {
  padding: 2rem 1.5rem;
  max-width: 900px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
}

.hero h1 .accent {
  color: var(--gold);
  display: block;
  font-style: italic;
}

.hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

/* ---------- 7. Section Styles ---------- */
.section {
  padding: var(--section-pad-mobile);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Alternating section backgrounds */
.section-dark {
  background: var(--charcoal);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-green {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0a2f0a 100%);
  color: var(--text-light);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-earth {
  background: linear-gradient(135deg, var(--earth) 0%, #2a1a10 100%);
  color: var(--text-light);
}

.section-earth h2,
.section-earth h3 {
  color: var(--white);
}

/* ---------- 8. Manifesto Section ---------- */
.manifesto {
  padding: 5rem 1.5rem;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--green-deep);
}

.manifesto-quote .highlight {
  color: var(--gold);
  font-style: italic;
}

.manifesto-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 2rem auto;
  border-radius: 2px;
}

.divider-left {
  margin-left: 0;
  margin-right: auto;
}

/* ---------- 9. Cards & Grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

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

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card-link {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.card-link:hover {
  color: var(--gold);
  gap: 0.75rem;
  text-decoration: none;
}

.card-link:focus-visible {
  box-shadow: var(--focus-ring);
}

.card-link svg {
  width: 16px;
  height: 16px;
}

/* Dark card variant */
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.card-dark .card-title {
  color: var(--white);
}

.card-dark .card-text {
  color: rgba(255, 255, 255, 0.7);
}

.card-dark .card-link {
  color: var(--gold);
}

/* Feature card */
.feature-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.5rem;
}

.feature-card h4 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Sound System Cards ---------- */
.sound-system-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  border-top: 4px solid var(--gold);
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.sound-system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--green-light);
}

.ss-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
}

.ss-location {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.ss-founded {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
  font-style: italic;
}

.sound-system-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ss-vibe {
  background: rgba(26, 107, 26, 0.08);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ---------- Producer Cards ---------- */
.producer-card {
  background: linear-gradient(135deg, rgba(13, 59, 13, 0.08) 0%, rgba(212, 160, 23, 0.06) 100%);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--green);
  transition: all var(--transition-medium);
}

.producer-card:hover {
  background: linear-gradient(135deg, rgba(13, 59, 13, 0.12) 0%, rgba(212, 160, 23, 0.1) 100%);
  border-left-color: var(--gold);
  transform: translateX(8px);
}

.producer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.producer-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.producer-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Jamaica Location Cards ---------- */
.location-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-top: 4px solid var(--green);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-icon {
  font-size: 2rem;
  line-height: 1;
}

.location-card-header h3 {
  margin: 0;
  color: var(--green-deep);
}

.location-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.location-card-body p:last-child {
  margin-bottom: 0;
}

/* ---------- 10. Split Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-content {
  padding: 1rem 0;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.section-dark .split-content p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- 11. Roots → Routes Section ---------- */
.roots-routes-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.rr-column {
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.rr-column.roots {
  background: linear-gradient(135deg, var(--green-deep), #0a2f0a);
  color: var(--text-light);
}

.rr-column.routes {
  background: linear-gradient(135deg, var(--earth), #1a100a);
  color: var(--text-light);
}

.rr-column h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.rr-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.rr-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rr-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rr-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.rr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 2rem;
  color: var(--gold);
}

/* ---------- 12. Diaspora Map Grid ---------- */
.diaspora-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.diaspora-node {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.diaspora-node:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.diaspora-node img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.diaspora-node:hover img {
  transform: scale(1.05);
}

.diaspora-node-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.2) 60%);
}

.diaspora-node-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
}

.diaspora-node-city {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.diaspora-node-country {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Diaspora Cities Guides ---------- */
.diaspora-cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.city-guide {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.city-guide:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.city-header {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.city-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.city-guide:hover .city-header img {
  transform: scale(1.02);
}

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.city-header-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 1.5rem;
  color: var(--white);
}

.city-header-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.city-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.city-body {
  padding: 2rem 1.5rem;
}

.city-info h4 {
  color: var(--green-deep);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.city-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.city-info ul li {
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

/* ---------- Timeline Section ---------- */
.timeline {
  position: relative;
  padding: 2rem 0;
  display: grid;
  gap: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--green) 50%, var(--red) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-left: 1.5rem;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--charcoal);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--gold);
  transition: all var(--transition-medium);
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--green-light);
}

.timeline-year {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline::before {
    left: -2px;
  }
}

/* ---------- 13. Video Section ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.25rem 1.5rem;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.video-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Dark video card */
.section-dark .video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .video-title {
  color: var(--white);
}

.section-dark .video-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- 13. Artist Profiles & Tabs ---------- */
.tabs-container {
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.tab-btn {
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-short);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn:focus-visible {
  box-shadow: var(--focus-ring);
  color: var(--green);
}

.tab-btn.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-content {
  display: none;
  animation: fadeIn var(--transition-medium);
}

.tab-content.active {
  display: block;
}

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

.artist-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-left: 4px solid var(--gold);
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--green);
}

.artist-header {
  margin-bottom: 1rem;
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0;
  margin-bottom: 0.25rem;
}

.artist-era {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.artist-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.artist-albums {
  background: rgba(26, 107, 26, 0.08);
  padding: 0.875rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.artist-albums strong {
  color: var(--text-primary);
}

/* ---------- 13b. Record Shop Cards ---------- */
.record-shop-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-bottom: 4px solid var(--gold);
  position: relative;
}

.record-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green);
}

.shop-region {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.shop-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 0.75rem 0;
}

.shop-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.shop-details {
  background: rgba(26, 107, 26, 0.05);
  padding: 0.875rem 1rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--gold);
}

.shop-details p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.shop-details strong {
  color: var(--text-primary);
}

.tips-section h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.tips-section ul {
  margin-bottom: 0;
}

.tips-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 13c. Spiritual Guide Cards ---------- */
.spiritual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.spiritual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-medium);
}

.spiritual-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-4px);
}

.spiritual-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.spiritual-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.5px;
}

.spiritual-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.respect-principles h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.respect-principles h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.respect-principles li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .respect-principles {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- 13d. Practical Visitor Guide ---------- */
.practical-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.practical-section {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}

.practical-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-deep);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 107, 26, 0.1);
}

.practical-subsection {
  margin-bottom: 1.75rem;
}

.practical-subsection:last-child {
  margin-bottom: 0;
}

.practical-subsection h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green);
  margin: 0 0 0.75rem 0;
}

.practical-subsection p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.practical-subsection ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.universal-tips h3 {
  font-size: 1.4rem;
}

.universal-tips h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.universal-tips ul {
  margin: 0;
  padding: 0;
}

.universal-tips li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.universal-tips li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- 13e. Youth Reggae Cards ---------- */
.grid-auto-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 1.75rem;
}

.youth-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-top: 4px solid var(--gold);
  position: relative;
}

.youth-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--green);
}

.youth-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.youth-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 107, 26, 0.1);
}

.youth-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.youth-card p:first-of-type {
  margin-top: 0;
}

.youth-card strong {
  color: var(--text-primary);
}

.movement-statement p {
  font-size: 1.05rem;
}

/* ---------- 13f. Reggae Media Guide ---------- */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.media-section {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.media-category-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0 0 1.75rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--gold);
}

.media-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.media-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.media-header h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.media-type,
.media-author {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.media-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.media-item p:first-of-type {
  margin-top: 0;
}

.media-item strong {
  color: var(--text-primary);
}

.media-recommendations ol {
  padding-left: 1.5rem;
}

.media-recommendations li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

/* ---------- 13g. Reggae Production Guide ---------- */
.production-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 1.5rem;
}

.production-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-medium);
}

.production-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-4px);
}

.prod-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.prod-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem 0;
}

.production-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.production-card p:first-of-type {
  margin-top: 0;
}

.production-card strong {
  color: var(--white);
}

.production-card ul {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.production-journey {
  color: rgba(255, 255, 255, 0.85);
}

.production-journey h3 {
  font-size: 1.35rem;
}

.production-journey p {
  margin-bottom: 1rem;
}

.production-journey strong {
  color: var(--white);
}

/* ---------- 13h. Reggae Radio & Streaming ---------- */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.radio-category {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.radio-region {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--gold);
}

.radio-station {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.radio-station:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.radio-station h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.radio-station p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.5rem 0;
}

.radio-station p:first-of-type {
  margin-top: 0;
}

.radio-station strong {
  color: var(--text-primary);
}

.radio-tips ul {
  margin-bottom: 0;
}

.radio-tips li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 13i. Reggae Food Culture ---------- */
.food-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.food-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-bottom: 4px solid var(--gold);
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green);
}

.food-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.food-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 1rem 0;
}

.food-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.food-card p:first-of-type {
  margin-top: 0;
}

.food-card strong {
  color: var(--text-primary);
}

.ital-guide {
  color: var(--text-secondary);
}

.ital-guide h3 {
  font-size: 1.35rem;
}

.ital-guide h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.ital-guide ul {
  margin-bottom: 0;
}

.ital-guide li {
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.food-destinations h3 {
  font-size: 1.35rem;
}

.food-destinations h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.food-destinations p {
  margin-bottom: 0;
}

/* ---------- 13j. Accommodations Guide ---------- */
.accommodation-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.accommodation-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
}

.accommodation-region {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid rgba(212, 160, 23, 0.5);
}

.accommodation-type {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accommodation-type:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.acc-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.75rem 0;
}

.accommodation-type p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.accommodation-type p:first-of-type {
  margin-top: 0;
}

.accommodation-type strong {
  color: var(--white);
}

.accommodation-ethics ul {
  margin-bottom: 0;
}

.accommodation-ethics li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 13k. LGBTQ+ in Reggae ---------- */
.lgbtq-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
}

.lgbtq-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-left: 4px solid var(--gold);
}

.lgbtq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--green);
}

.lgbtq-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.lgbtq-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 1rem 0;
}

.lgbtq-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.lgbtq-card p:first-of-type {
  margin-top: 0;
}

.lgbtq-card strong {
  color: var(--text-primary);
}

.lgbtq-card ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.lgbtq-resources {
  color: var(--text-secondary);
}

.lgbtq-resources h3 {
  font-size: 1.35rem;
}

.lgbtq-resources ul {
  margin-bottom: 0;
}

.lgbtq-resources li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 13l. Kingston Neighborhoods ---------- */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1.75rem;
}

.neighborhood-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-top: 4px solid var(--gold);
}

.neighborhood-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--green);
}

.neigh-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 107, 26, 0.1);
}

.neigh-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 0.25rem 0;
}

.neigh-vibe {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.neighborhood-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.neighborhood-card p:first-of-type {
  margin-top: 0;
}

.neighborhood-card strong {
  color: var(--text-primary);
}

.neighborhood-card ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.kingston-tips h3 {
  font-size: 1.4rem;
}

.kingston-tips h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.kingston-tips ul {
  margin-bottom: 0;
}

.kingston-tips li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 13m. Travel Logistics ---------- */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
}

.logistics-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-left: 4px solid var(--gold);
}

.logistics-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--green);
}

.log-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.log-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 1rem 0;
}

.logistics-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.logistics-card p:first-of-type {
  margin-top: 0;
}

.logistics-card strong {
  color: var(--text-primary);
}

.logistics-card ul {
  color: var(--text-secondary);
}

/* ---------- 13n. Sample Itineraries ---------- */
.itinerary-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1.75rem;
}

.itinerary-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-medium);
}

.itinerary-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-4px);
}

.itin-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
}

.itin-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem 0;
}

.itin-type {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.itin-day {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.itin-day:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.itin-day h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin: 0 0 0.75rem 0;
}

.itin-day p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.itin-day ul {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* ---------- 13o. London Neighborhoods ---------- */
.london-neighborhoods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1.75rem;
}

.london-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border-bottom: 4px solid var(--gold);
}

.london-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green);
}

.london-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 107, 26, 0.1);
}

.london-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 0.25rem 0;
}

.london-vibe {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.london-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.london-card p:first-of-type {
  margin-top: 0;
}

.london-card strong {
  color: var(--text-primary);
}

.london-card ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.london-tips h3 {
  font-size: 1.4rem;
}

.london-tips ul {
  margin-bottom: 0;
}

.london-tips li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 13p. Toronto Neighborhoods ---------- */
.toronto-neighborhoods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1.75rem;
}

.toronto-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-medium);
}

.toronto-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-4px);
}

.toronto-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
}

.toronto-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.25rem 0;
}

.toronto-vibe {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(212, 160, 23, 0.8);
}

.toronto-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.toronto-card p:first-of-type {
  margin-top: 0;
}

.toronto-card strong {
  color: var(--white);
}

.toronto-card ul {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.toronto-tips h3 {
  font-size: 1.4rem;
}

.toronto-tips ul {
  margin-bottom: 0;
}

.toronto-tips li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

/* ---------- 14. Pilgrimage Routes ---------- */
.pilgrimage-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--gold);
  transition: all var(--transition-medium);
}

.pilgrimage-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--green);
}

.pilgrimage-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 107, 26, 0.1);
}

.pilgrimage-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 0.5rem 0;
}

.pilgrimage-icon {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.pilgrimage-route {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 107, 26, 0.05);
}

.pilgrimage-route:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pilgrimage-route h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
}

.pilgrimage-route p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.pilgrimage-route p:first-of-type {
  margin-top: 0;
}

.pilgrimage-route strong {
  color: var(--text-primary);
}

.pilgrimage-route ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pilgrimage-note {
  background: rgba(26, 107, 26, 0.05);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-left: 3px solid var(--gold);
}

.pilgrimage-guide h3 {
  font-size: 1.4rem;
}

.pilgrimage-guide ul {
  margin-bottom: 0;
}

.pilgrimage-guide li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ---------- 14b. Venues & Concert Halls ---------- */
.venues-section {
  margin-bottom: 3rem;
}

.venue-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-medium);
}

.venue-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-2px);
}

.venue-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(212, 160, 23, 0.2);
}

.venue-header h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.15rem;
}

.venue-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.venue-card p:first-of-type {
  margin-top: 0;
}

.venue-card strong {
  color: var(--white);
}

.venues-tips h3 {
  font-size: 1.4rem;
}

.venues-tips ul {
  margin-bottom: 0;
}

.venues-tips li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

/* ---------- 14c. Food Guides by City ---------- */
.city-food-guide {
  margin-bottom: 3rem;
}

.food-restaurant {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: all var(--transition-medium);
}

.food-restaurant:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--green);
}

.food-restaurant h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.food-restaurant p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.food-restaurant strong {
  color: var(--text-primary);
}

.food-tips {
  margin-top: 1.5rem;
}

/* ---------- 14d. Extended Itineraries ---------- */
.itinerary-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.itinerary-day {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.itinerary-day:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.itinerary-day h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
}

.itinerary-day p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.itinerary-section {
  margin-bottom: 1rem;
}

.itinerary-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.itinerary-section ul {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 2;
}

.itinerary-tips h3 {
  font-size: 1.4rem;
}

.itinerary-tips ul {
  margin-bottom: 0;
}

.itinerary-tips li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

/* ---------- 15. Safety Guides ---------- */
.safety-guide {
  margin-bottom: 3rem;
}

.safety-section {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.safety-section:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-md);
}

.safety-section h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 0.75rem 0;
}

.safety-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.safety-section ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.safety-truth {
  margin-top: 1.5rem;
}

/* ---------- 16. Seasons & Weather ---------- */
.season-guide {
  margin-bottom: 3rem;
}

.season-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-medium);
}

.season-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-2px);
}

.season-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
}

.season-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.season-card strong {
  color: var(--white);
}

/* ---------- 17. Reggae Learning Guide ---------- */
.learning-path {
  margin-bottom: 2.5rem;
}

.learning-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.learning-item:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-md);
}

.learning-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 0.75rem 0;
}

.learning-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.learning-item ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.learning-tips h3 {
  font-size: 1.4rem;
}

.learning-tips ul {
  margin-bottom: 0;
}

.learning-tips li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.route-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

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

.route-header {
  position: relative;
  padding: 2rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.route-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.route-header-content {
  position: relative;
  z-index: 1;
}

.route-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.route-path {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.route-body {
  padding: 1.5rem 2rem 2rem;
}

.route-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ---------- 15. Festival Section ---------- */
.festival-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.festival-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-medium);
  align-items: flex-start;
}

.festival-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateX(4px);
}

.festival-img {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius);
  object-fit: cover;
  flex-shrink: 0;
}

.festival-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.festival-location {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.festival-when {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--green-light);
  display: block;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.festival-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- 16. Respect Guide ---------- */
.respect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.respect-item {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.respect-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.respect-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--green-deep);
}

.respect-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- 17. FAQ / AEO Section ---------- */
.faq-list {
  max-width: 860px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  gap: 1rem;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question:focus-visible {
  box-shadow: var(--focus-ring);
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* Light FAQ variant */
.faq-light .faq-item {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.faq-light .faq-question {
  color: var(--text-primary);
}

.faq-light .faq-question:hover {
  color: var(--green);
}

.faq-light .faq-answer-inner {
  color: var(--text-secondary);
}

/* ---------- 18. Cultural Depth Index ---------- */
.index-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.index-table th {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.index-table td {
  padding: 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.index-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.depth-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-width: 60px;
}

.depth-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width var(--transition-slow);
}

/* ---------- 19. Newsletter / CTA ---------- */
.cta-section {
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0a2f0a 50%, var(--earth) 100%);
  color: var(--text-light);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- 20. Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- 21. Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 22. Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---------- 23. Image Gallery Row ---------- */
.image-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.image-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* ---------- 24. Women in Reggae Section ---------- */
.women-timeline {
  position: relative;
  margin-top: 2rem;
}

.women-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.women-item {
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.women-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--green-deep);
}

.women-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.women-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- 25. Table Responsiveness ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--border-radius-lg);
}

/* ---------- 26. Coming Soon Page ---------- */
.coming-soon {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--black) 40%, var(--earth) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1), transparent 70%);
  top: -150px;
  right: -150px;
}

.coming-soon::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 107, 26, 0.15), transparent 70%);
  bottom: -100px;
  left: -100px;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.coming-soon h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.coming-soon h1 span {
  color: var(--gold);
}

.coming-soon p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.coming-soon .btn {
  margin-top: 1rem;
}

/* ---------- 27. Media Queries ---------- */

/* Small phones (320px+) — base styles above handle this */

/* Larger phones (480px+) */
@media (min-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .section {
    padding: var(--section-pad);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split.reverse {
    direction: rtl;
  }

  .split.reverse > * {
    direction: ltr;
  }

  .roots-routes-visual {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }

  .diaspora-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .festival-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .respect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .cta-form {
    flex-direction: row;
  }

  .cta-input {
    flex: 1;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

/* Small desktop (1024px+) */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .diaspora-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .image-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
  .split {
    gap: 5rem;
  }

  .diaspora-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra large (1440px+) */
@media (min-width: 1440px) {
  html {
    font-size: 17px;
  }
}

/* ---------- 28. Print Styles ---------- */
@media print {
  .nav, .mobile-menu, .mobile-menu-overlay,
  .hero-scroll, .cta-section, .video-wrapper {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section-dark, .section-green, .section-earth {
    background: white !important;
    color: black !important;
  }
}

/* ---------- 29. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  .stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 30. High Contrast Mode ---------- */
@media (prefers-contrast: high) {
  :root {
    --overlay-dark: rgba(0, 0, 0, 0.85);
  }

  .card {
    border: 2px solid var(--text-primary);
  }

  .btn {
    border-width: 3px;
  }
}

/* ---------- 31. Dark Mode Preference ---------- */
@media (prefers-color-scheme: dark) {
  .card {
    background: var(--charcoal);
    color: var(--text-light);
  }

  .card-title { color: var(--white); }
  .card-text { color: rgba(255, 255, 255, 0.7); }

  .feature-card {
    background: var(--charcoal);
  }

  .feature-card p { color: rgba(255, 255, 255, 0.7); }

  .respect-item {
    background: var(--charcoal);
  }

  .respect-item h4 { color: var(--gold); }
  .respect-item p { color: rgba(255, 255, 255, 0.7); }

  body {
    background-color: var(--black);
    color: var(--text-light);
  }

  .manifesto-quote { color: var(--white); }
  .manifesto-text { color: rgba(255, 255, 255, 0.7); }

  /* Dark mode video cards */
  .top-video-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .top-video-title { color: var(--white); }
  .top-video-desc { color: rgba(255,255,255,0.7); }
  .top-video-link { color: var(--gold); }

  /* Dark mode guide hub cards */
  .guide-hub-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .guide-hub-card:hover {
    background: rgba(255,255,255,0.1);
  }

  /* Dark mode snippet box */
  .snippet-box {
    background: rgba(255,255,255,0.05);
    color: var(--cream);
  }
  .snippet-box strong { color: var(--gold); }

  /* Dark mode section backgrounds */
  .section {
    background-color: var(--black);
  }
  .section-green {
    background: linear-gradient(135deg, var(--green-deep) 0%, #0a2e0a 100%);
  }
}

/* ============================================================
   32. SUB-PAGE STYLES (Cultural Guide Pages)
   Mobile-first, responsive across all device types
   ============================================================ */

/* Sub-page hero — shorter than homepage hero */
.sub-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1rem 3rem;
  overflow: hidden;
}

.sub-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sub-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.sub-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.sub-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.sub-hero .hero-text {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.sub-hero .hero-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* Sub-page breadcrumb */
.breadcrumb {
  padding: 0.75rem 1.5rem;
  padding-top: calc(var(--nav-height) + 0.5rem);
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* Sub-page content wrapper — controls article width */
.page-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--green-deep);
}

.page-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.page-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Featured snippet / direct answer box */
.snippet-box {
  background: linear-gradient(135deg, rgba(13,59,13,0.06) 0%, rgba(212,160,23,0.04) 100%);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.9;
  color: var(--text-primary);
}

.snippet-box strong {
  color: var(--green-deep);
}

/* Internal link grid for sub-pages */
.related-guides {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.related-guide-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--cream);
  transition: all var(--transition-medium);
}

.related-guide-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateX(4px);
  text-decoration: none;
}

.related-guide-card h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.related-guide-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

/* Light variant of related guides */
.related-guides-light .related-guide-card {
  background: var(--white);
  border-color: rgba(0,0,0,0.08);
  color: var(--text-primary);
}

.related-guides-light .related-guide-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.related-guides-light .related-guide-card h4 {
  color: var(--green-deep);
}

.related-guides-light .related-guide-card p {
  color: var(--text-secondary);
}

/* ============================================================
   33. TOP 10 MUSIC VIDEO CARDS
   Enhanced video cards with location info and travel links
   ============================================================ */

.top-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.top-video-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.top-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.top-video-rank {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.top-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.top-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.top-video-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.top-video-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.top-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.top-video-location {
  color: var(--gold-warm);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-video-year {
  color: var(--text-muted);
}

.top-video-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.top-video-link {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: var(--touch-target-min);
}

.top-video-link:hover {
  color: var(--gold);
  gap: 0.75rem;
  text-decoration: none;
}

/* Dark variant for section-dark */
.section-dark .top-video-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .top-video-card:hover {
  border-color: var(--gold);
}

.section-dark .top-video-title {
  color: var(--white);
}

.section-dark .top-video-desc {
  color: rgba(255,255,255,0.65);
}

.section-dark .top-video-link {
  color: var(--gold);
}

/* ============================================================
   34. GUIDE HUB CARDS (Explore Our Guides grid)
   ============================================================ */

.guide-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.guide-hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

.guide-hub-card:hover {
  background: rgba(0,0,0,0.45);
  border-color: var(--gold);
  transform: translateY(-3px);
  text-decoration: none;
}

.guide-hub-card h3 {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.guide-hub-card p {
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   35. ENHANCED RESPONSIVE — Sub-pages & New Sections
   ============================================================ */

/* Small phones (320-479px) */
@media (max-width: 479px) {
  .sub-hero {
    min-height: 40vh;
    padding: calc(var(--nav-height) + 1rem) 0.75rem 2rem;
  }

  .snippet-box {
    padding: 1rem 1.25rem;
  }

  .page-content {
    padding: 0 1rem;
  }

  .top-video-body {
    padding: 1rem;
  }

  .top-video-meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .breadcrumb {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .guide-hub-card {
    padding: 1.25rem;
  }
}

/* Larger phones (480px+) */
@media (min-width: 480px) {
  .top-video-grid {
    grid-template-columns: 1fr;
  }

  .related-guides {
    grid-template-columns: 1fr;
  }

  .guide-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .sub-hero {
    min-height: 55vh;
    padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
  }

  .top-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-guides {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-content {
    padding: 0 2rem;
  }
}

/* Small desktop (1024px+) */
@media (min-width: 1024px) {
  .sub-hero {
    min-height: 50vh;
  }

  .top-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-guides {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
  .top-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer responsive for 4 columns on sub-pages */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Touch target enforcement on mobile */
@media (max-width: 768px) {
  .top-video-link,
  .related-guide-card,
  .guide-hub-card {
    min-height: var(--touch-target-min);
  }

  .breadcrumb a {
    padding: 0.25rem 0;
    display: inline-block;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .sub-hero {
    min-height: 70vh;
    padding-top: calc(var(--nav-height) + 1rem);
    padding-bottom: 1.5rem;
  }

  .sub-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* Print overrides for sub-pages */
@media print {
  .sub-hero {
    min-height: auto;
    padding: 2rem 0;
    background: none !important;
  }

  .sub-hero .hero-bg,
  .sub-hero .hero-overlay {
    display: none !important;
  }

  .sub-hero h1 {
    color: var(--black) !important;
  }

  .top-video-wrapper {
    display: none !important;
  }

  .breadcrumb {
    display: none !important;
  }
}
